/* EZHIMALA AYURVEDA WELLNESS — Editorial Heritage
   Palette: warm sand + terracotta ember + sage + ink
   Fonts: Cormorant Garamond (display) + Inter Tight (body) + JetBrains Mono (labels) */

:root {
  /* Brand world tokens — named after the landscape */
  --sand:         #E8D5B0;   /* warm sand — main ground */
  --sand-deep:    #D9C9A3;
  --sand-soft:    #F4EDE0;
  --ivory:        #FAF6EE;

  --sage:         #5C7A4E;   /* forest sage — primary dark */
  --sage-deep:    #3D5234;
  --sage-soft:    #7A9966;

  --ember:        #B5572A;   /* terracotta — accent / spot */
  --ember-deep:   #8E4220;
  --ember-soft:   #D4845A;

  --ink:          #1A1610;
  --ink-soft:     #3C3026;
  --muted:        #5A5244;
  --muted-2:      #7A7060;

  --line:         rgba(26, 22, 16, 0.13);
  --line-warm:    rgba(181, 87, 42, 0.22);

  --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;
  --f-arabic:     "Noto Naskh Arabic", "Scheherazade New", serif;

  --max:          1320px;
  --gutter:       clamp(20px, 4vw, 56px);
  --ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { 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(--sand);
  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; }

/* ── Language toggle visibility ─────────────────────── */
.t-de, .t-ar { display: none; }
.t-en { display: inline; }

/* Block-level language variants */
p.t-de, p.t-ar, h1.t-de, h1.t-ar,
p.t-en, h1.t-en { display: none; }
p.t-en, h1.t-en { display: block; }

[data-lang="de"] .t-en { display: none !important; }
[data-lang="de"] .t-de { display: inline !important; }
[data-lang="de"] p.t-de, [data-lang="de"] h1.t-de,
[data-lang="de"] p.section-intro.t-de { display: block !important; }
[data-lang="de"] p.t-en, [data-lang="de"] h1.t-en,
[data-lang="de"] p.section-intro.t-en { display: none !important; }

[data-lang="ar"] .t-en { display: none !important; }
[data-lang="ar"] .t-ar { display: inline !important; }
[data-lang="ar"] p.t-ar, [data-lang="ar"] h1.t-ar,
[data-lang="ar"] p.section-intro.t-ar { display: block !important; }
[data-lang="ar"] p.t-en, [data-lang="ar"] h1.t-en,
[data-lang="ar"] p.section-intro.t-en { display: none !important; }

/* Arabic font for AR lang elements */
[lang="ar"], [dir="rtl"] { font-family: var(--f-arabic); }
[data-lang="ar"] .hero-title { font-family: var(--f-arabic); line-height: 1.4; }

/* ── Film-grain overlay (signature) ─────────────────── */
@media (prefers-reduced-motion: no-preference) {
  body::after {
    content: "";
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: 0.045;
  }
}

/* ── GSAP reveal system — always visible first ───────── */
.reveal { opacity: 1; transform: none; }
.reveal--hidden { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal--in { opacity: 1; transform: none; }
.img-fallback { background: var(--sand-deep); display: flex; align-items: center; justify-content: center; min-height: 200px; }
.img-fallback-cap { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; padding: 20px; text-align: center; }

/* ── 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(--ember-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, 120px); }
h2 { font-size: clamp(36px, 5.5vw, 76px); }
h3 { font-size: clamp(26px, 3.2vw, 42px); }
h4 { font-size: clamp(20px, 2vw, 28px); }
h5 { font-family: var(--f-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; color: var(--ember-deep); margin-bottom: 18px; }
.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; }

/* ── Language toggle nav widget ─────────────────────── */
.nav-lang {
  display: flex; align-items: center; gap: 6px;
  order: -1;
}
.lang-btn {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  background: none; border-left: none; border-right: none; border-top: none;
  cursor: pointer;
}
.lang-btn.active,
.lang-btn:hover {
  color: var(--ember);
  border-bottom-color: var(--ember);
}
.lang-sep {
  font-size: 10px;
  color: var(--muted);
  opacity: 0.5;
  font-family: var(--f-mono);
}

/* ── 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(232, 213, 176, 0.92) 0%, rgba(232, 213, 176, 0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.4s ease;
  gap: 20px;
}
.nav.scrolled {
  background: rgba(244, 237, 224, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 24px; height: 24px;
  color: var(--sage);
  flex-shrink: 0;
}
.nav-logo-text { font-family: var(--f-display); font-style: italic; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 11px; 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(--ember); }
.nav-cta {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 11px 22px; border: 1px solid var(--sage); color: var(--sage);
  font-weight: 500;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--sage); color: var(--sand-soft); }
.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(--sand);
}
.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;
  flex-wrap: wrap;
}
.hero-meta-row .dot { width: 4px; height: 4px; background: var(--ember); border-radius: 50%; flex-shrink: 0; }
.hero-title { font-size: clamp(52px, 7.5vw, 118px); line-height: 0.94; }
.hero-title em { font-style: italic; color: var(--sage); }
.hero-tag {
  font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5;
  color: var(--ink-soft); max-width: 46ch;
  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 32px;
  background: var(--sage); color: var(--ivory);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--sage);
}
.btn-primary:hover { background: var(--sage-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);
}
.hero-right { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--sand-deep);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}
.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(30px, 3.8vw, 52px);
  color: var(--sage);
  line-height: 1;
}
.hero-stat-num em { font-style: italic; color: var(--ember); }
.hero-stat-label { margin-top: 10px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); max-width: 18ch; line-height: 1.5; }

/* ── Heritage scroll marquee ─────────────────────────── */
.marquee {
  background: var(--sage); color: var(--sand-soft);
  padding: 26px 0; overflow: hidden;
  border-top: 1px solid var(--sage-deep);
  border-bottom: 1px solid var(--sage-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(26px, 3.4vw, 46px);
}
.marquee .star { color: var(--ember-soft); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Origin / Story ─────────────────────────────────── */
.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: 20ch; }
.section-intro { max-width: 62ch; font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin-top: 12px; }

.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; background: var(--sand-deep); }
.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(--ember-deep); }
.story-aside-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--sage);
}
.story-body { display: flex; flex-direction: column; gap: 28px; }
.story-body p { font-size: 17px; line-height: 1.8; color: var(--ink-soft); max-width: 60ch; }
.story-body p:first-of-type::first-letter {
  font-family: var(--f-display); font-size: 76px; line-height: 0.85;
  float: left; margin: 6px 14px 0 -2px; color: var(--ember); font-style: italic;
}
.story-pull {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(22px, 2.4vw, 34px); line-height: 1.3;
  color: var(--sage); padding: 24px 0; border-left: 2px solid var(--ember);
  padding-left: 30px; max-width: 36ch;
}

/* ── Full-bleed band ─────────────────────────────────── */
.bleed-band {
  width: 100%; aspect-ratio: 16 / 7;
  overflow: hidden; position: relative;
  background: var(--sand-deep);
}
.bleed-band img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88); }
.bleed-cap {
  position: absolute; bottom: 20px; right: 28px;
  color: rgba(250, 246, 238, 0.82);
}

/* ── The Practice (sage dark bg) ────────────────────── */
.practice { background: var(--sage); color: var(--sand-soft); }
.practice h2, .practice h3, .practice h4 { color: var(--ivory); }
.practice .eyebrow { color: var(--ember-soft); }
.practice .section-head h2 { max-width: 24ch; }
.practice-quote {
  background: rgba(255,255,255,0.07);
  border-left: 2px solid var(--ember-soft);
  padding: clamp(24px, 3vw, 40px);
  margin-bottom: 56px;
}
.practice-quote p {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.45;
  color: var(--ivory); max-width: 56ch;
}
.practice-quote-by {
  display: block; margin-top: 16px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ember-soft);
}
.practice-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  margin-top: 20px;
}
.practice-card {
  border: 1px solid rgba(255,255,255,0.14);
  padding: clamp(32px, 4vw, 52px);
  display: flex; flex-direction: column; gap: 20px;
}
.practice-card-num { font-family: var(--f-mono); font-size: 12px; color: var(--ember-soft); letter-spacing: 0.12em; }
.practice-card h3 { font-size: clamp(26px, 2.4vw, 36px); line-height: 1.15; }
.practice-card p { color: rgba(244, 237, 224, 0.78); max-width: 48ch; font-size: 15px; line-height: 1.75; }
.practice-card .italic { font-family: var(--f-display); font-style: italic; color: var(--ember-soft); }
.practice-badge {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--ember-soft); color: var(--ember-soft);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  align-self: flex-start;
}
.practice-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.physicians {
  margin-top: 80px; padding-top: 56px; border-top: 1px solid rgba(255,255,255,0.12);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.physician { display: flex; flex-direction: column; gap: 14px; }
.physician-photo {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--ember); display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 42px; color: var(--ivory);
  font-style: italic;
}
.physician h4 { color: var(--ivory); font-size: 30px; }
.physician .label-mono { color: var(--ember-soft); }
.physician p { color: rgba(244, 237, 224, 0.72); font-size: 15px; max-width: 44ch; }
.resident-line {
  margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 12px;
}
.resident-line .label-mono { color: var(--ember-soft); }
.resident-line p { color: rgba(244, 237, 224, 0.74); font-size: 15px; max-width: 60ch; }

/* ── Programs ──────────────────────────────────────── */
.programs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--line);
  border: 1px solid var(--line);
}
.program-card {
  background: var(--sand); padding: clamp(32px, 4vw, 52px);
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.3s ease;
  position: relative;
}
.program-card:hover { background: var(--sand-soft); }
.program-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ember-deep); }
.program-card h3 { font-size: clamp(24px, 2.2vw, 34px); line-height: 1.15; }
.program-card h3 em { font-style: italic; color: var(--sage); }
.program-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);
}
.program-duration .dot { width: 3px; height: 3px; background: var(--ember); border-radius: 50%; flex-shrink: 0; }
.program-card p { font-size: 15px; line-height: 1.75; color: var(--ink-soft); max-width: 44ch; }
.program-card .enquire {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  color: var(--sage); border-bottom: 1px solid var(--sage);
  padding-bottom: 3px; align-self: flex-start;
  transition: gap 0.2s ease;
}
.program-card .enquire:hover { gap: 14px; }
.program-card--wide { grid-column: span 2; }
@media (max-width: 1024px) { .program-card--wide { grid-column: span 1; } }

/* ── Rooms ─────────────────────────────────────────── */
.rooms { background: var(--sand-soft); }
.rooms-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2vw, 32px);
  margin-top: 56px;
}
.room { display: flex; flex-direction: column; gap: 14px; }
.room--feature { grid-column: span 7; }
.room--side { grid-column: span 5; }
.room--third { grid-column: span 4; }
.room-photo {
  aspect-ratio: 4 / 5; overflow: hidden; position: relative;
  background: var(--sand-deep);
}
.room--feature .room-photo { aspect-ratio: 4 / 4.6; }
.room--third .room-photo { aspect-ratio: 4 / 4.6; }
.room-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
  filter: saturate(0.90);
}
.room-photo:hover img { transform: scale(1.03); }
.room-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ivory);
  background: rgba(26, 22, 16, 0.52); padding: 5px 10px;
  backdrop-filter: blur(4px);
}
.room-meta { display: flex; flex-direction: column; gap: 4px; }
.room-name { font-family: var(--f-display); font-style: italic; font-size: 22px; color: var(--ink); }
.room-num { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.room-detail { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

/* ── Daily rhythm ───────────────────────────────────── */
.rhythm { background: var(--ivory); }
.rhythm-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  margin-top: 60px;
}
.rhythm-aside-photo {
  position: sticky; top: 100px;
  aspect-ratio: 3 / 4; overflow: hidden;
  background: var(--sand-deep);
}
.rhythm-aside-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.rhythm-aside-cap { display: block; margin-top: 14px; }
.rhythm-timeline { display: flex; flex-direction: column; }
.rhythm-row {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 32px; padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.rhythm-row:first-child { border-top: 1px solid var(--line); }
.rhythm-time {
  font-family: var(--f-mono); font-size: 13px;
  letter-spacing: 0.06em; color: var(--ember);
  font-weight: 500; padding-top: 4px;
}
.rhythm-event { display: flex; flex-direction: column; gap: 8px; }
.rhythm-event h4 { font-size: 22px; }
.rhythm-event p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-width: 52ch; }

/* ── Grounds/Landscape ──────────────────────────────── */
.grounds { background: var(--sand); }
.grounds-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.6vw, 24px);
  margin-top: 56px;
}
.ground {
  overflow: hidden; position: relative;
  aspect-ratio: 4 / 3;
  background: var(--sand-deep);
  display: block;
}
.ground--big { grid-column: span 8; aspect-ratio: 16 / 9; }
.ground { grid-column: span 4; }
.ground:nth-child(n+3) { grid-column: span 3; aspect-ratio: 1; }
.ground img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; filter: saturate(0.9); }
.ground:hover img { transform: scale(1.04); }
.ground-cap {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ivory);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ── Cuisine ─────────────────────────────────────────── */
.cuisine { background: var(--sand-soft); }
.cuisine-intro {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 5vw, 80px); margin-bottom: 56px;
}
.cuisine-intro p { font-size: 17px; line-height: 1.8; color: var(--ink-soft); max-width: 56ch; }
.cuisine-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(10px, 1.4vw, 20px);
}
.cuisine-photo { overflow: hidden; background: var(--sand-deep); }
.cuisine-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.cuisine-photo:hover img { transform: scale(1.04); }
.cuisine-photo--tall { grid-row: span 2; aspect-ratio: 2 / 3; }
.cuisine-photo--wide { grid-column: span 2; aspect-ratio: 16 / 7; }
.cuisine-photo--sq { aspect-ratio: 1; }
.cuisine-photo--sq2 { aspect-ratio: 1; }
.cuisine-photo--sq3 { aspect-ratio: 1; }

/* ── Guest voices ────────────────────────────────────── */
.voices { background: var(--sage); }
.voices h2 { color: var(--ivory); }
.voices .eyebrow { color: var(--ember-soft); }
.voices-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  margin-top: 48px;
}
.voice--feature {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
}
.voice-quote {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px); line-height: 1.5;
  color: var(--ivory); max-width: 52ch;
}
.voice-foot { display: flex; flex-direction: column; gap: 6px; }
.voice-name { display: flex; flex-direction: column; gap: 4px; }
.voice-name strong { color: var(--ivory); font-family: var(--f-display); font-size: 18px; font-weight: 400; font-style: italic; }
.voice-name .label-mono { color: var(--ember-soft); }
.voices-flags {
  margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 20px;
}
.voices-flags-label { color: var(--ember-soft); }
.flags-row { display: flex; flex-wrap: wrap; gap: 12px; }
.flag-chip {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  padding: 8px 14px; border: 1px solid rgba(255,255,255,0.18);
  color: rgba(244, 237, 224, 0.8); text-transform: uppercase;
}

/* ── Calicut / How to reach ──────────────────────────── */
.calicut { background: var(--ivory); }
.calicut-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 28px);
  margin-bottom: 56px;
}
.calicut-feature-photo {
  aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--sand-deep); position: relative;
}
.calicut-feature-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.calicut-list { display: flex; flex-direction: column; }
.place-row {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: baseline; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.place-row p { grid-column: 1 / -1; font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 62ch; }
.place-name { font-family: var(--f-display); font-style: italic; font-size: 22px; }
.place-dot { flex: 1; height: 1px; background: var(--line); min-width: 24px; }
.place-distance { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ember-deep); white-space: nowrap; }

/* ── Reservations ────────────────────────────────────── */
.reserve { background: var(--sand-soft); }
.reserve-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 100px); margin-top: 56px;
}
.reserve-aside { display: flex; flex-direction: column; gap: 20px; }
.reserve-aside p { font-size: 16px; line-height: 1.8; color: var(--ink-soft); max-width: 40ch; margin-bottom: 8px; }
.reserve-aside .label-mono { color: var(--ember-deep); margin-top: 6px; }
.reserve-aside-line a {
  font-family: var(--f-display); font-style: italic;
  font-size: 19px; color: var(--ink);
  transition: color 0.2s ease;
}
.reserve-aside-line a:hover { color: var(--sage); }
.reserve-lang-note {
  margin-top: 10px; padding: 14px 18px;
  border: 1px solid var(--ember);
  background: rgba(181, 87, 42, 0.06);
}
.reserve-lang-note .label-mono { color: var(--ember-deep); }

/* ── Form ────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border: 1px solid var(--sand-deep);
  background: var(--ivory);
  font-family: var(--f-body); font-size: 15px; color: var(--ink);
  transition: border-color 0.2s ease;
  width: 100%;
  -webkit-appearance: none; appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-submit {
  padding: 18px 34px;
  background: var(--sage); color: var(--ivory);
  font-family: var(--f-body); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: background 0.3s ease;
  border: none; align-self: flex-start;
}
.form-submit:hover { background: var(--sage-deep); }

/* ── Footer ──────────────────────────────────────────── */
.foot { background: var(--sand-deep); padding: clamp(64px, 8vw, 120px) 0 0; }
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px); padding-bottom: 60px;
}
.foot-monogram {
  font-family: var(--f-display); font-style: italic; font-size: 72px;
  color: var(--ember); line-height: 1; margin-bottom: 16px;
}
.foot-tag { font-size: 14px; line-height: 1.75; color: var(--ink-soft); max-width: 36ch; margin-top: 12px; }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col h5 { margin-bottom: 6px; }
.foot-col a { font-size: 14px; color: var(--ink-soft); transition: color 0.2s ease; line-height: 1.6; }
.foot-col a:hover { color: var(--sage); }
.foot-lang-btn {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  padding: 0; background: none; border: none; cursor: pointer;
  text-align: left; transition: color 0.2s ease;
}
.foot-lang-btn:hover { color: var(--ember); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.foot-bottom a:hover { color: var(--sage); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { max-width: 520px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .story-aside { position: static; }
  .practice-grid { grid-template-columns: 1fr; }
  .physicians { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .room--feature, .room--side, .room--third { grid-column: span 1; }
  .rhythm-grid { grid-template-columns: 1fr; }
  .rhythm-aside-photo { position: static; aspect-ratio: 16 / 7; max-width: 100%; }
  .grounds-grid { grid-template-columns: 1fr 1fr; }
  .ground--big, .ground { grid-column: span 1; aspect-ratio: 4 / 3; }
  .ground:nth-child(n+3) { grid-column: span 1; aspect-ratio: 4 / 3; }
  .voices-feature { grid-template-columns: 1fr; }
  .calicut-feature { grid-template-columns: 1fr; }
  .cuisine-intro { grid-template-columns: 1fr; }
  .reserve-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 20px; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--sand-soft); padding: 90px 40px 40px; z-index: 48; transform: translateX(100%); transition: transform 0.3s ease; }
  .nav-links.nav-links--open { display: flex; transform: translateX(0); }
  .nav-burger { display: flex; }
  .nav-lang { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .program-card--wide { grid-column: span 1; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room--feature, .room--side, .room--third { grid-column: span 1; }
  .place-row { grid-template-columns: 1fr auto; }
  .place-dot { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .cuisine-photos { grid-template-columns: 1fr; }
  .cuisine-photo--tall { grid-row: span 1; aspect-ratio: 4 / 3; }
  .cuisine-photo--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(44px, 14vw, 72px); }
  .hero-meta-row { gap: 14px; flex-wrap: wrap; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .reserve-aside-line a { font-size: 16px; }
}
