/* VISMAYA — Editorial Backwater
   Palette: Vembanad backwater green + warm teak + ivory + Kerala gold
   Fonts: Cormorant Garamond (display) + Inter Tight (body) */

:root {
  --backwater:      #0D2B22;
  --backwater-deep: #071A15;
  --backwater-soft: #193A2D;
  --ivory:          #FAF4E6;
  --ivory-deep:     #F0E8D2;
  --ivory-soft:     #FBF8F0;
  --teak:           #7C4B28;
  --teak-deep:      #5A3318;
  --gold:           #C49040;
  --gold-deep:      #9A6E28;
  --ink:            #1A1008;
  --ink-soft:       #3A2810;
  --muted:          #5A4428;
  --line:           rgba(26, 16, 8, 0.13);
  --line-warm:      rgba(196, 144, 64, 0.28);

  --f-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --f-body:    "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    "JetBrains Mono", "SF Mono", Menlo, monospace;

  --max:    1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory-deep);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Type scale ─────────────────────────────────────── */
.serif { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
}
.label-mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.05; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(48px, 8.5vw, 124px); }
h2 { font-size: clamp(36px, 5.5vw, 76px); }
h3 { font-size: clamp(26px, 3.2vw, 42px); }
h4 { font-size: clamp(20px, 2vw, 28px); }
.italic { font-style: italic; }
p { max-width: 64ch; }

/* ── Layout helpers ─────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(80px, 11vw, 160px) 0; position: relative; }
.divider-rule { height: 1px; background: var(--line); width: 100%; margin: 0; }
.divider-brass { display: flex; align-items: center; gap: 16px; color: var(--gold); margin: 32px 0; }
.divider-brass::before, .divider-brass::after { content: ""; flex: 1; height: 1px; background: var(--gold); opacity: 0.4; }
.divider-brass-mark { font-size: 10px; transform: rotate(45deg); }

/* ── Top nav ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(250, 244, 230, 0.9) 0%, rgba(250, 244, 230, 0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.4s ease;
}
.nav.scrolled {
  background: rgba(250, 244, 230, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-wordmark {
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav-logo-sub {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  line-height: 1;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-cta {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 12px 22px; border: 1px solid var(--ink); color: var(--ink);
  font-weight: 500;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--ivory); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--ink); display: block; transition: transform 0.3s ease, opacity 0.2s ease; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 0 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  background: var(--ivory-deep);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-top: 40px;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-meta-row {
  display: flex; gap: 28px; align-items: center;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
}
.hero-meta-row .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.hero-title { font-size: clamp(54px, 8vw, 132px); line-height: 0.94; }
.hero-title em { font-style: italic; color: var(--backwater); }
.hero-tag {
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45;
  color: var(--ink-soft); max-width: 44ch;
  font-family: var(--f-display); font-weight: 400;
}
.hero-cta-row { display: flex; gap: 20px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 34px;
  background: var(--backwater); color: var(--ivory);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--backwater);
}
.btn-primary:hover { background: var(--backwater-deep); transform: translateY(-2px); }
.btn-primary .arrow { transition: transform 0.3s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 0;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--ink);
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px;
  background: #25D366; color: white;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  border: 1px solid #25D366;
  transition: all 0.3s ease;
}
.btn-wa:hover { background: #1ebe5b; transform: translateY(-2px); }
.btn-wa svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-right { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}
.hero-photo-caption {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  color: var(--ivory);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; justify-content: space-between;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-stats {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-stat-num { font-family: var(--f-display); font-size: clamp(34px, 4vw, 54px); color: var(--backwater); line-height: 1; font-variant-numeric: tabular-nums; }
.hero-stat-num em { font-style: italic; color: var(--gold); }
.hero-stat-label { margin-top: 10px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ── Marquee ─────────────────────────────────────────── */
.marquee {
  background: var(--backwater); color: var(--ivory-deep);
  padding: 28px 0; overflow: hidden;
  border-top: 1px solid var(--backwater-deep); border-bottom: 1px solid var(--backwater-deep);
}
.marquee-track {
  display: flex; gap: 80px; white-space: nowrap;
  animation: marquee 55s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.marquee span {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(28px, 3.6vw, 48px);
}
.marquee .star { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section head ───────────────────────────────────── */
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 64px; }
.section-head-row { display: flex; align-items: baseline; gap: 28px; flex-wrap: wrap; }
.section-head h2 { max-width: 18ch; }
.section-intro {
  font-family: var(--f-display); font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55; color: var(--ink-soft); max-width: 64ch; margin-top: 4px;
}

/* ── Story ───────────────────────────────────────────── */
.story-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.story-aside {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 24px;
}
.story-aside-photo { aspect-ratio: 3 / 4; overflow: hidden; }
.story-aside-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.story-aside-caption { display: flex; flex-direction: column; gap: 6px; }
.story-aside-caption .label-mono { color: var(--gold-deep); }
.story-body { display: flex; flex-direction: column; gap: 28px; }
.story-body p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); max-width: 60ch; }
.story-body p:first-of-type::first-letter {
  font-family: var(--f-display); font-size: 78px; line-height: 0.85;
  float: left; margin: 6px 14px 0 -2px; color: var(--gold); font-style: italic;
}
.story-pull {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(26px, 2.6vw, 38px); line-height: 1.25;
  color: var(--backwater); padding: 28px 0; border-left: 2px solid var(--gold);
  padding-left: 32px; max-width: 32ch;
}
.story-aside-quote { font-size: 19px; color: var(--teak); line-height: 1.4; }

/* ── Full-bleed lake band ───────────────────────────── */
.bleed-band { position: relative; width: 100%; height: clamp(320px, 52vw, 660px); overflow: hidden; }
.bleed-band img { width: 100%; height: 100%; object-fit: cover; }
.bleed-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px var(--gutter) 24px;
  background: linear-gradient(0deg, rgba(7, 26, 21, 0.75), transparent);
}
.bleed-cap .label-mono { color: var(--ivory-deep); }

/* ── Why Direct (dark section — OTA pitch) ───────────── */
.why-direct { background: var(--backwater); color: var(--ivory-deep); }
.why-direct h2 { color: var(--ivory); }
.why-direct .eyebrow { color: var(--gold); }
.why-direct .section-intro { color: rgba(250, 244, 230, 0.82); }
.direct-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  margin-top: 60px;
}
.direct-card {
  border: 1px solid rgba(255,255,255,0.12);
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 20px;
}
.direct-card-num { font-family: var(--f-mono); font-size: 12px; color: var(--gold); letter-spacing: 0.12em; }
.direct-card h3 { font-size: clamp(28px, 2.6vw, 38px); line-height: 1.15; color: var(--ivory); }
.direct-card p { color: rgba(250, 244, 230, 0.75); max-width: 48ch; font-size: 15px; line-height: 1.7; }
.direct-card h3 em { font-style: italic; color: var(--gold); }
.direct-perks {
  margin-top: 80px; padding-top: 60px; border-top: 1px solid rgba(255,255,255,0.12);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.perk { display: flex; flex-direction: column; gap: 12px; }
.perk-icon {
  width: 48px; height: 48px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: var(--f-display); font-size: 22px; font-style: italic;
}
.perk h4 { color: var(--ivory); font-size: clamp(18px, 1.6vw, 22px); }
.perk p { color: rgba(250, 244, 230, 0.65); font-size: 13px; line-height: 1.6; max-width: 24ch; }
.direct-quote {
  margin: 60px auto 0; max-width: 30ch; text-align: center;
}
.direct-quote p {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px); line-height: 1.3; color: var(--ivory); max-width: none;
}
.direct-quote-by {
  display: block; margin-top: 22px; font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase;
}

/* ── Suites ──────────────────────────────────────────── */
.suites { background: var(--ivory-soft); }
.suites-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.suite {
  display: flex; flex-direction: column; gap: 14px;
}
.suite--feature { grid-column: span 7; }
.suite--side { grid-column: span 5; }
.suite--third { grid-column: span 4; }
.suite-photo {
  aspect-ratio: 4 / 5; overflow: hidden; position: relative;
  background: var(--ivory-deep);
}
.suite--feature .suite-photo { aspect-ratio: 4 / 4.6; }
.suite--third .suite-photo { aspect-ratio: 4 / 4.6; }
.suite-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
  filter: saturate(0.92);
}
.suite:hover .suite-photo img { transform: scale(1.04); }
.suite-meta { display: flex; justify-content: space-between; align-items: baseline; }
.suite-name { font-family: var(--f-display); font-size: clamp(22px, 2vw, 30px); font-style: italic; color: var(--ink); }
.suite-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--gold-deep); }
.suite-detail { font-size: 13px; color: var(--muted); }
.suite-photo { position: relative; }
.suite-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ivory); background: rgba(7, 26, 21, 0.7);
  padding: 6px 10px; backdrop-filter: blur(4px);
}

/* ── Experiences (programmes) ───────────────────────── */
.experiences-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--line);
  border: 1px solid var(--line);
}
.exp-card {
  background: var(--ivory-deep); padding: clamp(34px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.3s ease;
  position: relative;
}
.exp-card:hover { background: var(--ivory-soft); }
.exp-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--gold-deep); }
.exp-card h3 { font-size: clamp(26px, 2.4vw, 36px); }
.exp-card h3 em { font-style: italic; color: var(--backwater); }
.exp-duration {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-soft);
}
.exp-duration .dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }
.exp-card p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-width: 42ch; }
.exp-card .enquire {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--backwater); border-bottom: 1px solid var(--backwater);
  padding-bottom: 4px; align-self: flex-start;
  transition: gap 0.2s ease;
}
.exp-card .enquire:hover { gap: 16px; }
.exp-card--wide { grid-column: span 2; }
@media (max-width: 1024px) { .exp-card--wide { grid-column: span 1; } }

/* ── A Day on the Lake (rhythm) ─────────────────────── */
.rhythm { background: var(--ivory); }
.rhythm-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.rhythm-timeline { display: flex; flex-direction: column; }
.rhythm-row {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 32px; align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.rhythm-row:first-child { padding-top: 0; }
.rhythm-row:last-child { border-bottom: none; }
.rhythm-time {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(30px, 3vw, 44px); color: var(--gold);
}
.rhythm-event h4 { font-size: clamp(20px, 1.8vw, 26px); margin-bottom: 6px; }
.rhythm-event p { font-size: 14px; color: var(--ink-soft); max-width: 40ch; line-height: 1.6; }
.rhythm-aside-photo { aspect-ratio: 3 / 4; overflow: hidden; position: relative; }
.rhythm-aside-photo img { width: 100%; height: 100%; object-fit: cover; }
.rhythm-aside-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 12px;
  color: var(--ivory); background: linear-gradient(0deg, rgba(7, 26, 21, 0.72), transparent);
}

/* ── The Lake (grounds) ─────────────────────────────── */
.the-lake { background: var(--ivory); }
.grounds-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px; gap: clamp(14px, 1.6vw, 22px);
}
.ground { position: relative; overflow: hidden; display: block; }
.ground img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95); transition: transform 1.1s ease; }
.ground:hover img { transform: scale(1.05); }
.ground--big { grid-column: span 6; grid-row: span 2; }
.ground { grid-column: span 3; grid-row: span 1; }
.ground--big { grid-column: span 6; }
.ground-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 12px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ivory); background: linear-gradient(0deg, rgba(7, 26, 21, 0.72), transparent);
}

/* ── The Kerala Table (cuisine) ─────────────────────── */
.cuisine { background: var(--ivory-deep); }
.cuisine-intro {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: 64px;
}
.cuisine-intro p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); max-width: 56ch; }
.cuisine-photos {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.cuisine-photo { overflow: hidden; aspect-ratio: 1 / 1; }
.cuisine-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.94); transition: transform 1s ease; }
.cuisine-photo:hover img { transform: scale(1.05); }
.cuisine-photo--tall { grid-column: span 4; aspect-ratio: 3/4; }
.cuisine-photo--wide { grid-column: span 8; aspect-ratio: 16/10; }
.cuisine-photo--sq  { grid-column: span 4; }
.cuisine-photo--sq2 { grid-column: span 4; }
.cuisine-photo--sq3 { grid-column: span 4; }

/* ── Guest Voices ───────────────────────────────────── */
.voices { background: var(--backwater-deep); color: var(--ivory-deep); }
.voices h2 { color: var(--ivory); }
.voices .eyebrow { color: var(--gold); }
.voices-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.voice--feature {
  padding: clamp(34px, 4vw, 56px);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.025);
  display: flex; flex-direction: column; gap: 24px;
}
.voice-quote {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px); line-height: 1.5;
  color: var(--ivory);
}
.voice-quote::before { content: "\201C"; color: var(--gold); font-size: 1.6em; line-height: 0; vertical-align: -0.35em; margin-right: 4px; }
.voice-quote::after  { content: "\201D"; color: var(--gold); font-size: 1.6em; line-height: 0; vertical-align: -0.35em; margin-left: 4px; }
.voice-foot {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 14px;
  justify-content: space-between;
}
.voice-name { display: flex; flex-direction: column; gap: 4px; }
.voice-name strong { font-family: var(--f-body); font-weight: 500; color: var(--ivory); font-size: 14px; letter-spacing: 0.02em; }
.voice-name .label-mono { color: var(--gold); }
.voices-flags { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12); text-align: center; }
.voices-flags-label { color: var(--gold); display: block; margin-bottom: 26px; }
.flags-row { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: center; }
.flag-chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-style: italic; font-size: 22px; color: var(--ivory-deep);
}

/* ── Around Cherthala ───────────────────────────────── */
.around { background: var(--ivory-soft); }
.around-feature { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(16px, 2vw, 28px); margin-bottom: 56px; }
.around-feature-photo { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.around-feature-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95); }
.calicut-list { border-top: 1px solid var(--line); }
.place-row {
  display: grid; grid-template-columns: minmax(220px, 1fr) auto minmax(110px, max-content);
  grid-template-areas: "name dot dist" "desc desc desc";
  gap: 6px 18px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.place-row .place-name { grid-area: name; font-family: var(--f-display); font-size: clamp(24px, 2.4vw, 34px); font-style: italic; color: var(--ink); }
.place-row .place-dot { grid-area: dot; height: 1px; background: var(--line-warm); align-self: center; min-width: 30px; }
.place-row .place-distance { grid-area: dist; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--gold-deep); text-align: right; }
.place-row p { grid-area: desc; font-size: 15px; line-height: 1.6; color: var(--ink-soft); max-width: 70ch; margin-top: 2px; }

/* ── Reservations ────────────────────────────────────── */
.reserve { background: var(--ink); color: var(--ivory-deep); }
.reserve h2 { color: var(--ivory); }
.reserve .eyebrow { color: var(--gold); }
.reserve-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  margin-top: 60px;
}
.reserve-aside p { color: rgba(250, 244, 230, 0.72); max-width: 36ch; line-height: 1.75; }
.reserve-aside .label-mono { color: var(--gold); margin-top: 32px; display: block; }
.reserve-aside-line {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.reserve-aside-line:last-of-type { border-bottom: none; }
.reserve-aside-line a { color: var(--ivory); font-family: var(--f-display); font-size: 20px; font-style: italic; }
.wa-cta-block {
  margin-top: 32px; padding: 28px; background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: flex; flex-direction: column; gap: 12px;
}
.wa-cta-block .label-mono { color: #4de88c; margin-top: 0; }
.wa-cta-block p { color: rgba(250,244,230,0.72); font-size: 14px; max-width: 32ch; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: span 2; }
.field label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 12px 0; color: var(--ivory);
  font-family: var(--f-display); font-size: 20px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(250, 244, 230, 0.3); font-style: italic; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--gold); }
.field select option { background: var(--ink); color: var(--ivory); }
.field textarea { resize: vertical; min-height: 90px; font-size: 17px; font-family: var(--f-body); line-height: 1.6; }
.form-submit {
  grid-column: span 2;
  margin-top: 20px;
  padding: 20px 36px;
  background: var(--gold); color: var(--backwater-deep);
  font-family: var(--f-body); font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid var(--gold);
  cursor: pointer;
  justify-self: start;
}
.form-submit:hover { background: var(--ivory); border-color: var(--ivory); }

/* ── Footer ─────────────────────────────────────────── */
.foot { background: var(--backwater-deep); color: rgba(250, 244, 230, 0.7); padding: 80px 0 32px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot-wordmark { font-family: var(--f-display); font-style: italic; font-size: 30px; color: var(--ivory); }
.foot-sub { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.foot-tag { margin-top: 18px; font-family: var(--f-display); font-style: italic; font-size: 17px; color: rgba(250, 244, 230, 0.8); max-width: 30ch; }
.foot-moksha {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
}
.foot-col h5 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.foot-col a { display: block; padding: 5px 0; color: rgba(250, 244, 230, 0.7); font-size: 14px; transition: color 0.2s ease; }
.foot-col a:hover { color: var(--ivory); }
.foot-bottom {
  margin-top: 64px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250, 244, 230, 0.5);
}
.foot-bottom a { color: var(--gold); }

/* ── Floating WhatsApp button ───────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── Scroll reveals — fallback-safe ─────────────────── */
.reveal { will-change: opacity, transform; }
.reveal--hidden { opacity: 0; transform: translateY(36px); }
.reveal--in { opacity: 1; transform: translateY(0); transition: opacity 1s ease, transform 1.1s ease; }

/* ── Image fallback ──────────────────────────────────── */
.img-fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ivory-deep), var(--gold));
  color: var(--backwater);
  font-family: var(--f-display); font-style: italic; font-size: 20px;
  min-height: 240px;
  text-align: center;
  padding: 24px;
}
.img-fallback-cap { display: block; max-width: 80%; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-links.nav-links--open {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250, 244, 230, 0.98);
    backdrop-filter: blur(12px);
    padding: 28px var(--gutter) 32px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(26,16,8,0.3);
  }
  .nav-links.nav-links--open a { font-size: 15px; letter-spacing: 0.12em; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-photo { aspect-ratio: 4 / 3; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-aside { position: static; }
  .direct-grid { grid-template-columns: 1fr; }
  .direct-perks { grid-template-columns: repeat(2, 1fr); }
  .suites-grid { grid-template-columns: 1fr 1fr; }
  .suite--feature, .suite--side, .suite--third { grid-column: span 1; }
  .experiences-grid { grid-template-columns: 1fr; }
  .rhythm-grid { grid-template-columns: 1fr; gap: 40px; }
  .cuisine-intro { grid-template-columns: 1fr; gap: 32px; }
  .voices-feature { grid-template-columns: 1fr; }
  .around-feature { grid-template-columns: 1fr; }
  .reserve-grid { grid-template-columns: 1fr; gap: 48px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grounds-grid { grid-auto-rows: 200px; }
  .ground--big { grid-column: span 6; grid-row: span 2; }
  .ground { grid-column: span 6; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .nav { padding: 16px var(--gutter); }
  .nav-cta { display: none; }
  .hero { padding-top: 100px; min-height: auto; }
  .hero-title { font-size: clamp(44px, 13vw, 70px); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-meta-row { flex-wrap: wrap; gap: 12px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 16px; }
  .btn-primary { justify-content: center; }
  .btn-ghost { justify-content: center; }
  .btn-wa { justify-content: center; }
  .story-pull { font-size: 22px; padding-left: 22px; }
  .direct-perks { grid-template-columns: 1fr 1fr; }
  .suites-grid { grid-template-columns: 1fr; }
  .rhythm-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .cuisine-photos { grid-template-columns: 1fr 1fr; }
  .cuisine-photo--tall, .cuisine-photo--wide,
  .cuisine-photo--sq, .cuisine-photo--sq2, .cuisine-photo--sq3 {
    grid-column: span 1; aspect-ratio: 1 / 1;
  }
  .form { grid-template-columns: 1fr; }
  .field--full { grid-column: span 1; }
  .form-submit { grid-column: span 1; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 14px; text-align: center; }
  section { padding: 72px 0; }
  .grounds-grid { display: flex; flex-direction: column; }
  .ground, .ground--big { height: 240px; }
  .place-row { grid-template-columns: 1fr auto; grid-template-areas: "name dist" "desc desc"; }
  .place-row .place-dot { display: none; }
  .bleed-band { height: 300px; }
  .flag-chip { font-size: 18px; }
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}
