@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #f5efe6;
  --sand: #e8dfd0;
  --sand-dark: #d4c6ae;
  --ink: #0f0c08;
  --ink-soft: #1a1612;
  --muted: #6b6258;
  --gold: #c4a265;
  --gold-bright: #d8b87f;
  --night: #0a0806;
  --night-soft: #141008;
  --night-card: #1c1610;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --container: 1280px;
  --radius: 12px;
  --radius-lg: 16px;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.nav.scrolled {
  padding: 16px 0;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(15, 12, 8, 0.06);
}

.nav.nav-dark.scrolled {
  background: rgba(10, 8, 6, 0.85);
  box-shadow: 0 1px 0 rgba(196, 162, 101, 0.08);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}

.nav.nav-dark .nav-logo { color: var(--cream); }

.nav-links { display: flex; gap: 40px; }

.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav.nav-dark .nav-links a { color: rgba(245, 239, 230, 0.8); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.nav.nav-dark .nav-cta {
  background: var(--gold);
  color: var(--night);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 12, 8, 0.2);
}

.nav.nav-dark .nav-cta:hover {
  background: var(--gold-bright);
  box-shadow: 0 8px 24px rgba(196, 162, 101, 0.3);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  width: 32px; height: 32px;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  margin: 5px auto;
  transition: all 0.4s var(--ease);
}

.nav.nav-dark .nav-hamburger span { background: var(--cream); }

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.mobile-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ============ HERO ============ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.35) 0%,
    rgba(10, 8, 6, 0.2) 40%,
    rgba(10, 8, 6, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 24px;
  max-width: 800px;
  animation: heroIn 1.4s var(--ease-out) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.85);
}

.hero-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  margin: 40px auto;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 40px;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 230, 0.4);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-cta:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(245, 239, 230, 0.7);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(245, 239, 230, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -20px; left: 0;
  width: 100%; height: 20px;
  background: var(--gold);
  animation: scrollDown 2.2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -20px; }
  60%, 100% { top: 40px; }
}

/* ============ SECTIONS ============ */

.day-section {
  background: var(--cream);
  color: var(--ink-soft);
  padding: 140px 0;
  position: relative;
}

.night-section {
  background: var(--night);
  color: rgba(245, 239, 230, 0.85);
  padding: 140px 0;
  position: relative;
}

.night-section h2,
.night-section h3,
.night-section h4 { color: var(--cream); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-dark) 50%, transparent);
  margin: 0 auto;
  max-width: 800px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 64px;
  max-width: 800px;
}

/* ============ PHILOSOPHY ============ */

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.philosophy-text h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  margin-bottom: 32px;
}

.philosophy-text p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 16px;
}

.philosophy-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.philosophy-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.philosophy-image:hover img { transform: scale(1.04); }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
}

.stat { text-align: center; }

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ PROJECTS ============ */

.suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.suite-card {
  cursor: pointer;
  transition: transform 0.6s var(--ease);
}

.suite-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.suite-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.suite-card:hover { transform: translateY(-4px); }
.suite-card:hover .suite-image img { transform: scale(1.06); }

.suite-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.suite-info p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.suite-price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ TRANSITION ============ */

.transition-section {
  position: relative;
  height: 70vh;
  min-height: 560px;
  background: linear-gradient(180deg, var(--cream) 0%, #2a1e14 30%, var(--night) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  background: var(--cream);
  border-radius: 50%;
  animation: twinkle var(--dur) ease-in-out var(--del) infinite;
  box-shadow: 0 0 6px rgba(245, 239, 230, 0.6);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

.transition-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 32px;
}

.transition-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
}

.transition-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  font-style: italic;
  color: var(--cream);
}

/* ============ CRAFT ============ */

.night-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.wellness-hero {
  position: relative;
  aspect-ratio: 21/9;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 80px;
}

.wellness-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.wellness-hero:hover img { transform: scale(1.04); }

.wellness-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 8, 6, 0.85) 0%, rgba(10, 8, 6, 0.4) 60%, transparent 100%);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}

.wellness-overlay h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.wellness-overlay p {
  color: rgba(245, 239, 230, 0.8);
  font-size: 15px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.treatment-card {
  background: var(--night-card);
  border: 1px solid rgba(196, 162, 101, 0.12);
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.treatment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 162, 101, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.treatment-card:hover::before { opacity: 1; }

.treatment-icon {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center;
  justify-content: center;
  background: rgba(196, 162, 101, 0.1);
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--gold);
}

.treatment-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.treatment-card p {
  color: rgba(245, 239, 230, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.treatment-duration {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 20px;
  border-top: 1px solid rgba(196, 162, 101, 0.2);
}

/* ============ STUDIO / BENTO ============ */

.cuisine-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  min-height: 560px;
}

.bento-large {
  grid-row: span 2;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bento-large img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.bento-large:hover img { transform: scale(1.05); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 8, 6, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}

.bento-overlay h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.bento-overlay p {
  color: rgba(245, 239, 230, 0.85);
  max-width: 480px;
}

.bento-text-card {
  background: var(--night-card);
  border: 1px solid rgba(196, 162, 101, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s var(--ease);
}

.bento-text-card:hover {
  border-color: rgba(196, 162, 101, 0.35);
  transform: translateY(-4px);
}

.bento-text-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.bento-text-card p {
  color: rgba(245, 239, 230, 0.72);
  font-size: 15px;
}

/* ============ PORTFOLIO ============ */

.excursions-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 40px;
}

.excursion-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.excursion-card:nth-child(even) { direction: rtl; }
.excursion-card:nth-child(even) .excursion-info { direction: ltr; }

.excursion-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.excursion-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.excursion-card:hover .excursion-image img { transform: scale(1.06); }

.excursion-info h3 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 24px;
}

.excursion-info p {
  color: rgba(245, 239, 230, 0.72);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.excursion-duration {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 20px;
  border: 1px solid rgba(196, 162, 101, 0.3);
  border-radius: var(--radius);
}

/* ============ RESERVE ============ */

.reserve {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.reserve-bg { position: absolute; inset: 0; }

.reserve-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.reserve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.7) 0%, rgba(10, 8, 6, 0.9) 100%);
}

.reserve-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}

.reserve-content h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--cream);
}

.reserve-content p {
  font-size: 17px;
  color: rgba(245, 239, 230, 0.8);
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.reserve-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 20px 48px;
  background: var(--gold);
  color: var(--night);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}

.reserve-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(196, 162, 101, 0.3);
}

.reserve-contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(245, 239, 230, 0.7);
}

/* ============ FOOTER ============ */

.footer {
  background: var(--night-soft);
  color: rgba(245, 239, 230, 0.6);
  padding: 100px 0 48px;
  border-top: 1px solid rgba(196, 162, 101, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 239, 230, 0.55);
}

.footer-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(245, 239, 230, 0.55);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(196, 162, 101, 0.08);
  font-size: 12px;
  color: rgba(245, 239, 230, 0.45);
  letter-spacing: 0.05em;
}

/* ============ SCROLL REVEAL ============ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.stagger-up .reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.stagger-up.visible .reveal-child { opacity: 1; transform: translateY(0); }
.stagger-up.visible .reveal-child:nth-child(1) { transition-delay: 0.05s; }
.stagger-up.visible .reveal-child:nth-child(2) { transition-delay: 0.15s; }
.stagger-up.visible .reveal-child:nth-child(3) { transition-delay: 0.25s; }
.stagger-up.visible .reveal-child:nth-child(4) { transition-delay: 0.35s; }

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }

  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .suites-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: 1fr; }

  .cuisine-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .bento-large { grid-row: auto; aspect-ratio: 16/9; }

  .excursion-card { grid-template-columns: 1fr; gap: 32px; }
  .excursion-card:nth-child(even) { direction: ltr; }

  .wellness-overlay {
    padding: 40px;
    max-width: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 8, 6, 0.85) 100%);
  }

  .day-section, .night-section { padding: 100px 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav { padding: 20px 0; }
  .nav-inner { padding: 0 20px; }
  .hero { min-height: 600px; }
  .suites-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .reserve-contact { flex-direction: column; gap: 12px; }
  .day-section, .night-section { padding: 80px 0; }
  .section-title { margin-bottom: 48px; }
  .wellness-overlay { padding: 32px 24px; }
  .bento-overlay { padding: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
