/* ==========================================================
   LUMEN DENTAL — design tokens
   Thesis: light. Porcelain base, teal-slate ink, soft teal.
   ========================================================== */

@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader-latin-300-normal.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader-latin-400-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Albert Sans';
  src: url('../fonts/albert-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Albert Sans';
  src: url('../fonts/albert-sans-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Albert Sans';
  src: url('../fonts/albert-sans-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --porcelain: #F7F9F8;
  --ink: #10302C;
  --ink-soft: #47605C;
  --teal: #3E8F86;
  --teal-deep: #2C6B64;
  --mist: #E4EFEC;
  --sand: #EDE7DB;
  --line: rgba(16, 48, 44, 0.12);

  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Albert Sans', system-ui, sans-serif;

  --w-max: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --r-lg: 28px;
  --r-md: 16px;
  --r-pill: 999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* `clip` not `hidden`: overflow-x:hidden turns body into a scroll container
     and silently kills position:sticky on every descendant. */
  overflow-x: clip;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 16px 26px;
  min-height: 48px;
  border-radius: var(--r-pill);
  transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(62, 143, 134, 0.55);
}
.btn--primary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(44, 107, 100, 0.55);
}
.btn--ghost {
  color: var(--ink);
  padding: 16px 10px;
}
.btn--ghost .btn__arrow {
  transition: transform .25s ease;
  color: var(--teal);
}
.btn--ghost:hover .btn__arrow { transform: translateX(5px); }

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav.is-scrolled {
  background: rgba(247, 249, 248, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav__inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.nav__mark {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #BFE3DD 0%, var(--teal) 55%, var(--teal-deep) 100%);
  box-shadow: 0 0 0 4px rgba(62, 143, 134, 0.14), 0 0 18px rgba(62, 143, 134, 0.35);
  flex-shrink: 0;
}
.nav__word {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.nav__word-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 2px;
  position: relative;
  transition: color .25s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 2px; right: 2px; bottom: 2px;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  background: none;
  border: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobile menu */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--porcelain);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mmenu.is-open { opacity: 1; pointer-events: auto; }
.mmenu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mmenu__links a:not(.btn) {
  font-family: var(--font-display);
  font-size: 32px;
  padding: 10px 20px;
  color: var(--ink);
}
.mmenu__cta { margin-top: 18px; }

/* ============ Hero — full-bleed ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--mist);
}

/* video layer — deliberately taller than the hero so the scroll parallax
   always moves inside its own bleed and can never reveal an edge */
.hero__bg {
  position: absolute;
  top: -8%;
  left: 0;
  right: 0;
  height: 116%;
  z-index: 0;
  will-change: transform;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}
/* porcelain daylight scrim — keeps ink legible over the footage
   without darkening the frame (the brief is light, not cinematic-dark).
   Stops are tuned to THIS clip: its left 30% is near-empty, the subject
   lives at 35–70%, so the wash clears out before it touches anyone. */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    /* localized plate directly under the copy block — the horizontal wash
       alone let dark footage pass behind the body text (measured 1.3:1) */
    radial-gradient(118% 82% at -8% 52%,
      rgba(247,249,248,0.97) 0%,
      rgba(247,249,248,0.90) 38%,
      rgba(247,249,248,0.48) 55%,
      rgba(247,249,248,0.10) 68%,
      rgba(247,249,248,0) 76%),
    linear-gradient(96deg,
      rgba(247,249,248,0.95) 0%,
      rgba(247,249,248,0.92) 28%,
      rgba(247,249,248,0.68) 40%,
      rgba(247,249,248,0.28) 49%,
      rgba(247,249,248,0.05) 57%,
      rgba(247,249,248,0) 66%),
    linear-gradient(to bottom,
      rgba(247,249,248,0.58) 0%,
      rgba(247,249,248,0.30) 18%,
      transparent 32%,
      transparent 60%,
      rgba(247,249,248,0.70) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: clamp(140px, 20vh, 200px) var(--gutter) clamp(32px, 5vh, 56px);
  flex: 1;
  display: flex;
  align-items: center;
}
.hero__copy {
  max-width: 540px;
}

.hero__eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #16423C;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 8.4vw, 104px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 14ch;
  position: relative;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal-deep);
}

/* light sweep — the Lumen signature */
.hero__title.sweep-ready {
  background-image: linear-gradient(100deg,
    var(--ink) 42%,
    #6FB5AC 50%,
    #F2FBF9 52%,
    #6FB5AC 54%,
    var(--ink) 62%);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__title.sweep-ready em { -webkit-text-fill-color: transparent; }

/* reveal masks — padded so descenders never clip */
.reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.reveal-line > span { display: block; }

.hero__sub {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  /* darker than --ink-soft: this text sits over footage, not flat porcelain */
  color: #2C4A45;
  max-width: 46ch;
  margin-top: clamp(20px, 3vw, 30px);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: clamp(26px, 3.5vw, 36px);
}

/* trust bar sits on the bottom edge of the hero, on frosted glass */
.hero__bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(16, 48, 44, 0.10);
  background: rgba(247, 249, 248, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero__trust {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: clamp(18px, 2.6vw, 26px) var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  flex-wrap: wrap;
}
.hero__trust li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__trust-cue {
  margin-left: auto;
  align-items: center;
  gap: 10px !important;
}
.hero__cue-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__cue-line {
  display: block;
  width: 1.5px;
  height: 34px;
  background: linear-gradient(to bottom, var(--teal), rgba(62,143,134,0));
  transform-origin: top;
  animation: cue-drop 2s ease-in-out infinite;
}
@keyframes cue-drop {
  0%, 100% { transform: scaleY(0.35); opacity: .45; }
  50%      { transform: scaleY(1);    opacity: 1; }
}
.hero__trust strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
}
.hero__trust li:first-child strong::before {
  content: '★ ';
  color: var(--teal);
  font-size: 0.75em;
  vertical-align: 0.14em;
}
.hero__trust span {
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---- Availability chip, floating over the footage ---- */
.hero__chip {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(28px, 6vh, 64px);
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(247, 249, 248, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-pill);
  padding: 10px 18px 10px 14px;
  box-shadow: 0 10px 28px -12px rgba(16, 48, 44, 0.35);
  font-size: 13.5px;
}
.hero__chip-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(62,143,134, .5);
  animation: chip-pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes chip-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(62,143,134, .45); }
  70%  { box-shadow: 0 0 0 9px rgba(62,143,134, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62,143,134, 0); }
}
.hero__chip-label {
  font-weight: 500;
  color: var(--ink-soft);
}
.hero__chip-time {
  font-weight: 600;
  color: var(--teal-deep);
}
/* ============ Load-state (JS animates in) ============ */
.js .reveal-line > span { transform: translateY(115%); }
.js .reveal-fade { opacity: 0; transform: translateY(18px); }
.js .hero__bg { opacity: 0; }

/* ============ Mobile ============ */
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero { min-height: 100svh; }
  /* footage anchors to the top half, scrim reads bottom-up so the ink stays clean */
  .hero__video { object-position: 55% 30%; }
  .hero__scrim {
    background: linear-gradient(to bottom,
      rgba(247,249,248,0.62) 0%,
      rgba(247,249,248,0.30) 18%,
      rgba(247,249,248,0.55) 38%,
      rgba(247,249,248,0.93) 52%,
      rgba(247,249,248,0.99) 66%);
  }
  .hero__inner {
    align-items: flex-end;
    padding-top: 96px;
    padding-bottom: 24px;
  }
  .hero__copy { max-width: 100%; }
  .hero__title { max-width: 12ch; }
  .hero__sub { max-width: 100%; }
  .hero__actions { width: 100%; }
  .hero__actions .btn--primary { flex: 1; justify-content: center; }

  .hero__chip {
    right: auto;
    left: var(--gutter);
    top: 104px;
    bottom: auto;
    padding: 9px 14px 9px 12px;
    font-size: 12.5px;
  }

  .hero__trust {
    gap: 16px 28px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hero__trust li { flex: 1 1 42%; }
  .hero__trust-cue { display: none; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal-line > span,
  .js .reveal-fade,
  .js .hero__media {
    transform: none;
    opacity: 1;
  }
}

/* ==========================================================
   SECTIONS — shared
   ========================================================== */
.sect { padding: clamp(72px, 11vw, 144px) 0; position: relative; }
.wrap { max-width: var(--w-max); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal-deep);
  margin-bottom: clamp(14px, 2vw, 20px);
}
.eyebrow--light { color: #9FD3CB; }

.sect__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(32px, 4.6vw, 58px); line-height: 1.1;
  letter-spacing: -0.01em;
}
.sect__title em { font-style: italic; font-weight: 400; color: var(--teal-deep); }
.sect__title--light { color: #F2F7F5; }
.sect__title--light em { color: #8FCFC5; }

.sect__lead {
  margin-top: clamp(16px, 2.4vw, 22px);
  font-size: clamp(16px, 1.6vw, 18px); line-height: 1.7;
  color: var(--ink-soft); max-width: 50ch;
}
.sect__head { margin-bottom: clamp(40px, 6vw, 72px); }
.sect__head--center { text-align: center; }
.sect__head--center .sect__lead { margin-left: auto; margin-right: auto; }

/* ==========================================================
   TREATMENTS — editorial index, not a card grid
   ========================================================== */
.treatments { background: var(--porcelain); }

/* two columns: the list reads on the left, one still frame holds on the right.
   Nothing follows the cursor — this is a clinic, not a showreel. */
.index {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(40px, 5.5vw, 76px);
  /* NO align-items:start — the media column must stretch to full row height,
     otherwise the sticky child has no track to travel along. */
}

.index__list { border-top: 1px solid var(--line); }
.index__row {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  grid-template-areas:
    "num  name  price"
    ".    note  .";
  gap: 4px 18px;
  align-items: baseline;
  padding: clamp(18px, 2.2vw, 24px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: default;
}
/* teal wash wipes in from the left */
.index__row::before {
  content: '';
  position: absolute;
  left: -18px; right: -18px; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(228,239,236,.9), rgba(228,239,236,0) 85%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  z-index: 0;
  border-radius: 8px;
}
.index__row.is-on::before { transform: scaleX(1); }
.index__row > * { position: relative; z-index: 1; }

.index__num {
  grid-area: num;
  font-family: var(--font-display); font-size: 14px;
  color: var(--teal); font-variant-numeric: tabular-nums;
  transition: opacity .4s ease;
  opacity: .55;
}
.index__row.is-on .index__num { opacity: 1; }

.index__name {
  grid-area: name;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(21px, 2.3vw, 30px); line-height: 1.25;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.index__row.is-on .index__name { transform: translateX(9px); }

.index__price {
  grid-area: price;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap; font-variant-numeric: tabular-nums;
  transition: color .4s ease;
}
.index__row.is-on .index__price { color: var(--teal-deep); }

.index__note {
  grid-area: note;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.55;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.index__row.is-on .index__note { transform: translateX(9px); }

/* --- the still frame --- */
.index__media { height: 100%; }
.index__stick { position: sticky; top: 108px; }
.index__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 26px 60px -34px rgba(16,48,44,.42);
}
.index__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .8s ease, transform 1.4s cubic-bezier(.22,1,.36,1);
}
.index__img.is-on { opacity: 1; transform: scale(1); }
/* a faint porcelain veil keeps the clinical footage on-palette */
.index__grain {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,48,44,.20), transparent 45%);
  pointer-events: none;
}
.index__cap {
  margin-top: 14px;
  font-family: var(--font-display); font-style: italic;
  font-size: 15px; color: var(--ink-soft);
  transition: opacity .35s ease;
}

/* ==========================================================
   APPROACH — dark inversion, the one moment of contrast
   ========================================================== */
.approach {
  background: #0C2724;
  color: #DCE9E6;
  overflow: hidden;
}
.approach__media { position: absolute; inset: 0; z-index: 0; }
.approach__media video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .30;
}
.approach__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(12,39,36,.96) 0%, rgba(12,39,36,.82) 45%, rgba(12,39,36,.60) 100%),
    linear-gradient(to bottom, rgba(12,39,36,.9) 0%, transparent 22%, transparent 74%, rgba(12,39,36,.9) 100%);
}
.approach__inner { position: relative; z-index: 1; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 52px);
  counter-reset: s;
}
.step { position: relative; padding-top: 26px; border-top: 1px solid rgba(220,233,230,.20); }
.step__n {
  font-family: var(--font-display); font-size: 13px;
  color: #6FB5AC; display: block; margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(19px, 1.9vw, 23px); line-height: 1.3;
  color: #F2F7F5; margin-bottom: 10px;
}
.step p { font-size: 15px; line-height: 1.7; color: #A9C3BE; }

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews { background: var(--mist); }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
}
.quote {
  background: var(--porcelain);
  border: 1px solid rgba(16,48,44,.08);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 34px);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
.quote.is-on, .quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -26px rgba(16,48,44,.4);
}
.quote blockquote {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(17px, 1.75vw, 20px); line-height: 1.5;
  flex: 1;
}
.quote blockquote em { font-style: italic; color: var(--teal-deep); }
.quote blockquote::before { content: '“'; color: var(--teal); margin-right: 1px; }
.quote blockquote::after { content: '”'; color: var(--teal); }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote figcaption strong { font-size: 14.5px; font-weight: 600; }
.quote figcaption span { font-size: 13px; color: var(--ink-soft); }

/* ==========================================================
   BOOKING
   ========================================================== */
.book { background: var(--porcelain); }
.book__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.book__assure {
  margin-top: clamp(26px, 3.4vw, 36px);
  display: flex; flex-direction: column; gap: 12px;
}
.book__assure li {
  position: relative; padding-left: 26px;
  font-size: 15px; color: var(--ink-soft); line-height: 1.6;
}
.book__assure li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(62,143,134,.16);
}

.book__panel {
  background: #fff;
  border: 1px solid rgba(16,48,44,.09);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.4vw, 40px);
  box-shadow: 0 30px 70px -40px rgba(16,48,44,.28);
  position: relative;
}
.book__steps {
  display: flex; gap: 8px; margin-bottom: 26px;
}
.book__dot {
  width: 32px; height: 3px; border-radius: 3px;
  background: rgba(16,48,44,.12);
  transition: background-color .4s ease, width .4s ease;
}
.book__dot.is-active { background: var(--teal); width: 46px; }
.book__dot.is-done { background: rgba(62,143,134,.45); }

.bstep { border: 0; display: none; }
.bstep.is-active { display: block; animation: stepIn .45s cubic-bezier(.22,1,.36,1); }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.bstep__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(21px, 2.2vw, 26px); line-height: 1.25;
  margin-bottom: 22px; padding: 0;
}

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 8px; }
.chip {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 11px 17px; min-height: 44px;
  border: 1px solid rgba(16,48,44,.16);
  border-radius: var(--r-pill);
  background: transparent; color: var(--ink);
  cursor: pointer;
  transition: border-color .25s, background-color .25s, color .25s, transform .2s;
}
.chip:hover { border-color: var(--teal); transform: translateY(-1px); }
.chip.is-sel {
  background: var(--teal); border-color: var(--teal); color: #fff;
}

/* calendar */
.cal { margin-bottom: 24px; }
.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.cal__month { font-size: 14.5px; font-weight: 600; }
.cal__nav {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(16,48,44,.14);
  background: transparent; color: var(--ink);
  cursor: pointer; font-size: 15px;
  transition: border-color .25s, background-color .25s;
}
.cal__nav:hover:not(:disabled) { border-color: var(--teal); background: var(--mist); }
.cal__nav:disabled { opacity: .32; cursor: not-allowed; }
.cal__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cday {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 2px; min-height: 58px;
  border: 1px solid rgba(16,48,44,.10);
  border-radius: 10px; background: transparent;
  cursor: pointer; font-family: var(--font-body);
  transition: border-color .22s, background-color .22s, color .22s;
}
.cday__dow { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.cday__n { font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; }
.cday:hover:not(:disabled) { border-color: var(--teal); }
.cday.is-sel { background: var(--teal); border-color: var(--teal); color: #fff; }
.cday.is-sel .cday__dow { color: rgba(255,255,255,.78); }
.cday:disabled { opacity: .3; cursor: not-allowed; }

.slots__label {
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px;
}
.slots { display: flex; flex-wrap: wrap; gap: 8px; min-height: 44px; }
.slot {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  font-variant-numeric: tabular-nums;
  padding: 10px 15px; min-height: 44px;
  border: 1px solid rgba(16,48,44,.14);
  border-radius: 10px; background: transparent; color: var(--ink);
  cursor: pointer;
  transition: border-color .22s, background-color .22s, color .22s;
}
.slot:hover:not(:disabled) { border-color: var(--teal); }
.slot.is-sel { background: var(--teal); border-color: var(--teal); color: #fff; }
.slot:disabled { opacity: .34; cursor: not-allowed; text-decoration: line-through; }
.slots__empty { font-size: 14.5px; color: var(--ink-soft); font-style: italic; }

/* fields */
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 13.5px; font-weight: 500;
  margin-bottom: 7px;
}
.field__opt { color: var(--ink-soft); font-weight: 400; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px;
  color: var(--ink); background: var(--porcelain);
  border: 1px solid rgba(16,48,44,.14);
  border-radius: 10px; padding: 13px 15px;
  min-height: 48px; resize: vertical;
  transition: border-color .22s, box-shadow .22s, background-color .22s;
}
.field input:focus, .field textarea:focus {
  outline: none; background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(62,143,134,.14);
}
.field.is-bad input, .field.is-bad textarea { border-color: #C0554F; }
.field__err { display: block; font-size: 12.5px; color: #A8443E; margin-top: 6px; min-height: 0; }

.recap {
  background: var(--mist);
  border-radius: 12px; padding: 16px 18px;
  font-size: 14.5px; line-height: 1.6;
  margin: 22px 0 18px;
}
.recap strong { font-weight: 600; }
.recap span { color: var(--ink-soft); }

.bform__err {
  font-size: 13.5px; color: #A8443E;
  margin-bottom: 14px;
}
.bform__next { margin-top: 20px; }
.bform__row { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.bform__row .btn--primary { margin-left: auto; }
.bform__fine {
  margin-top: 14px; font-size: 12.5px; color: var(--ink-soft);
}
#bsubmit.is-busy { opacity: .7; pointer-events: none; }

/* done */
.bdone { display: none; text-align: center; padding: 26px 0 10px; }
.bdone.is-active { display: block; animation: stepIn .5s cubic-bezier(.22,1,.36,1); }
.bdone__tick { display: block; width: 56px; margin: 0 auto 20px; color: var(--teal); }
.bdone__tick svg { width: 100%; }
.bdone__tick path { stroke-dasharray: 30; stroke-dashoffset: 30; animation: tick .6s .18s ease forwards; }
@keyframes tick { to { stroke-dashoffset: 0; } }
.bdone h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; margin-bottom: 8px;
}
.bdone p { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; line-height: 1.6; }

/* ==========================================================
   VISIT
   ========================================================== */
.visit { background: var(--sand); }
.visit__grid {
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr);
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.visit__contact { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 28px; }
.visit__link {
  font-family: var(--font-display); font-size: 19px;
  border-bottom: 1px solid rgba(16,48,44,.25);
  padding-bottom: 3px;
  transition: border-color .25s, color .25s;
}
.visit__link:hover { color: var(--teal-deep); border-color: var(--teal); }

.hours__title {
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-soft);
  padding-bottom: 14px; border-bottom: 1px solid rgba(16,48,44,.14);
}
.hours__row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(16,48,44,.08);
  font-size: 15px;
  transition: color .3s ease;
}
.hours__row dd { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.hours__row.is-today dt { font-weight: 600; }
.hours__row.is-today dt::after {
  content: 'Today'; margin-left: 9px;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-deep); background: rgba(62,143,134,.14);
  padding: 3px 7px; border-radius: 4px; vertical-align: 1px;
}
.hours__row.is-today dd { color: var(--ink); font-weight: 600; }
.hours__now {
  margin-top: 18px; font-size: 14px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.hours__now::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.hours__now.is-shut::before { background: #B2736B; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { background: var(--porcelain); }
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(20px, 2.6vw, 28px) 0;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(17px, 1.9vw, 22px); line-height: 1.35;
  color: var(--ink);
  transition: color .25s ease;
}
.acc__q:hover { color: var(--teal-deep); }
.acc__ic {
  position: relative; width: 15px; height: 15px; flex-shrink: 0;
}
.acc__ic::before, .acc__ic::after {
  content: ''; position: absolute; background: var(--teal);
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .3s;
}
.acc__ic::before { left: 0; top: 7px; width: 15px; height: 1.5px; }
.acc__ic::after  { left: 7px; top: 0; width: 1.5px; height: 15px; }
.acc__q[aria-expanded="true"] .acc__ic::after { transform: rotate(90deg); opacity: 0; }
.acc__a {
  overflow: hidden; height: 0;
}
.acc__a p {
  padding-bottom: clamp(20px, 2.6vw, 28px);
  max-width: 62ch; font-size: 15.5px; line-height: 1.75;
  color: var(--ink-soft);
}
.acc__a em { font-style: italic; }

/* ==========================================================
   FOOTER
   ========================================================== */
.foot { background: #0C2724; color: #A9C3BE; padding: clamp(56px,7vw,88px) 0 28px; }
.foot .nav__word { color: #F2F7F5; }
.foot .nav__word-sub { color: #7FA69F; }
.foot__grid {
  display: grid; grid-template-columns: 1.2fr .8fr .9fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid rgba(220,233,230,.14);
}
.foot__line {
  margin-top: 16px; font-family: var(--font-display);
  font-style: italic; font-size: 17px; color: #7FA69F;
}
.foot__nav { display: flex; flex-direction: column; gap: 11px; }
.foot__nav a { font-size: 14.5px; transition: color .25s; }
.foot__nav a:hover { color: #F2F7F5; }
.foot__meta { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.foot__meta a { transition: color .25s; }
.foot__meta a:hover { color: #F2F7F5; }
.foot__base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; font-size: 13px; color: #6F918B;
}
.foot__wp { color: #9FD3CB; }
.foot__wp:hover { color: #F2F7F5; }

/* ==========================================================
   SCROLL REVEAL (JS drives)
   ========================================================== */
.js .r-up { opacity: 0; transform: translateY(26px); }

/* ==========================================================
   MOBILE — new sections
   ========================================================== */
@media (max-width: 900px) {
  .index { grid-template-columns: 1fr; gap: 34px; }
  /* frame moves above the list and stops being sticky */
  .index__media { order: -1; height: auto; }
  .index__stick { position: static; }
  .index__frame { aspect-ratio: 16 / 10; }

  .steps { grid-template-columns: 1fr; gap: 30px; }
  .quotes { grid-template-columns: 1fr; }
  .book__grid { grid-template-columns: 1fr; gap: 40px; }
  .visit__grid { grid-template-columns: 1fr; gap: 44px; }
  .foot__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 700px) {
  .index__row {
    grid-template-columns: 34px 1fr;
    grid-template-areas:
      "num  name"
      ".    note"
      ".    price";
    gap: 3px 12px;
    padding: 18px 0;
  }
  .index__num   { padding-top: 7px; }
  .index__price { margin-top: 8px; color: var(--teal-deep); }
  .index__row.is-on .index__name,
  .index__row.is-on .index__note { transform: translateX(5px); }

  .book__panel { padding: 22px 18px; border-radius: 18px; }
  .cal__days { gap: 4px; }
  .cday { padding: 9px 1px; min-height: 54px; }
  .cday__n { font-size: 14px; }
  .chip { font-size: 13.5px; padding: 10px 14px; }

  .bform__row { flex-wrap: wrap; }
  .bform__row .btn--primary { margin-left: 0; width: 100%; justify-content: center; order: -1; }
  .bform__row .btn--ghost { padding-left: 0; }

  .foot__base { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .js .r-up { opacity: 1; transform: none; }
  .index__img { transition: opacity .01ms; transform: none; }
  .approach__media video { display: none; }
}

/* ==========================================================
   TOUCH TARGETS — every interactive element clears 44px
   ========================================================== */
@media (hover: none) {
  .visit__link {
    display: inline-flex; align-items: center;
    min-height: 44px; padding-bottom: 0;
  }
  .foot__nav a,
  .foot__meta a {
    display: inline-flex; align-items: center;
    min-height: 44px;
  }
  .foot__nav { gap: 0; }
  .foot__meta { gap: 0; }
  .foot__base a { display: inline-flex; align-items: center; min-height: 44px; }
  .nav__brand { min-height: 44px; }
}
