/* ==========================================================
   Aveline Dental Studio · landing page
   ========================================================== */

:root {
  --bg: #f3f5f4;
  --surface: #ffffff;
  --surface-2: #eaeeed;
  --ink: #0c1a1d;
  --ink-2: #44555a;
  --muted: #84939a;
  --faint: #b9c4c6;
  --line: rgba(12, 26, 29, .1);
  --line-2: rgba(12, 26, 29, .16);

  --accent: #0e5a66;
  --accent-2: #0a4852;
  --accent-ink: #083c44;
  --ice: #dcebeb;
  --mint: #9fded8;
  --star: #f0a93b;

  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --wrap: 1320px;
  --gutter: clamp(16px, 3vw, 32px);
  --inset: 12px;
  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --section: clamp(88px, 11vw, 150px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
svg { width: 1em; height: 1em; flex: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; border-radius: 10px; background: var(--ink); color: #fff; }
.skip:focus { top: 16px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0 0; }

/* ---------- type ---------- */
.h2 {
  font-size: clamp(34px, 4.1vw, 60px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.038em;
  text-wrap: balance;
}
.h2--center { text-align: center; }
.lead { color: var(--ink-2); font-size: clamp(16px, 1.15vw, 18px); line-height: 1.55; max-width: 44ch; }
.lead a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--faint); text-underline-offset: 3px; }
.label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: -.005em;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.label--inline {
  margin: 0 .5em 0 0;
  font-size: 14px;
  letter-spacing: -.005em;
  vertical-align: .9em;
  line-height: 1;
}

/* ---------- buttons ---------- */
.btn {
  --h: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--h);
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { font-size: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(.98); }
.btn--lg { --h: 54px; padding: 0 26px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--pill { background: #fff; color: var(--ink); padding: 0 6px 0 24px; gap: 14px; }
.btn--pill.btn--lg { padding: 0 7px 0 26px; }
/* chip on the right: a rounded rectangle (not a circle) with the next free slot + arrow */
.btn__dot {
  display: inline-flex; align-items: center; gap: 10px;
  height: calc(var(--h) - 12px); padding: 0 12px 0 14px;
  border-radius: 999px;
  background: var(--ice); color: var(--accent-ink);
  overflow: hidden;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.btn__slot { display: inline-flex; align-items: baseline; gap: 6px; font-family: var(--mono); font-size: 12.5px; font-weight: 400; letter-spacing: 0; white-space: nowrap; }
.btn__slot small { font-family: var(--font); font-size: 12px; opacity: .7; }
.btn__dot svg { font-size: 16px; margin-right: -2px; }
.btn--pill:hover svg { transform: none; }
.btn--pill:hover .btn__dot { background: var(--accent); color: #fff; }
.btn--pill:hover .btn__dot svg { animation: av-arrow .55s var(--ease-out); }
@keyframes av-arrow { 0% { transform: none; } 45% { transform: translateX(150%); } 46% { transform: translateX(-150%); } 100% { transform: none; } }
@media (max-width: 420px) { .btn__slot small { display: none; } }
.btn--glass { color: #fff; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.08); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.btn--glass:hover { background: rgba(255,255,255,.18); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1f3237; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-2); }
.btn--accent:disabled { background: var(--surface-2); color: var(--muted); cursor: not-allowed; }
.btn--accent:disabled svg { transform: none; }
.btn--light { background: #fff; color: var(--accent-ink); }
.btn--light:hover { background: var(--ice); }
.btn--outline { border: 1px solid var(--line-2); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--ink); }

.icon-btn {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--ink);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.icon-btn svg { font-size: 20px; }
.icon-btn:hover { border-color: var(--ink); }
.icon-btn--dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.icon-btn--dark:hover { background: #1f3237; }
.icon-btn--ghost { width: 34px; height: 34px; border-color: rgba(255,255,255,.3); color: #fff; }
.icon-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.icon-btn:disabled { opacity: .35; cursor: default; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; }
.link-arrow svg { font-size: 17px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

.avatars { display: flex; flex: none; }
.avatars img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.85); }
.avatars img + img { margin-left: -10px; }
.avatars--sm img { width: 40px; height: 40px; border-color: var(--bg); }

.rating { display: inline-flex; align-items: center; gap: 4px; }
.rating svg { color: var(--star); font-size: 14px; }

/* header + mega menu: see header.css */

/* ==========================================================
   HERO
   ========================================================== */
.hero { padding: var(--inset); }
.hero__frame {
  position: relative;
  min-height: max(680px, calc(100svh - var(--inset) * 2));
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  background: #1b2c30;
  color: #fff;
  display: flex;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img, .hero__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
}
.hero__img {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s var(--ease), transform 7.5s linear;
}
.hero__img.is-active { opacity: 1; transform: scale(1); }
.hero__img.is-leaving { opacity: 0; transform: scale(1); transition: opacity 1.2s var(--ease); }
/* phone crops (hero-Nm.webp) are already centred on the face */
@media (max-width: 760px) { .hero__img img { object-position: var(--pos-m, 50% 50%); } }
.hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 20, 24, .74) 0%, rgba(5, 20, 24, .46) 38%, rgba(5, 20, 24, .08) 62%, rgba(5, 20, 24, 0) 74%),
    linear-gradient(0deg, rgba(5, 20, 24, .66) 0%, rgba(5, 20, 24, 0) 36%),
    linear-gradient(180deg, rgba(5, 20, 24, .38) 0%, rgba(5, 20, 24, 0) 22%);
}
.hero__inner {
  flex: 1;
  min-width: 0;
  display: flex; flex-direction: column;
  padding: 118px clamp(20px, 3.4vw, 48px) clamp(22px, 2.6vw, 36px);
}
.hero__trust { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.86); }
.hero__trust strong { color: #fff; font-weight: 500; }

.hero__main {
  margin-top: auto;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 26px;
  padding: 48px 0 40px;
}
.hero__title {
  font-size: clamp(46px, 7.2vw, 118px);
  font-weight: 350;
  line-height: .94;
  letter-spacing: -.052em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.hero__title .line > span { display: inline-block; transform: translateY(105%); transition: transform 1.15s var(--ease-out); }
.hero__title .line:nth-child(2) > span { transition-delay: .09s; }
.is-loaded .hero__title .line > span { transform: none; }
.hero__aside { max-width: 640px; }
.hero__aside p { max-width: 470px; }
.hero__aside p { font-size: clamp(16px, 1.25vw, 19px); line-height: 1.5; color: rgba(255,255,255,.9); letter-spacing: -.01em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.hero__bottom {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; max-width: 560px; }
.hero__bottom > * { min-width: 0; }
.chip {
  height: 38px; padding: 0 16px;
  border-radius: 999px;
  font-size: 14px; letter-spacing: -.01em;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.chip:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.chip.is-active { background: #fff; color: var(--ink); border-color: #fff; }

.hero__right { display: flex; flex-direction: column; align-items: stretch; gap: 14px; width: min(390px, 100%); }
.hero__progress { display: flex; align-items: center; gap: 12px; }
.hero__progress .num { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.8); }
.bars { flex: 1; display: flex; gap: 6px; }
.bar { flex: 1; height: 2px; border-radius: 2px; background: rgba(255,255,255,.26); overflow: hidden; }
.bar i { display: block; height: 100%; width: 100%; background: #fff; transform: scaleX(0); transform-origin: left; }
.bar.is-done i { transform: scaleX(1); }
.bar.is-active i { animation: bar var(--dur, 7s) linear forwards; }
.hero.is-paused .bar.is-active i { animation-play-state: paused; }
@keyframes bar { to { transform: scaleX(1); } }

.doc-card {
  display: grid; grid-template-columns: 84px 1fr auto; gap: 14px; align-items: center;
  padding: 8px 12px 8px 8px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 20px 40px -24px rgba(0,0,0,.5);
}
.doc-card__img { width: 84px; height: 84px; border-radius: 12px; overflow: hidden; background: var(--surface-2); }
.doc-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; transition: opacity .35s var(--ease); }
.doc-card__body { display: flex; flex-direction: column; min-width: 0; transition: opacity .35s var(--ease); }
.doc-card.is-swapping .doc-card__body, .doc-card.is-swapping .doc-card__img img { opacity: 0; }
.doc-card__name { font-size: 17px; font-weight: 500; letter-spacing: -.025em; }
.doc-card__role { font-size: 13px; color: var(--ink-2); }
.doc-card__meta { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 12.5px; color: var(--ink-2); }
.doc-card__meta strong { font-weight: 500; color: var(--ink); }
.doc-card__go { align-self: start; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.doc-card__go svg { font-size: 15px; }
.doc-card:hover .doc-card__go { background: var(--ink); color: #fff; border-color: var(--ink); }

/* intro fade for hero UI */
[data-intro] { opacity: 0; transform: translateY(14px); transition: opacity .9s var(--ease-out) var(--d, 0s), transform .9s var(--ease-out) var(--d, 0s); }
.is-loaded [data-intro] { opacity: 1; transform: none; }

/* ==========================================================
   JOURNEY
   ========================================================== */
.journey { padding: 28px 0 0; }
.journey__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.journey__step { position: relative; padding-top: 22px; }
.journey__bar { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--line); overflow: hidden; border-radius: 2px; }
.journey__bar i { position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease-out); }
.journey.is-in .journey__step:nth-child(1) .journey__bar i { transform: scaleX(1); transition-delay: .2s; }
.journey.is-in .journey__step:nth-child(2) .journey__bar i { transform: scaleX(1); transition-delay: .7s; }
.journey.is-in .journey__step:nth-child(3) .journey__bar i { transform: scaleX(1); transition-delay: 1.2s; }
.journey.is-in .journey__step:nth-child(4) .journey__bar i { transform: scaleX(1); transition-delay: 1.7s; }
.journey__num { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.journey__step h3 { margin-top: 6px; font-size: 17px; font-weight: 500; letter-spacing: -.02em; }
.journey__step p { margin-top: 6px; font-size: 14px; color: var(--ink-2); max-width: 30ch; }

/* ==========================================================
   ABOUT
   ========================================================== */
.about__top { display: grid; grid-template-columns: minmax(220px, .9fr) 2.4fr; gap: clamp(32px, 6vw, 96px); }
.about__side { display: flex; flex-direction: column; align-items: flex-start; }
.about__faces { display: flex; gap: 10px; margin-bottom: 22px; }
.about__faces img { width: 92px; height: 110px; object-fit: cover; object-position: 50% 0%; border-radius: 14px; }
.statement {
  font-size: clamp(26px, 3.05vw, 46px);
  line-height: 1.14;
  letter-spacing: -.034em;
  font-weight: 400;
  text-wrap: pretty;
}
.statement .w { color: var(--faint); transition: color .5s var(--ease); }
.statement .w.is-on { color: var(--ink); }

.about__bottom {
  display: grid; grid-template-columns: 1fr minmax(280px, 420px);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-top: clamp(56px, 7vw, 96px);
}
.about__caption { font-size: 14px; color: var(--ink-2); margin-bottom: 26px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stats > div { padding: 22px 18px 0 0; }
.stats > div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.stats dt { font-size: clamp(40px, 4.4vw, 64px); font-weight: 350; letter-spacing: -.05em; line-height: 1; font-variant-numeric: tabular-nums; }
.stats dd { margin-top: 10px; font-size: 14px; color: var(--ink-2); }
.about__img { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3.4; }
.about__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.about__img figcaption {
  position: absolute; left: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.92);
  font-size: 13px; letter-spacing: -.01em;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(14,90,102,.16); }

/* ==========================================================
   SERVICES
   ========================================================== */
.services__head { display: grid; grid-template-columns: 1.3fr .9fr; gap: 48px; align-items: end; }
.services__head .h2 { max-width: 19ch; }
.services__head .lead { justify-self: end; }
.services__body { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); margin-top: clamp(40px, 5vw, 64px); }
.services__side { display: flex; flex-direction: column; justify-content: space-between; gap: 32px; padding-bottom: 6px; }
.reviews-badge { display: flex; align-items: center; gap: 14px; }
.reviews-badge strong { display: block; font-size: 24px; font-weight: 500; letter-spacing: -.03em; line-height: 1; }
.reviews-badge span { font-size: 13px; color: var(--ink-2); }
.services__side > p { font-size: 15px; color: var(--ink-2); max-width: 30ch; margin-top: auto; }
.services__nav { display: flex; align-items: center; gap: 10px; }
.services__count { margin-left: 8px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.services__count span { color: var(--ink); }

.services__viewport { position: relative; min-width: 0; }
.services__track {
  /* whole cards only: exactly --per cards fill the viewport, none cut at the edge */
  --per: 3;
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - (var(--per) - 1) * 14px) / var(--per));
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  cursor: grab;
}
.services__track::-webkit-scrollbar { display: none; }
.services__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.services__track.is-dragging a { pointer-events: none; }
.svc { scroll-snap-align: start; }
.svc__link {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  aspect-ratio: 3 / 4;
  padding: 20px;
  border-radius: var(--r-lg);
  overflow: hidden; isolation: isolate;
  color: #fff;
  background: #22363a;
}
.svc__link img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease-out); -webkit-user-drag: none; user-select: none; }
.svc__link::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(5,20,24,.72) 0%, rgba(5,20,24,.2) 38%, rgba(5,20,24,0) 58%); }
.svc__meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: .01em; color: rgba(255,255,255,.82); margin-bottom: 8px; }
.svc__title { font-size: clamp(24px, 2vw, 29px); line-height: 1.02; letter-spacing: -.035em; padding-right: 48px; }
.svc__go { position: absolute; right: 16px; bottom: 18px; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.svc__go svg { font-size: 18px; }
.svc__link:hover .svc__go { background: #fff; color: var(--ink); border-color: #fff; }
.svc.is-flash .svc__link { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ==========================================================
   CARE / BENTO
   ========================================================== */
.care__head { display: flex; flex-direction: column; align-items: center; text-align: center; }
.bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: clamp(40px, 5vw, 64px);
}
.card { position: relative; background: var(--surface); border-radius: var(--r-lg); padding: 24px; border: 1px solid var(--line); }
.card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.card__title { font-size: 19px; font-weight: 500; letter-spacing: -.025em; }
.card__sub { margin-top: 4px; font-size: 14px; color: var(--ink-2); max-width: 32ch; }
.tag { flex: none; padding: 5px 10px; border-radius: 999px; background: var(--ice); color: var(--accent-ink); font-size: 12.5px; }
.tag--quiet { background: var(--surface-2); color: var(--ink-2); }
.status { flex: none; display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-2); }
.status i { width: 7px; height: 7px; border-radius: 50%; background: #27a36b; box-shadow: 0 0 0 3px rgba(39,163,107,.16); }

.card--book { grid-row: 1 / span 2; display: flex; flex-direction: column; }
.book__field { margin-top: 22px; }
.book__field label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.select { position: relative; }
.select::after { content: ""; position: absolute; right: 16px; top: 50%; width: 7px; height: 7px; border-right: 1.6px solid var(--ink-2); border-bottom: 1.6px solid var(--ink-2); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.select select { appearance: none; width: 100%; height: 46px; padding: 0 40px 0 14px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: var(--bg); font-size: 14.5px; cursor: pointer; }
.select select:hover { border-color: var(--ink-2); }
.book__days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 18px; }
.day {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 4px 9px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.day span { font-size: 12px; color: var(--muted); transition: color .2s var(--ease); }
.day strong { font-size: 20px; font-weight: 450; letter-spacing: -.03em; line-height: 1.1; }
.day em { font-style: normal; font-size: 11px; color: var(--accent); }
.day:hover { border-color: var(--line-2); background: var(--bg); }
.day[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.day[aria-selected="true"] span { color: rgba(255,255,255,.66); }
.day[aria-selected="true"] em { color: var(--mint); }
.book__slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 12px; min-height: 96px; align-content: start; }
.slot {
  height: 40px; border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px; font-variant-numeric: tabular-nums;
  animation: slot-in .45s var(--ease-out) both;
  animation-delay: calc(var(--i) * 25ms);
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.slot:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.slot[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.slot:disabled { color: var(--faint); text-decoration: line-through; text-decoration-color: var(--faint); cursor: not-allowed; background: var(--bg); }
@keyframes slot-in { from { opacity: 0; transform: translateY(6px); } }
.book__foot { margin-top: auto; padding-top: 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); }
/* summary + button sit at the bottom of the card; the free space goes above them */
.card--book .book__foot { margin-top: auto; }
.card--book .book__slots { margin-bottom: 24px; }
.book__summary { display: flex; flex-direction: column; min-width: 0; }
.book__summary-label { font-size: 12.5px; color: var(--muted); }
.book__summary strong { font-size: 16px; font-weight: 500; letter-spacing: -.02em; margin-top: 2px; }
.book__summary span:last-child { font-size: 13px; color: var(--ink-2); }
.book__done[hidden] { display: none; }
.book__done { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding: 10px 12px; border-radius: 10px; background: var(--ice); color: var(--accent-ink); font-size: 14px; }
.book__done svg { font-size: 18px; }

.card--plan { display: flex; flex-direction: column; }
.plan__row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 18px; }
.plan__big { display: flex; align-items: baseline; gap: 6px; }
.plan__big span { font-size: 64px; font-weight: 350; letter-spacing: -.055em; line-height: .9; }
.plan__big small { font-size: 16px; color: var(--muted); }
.plan__kv { text-align: right; }
.plan__kv span { display: block; font-size: 12.5px; color: var(--muted); }
.plan__kv strong { font-size: 15px; font-weight: 500; }
.plan__segs { display: grid; grid-template-columns: repeat(22, 1fr); gap: 3px; height: 34px; margin-top: 20px; }
.plan__segs i { border-radius: 3px; background: var(--surface-2); position: relative; overflow: hidden; }
.plan__segs i::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease-out); transition-delay: calc(var(--i) * 45ms); }
.plan__segs i.is-current::after { background: var(--mint); }
.plan__segs.is-in i.is-fill::after { transform: scaleY(1); }
.plan__legend { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: var(--muted); }
.plan__facts { display: grid; grid-template-columns: 1fr 1fr; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); gap: 12px; }
.card--plan .plan__facts { margin-top: 20px; }
.plan__facts dt { font-size: 12.5px; color: var(--muted); }
.plan__facts dd { font-size: 16px; font-weight: 500; letter-spacing: -.02em; }

.card--cost { grid-column: 2; grid-row: 2; display: flex; flex-direction: column; }
.cost { margin-top: 16px; }
.cost li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line-2); font-size: 14.5px; }
.cost li span:last-child { font-variant-numeric: tabular-nums; }
.cost__minus span:last-child { color: var(--accent); }
.cost__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; }
.cost__total span { font-size: 14px; color: var(--ink-2); }
.cost__total strong { font-size: 34px; font-weight: 400; letter-spacing: -.045em; }
.cost__note { margin-top: 4px; font-size: 12.5px; color: var(--muted); text-align: right; }

.card--cta {
  grid-column: 3; grid-row: 1 / span 2;
  display: flex; flex-direction: column; align-items: flex-start;
  overflow: hidden; isolation: isolate;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  min-height: 520px;
  padding: 28px;
}
.card--cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 70% at 100% 100%, rgba(159,222,216,.28), transparent 60%), linear-gradient(160deg, #0f6573 0%, #0b4b55 100%); }
.cta__count { font-family: var(--mono); font-size: 12px; color: var(--mint); }
.card--cta h3 { margin-top: 18px; font-size: clamp(26px, 2.2vw, 32px); font-weight: 400; line-height: 1.08; letter-spacing: -.035em; max-width: 13ch; }
.card--cta p { margin-top: 14px; font-size: 14.5px; color: rgba(255,255,255,.78); max-width: 32ch; }
.card--cta .btn { margin-top: 24px; --h: 44px; font-size: 14px; }
.cta__img { position: absolute; right: -12%; bottom: -8%; width: 86%; z-index: -1; mix-blend-mode: multiply; transform: rotate(-8deg); }

/* ==========================================================
   TEAM
   ========================================================== */
.team__head, .journal__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.team__head .h2 { max-width: 17ch; }
.journal__head .h2 { max-width: 17ch; }
.team__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 80px); margin-top: clamp(40px, 5vw, 64px); align-items: stretch; }
.team__photo { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 1 / 1.02; background: var(--surface-2); }
.team__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; opacity: 0; transform: scale(1.04); transition: opacity .8s var(--ease), transform 1.4s var(--ease-out); }
.team__photo img.is-active { opacity: 1; transform: none; }
.team__badge { position: absolute; left: 16px; bottom: 16px; display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.94); font-size: 13.5px; }
.team__badge .rating { font-weight: 500; }
.team__badge > span:last-child { color: var(--ink-2); }
.team__info { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.team__list { border-top: 1px solid var(--line); }
.team__list li { border-bottom: 1px solid var(--line); }
.team__list button {
  position: relative;
  width: 100%;
  display: grid; grid-template-columns: 44px 1fr auto; align-items: baseline; gap: 12px;
  padding: 22px 0;
  text-align: left;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.team__list button::before { content: ""; position: absolute; left: 0; top: -1px; height: 1px; width: 100%; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out); }
.team__list button:hover { color: var(--ink-2); }
.team__list button.is-active { color: var(--ink); }
.team__list button.is-active::before { transform: scaleX(1); }
.team__list .n { font-family: var(--mono); font-size: 12px; }
.team__list .nm { font-size: clamp(22px, 2.2vw, 32px); letter-spacing: -.035em; line-height: 1.1; }
.team__list .sp { font-size: 14px; }
.team__detail { transition: opacity .35s var(--ease); }
.team__detail.is-swapping { opacity: 0; }
.team__bio { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.5; letter-spacing: -.015em; max-width: 46ch; }
.team__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.team__facts dt { font-size: 12.5px; color: var(--muted); }
.team__facts dd { margin-top: 2px; font-size: 15px; font-weight: 500; letter-spacing: -.015em; }

/* ==========================================================
   FEATURE
   ========================================================== */
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.feature__text .h2 { max-width: 13ch; }
.feature__text .lead { margin-top: 20px; }
.feature__list { margin-top: 36px; border-top: 1px solid var(--line); }
.feature__list li { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.feature__list .n { font-family: var(--mono); font-size: 12px; color: var(--muted); padding-top: 4px; }
.feature__list h3 { font-size: 17px; font-weight: 500; letter-spacing: -.02em; }
.feature__list p { margin-top: 4px; font-size: 14.5px; color: var(--ink-2); }
.feature__media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 5; }
.feature__media > img { width: 100%; height: 100%; object-fit: cover; }
.visit-card {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px -30px rgba(12,26,29,.5);
}
.visit-card__row { display: grid; grid-template-columns: 1fr 1fr; }
.visit-card__row > div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.visit-card__row span { display: block; font-size: 12.5px; color: var(--muted); }
.visit-card__row strong { display: block; margin-top: 4px; font-size: 34px; font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.visit-card__row small { font-size: 14px; letter-spacing: -.01em; color: var(--ink-2); }
.visit-card__prog { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.visit-card__label { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-2); }
.visit-card__label span:last-child { font-family: var(--mono); color: var(--ink); }
.ticks { display: flex; gap: 3px; height: 26px; margin-top: 10px; }
.ticks i { flex: 1; border-radius: 2px; background: var(--surface-2); transition: background-color .3s var(--ease); transition-delay: calc(var(--i) * 18ms); }
.ticks.is-in i.is-fill { background: var(--accent); }

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews__grid { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(32px, 6vw, 96px); }
.reviews__side .h2 { max-width: 9ch; }
.score { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.score > strong { font-size: 64px; font-weight: 350; letter-spacing: -.055em; line-height: 1; }
.score .stars { display: flex; gap: 2px; color: var(--star); font-size: 16px; }
.score div span:last-child { display: block; margin-top: 4px; font-size: 14px; color: var(--ink-2); }
.quotes { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; padding-top: 6px; }
.quotes__stage { display: grid; }
.quote { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .6s var(--ease), transform .8s var(--ease-out), visibility 0s .6s; }
.quote.is-active { opacity: 1; visibility: visible; transform: none; transition: opacity .6s var(--ease) .1s, transform .8s var(--ease-out) .1s; }
.quote blockquote { font-size: clamp(24px, 2.5vw, 36px); line-height: 1.22; letter-spacing: -.03em; text-wrap: pretty; }
.quote figcaption { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.quote figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.quote figcaption strong { display: block; font-weight: 500; letter-spacing: -.015em; }
.quote figcaption span { font-size: 14px; color: var(--ink-2); }
.quotes__nav { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); }
.quotes__count { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.quotes__count span { color: var(--ink); }
.quotes__btns { display: flex; gap: 8px; }

/* ==========================================================
   JOURNAL
   ========================================================== */
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(40px, 5vw, 64px); }
.post a { display: block; }
.post__img { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--surface-2); }
.post__img img { width: 100%; height: 100%; object-fit: cover; }
.post__tag { position: absolute; left: 12px; top: 12px; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,.92); font-size: 12.5px; }
.post__meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 16px; font-size: 13px; color: var(--muted); }
.post h3 { margin-top: 8px; font-size: 21px; font-weight: 450; letter-spacing: -.025em; line-height: 1.25; max-width: 26ch; transition: color .25s var(--ease); }
.post a:hover h3 { color: var(--accent); }

/* ==========================================================
   FAQ
   ========================================================== */
.faq__grid { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(32px, 6vw, 96px); }
.faq__side .lead { margin-top: 20px; max-width: 34ch; }
.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; text-align: left; font-size: clamp(18px, 1.5vw, 21px); letter-spacing: -.02em; }
.qa button i { flex: none; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.qa button i svg { font-size: 18px; transition: transform .45s var(--ease-out); }
.qa button:hover i { border-color: var(--ink); }
.qa button[aria-expanded="true"] i { background: var(--ink); color: #fff; border-color: var(--ink); }
.qa button[aria-expanded="true"] i svg { transform: rotate(45deg); }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-out); }
.qa__a > div { overflow: hidden; }
.qa__a p { padding: 0 60px 26px 0; color: var(--ink-2); max-width: 62ch; }
.qa button[aria-expanded="true"] + .qa__a { grid-template-rows: 1fr; }

/* ==========================================================
   CTA BAND
   ========================================================== */
.cta-band { display: grid; grid-template-columns: 1fr 1.05fr; border-radius: var(--r-xl); overflow: hidden; background: var(--ice); }
.cta-band__text { padding: clamp(32px, 5vw, 72px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.cta-band__text .label { color: var(--accent-ink); }
.cta-band__text .h2 { max-width: 12ch; }
.cta-band__text p { margin-top: 18px; color: var(--ink-2); max-width: 38ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 32px; }
.cta-band__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.cta-band__phone svg { font-size: 18px; color: var(--accent); }
.cta-band__phone:hover { color: var(--accent); }
.cta-band__img { min-height: 420px; }
.cta-band__img img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { position: relative; margin-top: var(--section); padding-top: 72px; background: var(--surface); border-top: 1px solid var(--line); overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1fr 1.7fr; gap: clamp(40px, 6vw, 96px); }
.footer__news > p { margin-top: 20px; font-size: 15px; color: var(--ink-2); max-width: 34ch; }
.news { display: flex; gap: 6px; margin-top: 20px; padding: 5px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line); max-width: 420px; }
.news input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 0 14px; font-size: 14.5px; outline: none; }
.news input::placeholder { color: var(--muted); }
.news .btn { --h: 42px; font-size: 14px; }
.news:focus-within { border-color: var(--accent); }
.news__msg { min-height: 20px; margin-top: 10px; font-size: 13.5px; color: var(--accent); }
.news__msg.is-error { color: #b4462f; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer__cols h4 { font-size: 13px; font-weight: 400; color: var(--muted); margin-bottom: 14px; }
.footer__cols a, .footer__cols p { display: block; font-size: 14.5px; line-height: 1.5; padding: 3px 0; color: var(--ink); transition: color .2s var(--ease); }
.footer__cols a:hover { color: var(--accent); }
.footer__cols p { color: var(--ink-2); }
.footer__cols .hours { margin-top: 10px; }
.open { color: var(--ink); }
.open::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--faint); margin-right: 8px; vertical-align: 1px; }
.open.is-open::before { background: #27a36b; }
.socials { display: flex; gap: 6px; margin-top: 12px; }
.socials a { display: grid; place-items: center; width: 36px; height: 36px; padding: 0; border-radius: 50%; border: 1px solid var(--line-2); }
.socials a:hover { border-color: var(--ink); color: var(--ink); }
.socials svg { font-size: 16px; }
.footer__legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 64px; padding: 20px 0; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.footer__links { display: flex; gap: 20px; }
.footer__links a:hover { color: var(--ink); }
.footer__word {
  font-size: clamp(120px, 24vw, 380px);
  font-weight: 450;
  letter-spacing: -.07em;
  line-height: .74;
  text-align: center;
  color: var(--surface-2);
  margin-top: 8px;
  margin-bottom: -.06em;
  user-select: none;
  white-space: nowrap;
}

/* ==========================================================
   REVEAL
   ========================================================== */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease-out) var(--d, 0s), transform 1s var(--ease-out) var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js [data-reveal], [data-intro] { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1180px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .card--book { grid-row: auto; grid-column: 1; grid-row: 1 / span 2; }
  .card--plan { grid-column: 2; grid-row: 1; }
  .card--cost { grid-column: 2; grid-row: 2; }
  .card--cta { grid-column: 1 / -1; grid-row: 3; min-height: 360px; }
  .cta__img { width: 46%; right: -2%; bottom: -30%; }
}

@media (max-width: 980px) {
  .hero__main { padding-bottom: 36px; }
  .hero__bottom { flex-direction: column; align-items: stretch; }
  .hero__right { width: 100%; max-width: 440px; }
  .journey__grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .about__top { grid-template-columns: 1fr; }
  .about__side { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 20px; }
  .about__side .label { width: 100%; margin: 0; }
  .about__faces { margin: 0; }
  .about__bottom { grid-template-columns: 1fr; }
  .services__head { grid-template-columns: 1fr; gap: 20px; }
  .services__head .lead { justify-self: start; }
  .services__body { grid-template-columns: 1fr; }
  .services__side { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .services__side > p { display: none; }
  .services__nav { margin-left: auto; }
  .team__body, .feature__grid, .reviews__grid, .faq__grid { grid-template-columns: 1fr; }
  .team__photo { aspect-ratio: 4 / 3.6; }
  .feature__media { aspect-ratio: 4 / 4.2; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band__img { min-height: 300px; }
  .footer__top { grid-template-columns: 1fr; }
  .journal__grid { grid-template-columns: 1fr 1fr; }
  .journal__grid .post:nth-child(3) { display: none; }
}

@media (max-width: 720px) {
  :root { --inset: 8px; --r-xl: 22px; }
  .hero__frame { min-height: max(720px, calc(100svh - var(--inset) * 2)); }
  .hero__inner { padding: 96px 18px 18px; }
  .hero__shade { background: linear-gradient(0deg, rgba(5,20,24,.86) 0%, rgba(5,20,24,.62) 45%, rgba(5,20,24,.34) 72%, rgba(5,20,24,.16) 100%), linear-gradient(180deg, rgba(5,20,24,.4) 0%, rgba(5,20,24,0) 22%); }
  .hero__title { font-size: clamp(42px, 12.4vw, 64px); }
  .hero__main { padding: 32px 0 28px; }
  .hero__ctas .btn--glass { display: none; }
  .hero__chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin: 0 -18px; padding: 0 18px; }
  .hero__chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; }
  .hero__bottom { padding-top: 18px; gap: 18px; }
  .doc-card { grid-template-columns: 64px 1fr auto; }
  .doc-card__img { width: 64px; height: 64px; }
  .doc-card__meta { margin-top: 6px; }
  .label--inline { display: block; margin: 0 0 14px; vertical-align: baseline; }
  .journey__grid { grid-template-columns: 1fr; gap: 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats > div { padding: 20px 12px 20px 0; }
  .stats > div + div { padding-left: 0; border-left: 0; }
  .stats > div:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }
  .stats > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .services__track { --per: 1; }
  .bento { grid-template-columns: 1fr; }
  .card--book, .card--plan, .card--cost, .card--cta { grid-column: 1; grid-row: auto; }
  .card { padding: 20px; }
  .card--cta { min-height: 460px; }
  .cta__img { width: 80%; right: -10%; bottom: -12%; }
  .book__slots { grid-template-columns: repeat(3, 1fr); }
  .book__foot { flex-direction: column; align-items: stretch; }
  .team__head, .journal__head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .team__list .sp { display: none; }
  .team__facts { grid-template-columns: 1fr 1fr; }
  .journal__grid { grid-template-columns: 1fr; }
  .journal__grid .post:nth-child(3) { display: block; }
  .qa__a p { padding-right: 0; }
  .feature__media { aspect-ratio: 4 / 5.8; }
  .feature__media > img { object-position: 50% 12%; }
  .visit-card { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; }
  .visit-card__row strong { font-size: 28px; }
  .footer__cols { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer__legal { flex-direction: column; }
}
