/* ==========================================================================
   tokens.css — Design system · Vantho Peter Dental Center
   Clean, gentle dentistry: soft mint / aqua-green + white + warm neutral.
   OKLCH color. Calm, clinical, reassuring — distinct from the chiropractic teal.
   ========================================================================== */

:root {
  color-scheme: light;

  /* --- Ink (cool slate) --- */
  --ink-900: oklch(27% 0.022 220);
  --ink-700: oklch(38% 0.022 220);
  --ink-500: oklch(48% 0.020 220);
  --ink-300: oklch(70% 0.016 220);

  /* --- Paper (warm-cool off-white) --- */
  --paper:   oklch(98.4% 0.006 170);
  --paper-2: oklch(96.2% 0.012 168);
  --white:   oklch(100% 0 0);

  /* --- Mint / aqua-green (brand) --- */
  --mint-100: oklch(97% 0.020 168);
  --mint-200: oklch(94.5% 0.035 168);
  --mint-300: oklch(88% 0.060 168);
  --mint-400: oklch(78% 0.090 169);
  --mint-500: oklch(68% 0.100 170);
  --mint-600: oklch(58% 0.098 172);
  --mint-700: oklch(47% 0.090 173);
  --mint-800: oklch(40% 0.078 174);
  --mint-900: oklch(31% 0.055 176);

  /* --- Warm neutral accent (sand) --- */
  --sand-200: oklch(93% 0.030 76);
  --sand-400: oklch(86% 0.055 74);
  --sand-600: oklch(74% 0.080 68);

  /* Status */
  --good: oklch(66% 0.13 165);
  --bad:  oklch(60% 0.17 28);

  /* --- Semantic --- */
  --bg:            var(--paper);
  --bg-elevated:   var(--white);
  --bg-sunken:     var(--paper-2);
  --bg-inverse:    var(--mint-900);

  --text:          var(--ink-900);
  --text-muted:    var(--ink-500);
  --text-inverse:  oklch(97% 0.02 168);

  --border:        oklch(91% 0.014 168);
  --border-strong: oklch(84% 0.024 168);

  --primary:           var(--mint-700);
  --primary-strong:    var(--mint-800);
  --primary-contrast:  var(--white);
  --primary-tint:      var(--mint-200);

  --accent:        var(--sand-600);
  --focus-ring:    var(--mint-600);

  /* --- Typography --- */
  --font-display: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.12rem);
  --step-1:  clamp(1.18rem, 1.10rem + 0.40vw, 1.44rem);
  --step-2:  clamp(1.40rem, 1.26rem + 0.68vw, 1.95rem);
  --step-3:  clamp(1.68rem, 1.46rem + 1.10vw, 2.55rem);
  --step-4:  clamp(2.00rem, 1.66rem + 1.75vw, 3.35rem);
  --step-5:  clamp(2.40rem, 1.90rem + 2.55vw, 4.40rem);

  --leading-tight: 1.08;
  --leading-body:  1.62;
  --tracking-tight: -0.018em;
  --tracking-wide:  0.10em;

  /* --- Space (4px scale) --- */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6.5rem;

  /* --- Layout --- */
  --container:      75rem;
  --container-wide: 84rem;
  --container-prose: 42rem;
  --gutter: clamp(1rem, 4vw, 2.25rem);

  /* --- Radii — soft, clinical --- */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* --- Shadows — soft, cool --- */
  --shadow-sm: 0 1px 2px oklch(45% 0.05 200 / 0.06), 0 1px 1px oklch(45% 0.05 200 / 0.04);
  --shadow:    0 8px 24px oklch(45% 0.06 200 / 0.09), 0 2px 6px oklch(45% 0.05 200 / 0.05);
  --shadow-lg: 0 26px 60px oklch(45% 0.07 200 / 0.14), 0 8px 20px oklch(45% 0.05 200 / 0.08);

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --dur-fast: 150ms;
  --dur:      280ms;
  --dur-slow: 560ms;

  --header-h: 4.6rem;
}
/* ==========================================================================
   base.css — Modern reset + base typography + a11y
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100svh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: var(--leading-body);
  font-synthesis: none;
  overflow-x: clip;
}

img, picture, svg, video, canvas { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.16em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}
p { text-wrap: pretty; }

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
strong { font-weight: 650; }

::selection { background: var(--primary); color: var(--primary-contrast); }

:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; border-radius: var(--radius-sm); }
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute; left: var(--space-md); top: -100%;
  z-index: 200; padding: 0.6rem 1rem;
  background: var(--ink-900); color: #fff;
  border-radius: var(--radius-sm); font-weight: 600;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus-visible { top: var(--space-md); }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Viewport fit — the hero fills exactly one screen; sections size by content.
   "Fit" never means clip. See references/viewport-fit-system.md.
   ========================================================================== */

/* HERO fills EXACTLY one screen under the sticky header. The header is
   position:sticky (occupies --header-h IN FLOW), so we SUBTRACT --header-h —
   never add it as padding (that makes hero = header + 100svh and overflows). */
.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-content: center;
  gap: clamp(0.8rem, 2svh, 1.75rem);
  padding-block: clamp(1rem, 2.4svh, 2.25rem);
  padding-inline: var(--gutter);
}
/* Title cap DELIBERATELY low (<=3.6rem), mixing vw + svh so a wide monitor
   never wraps it to 4 lines that shove the CTA off-screen. */
.hero__title {
  font-size: clamp(1.9rem, 1.2rem + 2vw + 1.4svh, 3.6rem);
  line-height: 1.05;
  text-wrap: balance;
}
.hero__subtitle { font-size: clamp(1rem, 1.4svh + 0.4vw, 1.3rem); max-width: 46ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

[data-hero-fit] > * { font-size: calc(1em * var(--hero-scale, 1)); }

/* MOBILE/TABLET: defined-height hero; text compact, media takes the rest. */
@media (max-width: 59.99rem) {
  .hero { display: flex; height: calc(100svh - var(--header-h)); min-height: 0; align-items: stretch; }
  .hero > .container { display: flex; flex-direction: column; min-height: 0; }
  .hero .hero-grid { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; gap: clamp(0.7rem, 2svh, 1.2rem); align-items: stretch; }
  .hero .hero-grid > :first-child { flex: 0 0 auto; }
  .hero .hero-grid > :last-child:not(:first-child) { flex: 1 1 auto; min-height: 0; overflow: hidden; aspect-ratio: auto; }
  .hero .hero-grid > :last-child:not(:first-child) img { height: 100% !important; width: 100%; max-height: none !important; object-fit: cover; aspect-ratio: auto !important; }
  .hero__title { font-size: clamp(1.65rem, 5.5vw + 0.4rem, 2.5rem); }
  .hero__lead { font-size: 1rem; line-height: 1.45; }
}
/* DESKTOP: 2 columns; the image is bounded to not exceed the screen height. */
@media (min-width: 60rem) {
  .hero-grid img, .hero-grid > figure, .hero-grid > .hero-media { max-height: calc(100svh - var(--header-h) - 4rem); object-fit: cover; }
}

/* SHORT viewports: compact by tiers (the real overflow was 1920x900, wide-but-short). */
@media (max-height: 820px) {
  .hero { padding-block: clamp(0.85rem, 1.8svh, 1.4rem); }
  .hero__title { font-size: clamp(1.7rem, 1.05rem + 1.7vw + 1svh, 2.9rem); }
}
@media (max-height: 660px) {
  .hero__title { font-size: clamp(1.5rem, 1rem + 1.5vw, 2.35rem); line-height: 1.06; }
  .hero__subtitle { font-size: 0.98rem; }
}
@media (max-height: 560px) {
  .hero { min-height: auto; align-content: start; padding-block: clamp(0.75rem, 1.5svh, 1.1rem); }
  .hero__title { font-size: clamp(1.5rem, 6.5vw, 2.2rem); }
}

/* SECTIONS: height by content, never fixed. */
.section { padding-block: clamp(3rem, 8vw, 6rem); padding-inline: var(--gutter); }
.section--tight { padding-block: clamp(2rem, 5vw, 3.5rem); }
/* ==========================================================================
   layout.css — Containers, sections, grids
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide  { max-width: var(--container-wide); }
.container--prose { max-width: var(--container-prose); }

.section-head {
  max-width: 48rem;
  margin-bottom: var(--space-xl);
}
.section-head--center { margin-inline: auto; text-align: center; }

/* Hero: two columns that collapse */
.hero-grid { display: grid; gap: var(--space-2xl); align-items: center; }
@media (min-width: 60rem) {
  .hero-grid { grid-template-columns: 1.06fr 0.94fr; gap: var(--space-3xl); }
}

.cluster { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }
.stack { display: flex; flex-direction: column; gap: var(--space-md); }
.rule { height: 1px; background: var(--border); border: 0; }
/* ==========================================================================
   components.css — Vantho Peter Dental Center
   Calm, clinical, gentle. Soft mint + white + warm neutral.
   ========================================================================== */

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--mint-700);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 0.6ch;
}
.eyebrow::before {
  content: ""; inline-size: 1.5rem; block-size: 3px;
  background: currentColor; border-radius: 2px;
}
.h-sec { font-size: var(--step-4); color: var(--text); }
.lead { font-size: var(--step-1); color: var(--text-muted); max-width: 52ch; margin-top: var(--space-sm); }
.section-head { max-width: 50rem; margin-bottom: var(--space-xl); }

/* ---------- Section tints ---------- */
.section--soft { background: var(--bg-sunken); }
.section--mint {
  background:
    radial-gradient(60% 60% at 88% 4%, var(--mint-200) 0%, transparent 60%),
    radial-gradient(46% 46% at 2% 98%, color-mix(in oklch, var(--sand-400) 40%, transparent) 0%, transparent 62%),
    var(--bg);
}
.section--flush { padding-block: clamp(3rem, 8vw, 6rem); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--primary); --_fg: var(--primary-contrast);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55ch;
  padding: 0.85rem 1.4rem; min-height: 3rem;
  background: var(--_bg); color: var(--_fg);
  border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-0);
  line-height: 1; text-decoration: none; white-space: nowrap;
  box-shadow: 0 8px 20px oklch(47% 0.09 173 / 0.22);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px oklch(47% 0.09 173 / 0.30); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --_bg: transparent; --_fg: var(--mint-800);
  border: 1.5px solid var(--border-strong); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--mint-600); color: var(--mint-700); background: var(--mint-100); box-shadow: none; }
.btn--lg { padding: 1rem 1.75rem; min-height: 3.4rem; font-size: var(--step-1); }
.btn--call { background: var(--sand-400); color: oklch(34% 0.05 70); box-shadow: 0 10px 26px oklch(74% 0.08 68 / 0.35); }
.btn--call:hover { background: var(--sand-200); color: oklch(30% 0.05 70); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: var(--white); border-block-end: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%); transition: transform var(--dur) var(--ease-out);
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu__panel { display: grid; gap: 0.2rem; padding: var(--space-lg) var(--gutter) var(--space-xl); }
.mobile-menu__panel a {
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-2);
  color: var(--text); padding-block: 0.55rem; border-block-end: 1px solid var(--border);
}
.mobile-menu__cta {
  margin-top: 0.6rem; border: 0 !important;
  display: inline-flex; align-items: center; gap: 0.5ch;
  background: var(--mint-700); color: #fff !important; justify-content: center;
  border-radius: var(--radius-pill); padding: 0.85rem 1.25rem !important; font-size: var(--step-1) !important;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero--vp {
  background:
    radial-gradient(52% 55% at 92% 2%, var(--mint-200) 0%, transparent 60%),
    radial-gradient(40% 42% at 0% 100%, color-mix(in oklch, var(--sand-400) 45%, transparent) 0%, transparent 60%),
    var(--bg);
}
.hero__title { margin-block: 0 var(--space-sm); color: var(--text); }
.hero__title .hl { color: var(--mint-700); }
.hero__lead { font-size: var(--step-1); color: var(--text-muted); max-width: 36rem; margin-bottom: var(--space-lg); }

.pill {
  display: inline-flex; align-items: center; gap: 0.6ch;
  background: var(--white); border: 1px solid var(--border);
  color: var(--mint-800); font-weight: 600; font-size: var(--step--1);
  padding: 0.42rem 0.9rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); margin-bottom: var(--space-sm);
}
.pill__dot {
  inline-size: 9px; block-size: 9px; border-radius: 50%; background: var(--mint-500);
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--mint-500) 60%, transparent);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--mint-500) 55%, transparent); }
  70% { box-shadow: 0 0 0 9px color-mix(in oklch, var(--mint-500) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--mint-500) 0%, transparent); }
}

.hero-facts { list-style: none; padding: 0; margin-top: var(--space-lg); display: grid; gap: 0.45rem; }
.hero-facts li { display: flex; align-items: center; gap: 0.6ch; font-size: var(--step-0); color: var(--text); font-weight: 500; }
.hero-facts svg { color: var(--mint-600); flex: none; }
/* On phones the hero-facts duplicate the trust strip directly below — drop them
   so the bounded hero image keeps a healthy height within the one-screen hero. */
@media (max-width: 59.99rem) { .hero-facts { display: none; } }

.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 6px solid var(--white); width: 100%;
}
.hero-media::after {
  content: ""; position: absolute; inset-block-start: -1.1rem; inset-inline-end: -1.1rem;
  inline-size: 5rem; block-size: 5rem; border-radius: 46% 54% 60% 40%;
  background: color-mix(in oklch, var(--mint-400) 65%, transparent); z-index: -1;
}
.hero-media__chip {
  position: absolute; inset-block-end: -0.9rem; inset-inline-start: -0.6rem;
  display: flex; align-items: center; gap: 0.7ch;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.7rem 0.95rem;
  box-shadow: var(--shadow); font-size: 0.82rem; line-height: 1.3; max-width: 16rem;
}
.hero-media__ico {
  inline-size: 2.3rem; block-size: 2.3rem; flex: none; border-radius: 12px;
  display: grid; place-items: center; background: var(--mint-200); color: var(--mint-700);
}
.hero-media__chip b { color: var(--text); font-family: var(--font-display); }
@media (max-width: 59.99rem) { .hero-media__chip { display: none; } }

/* Short/small phones (e.g. 812x375 landscape, 360x640 portrait): drop the media
   + secondary copy so the headline + primary CTA stay visible on one screen
   without squeezing the hero image down to a broken-looking sliver. */
@media (max-width: 59.99rem) and (max-height: 700px) {
  .hero { height: auto; min-height: calc(100svh - var(--header-h)); align-items: center; }
  .hero .hero-grid > :last-child:not(:first-child) { display: none; }
  .hero .pill, .hero .hero-facts { display: none; }
  .hero__title { font-size: clamp(1.35rem, 4.6vw + 0.3rem, 1.95rem); margin-bottom: 0.5rem; }
  .hero__lead { font-size: 0.9rem; line-height: 1.35; margin-bottom: 0.6rem; }
  .hero__ctas .btn { min-height: 2.7rem; padding-block: 0.6rem; }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust { background: var(--mint-900); color: var(--text-inverse); }
.trust__row {
  list-style: none; margin: 0; padding: 1.1rem 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem 2.2rem; justify-content: center; align-items: center;
}
.trust__row li { display: inline-flex; align-items: center; gap: 0.65ch; font-weight: 600; font-size: 0.98rem; }
.trust__ico { display: grid; place-items: center; color: var(--mint-300); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.svc-grid {
  display: grid; gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.svc {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  display: flex; flex-direction: column; gap: 0.5rem; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.svc__ico {
  inline-size: 3.2rem; block-size: 3.2rem; border-radius: 18px; margin-bottom: 0.3rem;
  display: grid; place-items: center; background: var(--mint-200); color: var(--mint-700);
}
.svc__name { font-family: var(--font-display); font-size: var(--step-1); }
.svc__text { color: var(--text-muted); font-size: var(--step-0); }
.svc-note { margin-top: var(--space-xl); font-size: var(--step-0); color: var(--text-muted); }
.svc-note a { color: var(--mint-700); font-weight: 600; }

/* ==========================================================================
   YOUR VISIT — what to expect (STAR MOMENT)
   ========================================================================== */
.visit-top { display: grid; gap: var(--space-2xl); align-items: center; margin-bottom: var(--space-2xl); }
@media (min-width: 60rem) { .visit-top { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-3xl); } }
.visit-intro .lead { margin-bottom: 0; }
.visit-photo { position: relative; }
.visit-photo img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 6px solid var(--white); width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
}
.visit-photo::before {
  content: ""; position: absolute; inset-block-end: -1.1rem; inset-inline-end: -1.1rem;
  inline-size: 5.5rem; block-size: 5.5rem; border-radius: 50%;
  background: color-mix(in oklch, var(--sand-400) 70%, transparent); z-index: -1;
}

.steps-rail {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  position: relative;
}
.step-rail {
  position: relative; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--space-lg); box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.step-rail:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-rail__num {
  display: inline-grid; place-items: center;
  inline-size: 2.7rem; block-size: 2.7rem; border-radius: var(--radius-pill);
  background: var(--mint-700); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  margin-bottom: 0.7rem; box-shadow: 0 6px 14px oklch(47% 0.09 173 / 0.30);
}
.step-rail__name { font-family: var(--font-display); font-size: var(--step-1); margin-bottom: 0.25rem; }
.step-rail__text { color: var(--text-muted); font-size: var(--step-0); }
@media (min-width: 46rem) {
  .steps-rail::before {
    content: ""; position: absolute; top: calc(var(--space-lg) + 1.35rem); left: 8%; right: 8%;
    height: 2px; background: linear-gradient(90deg, transparent, var(--mint-300) 12%, var(--mint-300) 88%, transparent);
    z-index: 0;
  }
  .step-rail { z-index: 1; }
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.why-grid { display: grid; gap: var(--space-2xl); align-items: center; }
@media (min-width: 60rem) { .why-grid { grid-template-columns: 0.92fr 1.08fr; gap: var(--space-3xl); } }
.why-media { position: relative; }
.why-media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 6px solid var(--white); width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover;
}
.why-media__tag {
  position: absolute; inset-block-start: 1rem; inset-inline-start: -0.6rem;
  display: inline-flex; align-items: center; gap: 0.5ch;
  background: var(--mint-900); color: #fff; font-weight: 600; font-size: 0.85rem;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-pill); box-shadow: var(--shadow);
}
.why-media__tag svg { color: var(--mint-300); }
.why-list { list-style: none; padding: 0; margin: var(--space-lg) 0 var(--space-xl); display: grid; gap: var(--space-md); }
.why-list li { display: flex; gap: var(--space-md); align-items: flex-start; }
.why-list__ico {
  inline-size: 3rem; block-size: 3rem; border-radius: 15px; flex: none;
  display: grid; place-items: center; background: var(--mint-200); color: var(--mint-700);
}
.why-list b { font-family: var(--font-display); font-size: var(--step-1); color: var(--text); }
.why-list p { color: var(--text-muted); font-size: var(--step-0); margin-top: 0.1rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-wrap { display: grid; gap: var(--space-2xl); align-items: start; }
@media (min-width: 60rem) { .faq-wrap { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-3xl); } }
.faq-head .lead { margin-bottom: var(--space-lg); }
.faq { display: grid; gap: var(--space-sm); }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: box-shadow var(--dur) var(--ease-out); }
.faq__item[data-open="true"] { box-shadow: var(--shadow); }
.faq__q {
  inline-size: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
  padding: var(--space-md) var(--space-lg); text-align: start;
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); color: var(--text);
}
.faq__q .chev { transition: transform var(--dur) var(--ease-out); flex: none; color: var(--mint-700); display: grid; }
.faq__item[data-open="true"] .chev { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur) var(--ease-out); }
.faq__item[data-open="true"] .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 var(--space-lg) var(--space-lg); color: var(--text-muted); }

/* ==========================================================================
   FIND US — location + hours + map facade
   ========================================================================== */
.find-grid { display: grid; gap: var(--space-2xl); align-items: stretch; }
@media (min-width: 58rem) { .find-grid { grid-template-columns: 1fr 1fr; } }
.find-facts { display: grid; gap: var(--space-md); margin: var(--space-lg) 0 var(--space-xl); }
.fact { display: flex; gap: var(--space-md); align-items: flex-start; }
.fact__ico {
  inline-size: 2.9rem; block-size: 2.9rem; border-radius: 14px; flex: none;
  display: grid; place-items: center; background: var(--mint-200); color: var(--mint-700);
}
.fact__k { font-family: var(--font-display); font-weight: 700; font-size: var(--step--1); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.fact__v { font-size: var(--step-0); color: var(--text); }
.fact__v a { color: var(--mint-700); font-weight: 700; }
.fact__muted { color: var(--text-muted); }

/* Lazy map facade — styled block, links to Google Maps (no heavy iframe) */
.find-map {
  position: relative; overflow: hidden; min-height: 20rem;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background:
    radial-gradient(120% 120% at 50% 40%, var(--mint-100), var(--mint-200));
  box-shadow: var(--shadow); display: block;
  transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.find-map:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.find-map__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(color-mix(in oklch, var(--mint-500) 22%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklch, var(--mint-500) 22%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in oklch, var(--mint-500) 12%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklch, var(--mint-500) 12%, transparent) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px;
  -webkit-mask-image: radial-gradient(120% 120% at 50% 40%, #000 55%, transparent 100%);
  mask-image: radial-gradient(120% 120% at 50% 40%, #000 55%, transparent 100%);
}
.find-map__pin {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%);
  inline-size: 3.4rem; block-size: 3.4rem; border-radius: 50% 50% 50% 8px; rotate: 45deg;
  background: var(--mint-700); display: grid; place-items: center;
  box-shadow: 0 12px 26px oklch(47% 0.09 173 / 0.40);
}
.find-map__pin svg { rotate: -45deg; color: #fff; }
.find-map__label {
  position: absolute; inset-inline: 1rem; inset-block-end: 1rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.85rem 1.05rem; box-shadow: var(--shadow); display: grid; gap: 0.1rem;
}
.find-map__label b { font-family: var(--font-display); color: var(--text); font-size: 1.02rem; }
.find-map__label span { color: var(--text-muted); font-size: 0.9rem; }
.find-map__go { color: var(--mint-700) !important; font-weight: 700; margin-top: 0.15rem; }

/* ==========================================================================
   FINAL CALL BAND
   ========================================================================== */
.call-band {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(130deg, var(--mint-700) 0%, var(--mint-800) 58%, var(--mint-900) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 6vw, 4.2rem); box-shadow: var(--shadow-lg);
}
.call-band::before {
  content: ""; position: absolute; inset-block-start: -4rem; inset-inline-start: -3rem;
  inline-size: 12rem; block-size: 12rem; border-radius: 50%;
  background: color-mix(in oklch, var(--mint-400) 30%, transparent); pointer-events: none;
}
.call-band::after {
  content: ""; position: absolute; inset-block-end: -4rem; inset-inline-end: -3rem;
  inline-size: 11rem; block-size: 11rem; border-radius: 50%;
  background: color-mix(in oklch, var(--sand-400) 34%, transparent); pointer-events: none;
}
.call-band > * { position: relative; }
.call-band .eyebrow { color: var(--mint-300); }
.call-band .eyebrow::before { background: currentColor; }
.call-band h2 { color: #fff; margin-block: var(--space-xs) var(--space-sm); }
.call-band p { color: oklch(94% 0.03 168); max-width: 42rem; margin-inline: auto; }
.call-band .btn--call { margin-top: var(--space-lg); }
.call-band__fine { margin-top: var(--space-md); font-size: var(--step--1); color: oklch(88% 0.04 168) !important; }

/* ==========================================================================
   STICKY MOBILE CALL BAR
   ========================================================================== */
.callbar {
  position: fixed; inset-inline: 0.7rem; inset-block-end: 0.7rem; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 0.6ch;
  background: var(--mint-700); color: #fff; font-family: var(--font-display); font-weight: 700;
  padding: 0.9rem 1rem; border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px oklch(47% 0.09 173 / 0.45); text-decoration: none;
}
@media (max-width: 880px) { .callbar { display: flex; } body { padding-bottom: 4.5rem; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot { background: var(--mint-900); color: var(--text-inverse); }

.foot-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--mint-700), var(--mint-800));
  border-block-end: 1px solid oklch(100% 0 0 / 0.10);
}
.foot-cta::before {
  content: ""; position: absolute; inset-block-start: -30%; inset-inline-end: 6%;
  inline-size: 16rem; block-size: 16rem; border-radius: 50%;
  background: color-mix(in oklch, var(--mint-400) 28%, transparent); pointer-events: none;
}
.foot-cta__inner {
  position: relative; display: grid; gap: var(--space-xl); align-items: center;
  padding-block: clamp(2.4rem, 6vw, 3.6rem);
}
@media (min-width: 54rem) { .foot-cta__inner { grid-template-columns: 1.4fr 1fr; } }
.foot-cta__ey { display: inline-flex; align-items: center; gap: 0.55ch; color: var(--mint-100); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; }
.foot-cta__ey svg { color: var(--mint-200); }
.foot-cta__h { color: #fff; font-size: var(--step-3); max-width: 20ch; }
.foot-cta__sub { color: oklch(94% 0.03 168); margin-top: var(--space-sm); max-width: 46ch; }
.foot-cta__act { display: grid; gap: 0.7rem; justify-items: start; }
@media (min-width: 54rem) { .foot-cta__act { justify-items: end; text-align: right; } }
.foot-cta__btn {
  display: inline-flex; align-items: center; gap: 0.6ch;
  background: #fff; color: var(--mint-800); font-family: var(--font-display); font-weight: 700; font-size: var(--step-1);
  padding: 1rem 1.6rem; border-radius: var(--radius-pill); box-shadow: 0 12px 26px oklch(20% 0.05 176 / 0.35);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.foot-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px oklch(20% 0.05 176 / 0.45); }
.foot-cta__hrs { color: oklch(90% 0.03 168); font-size: 0.9rem; }
.foot-cta__hrs span { color: var(--mint-200); font-weight: 600; }

.foot-body { padding-block: var(--space-2xl) var(--space-lg); }
.foot-grid { display: grid; gap: var(--space-xl); grid-template-columns: 1fr; }
@media (min-width: 40rem) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.foot-logo { height: 2.4rem; width: auto; margin-bottom: var(--space-md); }
.foot-tag { color: oklch(86% 0.03 168); max-width: 30rem; font-size: 0.98rem; }
.foot-phone {
  display: inline-flex; align-items: center; gap: 0.5ch; margin-top: var(--space-md);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: var(--step-1);
}
.foot-phone svg { color: var(--mint-300); }
.foot-h { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mint-200); margin-bottom: var(--space-md); }
.foot-addr { font-style: normal; color: oklch(87% 0.03 168); line-height: 1.7; margin-bottom: var(--space-sm); }
.foot-map {
  display: inline-flex; align-items: center; gap: 0.6ch;
  color: #fff; font-weight: 600; font-size: 0.95rem;
  background: oklch(100% 0 0 / 0.08); border: 1px solid oklch(100% 0 0 / 0.14);
  padding: 0.55rem 0.9rem; border-radius: var(--radius-pill); transition: background var(--dur-fast) var(--ease-out);
}
.foot-map:hover { background: oklch(100% 0 0 / 0.16); }
.foot-map__pin { display: grid; color: var(--mint-200); }
.foot-hours { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.foot-hours li { display: flex; justify-content: space-between; gap: 1rem; color: oklch(87% 0.03 168); font-size: 0.95rem; border-block-end: 1px solid oklch(100% 0 0 / 0.08); padding-block: 0.25rem; }
.foot-hours b { color: #fff; font-weight: 600; font-family: var(--font-display); }
.foot-note { margin-top: var(--space-sm); color: oklch(78% 0.03 168); font-size: 0.85rem; }
.foot-link { display: block; color: oklch(87% 0.03 168); padding-block: 0.32rem; font-size: 0.98rem; transition: color var(--dur-fast) var(--ease-out); }
.foot-link:hover { color: #fff; }

.foot-bottom {
  margin-top: var(--space-xl); padding-top: var(--space-lg);
  border-top: 1px solid oklch(100% 0 0 / 0.10);
  display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-md);
  justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: oklch(80% 0.03 168);
}

/* ---- Studio credit ---- */
.studio-credit { font-size: 0.85rem; color: oklch(80% 0.03 168); }
.studio-credit__link { color: var(--mint-200); text-decoration: none; font-weight: 600; }
.studio-credit__link:hover { text-decoration: underline; }
/* ==========================================================================
   utilities.css — Atomic utilities (last in the cascade)
   ========================================================================== */

.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-balance { text-wrap: balance; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-lg); }

.hidden { display: none; }
