/* =====================================================
   Vergelegen Optometrist — Premium Design System
   Palette: charcoal #3D3D3D + silver #C8C8C8 + champagne #B08D5B
   Type: Newsreader (optical-sizing serif) + Outfit (geometric sans)
   Signature: eyewear hero photo clears from blur on scroll
   Glassmorphism panels · scroll-reveal animations
   ===================================================== */

:root {
  --ink: #1A1A1A;
  --charcoal: #3D3D3D;
  --charcoal-90: #2E2E2E;
  --charcoal-95: #262626;
  --charcoal-80: #4A4A4A;
  --silver: #D2D2D2;
  --silver-dim: #A8A8A8;
  --cream: #F4EFE7;
  --cream-text: #2E2E2E;
  --champagne: #C49A62;
  --champagne-bright: #D8B888;
  --champagne-deep: #8E6F40;
  --champagne-ink: #75592F;   /* AA-safe bronze for small text on cream (5.7:1) */
  --champagne-soft: #DBC4A1;
  --line: #5A5A5A;
  --line-soft: rgba(210, 210, 210, .16);
  --glass-bg: rgba(255, 255, 255, .045);
  --glass-bg-2: rgba(255, 255, 255, .065);
  --glass-border: rgba(255, 255, 255, .10);
  --glass-hi: rgba(255, 255, 255, .18);
  --whatsapp: #25D366;
  --whatsapp-deep: #1DAE54;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --container: 1200px;
  --shadow-soft: 0 18px 50px -24px rgba(0,0,0,.6);
  --shadow-deep: 0 30px 70px -30px rgba(0,0,0,.75);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--silver);
  background: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--champagne-bright); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--champagne-soft); }
.wa-link { color: var(--whatsapp); }
.wa-link:hover { color: var(--whatsapp-deep); }

/* ---------- Typography ---------- */

.h2, .h3, .hero__h {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.08;
  margin: 0 0 .45em;
  color: var(--silver);
}
.h2 { font-size: clamp(28px, 4.4vw, 54px); }
.h3 { font-size: clamp(21px, 2.3vw, 27px); }

.eyebrow {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--champagne-bright);
  margin: 0 0 1rem;
}
.ink-champ { color: var(--champagne-bright); font-style: italic; }

/* ---------- Glass primitive ---------- */

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft), inset 0 1px 0 var(--glass-hi);
}

/* ---------- Buttons ---------- */

.btn {
  --b-bg: var(--champagne);
  --b-fg: #241a0c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--b-bg);
  color: var(--b-fg);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s ease, box-shadow .25s ease, color .18s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--champagne-soft); outline-offset: 3px; }

/* Glass sheen sweeps left->right on hover. It's a BACKGROUND layer, so it
   passes UNDER the label — the text (and a global `a:hover` would otherwise
   recolour it, so colour is pinned) stays crisp black throughout. */
.btn--accent {
  color: #241a0c;
  background:
    linear-gradient(110deg, transparent 35%, rgba(255,255,255,.5) 50%, transparent 65%) no-repeat,
    linear-gradient(135deg, var(--champagne-bright), var(--champagne));
  background-size: 220% 100%, 100% 100%;
  background-position: -120% 0, 0 0;
  box-shadow: 0 10px 28px -12px rgba(196,154,98,.7);
  transition: background-position .6s var(--ease), box-shadow .25s ease, transform .18s var(--ease);
}
.btn--accent:hover {
  color: #241a0c;
  background-position: 220% 0, 0 0;
  box-shadow: 0 16px 36px -12px rgba(196,154,98,.9), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--accent:active { color: #241a0c; }

/* WhatsApp — official WhatsApp green (#25D366), white label + icon */
.btn--wa {
  background: #25D366; color: #fff; border-color: #25D366;
  box-shadow: 0 12px 30px -14px rgba(37,211,102,.75);
}
.btn--wa:hover { color: #fff; background: #1EBE5A; border-color: #1EBE5A; box-shadow: 0 18px 40px -14px rgba(37,211,102,.9); }
.btn--wa:active { color: #fff; background: #19A94F; }
.btn--wa svg { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }

.btn--glass {
  background: var(--glass-bg-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--silver);
  border-color: var(--glass-border);
}
.btn--glass:hover { color: var(--champagne-bright); border-color: var(--champagne); background: rgba(196,154,98,.10); }

.btn--lg { padding: 17px 30px; font-size: 16px; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(30, 30, 30, .9);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: padding .3s var(--ease), background .3s ease;
}
.nav.is-scrolled { padding-top: 8px; padding-bottom: 8px; background: rgba(26,26,26,.95); }

.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 30px; width: auto; opacity: .95; transition: opacity .2s ease, height .3s var(--ease); }
.nav__brand:hover .nav__logo { opacity: 1; }
.nav.is-scrolled .nav__logo { height: 26px; }

.nav__links { display: none; gap: 28px; }
.nav__links a {
  color: var(--silver-dim);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: var(--champagne); transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--silver); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 10px 18px; font-size: 14px; }

@media (min-width: 980px) { .nav__links { display: inline-flex; } }

/* ---------- Hamburger + mobile menu ---------- */
.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; background: transparent; border: 0; cursor: pointer;
}
.nav__burger span {
  display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--silver);
  margin: 0 auto; transition: transform .3s var(--ease), opacity .2s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(26,26,26,.97);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; gap: 30px;
  padding: 88px clamp(28px,8vw,48px) 48px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu[hidden] { display: none; }   /* defeat `.mobile-menu { display:flex }` so `hidden` actually hides */
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__links a {
  font-family: "Newsreader", serif; font-weight: 600; font-size: 28px; color: var(--silver);
  padding: 14px 0; border-bottom: 1px solid var(--line-soft);
}
.mobile-menu__links a:hover { color: var(--champagne-bright); }
.mobile-menu__cta { display: grid; gap: 12px; }
.mobile-menu__cta .btn { width: 100%; }

@media (max-width: 979px) {
  .nav__burger { display: flex; }
  .nav__cta { display: none; }   /* sticky bottom bar + menu carry the CTA on mobile */
}
@media (min-width: 980px) {
  .nav__burger, .mobile-menu { display: none !important; }
}

/* ---------- HERO ---------- */

/* ---------- HERO — light "eye-chart" (high readability) ---------- */
.hero {
  position: relative;
  background: var(--cream);
  min-height: 90svh;
  display: flex;
  align-items: center;
  /* fluid: smaller header-to-hero gap on short screens, roomier on tall ones */
  padding: clamp(86px, 10.5vh, 112px) clamp(20px, 5vw, 64px) clamp(44px, 7vh, 72px);
}
.hero__inner {
  max-width: var(--container); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__text { animation: rise .8s var(--ease) both; }
.hero__h {
  font-family: "Newsreader", serif; font-weight: 600;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02; letter-spacing: -.022em; color: var(--ink);
  margin: 0 0 20px;
}
.hero__h-em { font-style: italic; font-weight: 400; color: var(--champagne-ink); }
.hero__lead {
  font-size: clamp(16px, 1.35vw, 18.5px); line-height: 1.55;
  color: var(--cream-text); max-width: 540px; margin: 0 0 28px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__ctas .btn { min-width: 210px; }   /* equal-size CTAs */

.hero__shot {
  border-radius: 20px; overflow: hidden; aspect-ratio: 1/1;   /* square everywhere */
  border: 1px solid rgba(61,61,61,.12);
  box-shadow: 0 34px 74px -30px rgba(80,55,25,.5);
  animation: rise .8s var(--ease) .12s both;
}
.hero__shot img { width: 100%; height: 100%; object-fit: cover; }

@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 820px) {
  .hero { padding-top: 96px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__shot { max-width: 360px; margin: 0 auto; order: -1; }  /* image first (top banner), stays square */
  .hero__ctas .btn { min-width: 0; flex: 1 1 auto; }
}

/* Short / landscape screens (most laptops): tighten the hero so it fits without
   scrolling. The image stays SQUARE everywhere — only the spacing flexes.
   Detected by available HEIGHT, not device. */
@media (min-width: 821px) and (max-height: 880px) {
  .hero { min-height: auto; padding-top: 84px; padding-bottom: 40px; }
  .hero__inner { gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr 1.1fr; }  /* enlarge image on laptops */
}
@media (min-width: 821px) and (max-height: 720px) {
  .hero__h { font-size: clamp(36px, 4.4vw, 58px); }
  .hero__lead { margin-bottom: 22px; }
  .hero__shot { max-width: 380px; margin-left: auto; }  /* shrink square so it fits */
}

/* ---------- Scroll reveal ---------- */

[data-reveal], [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in, [data-reveal-group].is-in > * { opacity: 1; transform: none; }
[data-reveal-group].is-in > *:nth-child(1){ transition-delay: .02s; }
[data-reveal-group].is-in > *:nth-child(2){ transition-delay: .08s; }
[data-reveal-group].is-in > *:nth-child(3){ transition-delay: .14s; }
[data-reveal-group].is-in > *:nth-child(4){ transition-delay: .2s; }
[data-reveal-group].is-in > *:nth-child(5){ transition-delay: .26s; }
[data-reveal-group].is-in > *:nth-child(6){ transition-delay: .3s; }
[data-reveal-group].is-in > *:nth-child(7){ transition-delay: .34s; }
[data-reveal-group].is-in > *:nth-child(8){ transition-delay: .38s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-group] > * { opacity: 1 !important; transform: none !important; }
}

/* ---------- Glass image frame ---------- */

.glass-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-deep), inset 0 1px 0 var(--glass-hi);
}
.glass-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.glass-frame:hover img { transform: scale(1.05); }
.glass-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.10), transparent 40%);
  pointer-events: none;
}

/* ---------- "When was your last eye exam?" ---------- */

.prompt {
  background: var(--cream);
  color: var(--cream-text);
  padding: clamp(48px, 7vw, 84px) clamp(20px, 5vw, 48px);
}
.prompt__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.prompt__h {
  font-family: "Newsreader", serif; font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 600; color: var(--charcoal); margin: 0 0 26px; letter-spacing: -.012em;
}
.prompt__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  font-family: "Outfit", sans-serif; font-weight: 500; font-size: 15px;
  background: rgba(61,61,61,.04); border: 1.5px solid rgba(61,61,61,.3); color: var(--charcoal);
  padding: 11px 20px; border-radius: var(--radius-pill); cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .14s var(--ease);
}
.chip:hover { background: var(--charcoal); color: var(--cream); transform: translateY(-2px); border-color: var(--charcoal); }
.chip[aria-pressed="true"] { background: var(--champagne-deep); border-color: var(--champagne-deep); color: #fff; }
.prompt__reply {
  margin: 26px auto 0; max-width: 640px; font-size: 17px; line-height: 1.55;
  color: var(--charcoal-80); min-height: 1.2em;
}
.prompt__reply a { color: var(--champagne-ink); border-bottom: 1px solid var(--champagne-ink); font-weight: 500; }

/* ---------- About ---------- */

.about { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 48px); background: var(--charcoal); }
.about__inner { max-width: var(--container); margin: 0 auto; display: grid; gap: 48px; align-items: center; }
@media (min-width: 920px) { .about__inner { grid-template-columns: .9fr 1.1fr; gap: 72px; } }

.about__media { position: relative; }
.about__media .glass-frame { aspect-ratio: 4/5; }
.about__badge {
  position: absolute; right: -14px; bottom: -22px;
  border-radius: var(--radius); padding: 18px 22px; text-align: center;
}
.about__badge-num {
  display: block; font-family: "Newsreader", serif; font-weight: 700;
  font-size: 46px; line-height: 1; color: var(--champagne-bright); letter-spacing: -.02em;
}
.about__badge-num span { font-size: .55em; }
.about__badge-label { display: block; font-size: 12px; color: var(--silver-dim); margin-top: 4px; letter-spacing: .04em; }

.about__text p { margin: 0 0 1.05em; color: var(--silver-dim); font-size: 17px; line-height: 1.62; }
.about__sig { font-family: "Outfit", sans-serif; font-size: 14.5px; color: var(--silver); border-top: 1px solid var(--line); padding-top: 18px; }
.about__sig strong { color: var(--champagne-bright); font-weight: 500; }

.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.stat__num {
  display: block; font-family: "Newsreader", serif; font-weight: 600;
  font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--champagne-bright); letter-spacing: -.02em;
}
.stat__label { display: block; margin-top: 8px; font-size: 13px; color: var(--silver-dim); line-height: 1.4; }
@media (max-width: 520px){ .about__stats { gap: 12px; } .stat__label { font-size: 12px; } }

/* ---------- Services bento ---------- */

.services { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 48px); background: var(--charcoal-90); }
.services__head { max-width: var(--container); margin: 0 auto 44px; }
.services__head .h2 { max-width: 880px; text-wrap: balance; }

.bento { max-width: var(--container); margin: 0 auto; display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
/* equal-height rows only kick in at the 4-col desktop layout, where the featured
   card sets the row height. On mobile/tablet (1–3 col) cards size to content,
   so no empty gaps inside cards. */
@media (min-width: 980px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; }
  .card--hero { grid-column: span 2; grid-row: span 2; }
}

.card {
  display: flex; flex-direction: column;
  padding: clamp(22px, 2.2vw, 30px);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--champagne); box-shadow: var(--shadow-deep); }
.card__h { font-family: "Newsreader", serif; font-size: clamp(19px, 1.8vw, 25px); font-weight: 600; letter-spacing: -.01em; color: var(--silver); margin: 0 0 11px; }
.card__body { color: var(--silver-dim); font-size: 15.5px; line-height: 1.55; margin: 0 0 14px; flex-grow: 1; }
.card__price { font-family: "Outfit", sans-serif; font-size: 13.5px; color: var(--champagne-soft); margin: 0 0 16px; font-weight: 500; }
.card__cta { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 14.5px; color: var(--champagne-bright); margin-top: auto; transition: gap .2s; }
.card__cta:hover { color: var(--champagne-soft); }

.card--hero { padding: 0; overflow: hidden; }
.card--hero__img { aspect-ratio: 16/9; overflow: hidden; }
.card--hero__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%); transition: transform .7s var(--ease); }
.card--hero:hover .card--hero__img img { transform: scale(1.06); }
.card--hero__body { padding: clamp(22px, 2.4vw, 32px); display: flex; flex-direction: column; flex-grow: 1; }
.card--hero .card__h { font-size: clamp(22px, 2.2vw, 32px); }

/* ---------- Kids ---------- */

.kids { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 48px); background: var(--cream); color: var(--cream-text); }
.kids__inner { max-width: var(--container); margin: 0 auto; display: grid; gap: 48px; align-items: center; }
@media (min-width: 920px) { .kids__inner { grid-template-columns: 1.1fr .9fr; gap: 64px; } }
.kids .eyebrow { color: var(--champagne-ink); }
.kids .h2 { color: var(--charcoal); }
.kids p { color: var(--charcoal-80); font-size: 17px; line-height: 1.62; margin: 0 0 1.1em; }

.ticks { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; font-size: 16px; color: var(--charcoal-80); line-height: 1.5; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .5em; width: 16px; height: 16px; border-radius: 50%; background: var(--champagne); box-shadow: inset 0 0 0 4px var(--cream); }

.kids__visual { position: relative; }
.glass-frame--tall { aspect-ratio: 3/4; box-shadow: 0 30px 70px -30px rgba(80,55,25,.45); border-color: rgba(61,61,61,.12); }
.kids__signs {
  position: relative;
  margin: -56px 0 0 auto;
  width: min(290px, 86%);
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(61,61,61,.10) !important;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 24px 50px -24px rgba(80,55,25,.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.kids__signs h3 { color: var(--charcoal); margin: 0 0 14px; font-family: "Newsreader", serif; font-size: 20px; }
.kids__signs ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.kids__signs li { font-size: 14.5px; color: var(--charcoal-80); padding-left: 22px; position: relative; }
.kids__signs li::before { content: "→"; position: absolute; left: 0; color: var(--champagne-ink); font-weight: 600; }
@media (max-width: 520px){ .kids__signs { margin: -40px auto 0; } }

/* ---------- Schemes ---------- */

.schemes { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 48px); background: var(--charcoal); text-align: center; position: relative; }
.schemes::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(196,154,98,.08), transparent 55%);
}
.schemes__inner { max-width: 1080px; margin: 0 auto; position: relative; }
.schemes .eyebrow { display: inline-block; }
.schemes__lead { color: var(--silver-dim); font-size: 17px; max-width: 620px; margin: 0 auto 40px; }
.scheme-wall {
  list-style: none; padding: 0;
  margin: 8px auto 26px;
  max-width: 980px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4.5vw, 56px) clamp(18px, 3vw, 44px);
  align-items: center;
}
@media (min-width: 560px) { .scheme-wall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .scheme-wall { grid-template-columns: repeat(6, 1fr); } }
.scheme-wall li {
  display: grid; place-items: center; text-align: center;
  font-family: "Newsreader", serif; font-weight: 500;
  font-size: clamp(15px, 1.5vw, 19px); letter-spacing: .005em; line-height: 1.15;
  color: rgba(214, 214, 214, .70);
  transition: color .3s ease, transform .3s var(--ease);
}
.scheme-wall li:hover { color: #fff; transform: translateY(-3px); }

/* Logo variant — uniform white-tinted scheme marks, centred */
.scheme-wall--logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  max-width: 1000px; margin: 8px auto 26px;
  gap: clamp(30px, 4.5vw, 60px) clamp(28px, 5vw, 64px);
}
.scheme-wall--logos li { transition: transform .3s var(--ease); }
.scheme-wall--logos li img {
  height: clamp(30px, 3.4vw, 40px); width: auto; max-width: 150px; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .72;
  transition: opacity .3s ease;
}
.scheme-wall--logos li:hover { transform: translateY(-3px); }
.scheme-wall--logos li:hover img { opacity: 1; }
.schemes__note { margin: 28px auto 0; max-width: 640px; font-size: 14.5px; color: var(--silver-dim); }

/* ---------- Frames ---------- */

.frames { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 48px); background: var(--charcoal-90); text-align: center; }
.frames__inner { max-width: 1080px; margin: 0 auto; }
.frames__lead { max-width: 620px; margin: 0 auto 40px; color: var(--silver-dim); font-size: 17px; }
.frames__gallery { display: grid; gap: 16px; margin: 0 auto 40px; grid-template-columns: 1fr; }
@media (min-width: 760px){ .frames__gallery { grid-template-columns: 1.5fr 1fr; } }
.frames__shot { aspect-ratio: 16/10; }
.frames__shot--lg { aspect-ratio: 16/10; }
@media (min-width: 760px){ .frames__shot--lg { aspect-ratio: auto; } }

.brand-wall {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: 920px;
  display: grid; grid-template-columns: repeat(2, 1fr);   /* mobile: 2-up so wide wordmarks don't clip */
  gap: clamp(26px, 4vw, 48px) clamp(18px, 3vw, 40px);
  align-items: center;
}
@media (min-width: 560px){ .brand-wall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px){ .brand-wall { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px){ .brand-wall { grid-template-columns: repeat(6, 1fr); } }
.brand-wall li { min-width: 0; }   /* prevent intrinsic logo size from pushing columns wider */
.brand-wall li {
  display: grid; place-items: center; text-align: center;
  font-family: "Newsreader", serif; font-weight: 500;
  font-size: clamp(16px, 1.6vw, 21px); letter-spacing: .02em; line-height: 1.15;
  color: rgba(214, 214, 214, .70);
  transition: color .3s ease, transform .3s var(--ease);
}
.brand-wall li:hover { color: #fff; transform: translateY(-3px); }

/* Logo variant — uniform white-tinted marks */
.brand-wall--logos { gap: clamp(30px, 4.5vw, 56px) clamp(20px, 3.5vw, 48px); }
.brand-wall--logos li { transition: transform .3s var(--ease); }
.brand-wall--logos li img {
  height: clamp(26px, 3vw, 34px); width: auto; max-width: 130px; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .68;
  transition: opacity .3s ease;
}
.brand-wall--logos li:hover { transform: translateY(-3px); }
.brand-wall--logos li:hover img { opacity: 1; }
.frames__note { margin: 28px auto 0; max-width: 600px; font-size: 13.5px; color: var(--silver-dim); line-height: 1.55; }

/* ---------- Book ---------- */

.book { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 48px); background: var(--charcoal); }
.book__inner { max-width: var(--container); margin: 0 auto; display: grid; gap: 48px; align-items: start; }
@media (min-width: 920px) { .book__inner { grid-template-columns: 1fr 1.05fr; gap: 72px; } }
.book__copy p { color: var(--silver-dim); font-size: 17px; line-height: 1.62; margin: 0 0 22px; }
.book__assure { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.book__assure li { position: relative; padding-left: 28px; font-size: 15px; color: var(--silver); }
.book__assure li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--champagne-bright); font-weight: 700;
}

.book-form { border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); }
.book-form__progress { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 24px; }
.book-form__progress .bar { height: 4px; border-radius: 4px; background: var(--line-soft); transition: background .3s ease; }
.book-form__progress .bar.is-on { background: var(--champagne); }

.step__pos { font-family: "Outfit", sans-serif; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--silver-dim); margin: 0 0 22px; }
.step__num { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--champagne); color: #241a0c; font-weight: 700; font-size: 13px; margin-right: 8px; }

.book-form fieldset { border: 0; padding: 0; margin: 0 0 22px; }
.book-form legend { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 14.5px; color: var(--silver); margin-bottom: 12px; }
.book-form fieldset label {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px; margin-bottom: 6px;
  background: rgba(255,255,255,.03); border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  font-size: 15px; color: var(--silver-dim); cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.book-form fieldset label:hover { border-color: var(--champagne); color: var(--silver); }
.book-form fieldset label:has(input:checked) { border-color: var(--champagne); color: var(--silver); background: rgba(196,154,98,.10); }
.book-form input[type="radio"] { width: 16px; height: 16px; accent-color: var(--champagne); }

.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-family: "Outfit", sans-serif; font-weight: 500; font-size: 13.5px; color: var(--silver-dim); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--silver); font-family: "Outfit", sans-serif; font-size: 15px;
  padding: 12px 14px; transition: border-color .18s ease, background .18s ease;
}
.field textarea { resize: vertical; min-height: 64px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--champagne); background: rgba(196,154,98,.06); }

.step__row { display: flex; gap: 12px; justify-content: space-between; margin-top: 12px; }
.step__pop { margin: 16px 0 0; font-size: 13px; color: var(--silver-dim); text-align: center; }

/* ---------- Find Us ---------- */

.find { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 48px); background: var(--charcoal-90); }
.find__inner { max-width: var(--container); margin: 0 auto; display: grid; gap: 48px; align-items: start; }
@media (min-width: 880px) { .find__inner { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
.find__copy p { color: var(--silver-dim); font-size: 17px; line-height: 1.62; margin: 0 0 24px; }
.find__dl { display: grid; grid-template-columns: 110px 1fr; gap: 14px 18px; margin: 0; }
.find__dl dt { font-family: "Outfit", sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: var(--champagne-bright); padding-top: 3px; }
.find__dl dd { margin: 0; color: var(--silver); font-size: 15.5px; line-height: 1.5; }

.find__hours { border-radius: var(--radius); padding: 28px; }
.find__hours h3 { font-family: "Newsreader", serif; font-size: 22px; font-weight: 600; color: var(--silver); margin: 0 0 16px; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--line-soft); }
.hours th { color: var(--silver-dim); font-weight: 500; }
.hours td { color: var(--silver); font-family: "Outfit", sans-serif; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.find__walkin { margin: 18px 0 20px; font-size: 13.5px; color: var(--silver-dim); line-height: 1.55; }
.find__maplink { width: 100%; }

/* ---------- FAQ ---------- */

.faq { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 48px); background: var(--charcoal); }
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 36px; }
.faq__head .eyebrow { display: inline-block; }
.faq__list { display: grid; gap: 10px; }
.faq details {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 4px 0; transition: border-color .2s ease, background .2s ease;
}
.faq details[open] { border-color: var(--champagne); background: var(--glass-bg-2); }
.faq summary {
  list-style: none; cursor: pointer; padding: 15px 20px 15px 52px; position: relative;
  font-family: "Outfit", sans-serif; font-weight: 500; font-size: 16px; color: var(--silver); line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "+"; position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--champagne-bright); font-size: 22px; font-weight: 400; line-height: 1; width: 18px; text-align: center; transition: transform .25s var(--ease);
}
.faq details[open] summary::before { content: "−"; }
.faq details p { margin: 0; padding: 4px 20px 18px 52px; color: var(--silver-dim); font-size: 15px; line-height: 1.6; }

/* ---------- Footer ---------- */

.foot { background: var(--charcoal-95); border-top: 1px solid var(--line-soft); padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 48px) 32px; }
.foot__inner { max-width: var(--container); margin: 0 auto; display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.foot__logo { height: 42px; width: auto; margin-bottom: 14px; opacity: .9; }
.foot__tag { color: var(--silver-dim); font-size: 14px; margin: 0; font-style: italic; }
.foot__col h4 { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .18em; color: var(--champagne-bright); margin: 0 0 12px; }
.foot__col p { margin: 0; font-size: 14.5px; color: var(--silver-dim); line-height: 1.6; }
.foot__col a { color: var(--silver-dim); }
.foot__col a:hover { color: var(--champagne-bright); }
.foot__legal {
  max-width: var(--container); margin: 36px auto 0; padding-top: 24px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--silver-dim);
}
.foot__legal a { color: var(--champagne-bright); }
.foot__legal p { margin: 0; }


/* ---------- Small-screen tightening ---------- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { padding: 10px 16px; }
  .nav__cta { padding: 9px 14px; font-size: 13px; }
  .hero { padding-top: 56px; }
  .hero__lead { font-size: 16px; }
  .about__badge { right: 8px; bottom: -18px; padding: 14px 18px; }
  .find__dl { grid-template-columns: 1fr; gap: 4px 0; }
  .find__dl dt { padding-top: 14px; }
}

@media print {
  .nav, .sticky-cta, .hero__media, .hero__scrollcue { display: none !important; }
  body { background: #fff; color: #000; }
}
