/* =====================================================
   Garbha · Salalkar Hospital — design system
   ===================================================== */

:root {
  /* palette */
  --bg: #FBF6EC;
  --bg-soft: #F4EBD9;
  --surface: #FFFFFF;
  --ink: #2A1F18;
  --ink-soft: #6B5B4E;
  --ink-faint: #9B8B7D;
  --line: #E6D9C2;
  --line-soft: #EFE4CF;

  --terra: #B85742;
  --terra-dark: #7A2E1F;
  --terra-soft: #E8B7A7;
  --terra-tint: #F6E1D4;

  --sage: #6B7F5A;
  --sage-soft: #C5CFB3;

  --gold: #C89B3F;
  --gold-soft: #E8D199;

  --plum: #4A2E3E;

  /* type */
  --serif: 'Cormorant Garamond', 'Tiro Devanagari Marathi', Georgia, serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --deva: 'Tiro Devanagari Marathi', 'Manrope', sans-serif;

  /* layout */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(42,31,24,.04), 0 4px 12px rgba(42,31,24,.04);
  --shadow-md: 0 2px 6px rgba(42,31,24,.06), 0 12px 28px rgba(42,31,24,.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Keyboard focus ring — visible for keyboard users, hidden for mouse/touch */
:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; border-radius: 3px; }
/* Light variant on dark sections so the ring stays visible */
.annbar :focus-visible,
.section-sangeet :focus-visible,
.section-book :focus-visible,
.footer :focus-visible { outline-color: var(--gold-soft); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* When the body switches lang to Marathi/Hindi we lean on Devanagari font */
body[data-lang="mr"], body[data-lang="hi"] { font-family: var(--deva); }
body[data-lang="mr"] .display, body[data-lang="hi"] .display,
body[data-lang="mr"] .h2, body[data-lang="hi"] .h2 { font-family: var(--deva); }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* =====================================================
   Typography
   ===================================================== */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0 0 24px;
  color: var(--ink);
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--terra); font-weight: 500; }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.005em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--terra); }
.h2-light { color: var(--bg); }

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.lede-light { color: rgba(251, 246, 236, .82); }

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow-light { color: var(--gold-soft); }
.eyebrow-bullet {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
  flex: none;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 16px 26px; font-size: 15px; }
.btn-primary { background: var(--terra); color: #FBF6EC; }
.btn-primary:hover { background: var(--terra-dark); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); }
.btn-light { background: var(--bg); color: var(--terra-dark); }
.btn-light:hover { background: var(--surface); }

/* =====================================================
   Announcement bar
   ===================================================== */
.annbar {
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
}
.annbar-row {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.annbar-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,155,63,.5); }
  50% { box-shadow: 0 0 0 6px rgba(200,155,63,0); }
}
.annbar-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-soft);
  font-weight: 600;
  margin-left: auto;
}
.annbar-cta:hover { color: var(--bg); }

/* =====================================================
   Nav
   ===================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 236, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--terra); }
.brand-mark-img {
  width: 56px;
  height: 56px;
  flex: none;
  object-fit: contain;
}
.brand-logo-footer {
  display: block;
  height: 110px;
  width: auto;
  filter: brightness(1.4) saturate(1.05);
}
.brand-footer { display: inline-block; }
.brand-mark { width: 36px; height: 36px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .005em;
  color: var(--ink);
}
.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-top: 4px;
  color: var(--ink-faint);
  font-weight: 600;
}

.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--terra); }

.nav-actions { display: inline-flex; align-items: center; gap: 16px; }
.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--surface);
}
.lang-btn {
  background: transparent;
  border: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.lang-btn.is-active {
  background: var(--ink);
  color: var(--bg);
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-row { padding: 14px 20px; gap: 12px; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 15px;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; }
  .nav-book { display: none; }
  .brand-sub { display: none; }
  .brand-mark-img { width: 42px; height: 42px; }
  .brand-logo-footer { height: 84px; }
  .lang-btn { padding: 5px 9px; font-size: 11px; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 20px; }
  .annbar-row { padding: 9px 16px; font-size: 12px; }
  .annbar-cta { margin-left: 0; }
}

/* =====================================================
   Hero
   ===================================================== */
.hero { position: relative; padding: 80px 0 40px; overflow: hidden; }
@media (max-width: 720px) {
  .hero { padding: 40px 0 20px; }
  .display { font-size: clamp(38px, 10vw, 56px); }
  .hero-lede { font-size: 16px; }
  .hero-cta { width: 100%; flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-card { padding: 22px; }
  .hero-card-name { font-size: 20px; }
  .hero-card-doc { gap: 12px; }
  .hero-card-portrait { width: 60px; height: 60px; }
}
.hero-decor {
  position: absolute; inset: 0;
  pointer-events: none;
  display: flex; justify-content: flex-end; align-items: flex-start;
}
.hero-decor-svg { width: min(900px, 80vw); margin-top: -100px; margin-right: -150px; opacity: .85; }

.hero-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 920px) {
  .hero-row { grid-template-columns: 1fr; }
}

.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 32px;
}

.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; }

.hero-trust { margin-top: 40px; }
.hero-trust-row { display: inline-flex; align-items: center; gap: 16px; }
.hero-avatars { display: flex; }
.ava {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background-size: cover; background-position: center;
}
.ava-1 { background: linear-gradient(135deg, #E8B7A7, #B85742); margin-left: 0; }
.ava-2 { background: linear-gradient(135deg, #C5CFB3, #6B7F5A); }
.ava-3 { background: linear-gradient(135deg, #E8D199, #C89B3F); }
.ava-4 { background: linear-gradient(135deg, #D4B5C8, #4A2E3E); }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.hero-trust-text { margin: 4px 0 0; font-size: 13px; color: var(--ink-soft); }

/* hero card */
.hero-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
  position: relative;
}
.hero-card-tag {
  position: absolute; top: -12px; left: 24px;
  background: var(--terra); color: var(--bg);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-card-doc {
  display: flex; gap: 16px; align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 20px;
}
.hero-card-portrait {
  width: 76px;
  height: 76px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #E8C8A8, #C99B6F);
}
.hero-card-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-card-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
}
.hero-card-cred {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terra);
  font-weight: 600;
  margin: 4px 0 0;
}
.hero-card-role {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 6px 0 0;
}
.hero-card-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; font-size: 14px; }
.hero-card-list li { display: flex; gap: 10px; align-items: center; }
.tick { width: 18px; height: 18px; flex: none; color: var(--sage); }
.hero-card-wa {
  display: inline-flex; align-items: center; gap: 8px;
  color: #128C7E; font-weight: 600; font-size: 14px;
  padding-top: 8px; border-top: 1px solid var(--line-soft);
  width: 100%; justify-content: center;
}

/* hero strip */
.hero-strip {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 28px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-radius: 0;
}
.hero-strip { padding: 28px 0; }
.strip-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 6px;
  border-right: 1px solid var(--line);
}
.strip-item:last-child { border-right: 0; }
.strip-item strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--terra);
  line-height: 1;
}
.strip-item span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .strip-item { border-right: 0; }
}

/* =====================================================
   Section base
   ===================================================== */
.section { padding: 100px 0; position: relative; }
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .h2 { font-size: clamp(28px, 7vw, 38px); }
  .lede { font-size: 16px; }
}
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .lede { margin-left: auto; margin-right: auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }

/* =====================================================
   About card
   ===================================================== */
.about-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.about-card-head { padding-bottom: 24px; border-bottom: 1px solid var(--line-soft); margin-bottom: 24px; }
.about-card-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-faint); margin: 0 0 6px; font-weight: 600; }
.about-card-title { font-family: var(--serif); font-size: 36px; font-weight: 500; margin: 0; }
.about-card-place { color: var(--ink-soft); margin: 6px 0 0; }
.about-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-card-grid .num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  color: var(--terra);
  line-height: 1;
}
.about-card-grid .lbl { font-size: 13px; color: var(--ink-soft); margin: 6px 0 0; }
.about-card-link {
  display: inline-block; margin-top: 24px;
  color: var(--terra); font-weight: 600; font-size: 14px;
  border-bottom: 1px solid currentColor;
}

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* =====================================================
   Journey
   ===================================================== */
.journey-tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}
.journey-track {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}
.journey-track:last-child { border-right: 0; }
.journey-track-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--terra); margin: 0; }
.journey-track-theme { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 6px 0 0; }

@media (max-width: 720px) {
  .journey-tracks { grid-template-columns: 1fr; }
  .journey-track { border-right: 0; border-bottom: 1px solid var(--line); }
  .journey-track:last-child { border-bottom: 0; }
}

.months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .months { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .months { grid-template-columns: 1fr; } }
.month {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 24px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.month:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--terra-soft); }
.month.is-open { box-shadow: var(--shadow-md); border-color: var(--terra); }
.month-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.month-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: var(--terra);
}
.month-tri {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  color: var(--ink-faint);
}
.month-title { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 14px 0 6px; }
.month-tag { font-size: 13px; color: var(--terra); font-weight: 500; }
.month-body { margin-top: 14px; font-size: 14px; color: var(--ink-soft); display: none; }
.month.is-open .month-body { display: block; animation: slideIn .25s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.month-list { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.month-list li { padding-left: 14px; position: relative; font-size: 13px; }
.month-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 4px; height: 4px; border-radius: 50%; background: var(--terra); }

/* =====================================================
   Services
   ===================================================== */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
@media (max-width: 1040px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }

.service {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px 70px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-link {
  position: absolute;
  left: 24px;
  bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: .02em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  transition: gap .2s ease;
}
.service-link:hover { gap: 10px; }
.service-link span { transition: transform .2s ease; }
.service:hover .service-link span { transform: translateX(2px); }
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-faint);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--terra-tint);
  color: var(--terra);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 32px; height: 32px; }
.service-title { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0 0 6px; }
.service-when { font-size: 12px; color: var(--terra); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.service-body { font-size: 14px; color: var(--ink-soft); margin: 0 0 18px; line-height: 1.55; }
.service-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 13px; }
.service-list li { padding-left: 18px; position: relative; color: var(--ink); }
.service-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 8px; height: 1.5px; background: var(--terra);
}
.service-feature { background: linear-gradient(165deg, var(--terra-tint) 0%, var(--surface) 65%); border-color: var(--terra-soft); }
.service-feature .service-icon { background: var(--terra); color: var(--bg); }
.service-badge {
  position: absolute; top: 16px; left: 24px;
  background: var(--ink); color: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

/* =====================================================
   Tools
   ===================================================== */
.section-tools { background: var(--surface); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.tool {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
}
@media (max-width: 520px) {
  .tool { padding: 22px; }
  .tool-title { font-size: 22px; }
  .kick-count { font-size: 52px; }
}
.tool-due  { grid-column: span 5; }
.tool-kick { grid-column: span 4; }
.tool-names{ grid-column: span 7; grid-row: 2; }
.tool-bag  { grid-column: span 5; grid-row: 2; }
@media (max-width: 1040px) {
  .tool { grid-column: span 12 !important; grid-row: auto !important; }
}

.tool-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.tool-tag {
  display: inline-block; width: max-content;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--terra);
  background: var(--terra-tint);
  padding: 4px 10px;
  border-radius: 999px;
}
.tool-title { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0; line-height: 1.1; }
.tool-sub { color: var(--ink-soft); font-size: 14px; margin: 0 0 16px; }
.tool-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-faint);
  font-weight: 600;
  margin-bottom: 8px;
}
.tool-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--sans);
  background: var(--surface);
  color: var(--ink);
}
.tool-input:focus { outline: 2px solid var(--terra-soft); outline-offset: 1px; border-color: var(--terra); }

.tool-out {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 10px;
}
.tool-out-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: var(--ink-soft);
  margin: 0;
}
.tool-out-row strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--terra);
}
.tool-cta {
  display: inline-block;
  margin-top: 18px;
  color: var(--terra);
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid currentColor;
}
.tool-cta-btn {
  background: transparent;
  border: 0;
  color: var(--terra);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  margin-top: 12px;
}

/* kick counter */
.kick-display {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
}
.kick-count {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  color: var(--terra);
  line-height: 1;
}
.kick-meta p { font-size: 13px; color: var(--ink-soft); margin: 0 0 4px; }
.kick-meta strong { color: var(--ink); font-weight: 600; font-family: var(--sans); }
.kick-actions { display: flex; gap: 10px; margin-top: 14px; }
.kick-actions .btn { flex: 1; justify-content: center; }
#kickBtn.is-pulse { animation: kickPulse .3s ease; }
@keyframes kickPulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

/* baby names */
.names-filters {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 560px) { .names-filters { grid-template-columns: 1fr; } }
.seg {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 3px;
}
.seg-btn {
  background: transparent; border: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
}
.seg-btn.is-active { background: var(--terra); color: var(--bg); }
.names-list {
  list-style: none; padding: 0; margin: 0;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  max-height: 280px;
  overflow-y: auto;
}
.name-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
}
.name-row:last-child { border-bottom: 0; }
.name-row-name { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.name-row-script { font-family: var(--deva); color: var(--ink-soft); font-size: 16px; }
.name-row-mean { font-size: 13px; color: var(--ink-soft); }
.name-row-gender {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.name-row-gender.girl { background: #F4D8E0; color: #8A3552; }
.name-row-gender.boy  { background: #D8E5F4; color: #2E5680; }

/* hospital bag */
.bag-tabs { display: inline-flex; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 3px; margin-bottom: 16px; }
.bag-tab { background: transparent; border: 0; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--ink-soft); border-radius: var(--r-sm); }
.bag-tab.is-active { background: var(--terra); color: var(--bg); }
.bag-list {
  list-style: none; padding: 0; margin: 0;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  max-height: 220px;
  overflow-y: auto;
}
.bag-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  user-select: none;
}
.bag-row:last-child { border-bottom: 0; }
.bag-row input { accent-color: var(--terra); width: 18px; height: 18px; }
.bag-row.is-done .bag-row-label { text-decoration: line-through; color: var(--ink-faint); }
.bag-row-label { font-size: 14px; }
.bag-progress { font-size: 13px; color: var(--ink-soft); margin: 12px 0 0; }

/* diet planner */
.tool-diet { grid-column: span 12 !important; }
.diet-tabs {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 3px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.diet-tab {
  background: transparent;
  border: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
}
.diet-tab.is-active { background: var(--terra); color: var(--bg); }

.diet-intent {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--terra);
  margin: 0 0 22px;
  line-height: 1.4;
}

.diet-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
@media (max-width: 880px) { .diet-grid { grid-template-columns: 1fr; } }

.diet-col {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  padding: 20px;
}
.diet-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 8px;
}
.diet-col-eat h4    { color: var(--sage); }
.diet-col-limit h4  { color: var(--gold); }
.diet-col-avoid h4  { color: var(--terra); }
.diet-col h4::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
}
.diet-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.diet-eat-row { display: grid; gap: 2px; padding: 8px 10px; border-radius: 6px; cursor: help; transition: background .15s ease; }
.diet-eat-row:hover { background: var(--bg); }
.diet-eat-name { font-size: 14px; color: var(--ink); font-weight: 500; }
.diet-eat-note { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }
.diet-list-simple li {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.diet-list-simple li:last-child { border-bottom: 0; }

.diet-meal {
  background: var(--terra);
  color: var(--bg);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.diet-meal-title {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  margin: 0 0 14px;
}
.diet-meal-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 18px;
}
@media (max-width: 560px) { .diet-meal-grid { grid-template-columns: 1fr; gap: 4px 0; padding: 0; } }
.diet-meal-when {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--gold-soft);
  padding-top: 4px;
}
.diet-meal-what {
  font-size: 14px;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(251, 246, 236, .15);
}
.diet-meal-row:last-child .diet-meal-what { border-bottom: 0; padding-bottom: 0; }

.diet-locked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 40px 24px;
  color: var(--terra);
}
.diet-locked-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  margin: 2px 0 0;
}
.diet-locked-sub {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 360px;
  margin: 0;
}
.diet-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
}
.diet-note svg { color: var(--terra); flex: none; margin-top: 2px; }

/* =====================================================
   Week tracker
   ===================================================== */
.tracker-row {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}
.tracker-controls {
  display: flex; align-items: center; gap: 18px;
  justify-content: center;
}
.track-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 22px;
  color: var(--terra);
}
.track-arrow:hover { background: var(--terra); color: var(--bg); border-color: var(--terra); }
.track-weeklabel { text-align: center; min-width: 220px; }
.track-weekno { font-family: var(--serif); font-size: 36px; font-weight: 500; margin: 0; color: var(--terra); }
.track-weekday { font-size: 13px; color: var(--ink-soft); margin: 4px 0 0; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

.tracker-slider {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--terra) 0%, var(--terra) var(--pct, 50%), var(--line) var(--pct, 50%), var(--line) 100%);
  border-radius: 999px;
  margin: 0;
}
.tracker-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  background: var(--surface);
  border: 3px solid var(--terra);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.tracker-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  background: var(--surface);
  border: 3px solid var(--terra);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.tracker-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-faint);
  font-weight: 600;
  letter-spacing: .08em;
}

.tracker-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 820px) { .tracker-card { grid-template-columns: 1fr; gap: 24px; padding: 24px; } }
@media (max-width: 520px) { .tracker-illu svg { width: 160px; height: 160px; } }
.tracker-illu { text-align: center; }
.tracker-illu svg { width: 220px; height: 220px; }
.tracker-size { font-size: 14px; color: var(--ink-soft); margin: 14px 0 0; }
.tracker-size strong { color: var(--terra); font-family: var(--serif); font-size: 22px; font-weight: 500; margin-left: 6px; }
.tracker-metrics { font-size: 13px; color: var(--ink-soft); margin: 6px 0 0; letter-spacing: .04em; }
.tracker-metrics strong { color: var(--ink); }

.tracker-info { display: grid; gap: 18px; }
.tracker-block {
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--bg);
}
.tracker-block-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 700; color: var(--terra);
  margin: 0 0 6px;
}
.tracker-block-text { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink); }
.tracker-block-accent { background: var(--terra); color: var(--bg); }
.tracker-block-accent .tracker-block-label { color: var(--gold-soft); }
.tracker-block-accent .tracker-block-text { color: var(--bg); }

/* =====================================================
   Garbh Sangeet
   ===================================================== */
.section-sangeet {
  background: var(--plum);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.section-sangeet::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,63,.18) 0%, transparent 65%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.section-head-light .lede-light { color: rgba(251, 246, 236, .82); }

.playlist-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
@media (max-width: 880px) { .playlist-grid { grid-template-columns: 1fr; } }

.playlist {
  background: rgba(251, 246, 236, .04);
  border: 1px solid rgba(251, 246, 236, .12);
  border-radius: var(--r-xl);
  padding: 12px;
  backdrop-filter: blur(4px);
}
.playlist-list { list-style: none; padding: 0; margin: 0; counter-reset: pl; }
.playlist-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background .15s ease;
  border-bottom: 1px solid rgba(251, 246, 236, .06);
}
.playlist-row:last-child { border-bottom: 0; }
.playlist-row:hover { background: rgba(251, 246, 236, .05); }
.playlist-row.is-active { background: rgba(200, 155, 63, .15); }
.playlist-row.is-active .playlist-row-month { color: var(--gold-soft); }

.playlist-row-month {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: rgba(251, 246, 236, .55);
  min-width: 70px;
}
.playlist-row-raga {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bg);
  line-height: 1.15;
}
.playlist-row-len {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-feature-settings: "tnum";
  color: rgba(251, 246, 236, .65);
}
.playlist-row-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(251, 246, 236, .08);
  border: 1px solid rgba(251, 246, 236, .18);
  color: var(--bg);
  font-size: 11px;
  display: grid; place-items: center;
  flex: none;
}
.playlist-row.is-active .playlist-row-play {
  background: var(--gold); color: var(--plum); border-color: var(--gold);
}
.playlist-row.is-locked {
  grid-template-columns: auto 1fr auto;
  cursor: default;
}
.playlist-row.is-locked:hover { background: transparent; }
.playlist-row.is-locked .playlist-row-raga {
  color: rgba(251, 246, 236, .58);
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}
.playlist-row-locked {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.playlist-foot {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: rgba(251, 246, 236, .55);
  padding: 14px 18px 4px;
  margin: 0;
  font-style: italic;
}

.playlist-now {
  text-align: center;
  background: rgba(251, 246, 236, .04);
  border: 1px solid rgba(251, 246, 236, .12);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: sticky; top: 96px;
  backdrop-filter: blur(4px);
}
.playlist-art {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto 22px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(251, 246, 236, .12);
}
.playlist-art #ytPlayer, .playlist-art iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
}
.playlist-now-tag { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-soft); font-weight: 700; margin: 0; }
.playlist-now-month { font-size: 13px; color: rgba(251, 246, 236, .65); margin: 8px 0 4px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.playlist-now-raga { font-family: var(--serif); font-size: 30px; font-weight: 500; font-style: italic; line-height: 1.1; margin: 0 0 8px; }
.playlist-now-len { font-size: 13px; color: rgba(251, 246, 236, .6); margin: 0 0 22px; }
.playlist-bar { width: 100%; height: 4px; background: rgba(251, 246, 236, .15); border-radius: 999px; overflow: hidden; margin-bottom: 6px; }
.playlist-bar-fill { display: block; width: 0%; height: 100%; background: var(--gold); transition: width .3s ease; }
.playlist-times { display: flex; justify-content: space-between; font-size: 11px; color: rgba(251, 246, 236, .55); font-feature-settings: "tnum"; margin-bottom: 18px; }
.playlist-controls { display: inline-flex; gap: 14px; margin-bottom: 22px; }
.player-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(251, 246, 236, .1);
  border: 1px solid rgba(251, 246, 236, .15);
  color: var(--bg);
  font-size: 14px;
}
.player-btn-main { width: 56px; height: 56px; background: var(--gold); color: var(--plum); border-color: var(--gold); font-size: 16px; }
.playlist-yt {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(251, 246, 236, .65);
  padding: 8px 14px;
  border: 1px solid rgba(251, 246, 236, .15);
  border-radius: 999px;
  transition: color .15s ease, border-color .15s ease;
}
.playlist-yt:hover { color: #FF0000; border-color: rgba(255,0,0,.35); }
.playlist-yt svg { color: #FF0000; }

/* removed offscreen wrap; YouTube player is now visible inside .playlist-art */
.playlist-cta { display: inline-flex; align-items: center; gap: 6px; }

@keyframes spin { to { transform: rotate(360deg); } }

/* yoga gallery */
.yoga-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.yoga-grid image-slot,
.yoga-grid figure {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.yoga-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.yoga-grid figure:hover img { transform: scale(1.03); }
.yoga-1 { grid-column: span 2; grid-row: span 2; }
.yoga-2 { grid-column: span 2; }
.yoga-3 { grid-column: span 1; }
.yoga-4 { grid-column: span 1; }
.yoga-5 { grid-column: span 2; }
@media (max-width: 880px) {
  .yoga-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .yoga-1 { grid-column: span 2; grid-row: span 1; }
  .yoga-2, .yoga-3, .yoga-4, .yoga-5 { grid-column: span 1; }
}
@media (max-width: 480px) {
  .yoga-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .yoga-1, .yoga-2, .yoga-3, .yoga-4, .yoga-5 { grid-column: span 1; grid-row: span 1; }
}

/* =====================================================
   Stories
   ===================================================== */
.stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .stories { grid-template-columns: 1fr; } }
.story {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 0;
}
.story blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}
.story blockquote p { margin: 0; text-wrap: pretty; }
.story blockquote p[lang="mr"], .story blockquote p[lang="hi"] {
  font-family: var(--deva);
  font-style: normal;
  font-size: 19px;
  line-height: 1.55;
}
.story figcaption {
  display: flex; gap: 14px; align-items: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.story-avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; }
.story-a1 { background: linear-gradient(135deg, #E8B7A7, #B85742); }
.story-a2 { background: linear-gradient(135deg, #C5CFB3, #6B7F5A); }
.story-a3 { background: linear-gradient(135deg, #E8D199, #C89B3F); }
.story-a4 { background: linear-gradient(135deg, #D4B5C8, #4A2E3E); }
.story-name { font-weight: 600; margin: 0; font-size: 15px; }
.story-meta { color: var(--ink-faint); font-size: 13px; margin: 2px 0 0; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-row { align-items: start; }
.faqs { display: grid; gap: 12px; }
.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}
.faq-q::after {
  content: "+";
  color: var(--terra);
  font-size: 22px;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq.is-open .faq-q::after { content: "−"; }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.faq.is-open .faq-a { padding: 0 22px 20px; max-height: 400px; }

/* =====================================================
   Book
   ===================================================== */
.section-book {
  background: linear-gradient(165deg, var(--terra) 0%, var(--terra-dark) 100%);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.section-book::before {
  content: ""; position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 246, 236, .08) 0%, transparent 65%);
  bottom: -250px; left: -200px;
  pointer-events: none;
}

.book-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 10px; font-size: 15px; }
.book-list li { display: flex; gap: 12px; align-items: center; }
.book-list li::before { content: ""; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--gold-soft); flex: none; display: grid; place-items: center; background-image: radial-gradient(circle, var(--gold-soft) 35%, transparent 36%); background-size: 8px 8px; background-position: center; background-repeat: no-repeat; }
.book-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: rgba(251, 246, 236, .12);
  border: 1px solid rgba(251, 246, 236, .25);
  border-radius: 999px;
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
}
.book-wa:hover { background: rgba(251, 246, 236, .2); }
.book-wa svg { color: #25D366; }

.book-form {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 560px) { .book-form { grid-template-columns: 1fr; padding: 24px; } }
.book-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.book-form label em { font-style: italic; color: var(--ink-faint); text-transform: none; letter-spacing: 0; font-weight: 400; }
.book-form .full { grid-column: 1 / -1; }
.book-form input, .book-form select, .book-form textarea {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  width: 100%;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: 2px solid var(--terra-soft);
  outline-offset: 1px;
  border-color: var(--terra);
}
.book-form button { grid-column: 1 / -1; justify-content: center; }
.book-fineprint { grid-column: 1 / -1; font-size: 12px; color: var(--ink-faint); margin: 0; text-align: center; text-transform: none; letter-spacing: 0; font-weight: 400; }
.book-consent { grid-column: 1 / -1; font-size: 11.5px; color: var(--ink-faint); margin: -6px 0 0; text-align: center; text-transform: none; letter-spacing: 0; font-weight: 400; line-height: 1.5; }
.book-consent a { color: var(--terra); }

/* Booking success state (post-submit) */
.book-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 8px 0;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.book-success-icon { color: var(--sage); }
.book-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.book-success p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 36ch;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.book-success-cta { gap: 10px; margin-top: 6px; }
.book-success-copy {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.book-success-copy:hover { border-color: var(--terra); color: var(--terra); }
.book-success-copy.is-copied { background: var(--sage); color: var(--bg); border-color: var(--sage); }
.book-success-fine {
  font-size: 12px;
  color: var(--ink-faint);
  margin: 6px 0 0;
}
.book-success-fine a {
  color: var(--terra);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* =====================================================
   Contact
   ===================================================== */
.contact-row { align-items: start; }
.contact-addr { font-size: 18px; color: var(--ink-soft); margin: 0 0 32px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 480px) { .contact-grid { grid-template-columns: 1fr; gap: 20px; } }
.contact-lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--terra); margin: 0 0 4px; }
.contact-val { margin: 0; font-size: 15px; color: var(--ink); }
.contact-val a:hover { color: var(--terra); }

.map { position: relative; }
.map-svg { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); display: block; }
.map-link {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--surface);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terra);
  box-shadow: var(--shadow-sm);
}

/* =====================================================
   Disclaimer + Footer
   ===================================================== */
.disclaimer { background: var(--bg-soft); padding: 24px 0; border-top: 1px solid var(--line); }
.disclaimer-row { display: flex; gap: 16px; align-items: flex-start; }
.disclaimer svg { color: var(--terra); flex: none; margin-top: 2px; }
.disclaimer p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--ink-soft); max-width: 90ch; }
.disclaimer strong { color: var(--ink); }

.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 60px 0 30px;
}
.footer-row {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251, 246, 236, .12);
}
@media (max-width: 720px) { .footer-row { grid-template-columns: 1fr; } }
.brand-mark-footer { width: 64px; height: 64px; }
.brand-name-footer { font-size: 32px; }
.footer .brand-footer { color: var(--gold-soft); }
.footer .brand-footer .brand-name { color: var(--bg); }
.footer .brand-footer .brand-sub { color: rgba(251, 246, 236, .6); }
.footer-tag { margin: 18px 0 0; font-size: 14px; color: rgba(251, 246, 236, .6); max-width: 36ch; line-height: 1.5; }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-h { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-soft); margin: 0 0 16px; font-weight: 700; }
.footer-cols a { display: block; padding: 5px 0; font-size: 14px; color: rgba(251, 246, 236, .75); }
.footer-cols a:hover { color: var(--bg); }

.footer-bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(251, 246, 236, .55);
}
.footer-bottom p { margin: 0; }
@media (max-width: 560px) { .footer-bottom { flex-direction: column; gap: 8px; } }
