/* KOTTATHIL AYURVEDA HOSPITAL — Sandstone-Teal Heritage
   Palette: deep heritage teal + warm sandstone + brass gold
   Fonts: Cormorant Garamond (display serif) + Inter Tight (body) */

:root {
  --sandstone: #F2EBDC;
  --sandstone-deep: #E8DDC9;
  --sandstone-soft: #FBF7EE;
  --ivory: #FBF9F3;
  --teal: #2A4F4A;
  --teal-deep: #1A3530;
  --teal-soft: #3A6560;
  --brass: #B5894F;
  --brass-deep: #9A7040;
  --herb: #3D6B35;
  --ink: #1E3A3A;
  --ink-soft: #2E4A48;
  --muted: #5A4F42;
  --line: rgba(30, 58, 58, 0.12);
  --line-warm: rgba(181, 137, 79, 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;
  --f-malayalam: "Noto Serif Malayalam", Georgia, serif;

  --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(--sandstone);
  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(--brass-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(--brass); margin: 32px 0; }
.divider-brass::before, .divider-brass::after { content: ""; flex: 1; height: 1px; background: var(--brass); 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(240, 235, 224, 0.92) 0%, rgba(240, 235, 224, 0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.4s ease;
}
.nav.scrolled {
  background: rgba(240, 235, 224, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark { width: 26px; height: 26px; }
.nav-logo-img { height: 42px; width: auto; display: block; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.12)); }
.nav.scrolled .nav-logo-img { height: 38px; transition: height 0.3s ease; }
.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(--brass-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(--sandstone); }
.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(--sandstone);
}
.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(--brass); border-radius: 50%; }
.hero-title { font-size: clamp(54px, 8vw, 132px); line-height: 0.94; }
.hero-title em { font-style: italic; color: var(--teal); }
.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(--teal); 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(--teal);
}
.btn-primary:hover { background: var(--teal-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;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) 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.4);
}
.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(--teal); line-height: 1; }
.hero-stat-num em { font-style: italic; color: var(--brass); }
.hero-stat-label { margin-top: 10px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* Heritage scroll marquee */
.marquee {
  background: var(--teal); color: var(--sandstone);
  padding: 28px 0; overflow: hidden;
  border-top: 1px solid var(--teal-deep); border-bottom: 1px solid var(--teal-deep);
}
.marquee-track {
  display: flex; gap: 80px; white-space: nowrap;
  animation: marquee 50s linear infinite;
}
.marquee span {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(28px, 3.6vw, 48px);
}
.marquee .star { color: var(--brass); 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: 18ch; }
.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(--brass-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(--brass); 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(--teal); padding: 28px 0; border-left: 2px solid var(--brass);
  padding-left: 32px; max-width: 32ch;
}

/* ── The Practice ───────────────────────────────────── */
.practice { background: var(--teal); color: var(--sandstone-soft); }
.practice h2, .practice h3 { color: var(--ivory); }
.practice .eyebrow { color: var(--brass); }
.practice-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  margin-top: 60px;
}
.practice-card {
  border: 1px solid rgba(255,255,255,0.12);
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 20px;
}
.practice-card-num { font-family: var(--f-mono); font-size: 12px; color: var(--brass); letter-spacing: 0.12em; }
.practice-card h3 { font-size: clamp(28px, 2.6vw, 38px); line-height: 1.15; }
.practice-card p { color: rgba(251, 247, 238, 0.78); max-width: 48ch; font-size: 15px; line-height: 1.7; }
.practice-card .italic { font-family: var(--f-display); font-style: italic; color: var(--brass); }
.green-leaf-badge {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--brass); color: var(--brass);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  align-self: flex-start;
}
.green-leaf-badge svg { width: 18px; height: 18px; }
.physicians {
  margin-top: 80px; padding-top: 60px; 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: 120px; height: 120px; border-radius: 50%;
  background: var(--brass); display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 48px; color: var(--teal-deep);
  font-style: italic;
}
.physician h4 { color: var(--ivory); font-size: 32px; }
.physician .label-mono { color: var(--brass); }
.physician p { color: rgba(251, 247, 238, 0.7); font-size: 15px; max-width: 42ch; }

/* ── 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(--sandstone); padding: clamp(34px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.3s ease;
  position: relative;
}
.program-card:hover { background: var(--sandstone-soft); }
.program-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--brass-deep); }
.program-card h3 { font-size: clamp(26px, 2.4vw, 36px); }
.program-card h3 em { font-style: italic; color: var(--teal); }
.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(--brass); border-radius: 50%; }
.program-card p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-width: 42ch; }
.program-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(--teal); border-bottom: 1px solid var(--teal);
  padding-bottom: 4px; align-self: flex-start;
  transition: gap 0.2s ease;
}
.program-card .enquire:hover { gap: 16px; }
.program-card--wide { grid-column: span 2; }
@media (max-width: 1024px) { .program-card--wide { grid-column: span 1; } }

/* ── The Five Rooms ────────────────────────────────── */
.rooms { background: var(--sandstone-soft); }
.rooms-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.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(--sandstone-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.92);
}
.room:hover .room-photo img { transform: scale(1.04); }
.room-meta { display: flex; justify-content: space-between; align-items: baseline; }
.room-name { font-family: var(--f-display); font-size: clamp(22px, 2vw, 30px); font-style: italic; color: var(--ink); }
.room-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--brass-deep); }
.room-detail { font-size: 13px; color: var(--muted); }

/* ── Daily 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(--brass);
}
.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; }
.rhythm-aside-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── Cuisine ──────────────────────────────────────── */
.cuisine { background: var(--sandstone); }
.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(--teal-deep); color: var(--sandstone-soft); }
.voices h2 { color: var(--ivory); }
.voices .eyebrow { color: var(--brass); }
.voices-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.voice {
  padding: clamp(32px, 3.6vw, 48px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 24px;
  background: rgba(255,255,255,0.02);
}
.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: "“"; color: var(--brass); font-size: 1.6em; line-height: 0; vertical-align: -0.35em; margin-right: 4px; }
.voice-quote::after  { content: "”"; color: var(--brass); 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(--brass); }
.voice-flag { display: flex; align-items: center; gap: 10px; }
.flag {
  display: inline-flex; align-items: center;
  width: 28px; height: 20px;
  border-radius: 2px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  font-family: var(--f-mono); font-size: 10px;
  font-weight: 700; color: white;
  justify-content: center;
}
.flag-ru { background: linear-gradient(180deg, #fff 0 33%, #0039A6 33% 66%, #D52B1E 66% 100%); }
.flag-au { background: #00247D; position: relative; }
.flag-au::before { content: "★"; color: white; font-size: 10px; line-height: 1; }
.flag-nl { background: linear-gradient(180deg, #AE1C28 0 33%, #fff 33% 66%, #21468B 66% 100%); }
.flag-uk { background: #012169; position: relative; }
.flag-uk::before { content: "✚"; color: white; font-size: 14px; line-height: 1; }
.flag-ch { background: #DA291C; position: relative; }
.flag-ch::before { content: "+"; color: white; font-size: 14px; font-weight: 700; line-height: 1; }
.flag-de { background: linear-gradient(180deg, #000 0 33%, #DD0000 33% 66%, #FFCE00 66% 100%); }
.flag-us { background: linear-gradient(180deg, #B22234 0 14%, #fff 14% 28%, #B22234 28% 42%, #fff 42% 56%, #B22234 56% 70%, #fff 70% 84%, #B22234 84% 100%); position: relative; }
.flag-us::before { content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 56%; background: #3C3B6E; }
.flag-be { background: linear-gradient(90deg, #000 0 33%, #FAE042 33% 66%, #ED2939 66% 100%); }

/* ── Calicut & Beyond ──────────────────────────────── */
.calicut { background: var(--sandstone-soft); }
.calicut-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  margin-top: 60px;
}
.place {
  display: flex; flex-direction: column; gap: 16px;
}
.place-photo {
  aspect-ratio: 4 / 5; overflow: hidden;
}
.place-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); transition: transform 1s ease; }
.place:hover .place-photo img { transform: scale(1.04); }
.place-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.place-name { font-family: var(--f-display); font-size: clamp(22px, 2vw, 28px); font-style: italic; }
.place-distance { font-family: var(--f-mono); font-size: 11px; color: var(--brass-deep); letter-spacing: 0.12em; }
.place p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); }

/* ── Reservations ─────────────────────────────────── */
.reserve { background: var(--ink); color: var(--sandstone-soft); }
.reserve h2 { color: var(--ivory); }
.reserve .eyebrow { color: var(--brass); }
.reserve-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  margin-top: 60px;
}
.reserve-aside p { color: rgba(251, 247, 238, 0.72); max-width: 36ch; line-height: 1.75; }
.reserve-aside .label-mono { color: var(--brass); 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; }

.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(--brass);
}
.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(251, 247, 238, 0.3); font-style: italic; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--brass); }
.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(--brass); color: var(--teal-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(--brass);
  cursor: pointer;
  justify-self: start;
}
.form-submit:hover { background: var(--ivory); border-color: var(--ivory); }

/* ── Footer ────────────────────────────────────────── */
.foot { background: var(--teal-deep); color: rgba(251, 247, 238, 0.7); padding: 80px 0 32px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot-logo { display: flex; align-items: center; gap: 10px; color: var(--ivory); }
.foot-logo .nav-logo-mark { width: 32px; height: 32px; }
.foot-logo span { font-family: var(--f-display); font-size: 28px; letter-spacing: 0.06em; }
.foot-tag { margin-top: 18px; font-family: var(--f-display); font-style: italic; font-size: 17px; color: rgba(251, 247, 238, 0.8); max-width: 30ch; }
.foot-green {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border: 1px solid var(--brass); color: var(--brass);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
}
.foot-green svg { width: 14px; height: 14px; }
.foot-col h5 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.foot-col a { display: block; padding: 5px 0; color: rgba(251, 247, 238, 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(251, 247, 238, 0.5);
}
.foot-bottom a { color: var(--brass); }

/* ── 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 (broken image safety net) ──────── */
.img-fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sandstone-deep), var(--brass));
  color: var(--ivory);
  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%; }

/* ════ ADDED IN PREMIUM PASS ════════════════════════ */

/* Section intro + story-aside quote readability */
.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;
}
.practice .section-intro, .voices .section-intro { color: rgba(251,247,238,0.82); }
.story-aside-quote { font-size: 19px; color: var(--teal); line-height: 1.4; }

/* Full-bleed courtyard 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(20,41,41,0.72), transparent);
}
.bleed-cap .label-mono { color: var(--sandstone-soft); }

/* Practice — real quote */
.practice-quote {
  margin: 0 auto 64px; max-width: 30ch; text-align: center;
}
.practice-quote p {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(26px, 3vw, 42px); line-height: 1.3; color: var(--ivory);
  max-width: none;
}
.practice-quote-by { display: block; margin-top: 22px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--brass); text-transform: uppercase; }
.resident-line {
  margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 12px;
}
.resident-line .label-mono { color: var(--brass); }
.resident-line p { color: rgba(251,247,238,0.82); max-width: 70ch; font-size: 16px; }
.resident-line strong { color: var(--ivory); font-weight: 500; }

/* Room tag chip */
.room-photo { position: relative; }
.room-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(20,41,41,0.66);
  padding: 6px 10px; backdrop-filter: blur(4px);
}

/* THE GROUNDS */
.grounds { 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(20,41,41,0.7), transparent);
}

/* GUEST VOICES — feature + flags */
.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);
}
.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(--brass); 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(--sandstone-soft);
}

/* CALICUT — feature photos + list */
.calicut-feature { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(16px, 2vw, 28px); margin-bottom: 56px; }
.calicut-feature-photo { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.calicut-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(--brass-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; }
.place-row p em { font-style: italic; }

/* Rhythm aside caption */
.rhythm-aside-photo { position: relative; }
.rhythm-aside-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 12px; color: var(--ivory); background: linear-gradient(0deg, rgba(20,41,41,0.7), transparent); }

/* Hero stat count-up: avoid layout shift */
.hero-stat-num { font-variant-numeric: tabular-nums; }

/* ── 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(244, 237, 222, 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,20,16,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; }
  .practice-grid { grid-template-columns: 1fr; }
  .physicians { grid-template-columns: 1fr; gap: 48px; }
  .programs-grid { 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; gap: 40px; }
  .cuisine-intro { grid-template-columns: 1fr; gap: 32px; }
  .voices-grid { grid-template-columns: 1fr; }
  .voices-feature { grid-template-columns: 1fr; }
  .calicut-grid { grid-template-columns: 1fr 1fr; }
  .calicut-feature { grid-template-columns: 1fr; }
  .reserve-grid { grid-template-columns: 1fr; gap: 48px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* Grounds → simpler 2-col on tablet */
  .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; }
  .nav-logo { font-size: 19px; }
  .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; }
  .story-pull { font-size: 22px; padding-left: 22px; }
  .rooms-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;
  }
  .calicut-grid { grid-template-columns: 1fr; }
  .calicut-feature { grid-template-columns: 1fr; }
  .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 → single column stack on phone */
  .grounds-grid { display: flex; flex-direction: column; }
  .ground, .ground--big { height: 240px; }
  /* Place rows → stack name/distance */
  .place-row { grid-template-columns: 1fr auto; grid-template-areas: "name dist" "desc desc"; }
  .place-row .place-dot { display: none; }
  .bleed-band { height: 300px; }
  .practice-quote p { font-size: 24px; }
  .flag-chip { font-size: 18px; }
  .nav-logo-img { height: 34px; }
}
