:root {
  /* Ink & warm neutrals */
  --ink: #14231d;
  --muted: #566158;
  --muted-soft: #656f66;
  --paper: #f3eee2;
  --paper-2: #faf6ee;
  --white: #fffdf8;
  /* Evergreen (mapped onto the legacy sage-* names so recolor cascades) */
  --sage: #3a6551;
  --sage-dark: #1a4535;
  --sage-deep: #0e2a20;
  --sage-pale: #e5ebe3;
  --forest: #123a2c;
  /* Warm clay (mapped onto legacy rose-* names) */
  --rose: #bd7a5c;
  --rose-pale: #ecd4c6;
  --rose-tint: #f7eadf;
  /* Champagne / gold */
  --gold: #a9822f;
  --champagne: #d9bd83;
  /* Text on dark forest panels */
  --on-dark: #eef1e6;
  --on-dark-soft: #cbd5c7;
  --line: rgba(20, 35, 29, 0.12);
  --line-strong: rgba(20, 35, 29, 0.22);
  --line-gold: rgba(169, 130, 47, 0.4);
  --shadow-sm: 0 8px 24px rgba(14, 42, 32, 0.10);
  --shadow: 0 26px 70px rgba(14, 42, 32, 0.16);
  --shadow-float: 0 40px 90px -30px rgba(14, 42, 32, 0.34);
  --radius: 1.2rem;
  --radius-lg: 1.6rem;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --thumb-h: 4.4rem;
  color-scheme: light;
  font-family: "Inter", ui-sans-serif, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
/* Soft, self-contained atmosphere: low-opacity aurora washes fixed behind
   all content. Pure gradients — no images, no network. */
body::before {
  content: "";
  position: fixed;
  inset: -20vmax;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(40vmax 40vmax at 84% -8%, rgba(189, 122, 92, 0.16), transparent 62%),
    radial-gradient(46vmax 46vmax at 2% 10%, rgba(18, 58, 44, 0.12), transparent 60%),
    radial-gradient(52vmax 42vmax at 60% 112%, rgba(169, 130, 47, 0.10), transparent 60%);
}
/* Fine grain via inline SVG turbulence — keeps flat fields from banding. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }
img, svg { max-width: 100%; }
::selection { background: rgba(169, 130, 47, 0.26); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Scroll reveal system ----------
   Only hides content once script confirms it is running (.reveal-ready on
   <html>). Without JS, everything renders immediately. */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  filter: blur(7px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal-ready [data-reveal="fade"] { transform: none; }
.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--sage-deep);
  color: #fff;
  border-radius: 0.55rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 160ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Header (deep-forest bar, seamless with the hero; solidifies on scroll) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(12, 34, 26, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  transition: border-color 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease);
}
.site-header[data-scrolled="true"] {
  border-bottom-color: var(--line-gold);
  background: rgba(10, 29, 22, 0.94);
  box-shadow: 0 14px 34px -24px rgba(0, 0, 0, 0.8);
}
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--sage), var(--gold) 60%, var(--champagne));
  opacity: 0;
  transition: opacity 300ms var(--ease);
}
.site-header[data-scrolled="true"] .scroll-progress { opacity: 1; }

/* ---------- Brand: inline-SVG botanical seal + serif wordmark ----------
   A code-native arch seal: a champagne crescent ("Rest") cradling a sprig
   ("Beauty"), drawn as glass-and-gold linework on the dark header. The footer
   reuses the same paths with a solid-forest fill. No image, no font. */
.brand { display: inline-flex; align-items: center; gap: 0.72rem; text-decoration: none; margin-right: auto; }
.brand-mark {
  position: relative;
  width: 2.55rem;
  height: 2.9rem;
  flex: none;
  display: grid;
  place-items: center;
}
.brand-seal { width: 100%; height: 100%; overflow: visible; display: block; }
.seal-body { fill: rgba(238, 241, 230, 0.10); stroke: rgba(217, 189, 131, 0.55); stroke-width: 1; transition: fill 300ms var(--ease), stroke 300ms var(--ease); }
.seal-key { fill: none; stroke: var(--champagne); stroke-width: 1; opacity: 0.8; }
.seal-moon { fill: var(--on-dark); transition: fill 300ms var(--ease); }
.seal-stem { fill: none; stroke: var(--champagne); stroke-width: 1.1; stroke-linecap: round; }
.seal-leaf { fill: var(--champagne); }

.brand-copy { display: grid; line-height: 1.04; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--on-dark);
  transition: color 300ms var(--ease);
}
.brand-amp { color: var(--champagne); padding: 0 0.05em; font-style: italic; transition: color 300ms var(--ease); }
.brand-tag {
  margin-top: 0.24rem;
  color: var(--on-dark-soft);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Click-to-call — a primary local-service conversion affordance */
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  color: var(--on-dark);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid rgba(238, 241, 230, 0.3);
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}
.header-call:hover { border-color: var(--champagne); background: rgba(238, 241, 230, 0.08); }
.header-call-icon {
  width: 0.95rem; height: 0.95rem; flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.2.2 2.5.6 3.6.1.4 0 .7-.2 1l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.2.2 2.5.6 3.6.1.4 0 .7-.2 1l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-nav { display: flex; gap: 1.6rem; }
.site-nav a {
  position: relative;
  color: var(--on-dark-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.35rem;
  width: 0; height: 2px;
  background: var(--champagne);
  transition: width 200ms var(--ease);
}
.site-nav a:hover { color: var(--on-dark); }
.site-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.05rem 0.6rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 160ms var(--ease), box-shadow 200ms var(--ease), transform 200ms var(--ease-spring);
}
.header-cart:hover { border-color: var(--sage-dark); box-shadow: var(--shadow-sm); }
.header-cart:active { transform: scale(0.97); }
.header-cart-icon {
  width: 1.15rem; height: 1.05rem;
  flex: none;
  border: 1.6px solid currentColor;
  border-radius: 0.28rem 0.28rem 0.34rem 0.34rem;
  position: relative;
}
.header-cart-icon::before {
  content: "";
  position: absolute;
  top: -0.42rem; left: 50%;
  transform: translateX(-50%);
  width: 0.62rem; height: 0.5rem;
  border: 1.6px solid currentColor;
  border-bottom: 0;
  border-radius: 0.4rem 0.4rem 0 0;
}
.cart-count {
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}
.header-cart .cart-count { position: absolute; top: -0.35rem; right: -0.35rem; }

/* ---------- Buttons ---------- */
.header-cta, .primary-button, .submit-button, .drawer-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--sage-dark), var(--sage-deep));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 260ms var(--ease-spring), box-shadow 260ms var(--ease);
}
.header-cta::after, .primary-button::after, .submit-button::after, .drawer-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.22) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease-out);
}
.header-cta:hover::after,
.primary-button:hover::after,
.submit-button:hover:not(:disabled)::after,
.drawer-primary:hover:not(:disabled)::after { transform: translateX(120%); }
.primary-button:hover,
.submit-button:hover:not(:disabled),
.drawer-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(44, 63, 55, 0.5);
}
.primary-button:active,
.submit-button:active:not(:disabled),
.drawer-primary:active:not(:disabled) { transform: translateY(0); }

.ghost-button {
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.ghost-button:hover { border-color: var(--sage-dark); background: rgba(26, 69, 53, 0.06); }
.ghost-ondark { color: var(--on-dark); border-color: rgba(238, 241, 230, 0.34); }
.ghost-ondark:hover { color: var(--on-dark); border-color: var(--champagne); background: rgba(238, 241, 230, 0.08); }

/* ---------- Section shells ---------- */
.eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.7rem; height: 1px; background: var(--gold); opacity: 0.9; }
.eyebrow-ondark { color: var(--champagne); }
.eyebrow-ondark::before { background: var(--champagne); }

h1, h2, h3, h4 { margin-top: 0; font-family: var(--serif); font-weight: 500; }

.section-heading { max-width: 660px; }
.section-heading h2 { margin-bottom: 1rem; font-size: clamp(2.2rem, 5vw, 3.55rem); line-height: 1.04; letter-spacing: -0.025em; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.12rem); line-height: 1.65; }

/* ---------- Hero (dark, editorial; full-bleed forest band) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(1rem, 3vw, 2rem);
  padding: clamp(2.5rem, 7vw, 5.5rem) max(clamp(1.25rem, 4vw, 3rem), calc((100% - 1240px) / 2 + 3rem)) clamp(3rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(290px, 0.94fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  color: var(--on-dark);
}
/* Full-bleed dark band behind contained content */
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(72% 108% at 84% 2%, rgba(58, 101, 81, 0.6), transparent 60%),
    radial-gradient(64% 84% at 4% 100%, rgba(189, 122, 92, 0.22), transparent 62%),
    linear-gradient(158deg, #123a2c 0%, #0e2a20 56%, #0a2019 100%);
}
/* Champagne hairline where the band meets the page below */
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold) 30% 70%, transparent);
}
.hero-copy { max-width: 640px; }
h1 {
  margin: 0 0 1.4rem;
  font-size: clamp(2.7rem, 6.4vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--on-dark);
}
h1 em { font-style: italic; color: var(--champagne); }
.hero-intro { max-width: 560px; margin: 0; color: var(--on-dark-soft); font-size: clamp(1.04rem, 1.8vw, 1.2rem); line-height: 1.65; }
.hero-actions { margin-top: 2rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.primary-button { padding: 1rem 1.7rem; }
/* On the dark hero the primary CTA is a champagne pill for maximum pop */
.hero .primary-button {
  background: linear-gradient(135deg, #e9d29a, var(--champagne));
  color: var(--sage-deep);
}
.hero .primary-button:hover { box-shadow: 0 16px 34px -12px rgba(217, 189, 131, 0.55); }
.trust-list {
  margin: 2.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  color: var(--on-dark-soft);
  font-size: 0.92rem;
  list-style: none;
}
.trust-list li { display: flex; align-items: center; gap: 0.65rem; }
.trust-list li::before {
  content: "";
  flex: none;
  width: 1.2rem; height: 1.2rem;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9bd83' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 0.72rem no-repeat;
}

/* Hero art: code-native arch window + floating proof chips */
.hero-art {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  --px: 0;
  --py: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  transform: translate3d(calc(var(--px) * var(--depth, 1) * 1px), calc(var(--py) * var(--depth, 1) * 1px), 0);
  transition: transform 400ms var(--ease-out);
}
.orb-one {
  --depth: 2.4;
  width: min(32vw, 420px); aspect-ratio: 1;
  top: -6%; right: -2%;
  background: radial-gradient(circle at 35% 30%, rgba(58, 101, 81, 0.85), rgba(18, 58, 44, 0) 66%);
  animation: drift 15s ease-in-out infinite;
}
.orb-two {
  --depth: -3.2;
  width: min(24vw, 300px); aspect-ratio: 1;
  bottom: -6%; left: -6%;
  background: radial-gradient(circle at 60% 40%, rgba(189, 122, 92, 0.6), rgba(189, 122, 92, 0) 62%);
  animation: drift 18s ease-in-out infinite reverse;
}
.orb-three {
  --depth: 1.4;
  width: min(13vw, 150px); aspect-ratio: 1;
  top: 12%; left: 6%;
  background: radial-gradient(circle at 50% 45%, rgba(217, 189, 131, 0.5), rgba(217, 189, 131, 0) 60%);
  animation: drift 12s ease-in-out infinite 1s;
}
@keyframes drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}

/* The arch "window" — the seal motif enlarged, framed by a champagne keyline */
.hero-arch {
  position: relative;
  z-index: 1;
  width: min(78%, 336px);
  aspect-ratio: 0.82;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2.4rem 1.6rem 2.1rem;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 999px 999px 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(238, 241, 230, 0.08), rgba(238, 241, 230, 0.02));
  box-shadow: inset 0 1px 0 rgba(238, 241, 230, 0.15), var(--shadow-float);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translate3d(calc(var(--px) * -0.5px), calc(var(--py) * -0.5px), 0);
  transition: transform 500ms var(--ease-out);
  animation: card-float 9s ease-in-out infinite;
}
.hero-arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 42%, rgba(238, 241, 230, 0.14) 50%, transparent 58%);
  transform: translateX(-100%);
  animation: sheen 8s ease-in-out infinite 2s;
}
.arch-seal {
  width: min(48%, 128px);
  height: auto;
  margin-bottom: auto;
  overflow: visible;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}
.hero-arch-word {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  letter-spacing: 0.01em;
  color: var(--on-dark);
}
.hero-arch-sub {
  margin: 0.35rem 0 0;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
}
.hero-chip {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.1rem;
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  background: rgba(11, 31, 24, 0.72);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--on-dark);
  animation: card-float 8s ease-in-out infinite 1.2s;
}
.hero-chip strong { font-family: var(--serif); font-size: 1.5rem; color: var(--champagne); line-height: 1; }
.hero-chip span { font-size: 0.68rem; line-height: 1.25; color: var(--on-dark-soft); }
.hero-chip-a {
  top: 11%; left: -4%;
  transform: translate3d(calc(var(--px) * 1.1px), calc(var(--py) * 1.1px), 0);
  transition: transform 400ms var(--ease-out);
}
.hero-chip-b {
  bottom: 12%; right: -4%;
  transform: translate3d(calc(var(--px) * 1.4px), calc(var(--py) * 1.4px), 0);
  transition: transform 400ms var(--ease-out);
  animation-delay: 2s;
}
@keyframes card-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes sheen { 0%, 68% { transform: translateX(-100%); } 88%, 100% { transform: translateX(100%); } }
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(58, 101, 81, 0.35); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(58, 101, 81, 0); }
}

/* ---------- Category rail (sticky treatments index) ---------- */
.category-rail {
  position: sticky;
  top: 4.2rem;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.65rem clamp(1.25rem, 4vw, 3rem);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, rgba(243, 238, 226, 0.94), rgba(243, 238, 226, 0.7));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.category-rail::-webkit-scrollbar { display: none; }
.rail-label {
  flex: none;
  color: var(--muted-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-right: 0.15rem;
}
.category-rail a {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.category-rail a:hover { border-color: var(--sage-dark); }
.category-rail a[aria-current="true"] {
  border-color: var(--sage-dark);
  background: var(--sage-dark);
  color: var(--on-dark);
  box-shadow: inset 0 0 0 1px var(--line-gold);
}

/* ---------- Process ---------- */
.process {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
}
.process-steps {
  position: relative;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 3.3rem;
  left: 16%;
  right: 16%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 14px);
  background-size: 14px 1px;
  opacity: 0.7;
}
.process-step {
  position: relative;
  padding: 2rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(253, 252, 248, 0.9), rgba(253, 252, 248, 0.55));
  backdrop-filter: blur(4px);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease), border-color 300ms var(--ease);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.process-index {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.8rem; height: 2.8rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  border: 1px solid var(--sage);
  background: var(--paper-2);
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: 0.95rem;
  transition: transform 400ms var(--ease-spring), background 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease);
}
.process-step:hover .process-index {
  transform: scale(1.08) rotate(-4deg);
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}
.process-step h3 { margin: 0 0 0.55rem; font-size: 1.3rem; letter-spacing: -0.01em; }
.process-step p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.95rem; }

/* ---------- Menu (service discovery) ---------- */
.menu {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
}
.menu-heading { max-width: 720px; }
.menu-category {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--paper-2), rgba(253, 252, 248, 0.6));
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 8rem;
}
.menu-category-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}
.category-kicker { margin: 0 0 0.4rem; color: var(--sage); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.menu-category-head h3 { margin: 0 0 0.7rem; font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -0.02em; }
.category-lede { margin: 0; max-width: 62ch; color: var(--muted); line-height: 1.6; font-size: clamp(0.98rem, 1.5vw, 1.06rem); }
.category-badge {
  flex: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Consolidated, unobtrusive clinical/legal boundary (replaces scattered blocks) */
.care-band {
  margin: clamp(1.5rem, 3vw, 2.2rem) 0 0;
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--sage-pale), rgba(229, 235, 227, 0.5));
}
.care-band-title {
  margin: 0 0 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.care-band-title::before { content: ""; width: 0.9rem; height: 1px; background: var(--gold); }
.care-band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem 1.4rem; }
.care-band-grid p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.5; }
.care-band-grid strong { color: var(--ink); font-weight: 700; }

.offer-cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}
.offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease), border-color 200ms var(--ease);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.offer-card-pending { background: repeating-linear-gradient(135deg, var(--paper-2), var(--paper-2) 12px, rgba(179,146,79,0.05) 12px, rgba(179,146,79,0.05) 24px); }
.offer-main { flex: 1; }
.offer-main h4 { margin: 0 0 0.3rem; font-family: inherit; font-weight: 700; font-size: 1.02rem; line-height: 1.3; color: var(--ink); }
.offer-main p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.offer-tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--rose-tint);
  color: #9a4c3f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 0.08em;
}
.offer-price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}
.price-figure { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); white-space: nowrap; }
.price-unit { color: var(--muted); font-size: 0.8rem; }
.price-flag {
  flex-basis: 100%;
  color: var(--muted-soft);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.offer-price-pending { color: var(--gold); font-weight: 700; font-style: italic; border-top: 1px solid var(--line); padding-top: 0.7rem; }
.offer-button {
  align-self: flex-start;
  padding: 0.6rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--sage-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 180ms var(--ease), transform 180ms var(--ease-spring);
}
.offer-button:hover { background: var(--sage-deep); }
.offer-button:active { transform: scale(0.96); }
.offer-button-ghost { background: transparent; color: var(--sage-dark); border: 1px solid var(--line-strong); }
.offer-button-ghost:hover { background: rgba(44,63,55,0.05); border-color: var(--sage-dark); }
/* Brief confirmation pulse when an item is added (class toggled by JS). */
.offer-button.is-added { background: var(--sage); }

/* ---------- IV drip bar: filter + search + progressive disclosure ---------- */
.menu-category-iv { padding-bottom: clamp(1.5rem, 4vw, 2.6rem); }
.iv-bar { margin-top: clamp(1.4rem, 3vw, 2rem); }
.iv-controls {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 0.4rem;
  border: 1px solid var(--line-gold);
  border-radius: 2rem;
  color: var(--on-dark);
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(58, 101, 81, 0.72), transparent 62%),
    linear-gradient(150deg, #173d30, #0c281f 72%);
  box-shadow: 0 26px 65px -40px rgba(8, 30, 22, 0.95);
}
.iv-discovery-copy { max-width: 32rem; }
.iv-discovery-kicker {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.iv-discovery-copy h4 {
  margin: 0 0 0.65rem;
  color: var(--on-dark);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.05;
}
.iv-discovery-copy p {
  margin: 0;
  color: var(--on-dark-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}
.iv-browse-row {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.65rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(217, 189, 131, 0.22);
}
.iv-browse-row > span {
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.iv-chips {
  display: flex;
  gap: 0.4rem;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.15rem;
}
.iv-chips::-webkit-scrollbar { display: none; }
.iv-chip {
  flex: none;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(238, 241, 230, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--on-dark-soft);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease);
}
.iv-chip:hover { color: var(--on-dark); border-color: var(--champagne); }
.iv-chip.is-active {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--sage-deep);
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.85);
}
.iv-search { display: flex; width: 100%; }
.iv-search input {
  min-height: 4rem;
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(217, 189, 131, 0.7);
  border-radius: 1.15rem;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  box-shadow: 0 20px 45px -28px rgba(0, 0, 0, 0.9);
}
.iv-search input::placeholder { color: var(--muted); }
.iv-search input:focus { outline: 3px solid rgba(217, 189, 131, 0.36); outline-offset: 3px; }
.iv-result { margin: 0.4rem 0 0.75rem; padding-left: 0.4rem; color: var(--muted-soft); font-size: 0.8rem; letter-spacing: 0.02em; }

.iv-catalog-reveal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
  padding: 1.05rem 1.2rem 1.05rem 1.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, var(--white), rgba(255, 253, 248, 0.6));
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 220ms var(--ease-out), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 220ms var(--ease);
}
.iv-catalog-reveal:hover {
  transform: translateY(-2px);
  border-color: var(--line-gold);
  background: var(--white);
  box-shadow: 0 18px 34px -28px rgba(8, 30, 22, 0.72);
}
.iv-catalog-reveal:focus-visible { outline: 3px solid rgba(58, 101, 81, 0.35); outline-offset: 3px; }
.iv-catalog-reveal-copy { display: grid; gap: 0.2rem; min-width: 0; }
.iv-catalog-reveal strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.iv-catalog-reveal small { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.01em; }
.iv-catalog-reveal-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--sage-deep);
  color: var(--champagne);
  transition: transform 320ms var(--ease-spring), background 200ms var(--ease);
}
.iv-catalog-reveal:hover .iv-catalog-reveal-icon { background: var(--sage-dark); }
.iv-catalog-reveal-icon::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  margin-top: -0.16rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.iv-catalog-reveal[aria-expanded="true"] .iv-catalog-reveal-icon { transform: rotate(180deg); }

.iv-catalog {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    grid-template-rows 480ms var(--ease-out),
    margin-top 480ms var(--ease-out),
    opacity 300ms var(--ease),
    transform 480ms var(--ease-out);
}
.iv-catalog[data-expanded="true"] {
  grid-template-rows: 1fr;
  margin-top: 1rem;
  opacity: 1;
  transform: none;
}
.iv-catalog-inner { min-height: 0; overflow: hidden; }
.iv-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0.2rem 0.8rem;
}
.iv-catalog-eyebrow {
  color: var(--sage-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.iv-catalog-heading { display: grid; gap: 0.12rem; }
.iv-catalog-position { margin: 0.18rem 0 0; color: var(--muted-soft); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; font-variant-numeric: tabular-nums; }
.iv-catalog-arrows { display: flex; gap: 0.45rem; }
.iv-catalog-arrows button {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--sage-deep);
  font-size: 1.05rem;
  cursor: pointer;
  transition: color 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease), transform 180ms var(--ease-out);
}
.iv-catalog-arrows button:hover:not(:disabled) { transform: translateY(-2px); border-color: var(--sage); background: var(--sage-deep); color: var(--white); }
.iv-catalog-arrows button:focus-visible { outline: 3px solid rgba(58, 101, 81, 0.25); outline-offset: 2px; }
.iv-catalog-arrows button:disabled { opacity: 0.34; cursor: default; }
.iv-scroll-frame { position: relative; min-width: 0; }
/* Directional edge fades: each side appears only when more bar waits that way,
   so the rail always signals whether there is more to reach. */
.iv-scroll-frame::before,
.iv-scroll-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0.95rem;
  width: clamp(1.25rem, 5vw, 3.5rem);
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms var(--ease);
}
.iv-scroll-frame::before { left: 0; background: linear-gradient(90deg, var(--paper-2), transparent); }
.iv-scroll-frame::after { right: 0; background: linear-gradient(270deg, var(--paper-2), transparent); }
.iv-scroll-frame[data-at-start="false"]::before { opacity: 0.95; }
.iv-scroll-frame[data-at-end="false"]::after { opacity: 0.95; }

.iv-grid {
  margin: 0;
  padding: 0.3rem 0.2rem 1rem;
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  /* A fluid card width that always leaves the next card peeking, so the rail
     reads as scrollable at every size without a horizontal scrollbar. */
  grid-auto-columns: clamp(15rem, 32%, 18.5rem);
  gap: 0.9rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 0.2rem;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.iv-grid::-webkit-scrollbar { display: none; }
.iv-grid:focus-visible { outline: 3px solid rgba(58, 101, 81, 0.35); outline-offset: 3px; border-radius: var(--radius); }
.iv-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), rgba(255, 253, 248, 0.55));
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease), border-color 200ms var(--ease);
  scroll-snap-align: start;
}
.iv-catalog.is-entering .iv-card:not([hidden]) { animation: iv-card-reveal 520ms var(--ease-out) both; animation-delay: calc(var(--iv-enter-order, 0) * 55ms); }
.iv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.iv-card[hidden] { display: none; }
.iv-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.7rem; }
.iv-name { margin: 0; font-family: var(--serif); font-size: 1.22rem; font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
.iv-catalog-name {
  display: block;
  margin-top: 0.34rem;
  font-family: inherit;
  color: var(--muted-soft);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}
.iv-price { flex: none; font-family: var(--serif); font-size: 1.28rem; color: var(--sage-dark); }
.iv-purpose { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.45; }
.iv-meta { margin: 0.1rem 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; }
.iv-time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.iv-time::before {
  content: "";
  width: 0.8rem; height: 0.8rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.7;
}
.iv-flag {
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  background: var(--rose-tint);
  color: #8a4a2c;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.iv-flag-caution { background: rgba(169, 130, 47, 0.16); color: #7a5c15; }
.iv-formula { margin: 0.15rem 0 0; }
.iv-formula > summary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
  color: var(--sage-dark);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  width: max-content;
}
.iv-formula > summary::-webkit-details-marker { display: none; }
.iv-formula > summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 0.9rem;
  line-height: 1;
}
.iv-formula[open] > summary::after { content: "\2212"; }
.iv-formula-body { padding-top: 0.5rem; display: grid; gap: 0.4rem; animation: iv-open 0.28s var(--ease-out); }
.iv-formula-body p { margin: 0; color: var(--muted); font-size: 0.82rem; line-height: 1.5; }
.iv-formula-body b { color: var(--sage-dark); font-weight: 700; }
@keyframes iv-open { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@keyframes iv-card-reveal { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.iv-add { margin-top: auto; align-self: flex-start; }
.iv-card-caution { border-color: rgba(169, 130, 47, 0.5); background: linear-gradient(180deg, rgba(255, 252, 244, 0.95), rgba(255, 250, 238, 0.7)); }
.iv-card-addon { border-style: dashed; }
.iv-carousel-progress {
  height: 3px;
  margin: 0.1rem 0.2rem 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(44, 63, 55, 0.12);
}
.iv-carousel-progress span {
  display: block;
  width: 6%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--gold) 65%, var(--champagne));
  transition: width 200ms var(--ease-out);
}
.iv-swipe-hint {
  margin: 0.6rem 0.2rem 0;
  color: var(--muted-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
/* When a search clears the bar, drop the scroll chrome and let the empty note speak. */
.iv-catalog[data-empty="true"] .iv-carousel-progress,
.iv-catalog[data-empty="true"] .iv-swipe-hint,
.iv-catalog[data-empty="true"] .iv-catalog-position,
.iv-catalog[data-empty="true"] .iv-catalog-arrows { display: none; }
.iv-empty {
  margin: 1.4rem 0 0;
  padding: 1.4rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}
.iv-empty[hidden] { display: none; }
.iv-reset {
  border: 0;
  background: none;
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 620px) {
  .iv-catalog-reveal { padding: 0.95rem 1rem; }
  .iv-catalog-reveal strong { font-size: 1.08rem; }
  .iv-grid { grid-auto-columns: min(82vw, 18.5rem); }
  .iv-scroll-frame::before,
  .iv-scroll-frame::after { width: 1.5rem; }
}

.pricing-note {
  max-width: 760px;
  margin: clamp(2rem, 4vw, 2.8rem) auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.65;
}

.menu-care-note {
  max-width: 780px;
  margin: 0.75rem auto 0;
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}
.menu-care-note summary {
  width: max-content;
  margin: 0 auto;
  color: var(--sage-dark);
  font-weight: 800;
  cursor: pointer;
}
.menu-care-note p { margin: 0.65rem 0 0; text-align: center; }

/* ---------- Offers / revenue surfaces ---------- */
#how-it-works,
#menu,
#offers,
#studio,
#consultation,
#faq {
  scroll-margin-top: 8rem;
}

.offers {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--sage-deep);
  color: #fff;
}
.offers::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 18% 0%, rgba(58, 101, 81, 0.55), transparent 60%),
    radial-gradient(50% 60% at 90% 100%, rgba(189, 122, 92, 0.26), transparent 60%);
}
.offers > * { position: relative; }
.offers > .section-heading { max-width: 720px; margin: 0 auto; text-align: center; }
.offers .eyebrow { color: var(--champagne); justify-content: center; }
.offers .eyebrow::before { background: var(--champagne); }
.offers .section-heading > p:last-child { color: #cdd8d1; }
.offer-tiles {
  max-width: 1040px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.offer-tile {
  position: relative;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 300ms var(--ease-out), background 260ms var(--ease), border-color 260ms var(--ease);
}
.offer-tile:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.28); }
.offer-tile-mark {
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #eaf0eb;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.offer-tile h3 { margin: 0 0 0.55rem; font-size: 1.28rem; letter-spacing: -0.01em; }
.offer-tile p { margin: 0 0 1.1rem; color: #d3ddd6; font-size: 0.92rem; line-height: 1.6; }
.offer-tile-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(179, 146, 79, 0.2);
  color: #f0dfb6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.offer-tile-status::before {
  content: "";
  width: 0.45rem; height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}
.offer-tile-status[data-live="true"] { background: rgba(95, 118, 106, 0.32); color: #d9e6dc; }
.offer-tile-status[data-live="true"]::before { background: #8fd0a8; }

/* ---------- Location / studio ---------- */
.location {
  max-width: 1144px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}
.location-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.location-copy { max-width: 520px; }
.location-copy h2 { margin-bottom: 1rem; font-size: clamp(2.1rem, 4.4vw, 3.2rem); line-height: 1.04; letter-spacing: -0.025em; }
.location-copy > p { margin: 0 0 1.6rem; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.1rem); line-height: 1.65; }
.studio-address {
  display: grid;
  gap: 0.32rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  border-radius: 0 0.9rem 0.9rem 0;
  background: var(--paper-2);
  box-shadow: var(--shadow-sm);
  font-style: normal;
  color: var(--muted);
  line-height: 1.5;
}
.studio-address .studio-brand { color: var(--ink); font-weight: 700; font-size: 1rem; margin-bottom: 0.15rem; }
.studio-note { margin: 1.4rem 0 0; color: var(--muted-soft); font-size: 0.86rem; line-height: 1.6; }

.location-visual { display: flex; justify-content: center; }
.map-card {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1.24;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 20% 10%, var(--sage-pale), transparent 55%),
    linear-gradient(160deg, var(--paper-2), var(--rose-tint));
  box-shadow: var(--shadow);
}
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-block { fill: rgba(58, 101, 81, 0.12); stroke: rgba(58, 101, 81, 0.24); stroke-width: 1; }
.map-street { stroke: rgba(20, 35, 29, 0.14); stroke-width: 6; stroke-linecap: round; }
.map-route {
  stroke: var(--rose);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw 2s var(--ease-out) 0.4s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.map-pin {
  position: absolute;
  left: 50.6%;
  top: 50.8%;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate(-50%, -50%);
}
.map-pin-dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 2px 8px -1px rgba(189, 122, 92, 0.7), inset 0 0 0 3px rgba(255, 255, 255, 0.9);
}
.map-pin-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: rgba(189, 122, 92, 0.4);
  animation: pin-pulse 2.8s ease-out infinite;
}
@keyframes pin-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70%, 100% { transform: scale(2.6); opacity: 0; }
}

/* ---------- Consultation ---------- */
.consultation-shell {
  max-width: 1144px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(400px, 1.22fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.consultation-intro { position: sticky; top: 6rem; }
.consultation-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.consultation-intro h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); line-height: 1.04; letter-spacing: -0.025em; }
.boundary-note {
  margin-top: 1.8rem;
  padding: 1.15rem 1.25rem;
  display: grid;
  gap: 0.35rem;
  border-left: 3px solid var(--rose);
  border-radius: 0 0.8rem 0.8rem 0;
  background: var(--rose-tint);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.boundary-note strong { color: var(--ink); }

.consultation-form {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), var(--white));
  box-shadow: var(--shadow-float);
}
.consultation-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, var(--champagne), transparent 42%, rgba(58, 101, 81, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.availability-status {
  margin-bottom: 1.6rem;
  padding: 0.85rem 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 0.7rem;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 600;
}
.availability-status::before {
  content: "";
  flex: none;
  width: 0.6rem; height: 0.6rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 0 rgba(95, 118, 106, 0.3);
  animation: pulse-dot 2.6s ease-out infinite;
}
.availability-status[data-disabled="true"] { background: #fbeed6; color: #6d480f; }
.availability-status[data-disabled="true"]::before { background: var(--gold); animation: none; box-shadow: 0 0 0 4px rgba(179, 146, 79, 0.25); }

/* Booking-bag summary carried into the consultation form */
.booking-summary {
  margin-bottom: 1.4rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  border-radius: 0 0.7rem 0.7rem 0;
  background: var(--paper-2);
}
.booking-summary[hidden] { display: none; }
.booking-summary-label { margin: 0 0 0.5rem; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); }
.booking-summary-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.3rem; color: var(--muted); font-size: 0.9rem; }
.booking-summary-list li { display: flex; gap: 0.5rem; }
.booking-summary-list li::before { content: "·"; color: var(--rose); font-weight: 800; }

.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.05rem; }
.field { display: grid; gap: 0.45rem; }
.field-full { grid-column: 1 / -1; }
.field-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.005em; transition: color 160ms var(--ease); }
.field-label em { color: var(--rose); font-style: normal; }
.field:focus-within .field-label { color: var(--sage-dark); }
.field-hint { margin: 0.9rem 0 0; color: var(--muted-soft); font-size: 0.82rem; line-height: 1.5; }

input, select {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #bcc5c0;
  border-radius: 0.7rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
input:hover:not(:disabled), select:hover:not(:disabled) { border-color: var(--sage); }
input:focus, select:focus {
  border-color: var(--sage-dark);
  background: #fffdfa;
  box-shadow: 0 0 0 4px rgba(95, 118, 106, 0.2), 0 8px 20px -14px rgba(31, 46, 40, 0.5);
}
input:focus-visible, select:focus-visible, button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(192, 134, 123, 0.5);
  outline-offset: 2px;
}
input:disabled, select:disabled { background: #f1f3f0; color: #8a8f8b; cursor: not-allowed; border-color: #d6dbd7; }

.consent-row {
  margin: 1.4rem 0 0;
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.consent-row input { width: 1.2rem; min-height: 1.2rem; margin: 0.08rem 0 0; accent-color: var(--sage-dark); }

.honeypot {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-message { margin: 1.4rem 0 0; padding: 0.95rem 1.1rem; border-radius: 0.7rem; font-size: 0.9rem; line-height: 1.5; animation: msg-in 0.5s var(--ease-out) both; }
.form-message[hidden] { display: none; }
.form-error { background: #fbeeeb; color: #8b3226; border: 1px solid rgba(139, 50, 38, 0.18); }
.form-success {
  position: relative;
  display: grid;
  gap: 0.25rem;
  padding-left: 3.2rem;
  background: var(--sage-pale);
  color: var(--sage-dark);
  border: 1px solid rgba(44, 63, 55, 0.14);
}
.form-success strong { font-size: 0.98rem; }
.form-success::before {
  content: "";
  position: absolute;
  left: 1.05rem; top: 1.05rem;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: var(--sage-dark);
}
.form-success::after {
  content: "";
  position: absolute;
  left: 1.5rem; top: 1.42rem;
  width: 0.32rem; height: 0.62rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  animation: check 0.4s var(--ease-spring) 0.25s forwards;
}
@keyframes check { to { transform: rotate(45deg) scale(1); } }
@keyframes msg-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.submit-button { width: 100%; min-height: 3.35rem; margin-top: 1.4rem; padding: 0.85rem 1.2rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; }
.submit-button:disabled { background: #a4ada8; cursor: not-allowed; }
.submit-button[aria-busy="true"] { opacity: 0.9; }
.submit-button[aria-busy="true"]::before {
  content: "";
  width: 1rem; height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.privacy-line { margin: 1rem 0 0; color: var(--muted-soft); font-size: 0.78rem; text-align: center; line-height: 1.5; }
.privacy-line a { color: var(--sage-dark); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
}
.faq-list { margin-top: clamp(2rem, 4vw, 2.8rem); display: grid; gap: 0.8rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  overflow: hidden;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.faq-item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 1.7rem; height: 1.7rem;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 200ms var(--ease), background 160ms var(--ease);
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); background: var(--rose-pale); color: #9a4c3f; }
.faq-item p { margin: 0; padding: 0 1.4rem 1.3rem; color: var(--muted); line-height: 1.65; }

/* ---------- Footer ---------- */
footer {
  max-width: 1144px;
  margin: 0 auto;
  padding: 2.6rem clamp(1.25rem, 4vw, 3rem) 3.2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}
.footer-brand { display: grid; gap: 0.3rem; }
.footer-lockup { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 0.15rem; }
.footer-seal { width: 1.95rem; height: 2.25rem; flex: none; display: inline-block; }
.footer-seal .brand-seal { width: 100%; height: 100%; overflow: visible; }
.footer-seal .seal-body { fill: var(--forest); stroke: var(--line-gold); }
.footer-seal .seal-moon { fill: var(--paper-2); }
.footer-brand strong { color: var(--ink); font-size: 1rem; font-family: var(--serif); font-weight: 500; }
.footer-brand a { color: var(--sage-dark); font-weight: 600; text-decoration: none; }
.footer-brand a:hover { text-decoration: underline; }
.footer-note { max-width: 480px; margin: 0; text-align: right; }

/* ---------- Booking bag drawer ---------- */
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(23, 32, 29, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 300ms var(--ease);
}
.drawer-scrim[data-open="true"] { opacity: 1; }
.drawer-scrim[hidden] { display: none; }

.booking-drawer {
  position: fixed;
  z-index: 61;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(420px, 100vw);
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  box-shadow: var(--shadow-float);
  transform: translateX(100%);
  transition: transform 380ms var(--ease-out);
}
.booking-drawer[data-open="true"] { transform: translateX(0); }
.booking-drawer[hidden] { display: none; }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.drawer-title { margin: 0; font-size: 1.25rem; }
.drawer-close {
  width: 2.4rem; height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms var(--ease), border-color 160ms var(--ease);
}
.drawer-close:hover { background: var(--sage-pale); border-color: var(--sage); }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.drawer-state {
  margin: 0;
  padding: 0.9rem 1.05rem;
  border-radius: 0.7rem;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 600;
}
.drawer-state[hidden] { display: none; }
.drawer-state[data-tone="info"] { background: var(--sage-pale); color: var(--sage-dark); }
.drawer-state[data-tone="warn"] { background: #fbeed6; color: #6d480f; }
.drawer-state[data-tone="error"] { background: #fbeeeb; color: #8b3226; }
.drawer-state[data-tone="success"] { background: var(--sage-pale); color: var(--sage-dark); }

.hold-banner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  background: #fbeed6;
  color: #6d480f;
  font-size: 0.86rem;
}
.hold-banner[hidden] { display: none; }
.hold-dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s ease-out infinite; }
.hold-banner strong { font-variant-numeric: tabular-nums; }

.drawer-items { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.7rem; }
.drawer-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.drawer-item-name { font-weight: 700; font-size: 0.95rem; }
.drawer-item-note { grid-column: 1 / -1; color: var(--muted); font-size: 0.8rem; line-height: 1.4; }
.drawer-item-price { color: var(--ink); font-family: var(--serif); font-size: 1rem; white-space: nowrap; }
.drawer-item-remove {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.drawer-empty { margin: 0; padding: 2rem 0; color: var(--muted-soft); text-align: center; font-size: 0.92rem; }
.drawer-empty[hidden] { display: none; }

.drawer-fulfilment[hidden] { display: none; }
.commerce-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.commerce-heading { grid-column: 1 / -1; margin: 0 0 0.15rem; }
.commerce-field { display: grid; gap: 0.35rem; min-width: 0; }
.commerce-field-full { grid-column: 1 / -1; }
.commerce-field-label { color: var(--ink); font-size: 0.76rem; font-weight: 800; }
.commerce-field input,
.commerce-field select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: var(--paper-2);
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
}
.commerce-field input:focus,
.commerce-field select:focus { outline: 2px solid var(--sage); outline-offset: 2px; }
.commerce-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}
.commerce-consent input { width: 1.05rem; height: 1.05rem; margin-top: 0.12rem; flex: none; }
.drawer-summary { padding-top: 0.9rem; border-top: 1px solid var(--line); }
.drawer-summary[hidden] { display: none; }
.drawer-summary-row { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; }
.drawer-summary-row span:last-child { font-family: var(--serif); font-size: 1.2rem; }
.drawer-summary-note { margin: 0.4rem 0 0; color: var(--muted-soft); font-size: 0.78rem; line-height: 1.45; }

.drawer-foot {
  padding: 1.1rem 1.4rem calc(1.1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--white);
  display: grid;
  gap: 0.7rem;
}
.drawer-mode-note { margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.5; }
.drawer-primary { min-height: 3.2rem; padding: 0.85rem 1.2rem; font-size: 0.98rem; }
.drawer-primary:disabled { background: #a4ada8; cursor: not-allowed; }
.drawer-secondary {
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}
.drawer-secondary[hidden] { display: none; }

/* ---------- Mobile thumb nav ---------- */
.thumb-nav {
  position: fixed;
  z-index: 50;
  left: 0; right: 0;
  bottom: 0;
  display: none;
  align-items: stretch;
  padding: 0.35rem 0.4rem calc(0.35rem + env(safe-area-inset-bottom));
  background: rgba(253, 252, 248, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
}
.thumb-item {
  position: relative;
  flex: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.15rem;
  padding: 0.4rem 0.2rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0.8rem;
  transition: color 160ms var(--ease), background 160ms var(--ease);
}
.thumb-item:hover, .thumb-item[aria-current="true"] { color: var(--sage-dark); }
.thumb-glyph { font-size: 1.1rem; line-height: 1; color: currentColor; }
.thumb-book { color: var(--sage-dark); }
.thumb-book .thumb-glyph {
  width: 1.15rem; height: 1.05rem;
  border: 1.6px solid currentColor;
  border-radius: 0.28rem 0.28rem 0.34rem 0.34rem;
  position: relative;
}
.thumb-book .thumb-glyph::before {
  content: "";
  position: absolute;
  top: -0.4rem; left: 50%;
  transform: translateX(-50%);
  width: 0.6rem; height: 0.48rem;
  border: 1.6px solid currentColor;
  border-bottom: 0;
  border-radius: 0.4rem 0.4rem 0 0;
}
.thumb-book .cart-count { position: absolute; top: 0.1rem; right: 22%; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .consultation-shell { grid-template-columns: 1fr; }
  .consultation-intro { position: static; }
}

@media (max-width: 820px) {
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 2rem; }
  .hero-art { min-height: 360px; margin-top: 0.5rem; }
  .orb-one { width: min(70vw, 420px); }
  .orb-two { width: min(56vw, 320px); }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .care-band-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .iv-controls { grid-template-columns: 1fr; }
  .iv-browse-row { grid-column: auto; }
  .location-inner { grid-template-columns: 1fr; }
  .map-card { width: min(100%, 360px); }
}

/* Mobile: promote the thumb nav; keep content clear of it. */
@media (max-width: 720px) {
  body { padding-bottom: var(--thumb-h); }
  .thumb-nav { display: flex; }
  .header-actions { display: none; }
  .category-rail { top: 4.2rem; }
  .booking-drawer { width: 100vw; }
  .drawer-foot { padding-bottom: calc(1.1rem + env(safe-area-inset-bottom) + var(--thumb-h)); }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  .hero { padding-top: 1.5rem; }
  .hero-actions { gap: 0.75rem; }
  .primary-button, .ghost-button { width: 100%; text-align: center; }
  .hero-art { min-height: 330px; }
  .hero-arch { width: min(76%, 264px); }
  .hero-chip { padding: 0.55rem 0.8rem; }
  .hero-chip strong { font-size: 1.25rem; }
  .hero-chip-a { top: 6%; left: 0; }
  .hero-chip-b { bottom: 8%; right: 0; }
  .iv-controls { padding: 1.25rem; border-radius: 1.35rem; }
  .iv-search, .iv-search input { width: 100%; }
  .iv-search input { min-height: 3.6rem; font-size: 0.94rem; }
  .menu-category-head { flex-direction: column; }
  .offer-cards { grid-template-columns: 1fr; }
  .commerce-form { grid-template-columns: 1fr; }
  .commerce-field-full, .commerce-heading { grid-column: auto; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  footer { display: grid; }
  .footer-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  /* Content appears at rest; no travel, no parallax, no blur, no looping ambience. */
  .reveal-ready [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-art { --px: 0 !important; --py: 0 !important; }
  .map-route { stroke-dashoffset: 0 !important; }
  .map-pin-ring { display: none; }
  /* The drawer still slides so its open/close is perceivable, but instantly. */
  .booking-drawer { transition: none !important; }
}
