/* Navtej Ayurved — styles
   Palette & type live in :root; everything else builds on these tokens. */

:root {
  --green: #1F4D3A;
  --green-deep: #173B2C;
  --cream: #F7F1E6;
  --cream-2: #EFE6D5;
  --saffron: #C8872B;
  --saffron-text: #8A5A14; /* saffron darkened for AA text on cream */
  --terracotta: #A65A3A;
  --ink: #1E1E1E;
  --ink-soft: #4A4640;
  --white: #FFFDF9;
  --line: rgba(31, 77, 58, .14);

  --serif: "Cormorant Garamond", "Noto Serif Gujarati", "Noto Serif Devanagari", Georgia, serif;
  --sans: "Mulish", "Noto Sans Gujarati", "Noto Sans Devanagari", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 16px;
  --shadow: 0 1px 2px rgba(30, 30, 30, .04), 0 8px 24px -8px rgba(31, 77, 58, .14);
  --shadow-lg: 0 2px 4px rgba(30, 30, 30, .05), 0 18px 40px -12px rgba(31, 77, 58, .22);
  --gutter: 16px;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  /* soft paper grain */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .45 0 0 0 0 .35 0 0 0 0 .2 0 0 0 .06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  padding-bottom: 64px; /* room for mobile action bar */
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--green-deep); letter-spacing: -.005em; }
h1 { font-size: clamp(2.3rem, 7vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4.6vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.25rem; margin-bottom: .2em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.center { text-align: center; }
.fine { font-size: .85rem; color: var(--ink-soft); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--green); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: 6px; }

.eyebrow {
  font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: .8em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: .75em 1.4em; border-radius: 999px;
  font: 700 .98rem/1.2 var(--sans); text-decoration: none; border: 1.5px solid transparent;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px -6px rgba(31, 77, 58, .55); }
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; }
.btn-light { background: var(--cream); color: var(--green-deep); }
.btn-light:hover { background: #fff; }
.btn-sm { min-height: 42px; padding: .55em 1.2em; font-size: .92rem; }
.btn-block { width: 100%; }
.btn-icon { width: 20px; height: 20px; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 241, 230, .9);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px -12px rgba(31, 77, 58, .3); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo {
  display: inline-flex; align-items: center; gap: .45em; margin: 0;
  font: 700 1.5rem/1 var(--serif); color: var(--green-deep); text-decoration: none;
}
.logo-mark { width: 28px; height: 28px; color: var(--saffron); }
.logo-light { color: #fff; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px; border: 0; border-radius: 12px; background: transparent; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--green-deep); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: 8px var(--gutter) 20px;
  display: none;
}
.site-nav.open { display: block; }
.site-nav ul { display: flex; flex-direction: column; margin-bottom: 14px; }
.site-nav li a {
  display: block; padding: 12px 4px; text-decoration: none; color: var(--ink); font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.site-nav li a:hover { color: var(--green); }
.site-nav .btn { width: 100%; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; display: flex !important; align-items: center; gap: 28px; padding: 0; background: none; border: 0; }
  .site-nav ul { flex-direction: row; gap: 26px; margin: 0; }
  .site-nav li a { border: 0; padding: 6px 0; font-size: .95rem; position: relative; }
  .site-nav li a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--saffron);
    transform: scaleX(0); transform-origin: left; transition: transform .25s;
  }
  .site-nav li a:hover::after, .site-nav li a.active::after { transform: scaleX(1); }
  .site-nav .btn { width: auto; }
}

/* ---------- Hero ---------- */
.hero { padding: 36px 0 48px; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto auto; width: 70%; height: 100%; z-index: -1;
  background: radial-gradient(closest-side, rgba(200, 135, 43, .12), transparent 70%);
}
.hero-grid { display: grid; gap: 36px; align-items: center; }
.hero-sub { font: 500 1.35rem/1.35 var(--serif); font-style: italic; color: var(--terracotta); margin-bottom: 1.4em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-ctas .btn { flex: 1 1 180px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px; background: var(--white); border: 1px solid var(--line);
  font-size: .85rem; font-weight: 600; color: var(--ink-soft);
}
.chip-icon { width: 15px; height: 15px; color: var(--green); }
.chip-icon.star { color: var(--saffron); }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover;
  border-radius: 200px 200px var(--radius) var(--radius);
  box-shadow: var(--shadow-lg); background: var(--cream-2);
}
.hero-badge {
  position: absolute; left: -6px; bottom: 26px;
  display: flex; align-items: center; gap: 10px;
  background: var(--white); padding: 12px 18px 12px 14px; border-radius: 14px; box-shadow: var(--shadow-lg);
  font: 600 1.05rem/1.15 var(--serif); color: var(--green-deep);
}
.hero-badge svg { width: 34px; height: 34px; color: var(--terracotta); }

@media (min-width: 900px) {
  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 64px; }
  .hero-ctas .btn { flex: 0 0 auto; }
  .hero-badge { left: -28px; }
}

/* ---------- Divider ---------- */
.divider { display: flex; justify-content: center; color: var(--saffron); padding: 8px 0; }
.divider svg { width: 240px; height: 28px; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-tint { background: linear-gradient(180deg, rgba(239, 230, 213, .7), rgba(239, 230, 213, .35)); }
.section-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.lead { font-size: 1.08rem; color: var(--ink-soft); }
@media (min-width: 900px) { .section { padding: 96px 0; } }

.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid rgba(31, 77, 58, .06);
}

.grid { display: grid; gap: 16px; }
@media (min-width: 560px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1080px) { .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.icon { width: 44px; height: 44px; color: var(--green); flex: none; }

/* About */
.about-grid { display: grid; gap: 36px; align-items: center; }
.about-copy p { font-size: 1.06rem; color: var(--ink-soft); }
.doctor-card { overflow: hidden; display: grid; }
.doctor-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--cream-2); }
.doctor-body { padding: 24px; }
.doctor-body h3 { font-size: 1.8rem; margin-bottom: .1em; }
.doctor-role { color: var(--terracotta); font-weight: 700; font-size: .95rem; }
.doctor-body p:last-child { margin: 0; color: var(--ink-soft); }
@media (min-width: 640px) {
  .doctor-card { grid-template-columns: 240px 1fr; }
  .doctor-card img { height: 100%; aspect-ratio: auto; }
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.05fr; gap: 64px; } }

/* Conditions + therapies */
.cond, .therapy { padding: 24px; transition: transform .25s, box-shadow .25s; }
.cond:hover, .therapy:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cond h3, .therapy h3 { margin: 14px 0 6px; font-size: 1.35rem; }
.cond p, .therapy p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.cond .icon { width: 40px; height: 40px; }
.therapy .icon {
  width: 52px; height: 52px; padding: 11px; border-radius: 50%;
  background: rgba(200, 135, 43, .14); color: var(--terracotta);
}

/* Steps */
.steps { margin-top: 56px; padding: 32px 24px; border-radius: var(--radius); background: var(--green); color: #fff; }
.steps-title { color: #fff; text-align: center; font-size: 1.8rem; margin-bottom: 24px; }
.steps ol { display: grid; gap: 22px; counter-reset: s; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.steps h4 { color: #fff; }
.steps p { margin: 0; color: rgba(255, 255, 255, .85); font-size: .95rem; }
.step-num {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--saffron); color: var(--green-deep); font: 700 1.3rem/1 var(--serif);
}
@media (min-width: 900px) {
  .steps { padding: 40px 48px; }
  .steps ol { grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
  .steps li { flex-direction: column; }
  .steps ol::before {
    content: ""; position: absolute; top: 22px; left: 44px; right: 20%; height: 0;
    border-top: 1.5px dashed rgba(255, 255, 255, .35);
  }
  .step-num { position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--green); }
}

/* Products band */
.products { background: var(--terracotta); color: #fff; padding: 44px 0; }
.products-inner { display: grid; gap: 18px; align-items: center; }
.products h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.2rem); margin-bottom: .3em; }
.products p { margin: 0; color: rgba(255, 255, 255, .92); }
.products-art { width: 48px; height: 48px; color: #F3D9A8; }
@media (min-width: 900px) { .products-inner { grid-template-columns: auto 1fr auto; gap: 28px; } }

/* Why */
.why-grid { display: grid; gap: 36px; }
.rating-box {
  margin-top: 20px; padding: 24px; border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow); display: inline-block;
}
.rating-num {
  display: flex; align-items: center; gap: 8px; margin: 0;
  font: 700 4rem/1 var(--serif); color: var(--green-deep); font-variant-numeric: tabular-nums;
}
.rating-star { width: 40px; height: 40px; color: var(--saffron); }
.rating-label { margin: 6px 0 0; color: var(--ink-soft); font-weight: 600; font-size: .92rem; }
.why-list { display: grid; gap: 14px; }
.why-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow);
}
.why-list h3 { font-size: 1.3rem; margin-bottom: .2em; }
.why-list p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.why-list .icon { width: 38px; height: 38px; color: var(--saffron-text); }
@media (min-width: 640px) { .why-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .why-grid { grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; } }

/* Reviews */
.review { margin: 0; padding: 28px; display: flex; flex-direction: column; position: relative; }
.review::before {
  content: "“"; position: absolute; top: 4px; right: 20px;
  font: 700 5.5rem/1 var(--serif); color: rgba(200, 135, 43, .22);
}
.stars { display: flex; gap: 2px; color: var(--saffron); margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; }
.review blockquote { margin: 0 0 18px; font: 500 1.25rem/1.45 var(--serif); color: var(--ink); flex: 1; }
.review figcaption { font-size: .88rem; font-weight: 700; color: var(--ink-soft); }
#reviews .center { margin-top: 32px; }
#reviews .fine { margin-top: 12px; }

/* Visit */
.visit-grid { display: grid; gap: 20px; }
.visit-card { padding: 26px; }
.visit-card h3 { font-size: 1.4rem; }
address { font-style: normal; font-size: 1.02rem; margin-bottom: .5em; }
.contact-list { margin: 14px 0 26px; display: grid; gap: 8px; }
.contact-list li { display: flex; align-items: center; gap: 10px; }
.contact-list svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.contact-list a { font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.contact-list a:hover { text-decoration: underline; }
.hours-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.hours-head h3 { margin: 0; }
.status { font-size: .82rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.status:empty { display: none; }
.status.open { background: #DCEFE3; color: #185C35; }
.status.closed { background: #F6E1D8; color: #8A3A1E; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 22px; font-size: .95rem; }
.hours th, .hours td { padding: 9px 10px; border-bottom: 1px solid var(--line); text-align: left; }
.hours th { font-weight: 600; }
.hours td { text-align: right; color: var(--ink-soft); }
.hours tr.today { background: rgba(200, 135, 43, .14); }
.hours tr.today th, .hours tr.today td { color: var(--green-deep); font-weight: 700; }
.hours tr.today th::after { content: " · Today"; font-size: .78rem; color: var(--saffron-text); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; background: var(--cream-2); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.gallery { display: grid; gap: 16px; margin-top: 20px; grid-template-columns: 1fr; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); background: var(--cream-2); box-shadow: var(--shadow); }
@media (min-width: 560px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1fr 1.3fr; gap: 28px; } }

/* Footer */
.site-footer { background: var(--green-deep); color: rgba(255, 255, 255, .85); padding: 52px 0 28px; font-size: .95rem; }
.footer-grid { display: grid; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.site-footer .logo { margin-bottom: 10px; }
.site-footer .logo-mark { color: #E9B866; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; min-height: 32px; overflow-wrap: anywhere; }
.footer-links a:hover { text-decoration: underline; }
.footer-links svg { width: 18px; height: 18px; color: #E9B866; flex: none; }
.footer-bottom { padding-top: 22px; display: grid; gap: 8px; font-size: .85rem; }
.footer-bottom p { margin: 0; }
.disclaimer { color: rgba(255, 255, 255, .75); }
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-links { grid-template-columns: repeat(2, auto); column-gap: 36px; }
  .footer-bottom { grid-template-columns: 1fr auto; }
}

/* ---------- Mobile floating actions ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: 80px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #1F7A4D; color: #fff; box-shadow: 0 10px 24px -6px rgba(0, 0, 0, .35);
}
.wa-float svg { width: 30px; height: 30px; }
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--green-deep); box-shadow: 0 -6px 20px -10px rgba(0, 0, 0, .4);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 60px; color: #fff; text-decoration: none; font-size: .78rem; font-weight: 700;
}
.mobile-bar a + a { border-left: 1px solid rgba(255, 255, 255, .12); }
.mobile-bar svg { width: 20px; height: 20px; color: #E9B866; }
@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .wa-float, .mobile-bar { display: none; }
}

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Hero entrance (CSS-only so it never delays first paint) */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: rise .8s ease both; }
.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
.hero-copy > :nth-child(5) { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .hero-copy > * { animation: none; } }

/* ---------- Mobile density tweaks ---------- */
@media (max-width: 559px) {
  .conditions { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cond { padding: 16px; }
  .cond .icon { width: 32px; height: 32px; }
  .cond h3 { font-size: 1.15rem; margin-top: 10px; }
  .cond p { font-size: .86rem; line-height: 1.5; }
  .therapy { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; padding: 18px; }
  .therapy .icon { grid-row: span 2; width: 46px; height: 46px; padding: 10px; }
  .therapy h3 { margin: 4px 0 4px; }
  .gallery {
    grid-auto-flow: column; grid-auto-columns: 78%; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px;
    margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter);
  }
  .gallery img { scroll-snap-align: start; }
}

/* ---------- Booking widget ---------- */
.hero-slot-link { margin: -12px 0 22px; font-size: .95rem; }
.hero-slot-link a { color: var(--terracotta); font-weight: 700; text-underline-offset: 3px; }

.booking { max-width: 860px; margin: 0 auto; padding: 24px 18px; }
.bk-step { border: 0; margin: 0 0 26px; padding: 0; min-width: 0; }
.bk-step legend, .bk-legend {
  display: flex; align-items: center; gap: 10px; padding: 0; margin: 0 0 12px;
  font: 600 1.3rem/1.2 var(--serif); color: var(--green-deep);
}
.bk-num {
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; flex: none;
  background: var(--green); color: #fff; font: 700 .85rem/1 var(--sans);
}

/* shared pill look for radio inputs */
.pill, .bk-date, .bk-slot { position: relative; cursor: pointer; }
.pill input, .bk-date input, .bk-slot input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: inherit; }
.pill span, .bk-slot span {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 8px 16px;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--cream);
  font-weight: 600; font-size: .92rem; color: var(--ink); transition: background-color .15s, border-color .15s, color .15s;
}
.pill:hover span, .bk-slot:hover span { border-color: var(--green); }
.pill input:checked + span, .bk-slot input:checked + span { background: var(--green); border-color: var(--green); color: #fff; }
.pill input:focus-visible + span, .bk-slot input:focus-visible + span, .bk-date input:focus-visible + span {
  outline: 3px solid var(--saffron); outline-offset: 2px;
}
.bk-types { display: flex; flex-wrap: wrap; gap: 8px; }

.bk-dates {
  display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x proximity; padding: 2px 2px 10px;
  margin: 0 -18px; padding-left: 18px; padding-right: 18px;
}
.bk-date { flex: 0 0 auto; scroll-snap-align: start; }
.bk-date span {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  width: 68px; min-height: 80px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--cream);
  transition: background-color .15s, border-color .15s, color .15s;
}
.bk-date b { font: 700 1.5rem/1 var(--serif); color: var(--green-deep); }
.bk-date small { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.bk-date:hover span { border-color: var(--green); }
.bk-date input:checked + span { background: var(--green); border-color: var(--green); }
.bk-date input:checked + span b, .bk-date input:checked + span small { color: #fff; }
.bk-date input:disabled + span { opacity: .55; cursor: not-allowed; background: transparent; border-style: dashed; }
.bk-date input:disabled + span b { color: var(--ink-soft); }
.bk-date:has(input:disabled) { cursor: not-allowed; }

.bk-slots { display: grid; gap: 14px; }
.bk-group-label { font: 700 .78rem/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--terracotta); margin: 0 0 8px; }
.bk-group div { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; }
.bk-slot span { width: 100%; padding: 8px 6px; font-variant-numeric: tabular-nums; }
.bk-slot input:disabled + span { opacity: .45; text-decoration: line-through; cursor: not-allowed; }
.bk-slot:has(input:disabled) { cursor: not-allowed; }
.bk-empty { margin: 0; padding: 14px 16px; border-radius: 12px; background: var(--cream); color: var(--ink-soft); }

.bk-fields { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; font-weight: 600; font-size: .92rem; }
.field em { font-style: normal; font-weight: 400; color: var(--ink-soft); }
.field input {
  width: 100%; min-height: 48px; padding: 10px 14px; border-radius: 12px;
  border: 1.5px solid rgba(31, 77, 58, .28); background: #fff; font: 400 1rem var(--sans); color: var(--ink);
}
.field input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(200, 135, 43, .35); }
.field input[aria-invalid="true"] { border-color: #A3341C; }
.field-err { color: #A3341C; font-size: .85rem; font-weight: 600; min-height: 0; }
.field-err:empty { display: none; }

.bk-summary {
  display: grid; gap: 14px; align-items: center; padding: 18px; border-radius: 14px;
  background: rgba(200, 135, 43, .12); border: 1px dashed rgba(200, 135, 43, .5);
}
.bk-summary p { margin: 0; font-weight: 600; color: var(--green-deep); }
.bk-summary .btn { width: 100%; }
.bk-note { margin: 12px 0 0; text-align: center; }

@media (min-width: 640px) {
  .booking { padding: 36px 40px; }
  .bk-dates { margin: 0; padding-left: 2px; padding-right: 2px; }
  .bk-fields { grid-template-columns: 1fr 1fr; }
  .bk-summary { grid-template-columns: 1fr auto; }
  .bk-summary .btn { width: auto; }
}
