/* =============================================================
   20/20 Vision of Rochester Hills — site.css
   Tokens → base → components → sections → responsive → motion
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --hue: 32;                       /* drifts slowly via js/site.js */
  --white: #ffffff;
  --black: #000000;
  --stone: #ECEAE5;
  --graphite: #4d4d4d;
  --mist: #8a8a8a;
  --line: #d8d5ce;
  --line-dark: #2b2b2b;

  --accent: oklch(0.82 0.13 var(--hue));
  --accent-deep: oklch(0.58 0.19 var(--hue));
  --accent-b: oklch(0.86 0.12 calc(var(--hue) + 45));
  --accent-c: oklch(0.74 0.17 calc(var(--hue) - 30));
  --neon: oklch(0.86 0.17 var(--hue));
  --neon-b: oklch(0.84 0.17 calc(var(--hue) + 55));
  --neon-glow: oklch(0.80 0.19 var(--hue) / .55);
  --ink-a: oklch(0.42 0.15 var(--hue));
  --ink-b: oklch(0.36 0.14 calc(var(--hue) + 45));

  --serif: "Playfair Display", "Didot", "Bodoni 72", Georgia, serif;
  --masthead: "Abril Fatface", "Playfair Display", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 10vw, 8.5rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

@supports not (color: oklch(0.5 0.1 30)) {
  :root {
    --accent: hsl(var(--hue) 55% 78%);
    --accent-deep: hsl(var(--hue) 45% 48%);
    --accent-b: hsl(calc(var(--hue) + 75) 50% 82%);
    --accent-c: hsl(calc(var(--hue) - 55) 50% 68%);
    --neon: hsl(var(--hue) 90% 72%); --neon-b: hsl(calc(var(--hue) + 90) 90% 72%); --neon-glow: hsl(var(--hue) 90% 65% / .55);
    --ink-a: hsl(var(--hue) 55% 35%); --ink-b: hsl(calc(var(--hue) + 70) 55% 32%);
  }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 800; letter-spacing: -0.015em; }
h3, h4 { font-weight: 600; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }
.dark :focus-visible, .dark:focus-visible { outline-color: var(--white); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--black); color: var(--white); padding: .6rem 1rem; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 7vw, 5.5rem); }
.stone { background: var(--stone); }
.dark { background: var(--black); color: var(--white); }
.dark a { color: inherit; }

.lede { font-size: 1.1875rem; line-height: 1.55; color: var(--graphite); max-width: 42ch; }
.dark .lede { color: #cfcfcf; }
.h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.04; max-width: 18ch; }
.h3 { font-size: clamp(1.45rem, 2.2vw, 1.85rem); line-height: 1.15; }
.small { font-size: .875rem; }
.muted { color: var(--graphite); }
.dark .muted { color: #b8b8b8; }
.serif { font-family: var(--serif); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  min-height: 3.1rem; padding: .8rem 1.5rem;
  font-weight: 500; font-size: 1rem; line-height: 1; text-decoration: none;
  border: 1.5px solid var(--black); color: var(--black); background: transparent;
  transition: background-color .5s var(--ease), color .35s var(--ease), border-color .5s var(--ease);
}
.btn--primary { background: var(--black); color: var(--white); }
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); box-shadow: 0 10px 34px var(--neon-glow); }
.btn:not(.btn--primary):hover { background: var(--black); color: var(--white); }
.dark .btn { border-color: var(--white); color: var(--white); }
.dark .btn--primary { background: var(--white); color: var(--black); }
.dark .btn--primary:hover { background: var(--accent); border-color: var(--accent); }
.dark .btn:not(.btn--primary):hover { background: var(--white); color: var(--black); }
.btn svg { width: 1.05em; height: 1.05em; }

.textlink {
  display: inline-block; font-weight: 500; text-decoration: none;
  border-bottom: 1.5px solid currentColor; padding-bottom: .12em;
  transition: border-color .35s var(--ease);
}
.textlink:hover { border-color: var(--accent-deep); }
.dark .textlink:hover { border-color: var(--accent); }

/* ---------- Top bar ---------- */
.topbar { background: var(--black); color: var(--white); font-size: .875rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 2.4rem; }
.topbar a { text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar__addr { color: #cfcfcf; }
.status { display: inline-flex; align-items: center; gap: .5rem; }
.status::before {
  content: ""; width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--mist);
}
.status[data-open="true"]::before { background: var(--accent); box-shadow: 0 0 0 3px oklch(0.82 0.10 var(--hue) / .25); }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 861px) {
  .header { background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand__logo {
  display: block; width: 3.6rem; height: 3.6rem; flex: none;
  background: linear-gradient(135deg, var(--ink-a), var(--ink-b));
  -webkit-mask: url(../images/logo-mark.png) center / contain no-repeat; mask: url(../images/logo-mark.png) center / contain no-repeat;
}
.brand__logo--lg { width: 4.5rem; height: 4.5rem; }
.dark .brand__logo { background: linear-gradient(135deg, var(--neon), var(--neon-b)); }
.brand__name {
  font-family: var(--masthead); font-weight: 400; font-size: 1.85rem; line-height: 1; letter-spacing: -0.01em;
  background: linear-gradient(100deg, var(--ink-a) 0%, var(--ink-b) 100%); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dark .brand__name { background-image: linear-gradient(100deg, var(--neon) 0%, var(--neon-b) 100%); }
.brand__name small { display: block; font-family: var(--sans); font-weight: 600; font-size: .68rem; letter-spacing: .04em; color: var(--graphite); -webkit-text-fill-color: var(--graphite); margin-top: .3rem; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav a { text-decoration: none; font-size: .95rem; font-weight: 600; letter-spacing: .01em; }
.nav a:not(.btn):hover { text-decoration: underline; }
.nav .btn { min-height: 2.6rem; padding: .55rem 1.1rem; font-size: .92rem; }
.nav-toggle { display: none; width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 1.4rem; height: 1.5px; background: var(--black); position: relative; transition: transform .35s var(--ease), opacity .3s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -.45rem; }
.nav-toggle span::after { top: .45rem; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(.45rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-.45rem) rotate(-45deg); }

/* ---------- Hero: full-screen photo banner with neon wash ---------- */
.hero--banner {
  position: relative; overflow: hidden; color: var(--white);
  min-height: min(calc(100svh - 7.4rem), 920px); display: flex; align-items: flex-end;
  background: var(--black);
}
.slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.8s var(--ease); }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, 50% 35%); transform: scale(1.08); }
.slide.is-active { opacity: 1; z-index: 1; }
.slide.is-active img { animation: kenburns 9s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.slide__wash {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; mix-blend-mode: soft-light; opacity: .85;
  background: linear-gradient(115deg, oklch(0.72 0.22 var(--hue)) 0%, transparent 45%, transparent 60%, oklch(0.72 0.22 calc(var(--hue) + 60)) 100%);
}
.slide__wash::after {
  content: ""; position: absolute; inset: 0; mix-blend-mode: screen; opacity: .22;
  background: radial-gradient(60% 70% at 85% 20%, oklch(0.8 0.2 calc(var(--hue) + 30)), transparent 70%);
}
.slide__scrim {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 38%, rgba(0,0,0,0) 70%),
              linear-gradient(to right, rgba(0,0,0,.45), rgba(0,0,0,0) 60%);
}
.hero__content { position: relative; z-index: 4; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 7vw, 5rem); }
.hero__kicker { font-size: .9rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #d9d9d9; margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(3rem, 8vw, 6.6rem); line-height: .94; letter-spacing: -0.025em; font-weight: 800; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero h1 .display { display: block; }
.hero h1 .h1-sub {
  display: block; margin-top: 1.2rem; font-family: var(--sans); font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 400;
  line-height: 1.5; letter-spacing: 0; color: #e6e6e6; max-width: 40ch;
}
.hero__cta { margin-top: 2rem; max-width: 46rem; }
.hero__cta-label { font-weight: 500; color: #e6e6e6; margin-bottom: .4rem; }
.hero__phone {
  display: inline-block; font-family: var(--serif); font-weight: 700; font-size: clamp(2.4rem, 5.2vw, 4.4rem); line-height: 1; letter-spacing: -0.02em;
  color: var(--white); text-decoration: none; text-shadow: 0 0 34px var(--neon-glow); transition: color .5s var(--ease);
}
.hero__phone:hover { color: var(--neon); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.btn--light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--light:hover { background: var(--neon); border-color: var(--neon); color: var(--black); box-shadow: 0 10px 34px var(--neon-glow); }
.btn--ghost { border-color: rgba(255,255,255,.75); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.hero__nap { margin-top: 1.4rem; font-size: .95rem; color: #d9d9d9; }
.hero__nap a { color: var(--white); font-weight: 500; text-decoration: none; }
.hero__nap a:hover { text-decoration: underline; }
.hero--banner :focus-visible { outline-color: var(--white); }
.slides__dots { position: absolute; right: clamp(1rem, 3vw, 2.5rem); bottom: 1.5rem; z-index: 5; display: flex; gap: .55rem; }
.dot { width: .65rem; height: .65rem; border-radius: 50%; background: rgba(255,255,255,.45); transition: background .4s, transform .4s; }
.dot.is-active { background: var(--white); transform: scale(1.25); box-shadow: 0 0 10px var(--neon-glow); }
.spectrum {
  height: 4px; background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-b), var(--accent-deep));
  background-size: 200% 100%; animation: sweep 14s linear infinite; box-shadow: 0 0 22px var(--neon-glow);
}
@keyframes sweep { to { background-position: -200% 0; } }

/* ---------- Brand strip: real logos on black, tinted by the drifting neon hue ---------- */
.brands { overflow: hidden; padding-block: 1.6rem; position: relative; }
.brands__track { display: flex; width: max-content; gap: 4.5rem; animation: marquee 56s linear infinite; }
.brands__track:hover { animation-play-state: paused; }
.brands__list { display: flex; align-items: center; gap: 4.5rem; margin: 0; padding: 0; list-style: none; }
.brand-logo { position: relative; display: flex; align-items: center; height: 2.6rem; --shift: 0; }
/* one slow two-tone gradient across the row: each logo sits a few degrees along it */
.brand-logo:nth-child(9n+2) { --shift: 5; } .brand-logo:nth-child(9n+3) { --shift: 10; }
.brand-logo:nth-child(9n+4) { --shift: 15; } .brand-logo:nth-child(9n+5) { --shift: 20; }
.brand-logo:nth-child(9n+6) { --shift: 25; } .brand-logo:nth-child(9n+7) { --shift: 30; }
.brand-logo:nth-child(9n+8) { --shift: 35; } .brand-logo:nth-child(9n+9) { --shift: 40; }

.brand-logo .logo { height: 2rem; width: auto; max-width: 12rem; object-fit: contain; filter: invert(1); opacity: .9; }
.brand-logo.is-logo .logo { position: absolute; opacity: 0; pointer-events: none; }
.brand-logo.is-logo::before, .brand-logo.is-logo::after {
  content: ""; display: block; height: 2rem; width: calc(2rem * var(--ratio, 4));
  background: linear-gradient(90deg, oklch(0.88 0.16 calc(var(--hue) + var(--shift))), oklch(0.84 0.17 calc(var(--hue) + var(--shift) + 35)));
  -webkit-mask: var(--logo-url) center / contain no-repeat; mask: var(--logo-url) center / contain no-repeat;
}
.brand-logo.is-logo::before { position: absolute; inset: 0 auto auto 0; top: .3rem; filter: blur(7px); opacity: .55; }
.brand-logo.is-logo::after { position: relative; opacity: .95; }
.brand-logo.is-mid::before, .brand-logo.is-mid::after { height: 2.7rem; width: calc(2.7rem * var(--ratio, 2)); }
.brand-logo.is-tall::before, .brand-logo.is-tall::after { height: 3.4rem; width: calc(3.4rem * var(--ratio, 1)); }
.brand-logo.is-tall { height: 3.4rem; }
.brand-logo:hover::after { opacity: 1; }
.logo-text {
  font-family: var(--serif); font-size: 1.45rem; white-space: nowrap;
  color: oklch(0.88 0.15 calc(var(--hue) + var(--shift)));
  text-shadow: 0 0 14px oklch(0.8 0.18 calc(var(--hue) + var(--shift)) / .5);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Clinic / Boutique split ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; }
.duo__panel {
  display: flex; flex-direction: column; justify-content: space-between; gap: 2.5rem;
  padding: clamp(3rem, 6vw, 5.5rem) var(--gutter); min-height: min(60vh, 560px);
}
.duo__panel:first-child { padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2)); }
.duo__panel:last-child { padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2)); }
.duo__title { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1; font-weight: 800; }
.duo__title em { font-style: italic; }
.duo__body { max-width: 40ch; color: var(--graphite); font-size: 1.125rem; }
.dark .duo__body { color: #cfcfcf; }
.duo__panel--dark { position: relative; overflow: hidden; }
.duo__panel--dark .glow { opacity: .5; }

/* ---------- Services ---------- */
.services__head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 2rem 4rem; align-items: end; margin-bottom: clamp(2rem, 5vw, 4rem); }
.services__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(2rem, 5vw, 5rem); }
.service { border-top: 1px solid var(--line); padding: 1.9rem 0 2.1rem; }
.service h3 { font-size: 1.7rem; line-height: 1.15; margin-bottom: .6rem; }
.service p { color: var(--graphite); max-width: 48ch; }
.service__note { display: block; margin-top: .6rem; font-size: .875rem; color: var(--mist); }

/* ---------- Boutique ---------- */
.boutique { position: relative; overflow: hidden; }
.glow {
  position: absolute; inset: auto; pointer-events: none; border-radius: 50%;
  width: 60vmax; height: 60vmax; right: -20vmax; top: -15vmax;
  background: radial-gradient(closest-side, var(--accent-deep), var(--accent-c) 45%, transparent 72%);
  filter: blur(60px); opacity: .55;
}
.glow--left { right: auto; left: -25vmax; top: auto; bottom: -25vmax; }
.boutique .container { position: relative; }
.brandroll {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: clamp(2rem, 5.6vw, 4.6rem); line-height: 1.08; letter-spacing: -0.01em;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2rem, 5vw, 3.5rem); max-width: 22ch;
}
.brandroll span { white-space: nowrap; transition: color .5s var(--ease); }
.brandroll span:hover { color: var(--accent); }
.boutique__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem 3rem; border-top: 1px solid var(--line-dark); padding-top: 2.5rem; }
.boutique__cols h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.boutique__cols p { color: #c9c9c9; }
.boutique__cta { margin-top: clamp(2rem, 5vw, 3.5rem); display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- Photos ---------- */
.photo { margin: 0; position: relative; }
.photo img { width: 100%; height: auto; object-fit: cover; background: var(--stone); }
.photo--portrait img { aspect-ratio: 4 / 5; }
.photo--wide img { aspect-ratio: 16 / 10; }
.photo--square img { aspect-ratio: 1; }
.photo figcaption { font-size: .875rem; color: var(--graphite); padding-top: .75rem; }
.photo--bw img { filter: grayscale(1) contrast(1.06); transition: filter .6s var(--ease); }
.photo--bw:hover img, .photo--bw:focus-within img { filter: none; }

/* ---------- Team ---------- */
.team__lead { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.team__lead .h2 { max-width: 16ch; }
.doctor__name { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-top: 2rem; }
.doctor__role { color: var(--graphite); margin-bottom: 1rem; }
.team__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2rem); margin-top: clamp(3rem, 6vw, 5rem); }
.member__name { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; margin-top: .9rem; }
.member__role { color: var(--graphite); font-size: .95rem; }

/* ---------- Story ---------- */
.story { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.story__year { font-family: var(--serif); font-weight: 900; font-size: clamp(6rem, 17vw, 13rem); line-height: .82; letter-spacing: -0.04em; position: sticky; top: 6rem;
  background: linear-gradient(160deg, var(--black) 30%, var(--ink-a) 70%, var(--ink-b)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.story__year small { color: var(--graphite); -webkit-text-fill-color: var(--graphite); }
.story__year small { display: block; font-family: var(--sans); font-size: 1rem; letter-spacing: 0; margin-top: 1.2rem; color: var(--graphite); }
.story__text p { max-width: 58ch; }
.story__text p:first-of-type { font-size: 1.25rem; line-height: 1.5; }
.story__line { font-family: var(--serif); font-weight: 600; font-style: italic; font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.25; margin: 2rem 0 2.2rem; }
.story__gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ---------- Reviews ---------- */
.reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3.5rem); margin-top: clamp(2rem, 4vw, 3rem); }
.review { position: relative; padding-top: 3.2rem; }
.review::before {
  content: "\201C"; position: absolute; top: -.35rem; left: -.1rem;
  font-family: var(--serif); font-size: 5.5rem; line-height: 1; color: var(--accent-deep);
  transition: color 1s linear;
}
.review blockquote { margin: 0; font-family: var(--serif); font-weight: 500; font-size: 1.3rem; line-height: 1.4; }
.review cite { display: block; margin-top: 1rem; font-style: normal; font-size: .95rem; color: var(--graphite); }
.reviews__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.5rem; margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- Insurance ---------- */
.insurance { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 2rem 4rem; align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { border: 1px solid var(--black); padding: .5rem .9rem; font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 2rem 4rem; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem 0; font-family: var(--serif); font-weight: 600; font-size: 1.35rem; line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; width: 1.8rem; height: 1.8rem; display: grid; place-items: center;
  font-family: var(--sans); font-size: 1.4rem; font-weight: 300; transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--graphite); max-width: 60ch; padding-bottom: 1.4rem; }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); }
.address { font-style: normal; font-size: 1.125rem; line-height: 1.5; }
.address a { text-decoration: none; }
.address a:hover { text-decoration: underline; }
.address .phone { font-family: var(--serif); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); display: inline-block; margin: .6rem 0 .2rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: 1rem; }
.hours th, .hours td { text-align: left; padding: .5rem 0; border-top: 1px solid var(--line); font-weight: 400; }
.hours td { text-align: right; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 1px solid var(--line); }
.hours tr[data-today] th, .hours tr[data-today] td { font-weight: 600; }
.hours tr[data-today] th::before { content: ""; display: inline-block; width: .5rem; height: .5rem; border-radius: 50%; background: var(--accent-deep); margin-right: .55rem; vertical-align: middle; }
.visit__status { margin-top: 1rem; font-size: .95rem; color: var(--graphite); }
.map { position: relative; background: var(--stone); aspect-ratio: 4 / 3; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__fallback { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 2rem; color: var(--graphite); }
.visit__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* ---------- Form ---------- */
.form { margin-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line); padding-top: clamp(2rem, 4vw, 3rem); }
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 2rem; margin-top: 1.5rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .92rem; font-weight: 500; }
.field input, .field textarea, .field select {
  font: inherit; color: var(--black); background: var(--white);
  border: 1px solid var(--black); padding: .8rem .9rem; border-radius: 0; min-height: 3rem;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline-offset: 0; outline-width: 2px; }
.form__foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.form__msg { font-size: .95rem; color: var(--graphite); }
.form__msg[data-state="error"] { color: #a4212f; }
.form__msg[data-state="ok"] { color: var(--black); font-weight: 500; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Footer ---------- */
.footer { padding-block: clamp(3rem, 6vw, 5rem) 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem 3rem; }
.footer h2 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; margin-bottom: .9rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .45rem; }
.footer a { text-decoration: none; color: #d6d6d6; }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer address { font-style: normal; color: #d6d6d6; }
.footer__brand .brand__name small { color: #a3a3a3; -webkit-text-fill-color: #a3a3a3; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--line-dark); font-size: .85rem; color: #a3a3a3; }

/* ---------- Mobile action bar ---------- */
.actionbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--black); color: var(--white);
  padding: .5rem .5rem calc(.5rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr); gap: .5rem;
}
.actionbar a { display: flex; align-items: center; justify-content: center; gap: .45rem; min-height: 2.9rem; text-decoration: none; font-size: .95rem; font-weight: 500; border: 1px solid var(--line-dark); }
.actionbar a svg { width: 1.05rem; height: 1.05rem; }
.actionbar a.is-primary { background: var(--white); color: var(--black); border-color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .boutique__cols { grid-template-columns: 1fr; gap: 2rem; }
  .reviews__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .topbar__addr, .topbar__hours { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0; top: 0; z-index: 99; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 6rem var(--gutter) 3rem; background: var(--white); gap: 1.4rem; overflow-y: auto;
    transform: translateX(100%); visibility: hidden; transition: transform .45s var(--ease), visibility 0s .45s;
  }
  .nav[data-open="true"] { transform: none; visibility: visible; transition: transform .45s var(--ease); }
  .nav a { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
  .nav .btn { font-family: var(--sans); font-size: 1rem; margin-top: 1rem; }
  .nav-toggle { position: relative; z-index: 100; }
    .hero--banner { min-height: calc(100svh - 6.2rem); }
  .hero__content { padding-bottom: 6.5rem; }
  .slide img { object-position: var(--pos-m, var(--pos, 50% 20%)); }
  .slides__dots { right: 1rem; bottom: auto; top: 1rem; }
  .duo { grid-template-columns: 1fr; }
  .duo__panel { min-height: 0; }
  .duo__panel:first-child, .duo__panel:last-child { padding-inline: var(--gutter); }
  .services__head, .services__grid, .team__lead, .story, .insurance, .faq, .visit, .form__grid { grid-template-columns: 1fr; }
  .story__year { position: static; }
  .story__gallery { grid-template-columns: 1fr; }
  .actionbar { display: grid; }
  body { padding-bottom: 4.4rem; }
  .field--full, .form__foot { grid-column: auto; }
}
@media (max-width: 480px) {
  .team__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .brands__list .logo-text { font-size: 1.15rem; }
  .brands__list .logo { height: 1.6rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__nap { font-size: .85rem; }
}

/* ---------- Motion ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes glassin { from { opacity: 0; } to { opacity: .92; } }
.hero h1, .hero__kicker, .hero__copy, .hero__actions, .hero__nap { animation: rise .9s var(--ease) both; }
.hero__kicker { animation-delay: .05s; }
.hero h1 { animation-delay: .15s; }
.hero__copy { animation-delay: .3s; }
.hero__actions { animation-delay: .4s; }
.hero__nap { animation-delay: .5s; }
.lens__frame--draw { stroke-dasharray: 800; stroke-dashoffset: 800; animation: draw 1.6s var(--ease) .2s forwards; }
.lens__glass { animation: glassin 1.2s var(--ease) .9s both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .brands__track { animation: none; width: auto; flex-wrap: wrap; }
  .brands__track .brands__list + .brands__list { display: none; }
  .brands__list { flex-wrap: wrap; gap: 1rem 2rem; height: auto; }
  .hero h1, .hero__kicker, .hero__copy, .hero__actions, .hero__nap, .lens__frame--draw, .lens__glass { animation: none; }
  .lens__frame--draw { stroke-dashoffset: 0; }
  .lens__glass { opacity: .92; }
  .nav { transition: none; }
  .btn, .textlink, .brandroll span, .photo--bw img, .faq summary::after { transition: none; }
}

/* ---------- Utilities (replace inline styles; CSP-safe) ---------- */
.rel { position: relative; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: .75rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.25rem; }
.mt-5 { margin-top: 1.5rem; }
.footer__note { color: #a3a3a3; }

/* ---------- Services: 3-column variant ---------- */
.services__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 clamp(1.5rem, 3vw, 3rem); }
.services__grid--3 .service h3 { font-size: 1.45rem; }
.services__grid--3 .service p { font-size: 1rem; }

/* ---------- Lookbook mosaic ---------- */
.lookbook { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; align-items: end; margin-top: clamp(2rem, 4vw, 3rem); }
.lookbook .lb { grid-column: span 2; }
.lookbook .lb img { aspect-ratio: 1; }
.lookbook .lb--tall img { aspect-ratio: 4 / 5; }
.lookbook figcaption { font-family: var(--serif); font-size: 1.05rem; color: var(--black); }

/* ---------- Team: two-up with bios ---------- */
.team__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 4rem); }
.member { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 1.5rem; align-items: start; }
.member .member__name { margin-top: 0; font-size: 1.5rem; }
.member__bio { color: var(--graphite); margin-top: .75rem; font-size: 1rem; }

/* ---------- Story: archive treatment ---------- */
.story__gallery--archive { grid-template-columns: 5fr 7fr; align-items: end; }
.photo--archive img { aspect-ratio: 16 / 21; object-position: top; border: 1px solid var(--line); background: #f5f4f0; }
.story__attr { display: block; margin-top: .75rem; font-family: var(--sans); font-size: .9rem; color: var(--graphite); }

@media (max-width: 1000px) {
  .services__grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lookbook { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lookbook .lb { grid-column: auto; }
  .team__grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .services__grid--3 { grid-template-columns: 1fr; }
  .story__gallery--archive { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .member { grid-template-columns: 1fr; }
  .member .photo { max-width: 260px; }
  .lookbook { gap: .75rem; }
}

/* ---------- Call band ---------- */
.callband { position: relative; overflow: hidden; text-align: left; padding-block: clamp(4rem, 9vw, 7rem); }
.callband::before {
  content: ""; position: absolute; inset: -30% -10% auto auto; width: 55vmax; height: 55vmax; border-radius: 50%;
  background: radial-gradient(closest-side, var(--neon-glow), transparent 70%); filter: blur(50px); opacity: .5; pointer-events: none;
}
.callband .container { position: relative; }
.callband__label { font-family: var(--sans); font-weight: 500; font-size: 1.05rem; color: #cfcfcf; margin-bottom: 1rem; }
.callband__phone {
  display: inline-block; font-family: var(--serif); font-weight: 800; font-size: clamp(3rem, 10.5vw, 8.5rem); line-height: .95; letter-spacing: -0.03em;
  color: var(--white); text-decoration: none; text-shadow: 0 0 40px var(--neon-glow);
  transition: text-shadow .6s var(--ease), color .6s var(--ease);
}
.callband__phone:hover { color: var(--neon); }
.callband__addr { margin-top: 1.25rem; color: #cfcfcf; font-size: 1.1rem; }

/* ---------- Reveal on scroll (once, gentle) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--i, 0) * 70ms); }
.js .reveal.in { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .brand-logo .logo, .brand-logo.is-logo::before, .brand-logo.is-logo::after { height: 1.6rem; }
  .brand-logo.is-logo::before, .brand-logo.is-logo::after { width: calc(1.6rem * var(--ratio, 4)); }
  .brand-logo.is-mid::before, .brand-logo.is-mid::after { height: 2.1rem; width: calc(2.1rem * var(--ratio, 2)); }
  .brand-logo.is-tall::before, .brand-logo.is-tall::after { height: 2.7rem; width: calc(2.7rem * var(--ratio, 1)); }
  .brand-logo.is-tall { height: 2.7rem; }
  .brands__track, .brands__list { gap: 2.8rem; }
  .brand__logo { width: 2.6rem; height: 2.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .lens, .spectrum, .slide.is-active img { animation: none; }
  .slide { transition: none; }
  .slide img { transform: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .callband__phone, .btn--primary { transition: none; }
}

/* ---------- Lookbook as a brand wall (logo tiles, neon-tinted; name in type until a logo file exists) ---------- */
.lookbook--logos { align-items: stretch; }
.lb-logo {
  grid-column: span 2; position: relative; margin: 0; aspect-ratio: 1; overflow: hidden;
  display: grid; place-items: center; --shift: 0;
  background: radial-gradient(circle at 50% 42%, oklch(0.22 0.06 calc(var(--hue) + var(--shift))), #070707 72%);
}
.lookbook--logos .lb-logo:nth-child(9n+2) { --shift: 6; } .lookbook--logos .lb-logo:nth-child(9n+3) { --shift: 12; }
.lookbook--logos .lb-logo:nth-child(9n+4) { --shift: 18; } .lookbook--logos .lb-logo:nth-child(9n+5) { --shift: 24; }
.lookbook--logos .lb-logo:nth-child(9n+6) { --shift: 30; } .lookbook--logos .lb-logo:nth-child(9n+7) { --shift: 36; }
.lookbook--logos .lb-logo:nth-child(9n+8) { --shift: 42; } .lookbook--logos .lb-logo:nth-child(9n+9) { --shift: 48; }
.lb-logo .logo { width: 62%; height: auto; max-height: 50%; object-fit: contain; filter: invert(1); }
.lb-logo.is-logo .logo { position: absolute; opacity: 0; pointer-events: none; }
.lb-logo.is-logo::before, .lb-logo.is-logo::after {
  content: ""; position: absolute; left: 50%; top: 46%; width: 66%; height: 50%; transform: translate(-50%, -50%);
  background: linear-gradient(135deg, oklch(0.9 0.15 calc(var(--hue) + var(--shift))), oklch(0.84 0.17 calc(var(--hue) + var(--shift) + 40)));
  -webkit-mask: var(--logo-url) center / contain no-repeat; mask: var(--logo-url) center / contain no-repeat;
}
.lb-logo.is-logo::before { filter: blur(16px); opacity: .5; }
.lb-logo .logo-text {
  font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.7rem); text-align: center; padding: 0 1rem; white-space: normal; line-height: 1.1;
  color: oklch(0.9 0.15 calc(var(--hue) + var(--shift))); text-shadow: 0 0 22px oklch(0.8 0.18 calc(var(--hue) + var(--shift)) / .55);
}
.lb-logo figcaption { position: absolute; left: 1rem; bottom: .85rem; font-family: var(--sans); font-size: .85rem; color: #a9a9a9; }
.lb-logo::after, .lb-logo::before { pointer-events: none; }
@media (max-width: 1000px) { .lb-logo { grid-column: auto; } }
.lb-logo:has(.logo-text) figcaption { display: none; }

/* ---------- New arrivals ---------- */
.na { position: relative; margin: 0; overflow: hidden; background: var(--stone); }
.na img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.4s var(--ease); }
.na:hover img { transform: scale(1.035); }
.na figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 1rem .9rem;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,0)); color: var(--white); font-size: .9rem;
}
.na figcaption span { display: block; font-family: var(--serif); font-size: 1.25rem; line-height: 1.1; }
.na--banner { aspect-ratio: 1800 / 309; margin: clamp(1.5rem, 3vw, 2.5rem) 0 1rem; }
.arrivals { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.na--sq { aspect-ratio: 1; }
.na--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.na--tall { aspect-ratio: 4 / 5; }
.na--cta {
  display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; text-decoration: none;
  background: radial-gradient(circle at 80% 20%, oklch(0.32 0.1 var(--hue)), #070707 70%);
}
.na__cta-text { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.2; }
@media (max-width: 1000px) { .arrivals { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .arrivals { grid-template-columns: 1fr; gap: .75rem; } .na--wide { grid-column: auto; } }
@media (prefers-reduced-motion: reduce) { .na img { transition: none; } .na:hover img { transform: none; } }

/* ---------- Blog ---------- */
.blog-hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem); }
.post-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); }
.post-card { display: flex; flex-direction: column; gap: .7rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.post-card time, .post time { font-size: .85rem; color: var(--graphite); }
.post-card h2 { font-size: 1.6rem; line-height: 1.15; }
.post-card h2 a { text-decoration: none; }
.post-card h2 a:hover { text-decoration: underline; text-decoration-color: var(--accent-deep); }
.post-card p { color: var(--graphite); }
.post { max-width: 68ch; }
.post header { margin-bottom: 2rem; }
.post h1 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); line-height: 1.02; margin-bottom: 1rem; }
.post h2 { font-size: 1.7rem; margin: 2.2rem 0 .8rem; }
.post p, .post li { font-size: 1.1rem; line-height: 1.65; }
.post ul { padding-left: 1.2rem; }
.post li { margin-bottom: .4rem; }
.post__cta { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.post__meta { color: var(--graphite); font-size: .95rem; }
@media (max-width: 860px) { .post-list { grid-template-columns: 1fr; } }

/* ---------- Map + locator ---------- */
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.locator { margin: 1rem 0 0; }
.locator svg { width: 100%; height: auto; display: block; border: 1px solid var(--line); }
.locator figcaption { font-size: .9rem; color: var(--graphite); padding-top: .6rem; }
.loc__bg { fill: #f6f5f1; }
.loc__road { stroke: #d6d3cb; stroke-width: 10; }
.loc__road--main { stroke: #c9c5bb; stroke-width: 16; }
.loc__label { font-family: var(--sans); font-size: 15px; fill: var(--black); }
.loc__label--muted { fill: var(--mist); font-size: 13px; }
.loc__label--strong { font-family: var(--serif); font-size: 20px; }
.loc__halo { fill: var(--accent); opacity: .35; }
.loc__marker { fill: var(--black); }
.loc__dot { fill: var(--accent); }

/* ---------- Blog: related links ---------- */
.post__related { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.post__related ul { list-style: none; padding: 0; margin: .8rem 0 0; }
.post__related li { padding: .55rem 0; border-bottom: 1px solid var(--line); }
.post__related a { text-decoration: none; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; }
.post__related a:hover { text-decoration: underline; text-decoration-color: var(--accent-deep); }
.post-card h2 { font-weight: 700; }

/* ---------- Home: from the blog ---------- */
.fromblog__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); margin-top: clamp(2rem, 4vw, 3rem); }
@media (max-width: 860px) { .fromblog__grid { grid-template-columns: 1fr; } }

/* ---------- Transparent header over the banner (JS on; falls back to solid without it) ---------- */
:root { --header-h: 5rem; }
.js .header--over { transition: background-color .4s var(--ease), border-color .4s var(--ease); }
.js .header--over:not(.is-solid) { background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.js .header--over:not(.is-solid) .nav a:not(.btn) { color: var(--white); text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.js .header--over:not(.is-solid) .nav .btn--primary { background: var(--white); color: var(--black); border-color: var(--white); }
.js .header--over:not(.is-solid) .nav .btn--primary:hover { background: var(--neon); border-color: var(--neon); }
.js .header--over:not(.is-solid) .brand__name { background-image: linear-gradient(100deg, var(--white) 0%, var(--neon) 100%); }
.js .header--over:not(.is-solid) .brand__name small { color: #e6e6e6; -webkit-text-fill-color: #e6e6e6; }
.js .header--over:not(.is-solid) .brand__logo { background: linear-gradient(135deg, var(--white), var(--neon)); }
.js .header--over:not(.is-solid) .nav-toggle span, .js .header--over:not(.is-solid) .nav-toggle span::before, .js .header--over:not(.is-solid) .nav-toggle span::after { background: var(--white); }
.js .header--over:not(.is-solid) .nav-toggle[aria-expanded="true"] span { background: transparent; }
.js .header--over:not(.is-solid) .nav-toggle[aria-expanded="true"] span::before, .js .header--over:not(.is-solid) .nav-toggle[aria-expanded="true"] span::after { background: var(--black); }
.js .header--over:not(.is-solid) :focus-visible { outline-color: var(--white); }
.js .hero--banner { margin-top: calc(-1 * var(--header-h)); min-height: min(calc(100svh - 2.4rem), 980px); }
.js .hero--banner .slide__scrim { background:
  linear-gradient(to bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 24%),
  linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 38%, rgba(0,0,0,0) 70%),
  linear-gradient(to right, rgba(0,0,0,.45), rgba(0,0,0,0) 60%); }
@media (max-width: 860px) {
  .js .hero--banner { min-height: calc(100svh - 2.4rem); }
  .js .header--over:not(.is-solid) .slides__dots { top: 1rem; }
  .js .header--over:not(.is-solid) + main .slides__dots { top: 5.6rem; }
}
@media (max-width: 860px) {
  .js .header--over:not(.is-solid) .nav[data-open="true"] a:not(.btn) { color: var(--black); text-shadow: none; }
  .js .header--over:not(.is-solid) .nav[data-open="true"] .btn--primary { background: var(--black); color: var(--white); border-color: var(--black); }
}

/* ---------- Full-color logos (data-color="keep"): no tint, no invert ---------- */
.brand-logo.is-color .logo { filter: none; opacity: 1; height: 2.2rem; }
.lb-logo.is-color .logo { filter: none; }
@media (max-width: 860px) { .brand-logo.is-color .logo { height: 1.7rem; } }

/* ---------- HOT badge: the word on fire ---------- */
.hot {
  position: absolute; top: .9rem; left: .9rem; z-index: 3;
  display: inline-flex; align-items: center; gap: .25rem; padding: .3rem .75rem .3rem .45rem; border-radius: 999px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-family: var(--masthead); font-size: 1.05rem; letter-spacing: .1em; line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255,110,0,.75)); animation: hot-glow 1.4s ease-in-out infinite alternate;
}
.hot__word {
  background: linear-gradient(0deg, #ff2d00 0%, #ff7a00 40%, #ffd166 75%, #fff6c8 100%);
  background-size: 100% 220%; background-position: 50% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: hot-sweep 1.1s ease-in-out infinite alternate;
}
.hot__flame { width: 1.25rem; height: 1.45rem; overflow: visible; }
.hot__flame path { transform-box: fill-box; transform-origin: 50% 100%; }
.hot__f1 { fill: #ff6a00; animation: hot-flick .42s ease-in-out infinite alternate; }
.hot__f2 { fill: #ffc233; animation: hot-flick .33s ease-in-out .1s infinite alternate-reverse; }
.hot__f3 { fill: #fff7d6; animation: hot-flick .27s ease-in-out .05s infinite alternate; }
@keyframes hot-flick { from { transform: scaleY(.92) scaleX(1.04) skewX(-3deg); } to { transform: scaleY(1.1) scaleX(.96) skewX(4deg); } }
@keyframes hot-sweep { from { background-position: 50% 100%; } to { background-position: 50% 0%; } }
@keyframes hot-glow { from { filter: drop-shadow(0 0 6px rgba(255,110,0,.6)); } to { filter: drop-shadow(0 0 14px rgba(255,150,0,.95)); } }
@media (max-width: 480px) { .hot { font-size: .95rem; top: .6rem; left: .6rem; } }
@media (prefers-reduced-motion: reduce) { .hot, .hot__word, .hot__flame path { animation: none; } }

/* ---------- Hero: number on the right, big, thick, flashing through the drifting hue ---------- */
.hero__content--split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: end; gap: 2rem 3rem; }
.hero__right { text-align: right; justify-self: end; }
.hero__right .hero__cta-label { font-size: 1.05rem; line-height: 1.35; margin-bottom: .8rem; }
.hero__phone--big {
  display: inline-block; font-family: var(--masthead); font-weight: 400;
  font-size: clamp(3.4rem, 8.2vw, 8.4rem); line-height: .92; letter-spacing: -0.02em; white-space: nowrap;
  background: linear-gradient(100deg, var(--white) 0%, var(--neon) 22%, var(--white) 40%, var(--neon-b) 58%, var(--white) 78%, var(--neon) 100%);
  background-size: 260% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: none; animation: phone-flash 3.4s linear infinite;
}
.hero__phone--big:hover { animation-duration: 1.2s; }
@keyframes phone-flash {
  0%   { background-position: 100% 0; filter: drop-shadow(0 0 10px var(--neon-glow)); }
  50%  { filter: drop-shadow(0 0 30px var(--neon-glow)); }
  100% { background-position: -160% 0; filter: drop-shadow(0 0 10px var(--neon-glow)); }
}
@media (max-width: 1000px) {
  .hero__content--split { grid-template-columns: 1fr; }
  .hero__right { text-align: left; justify-self: start; }
  .hero__phone--big { font-size: clamp(2.8rem, 12.5vw, 5rem); white-space: normal; }
}
@media (prefers-reduced-motion: reduce) { .hero__phone--big { animation: none; background-position: 40% 0; } }

/* ---------- Headline: shimmer + outline-fill, tied to the drifting hue ---------- */
.hero h1 { text-shadow: none; }
.hero h1 .l1 {
  display: inline-block;
  background: linear-gradient(100deg, var(--white) 0%, var(--white) 45%, var(--neon) 75%, var(--white) 100%);
  background-size: 250% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.45));
  animation: head-shimmer 7s ease-in-out infinite;
}
.hero h1 .l2 {
  display: inline-block; font-style: italic; padding-right: .08em;
  color: transparent; -webkit-text-stroke: 2.5px var(--neon);
  background: linear-gradient(100deg, var(--neon) 0%, var(--neon-b) 100%);
  background-repeat: no-repeat; background-size: 0% 100%; background-position: 0 0;
  -webkit-background-clip: text; background-clip: text;
  filter: drop-shadow(0 0 16px var(--neon-glow));
  animation: head-fill 6.5s ease-in-out infinite;
}
@keyframes head-shimmer { 0%, 20% { background-position: 100% 0; } 60%, 100% { background-position: 0% 0; } }
@keyframes head-fill { 0%, 12% { background-size: 0% 100%; } 42%, 62% { background-size: 100% 100%; } 90%, 100% { background-size: 0% 100%; } }
.hero__kicker { color: var(--neon); text-shadow: 0 0 14px var(--neon-glow); }
.hero h1 .h1-sub { color: #f0f0f0; }

/* dark-section headings pick up the same gradient */
.boutique .h2, .duo__panel--dark .duo__title em, .callband__label {
  background: linear-gradient(100deg, var(--white) 0%, var(--neon) 70%, var(--neon-b) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.callband__label { font-size: 1.15rem; }
@media (max-width: 860px) { .hero h1 .l2 { -webkit-text-stroke-width: 1.6px; } }
@media (prefers-reduced-motion: reduce) {
  .hero h1 .l1, .hero h1 .l2 { animation: none; }
  .hero h1 .l2 { background-size: 100% 100%; }
}
