/* =========================================================================
   Aspire Smiles - General Dentistry BAU landing page
   Built on the NEW Aspire Smiles Design System (aspire.css tokens).
   Warm paper / teal / ink bands. Montserrat 300 display + Open Sans body.
   Barcode texture, pill eyebrows, rectangular CTAs, wood-grain footer.
   ========================================================================= */

:root {
  --as-paper: #ecebe7;        /* warm light page wash */
  --as-teal-deep: #114e57;    /* darker teal for hovers */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--as-paper); color: var(--as-ink);
  font-family: var(--font-body); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ------------------------------------------------------- */
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding-inline: 40px; }
.section { padding-block: clamp(64px, 8vw, 112px); position: relative; overflow: hidden; }
.section--tight { padding-block: clamp(48px, 6vw, 76px); }
.paper { background: var(--as-paper); }
.white { background: var(--as-white); }
.teal { background: var(--as-teal); color: #fff; }
.ink { background: var(--as-ink); color: #fff; }

/* barcode texture for light bands */
.barcode {
  position: absolute; inset: 0; pointer-events: none; color: var(--as-ink); z-index: 0;
  background-image: repeating-linear-gradient(90deg, currentColor 0 1.5px, transparent 1.5px 9px,
    currentColor 9px 11px, transparent 11px 17px, currentColor 17px 18px, transparent 18px 28px,
    currentColor 28px 31px, transparent 31px 40px);
  opacity: 0.045;
}
.section > .wrap { position: relative; z-index: 1; }

/* ---------- Type --------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; font-family: var(--font-display);
  font-size: var(--text-13); font-weight: 600; letter-spacing: .01em; color: var(--as-ink);
  background: rgba(255,255,255,.7); border: 1px solid rgba(44,48,58,.16);
  border-radius: var(--radius-pill); padding: 9px 20px;
}
.eyebrow.on-dark { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.h1 { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px, 5vw, 64px); line-height: 1.06; letter-spacing: -.01em; margin: 0; color: var(--as-ink); }
.h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.12; letter-spacing: -.005em; margin: 0; color: var(--as-ink); text-wrap: balance; }
.h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-24); line-height: 1.25; letter-spacing: -.005em; margin: 0; color: var(--as-ink); }
.lead { font-family: var(--font-display); font-weight: 400; font-size: var(--text-19); line-height: 1.5; color: var(--as-teal); margin: 0; }
.body { font-family: var(--font-body); font-size: var(--text-16); line-height: 1.65; color: var(--as-ink-2); margin: 0; }
.small { font-family: var(--font-body); font-size: var(--text-14); line-height: 1.6; color: var(--as-ink-2); margin: 0; }
.ink .h1, .ink .h2, .ink .h3, .teal .h1, .teal .h2, .teal .h3 { color: #fff; }
.ink .lead, .teal .lead { color: rgba(255,255,255,.82); }
.ink .body, .teal .body { color: rgba(255,255,255,.78); }

.shead { max-width: 700px; }
.shead--center { margin-inline: auto; text-align: center; }
.shead .h2 { margin-top: 18px; }
.shead .lead { margin-top: 18px; }

/* placeholder swap-tokens */
.ph { border-bottom: 1.5px dotted var(--as-gold-soft); padding-bottom: 1px; }
.ink .ph, .teal .ph { border-bottom-color: rgba(255,255,255,.5); }

/* ---------- Buttons ------------------------------------------------------ */
.cta {
  font-family: var(--font-display); font-size: var(--text-17); font-weight: 500; color: #fff;
  border: 0; border-radius: 14px; padding: 19px 32px; display: inline-flex; align-items: center;
  justify-content: center; gap: 10px; letter-spacing: -.005em;
  transition: background var(--dur) var(--ease-soft), transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur) var(--ease-soft);
}
.cta svg { width: 19px; height: 19px; }
.cta--teal { background: var(--as-teal); }
.cta--teal:hover { background: var(--as-teal-deep); }
.cta--gold { background: var(--as-gold); }
.cta--gold:hover { background: var(--as-gold-deep); }
.cta--block { display: flex; width: 100%; }
.cta--lg { padding: 22px 36px; font-size: var(--text-19); }
.cta:active { transform: scale(.985); }

.pill {
  font-family: var(--font-display); font-size: var(--text-14); font-weight: 500; border: 0;
  border-radius: var(--radius-pill); padding: 13px 26px; display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: -.005em; transition: background var(--dur) var(--ease-soft), border-color var(--dur), color var(--dur), transform var(--dur-fast);
}
.pill svg { width: 16px; height: 16px; }
.pill--navy { background: var(--as-ink); color: #fff; }
.pill--navy:hover { background: #1d212a; }
.pill--outline { background: transparent; color: var(--as-ink); border: 1.5px solid rgba(44,48,58,.35); }
.pill--outline:hover { border-color: var(--as-ink); }
.pill--outline.on-dark { color: #fff; border-color: rgba(255,255,255,.45); }
.pill--outline.on-dark:hover { background: rgba(255,255,255,.1); }

.tlink { font-family: var(--font-display); font-weight: 500; font-size: var(--text-17); color: var(--as-teal); display: inline-flex; align-items: center; gap: 8px; transition: gap var(--dur) var(--ease-soft), color var(--dur); }
.tlink svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease-soft); }
.tlink:hover { color: var(--as-teal-deep); }
.tlink:hover svg { transform: translateX(4px); }
.ink .tlink, .teal .tlink { color: var(--as-gold-soft); }

/* circular icon button */
.icbtn { width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: none; transition: transform var(--dur) var(--ease-soft), background var(--dur); }
.icbtn svg { width: 19px; height: 19px; }
.icbtn--white { background: #fff; color: var(--as-ink); box-shadow: var(--shadow-sm); }
.icbtn:hover { transform: translateY(-1px); }

/* ---------- Header (floating frosted pill) ------------------------------ */
.site-header { position: sticky; top: 0; z-index: 50; padding: 16px 0; transition: background var(--dur) var(--ease-soft), box-shadow var(--dur), padding var(--dur); }
.site-header.scrolled { background: rgba(255,255,255,.85); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 10px 0; }
/* scrim so white nav stays legible over light hero photography (non-scrolled, photo heroes) */
.site-header::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 220%; z-index: -1; pointer-events: none; background: linear-gradient(180deg, rgba(20,23,29,.5) 0%, rgba(20,23,29,.22) 45%, rgba(20,23,29,0) 100%); transition: opacity var(--dur) var(--ease-soft); }
.site-header.scrolled::before { opacity: 0; }
.site-header__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1240px; margin: 0 auto; padding-inline: 40px; }
.brand img { height: 38px; width: auto; transition: height var(--dur); }
.site-header.scrolled .brand img { height: 32px; }
.site-nav { display: flex; gap: 30px; }
.site-nav a { font-family: var(--font-display); font-weight: 500; font-size: var(--text-14); color: #fff; letter-spacing: -.005em; transition: color var(--dur); }
.site-header.scrolled .site-nav a { color: var(--as-ink); }
.site-nav a:hover { color: var(--as-gold-soft); }
.site-header.scrolled .site-nav a:hover { color: var(--as-teal); }
.site-header__cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-family: var(--font-display); font-weight: 500; font-size: var(--text-14); transition: color var(--dur); }
.site-header.scrolled .header-phone { color: var(--as-ink); }
.header-phone svg { width: 16px; height: 16px; color: var(--as-gold-soft); }
.site-header.scrolled .header-phone svg { color: var(--as-teal); }
/* compact icon call button - mobile only, sits beside the Book button */
.header-callbtn { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); color: #fff; flex: none; transition: background var(--dur), border-color var(--dur), color var(--dur); }
.header-callbtn svg { width: 18px; height: 18px; }
.site-header.scrolled .header-callbtn { color: var(--as-ink); border-color: var(--as-mist); }
.header-callbtn:active { transform: scale(.95); }
/* responsive label swap on the header Book button */
.lbl-short { display: none; }

/* ---------- Hero --------------------------------------------------------- */
.hero { position: relative; background: var(--as-ink); color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(20,23,29,.93) 0%, rgba(20,23,29,.82) 42%, rgba(20,23,29,.55) 100%); }
.hero__mono { position: absolute; right: -130px; top: 50%; transform: translateY(-50%); width: 560px; max-width: 52%; opacity: .08; z-index: -1; pointer-events: none; }
.hero__inner { max-width: 1240px; margin: 0 auto; padding: clamp(56px, 6vw, 96px) 40px clamp(64px, 7vw, 104px); display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(20px, 2.5vw, 40px) clamp(36px, 4.5vw, 72px); align-items: center; grid-template-areas: "top form" "more form"; }
.hero__copy { max-width: 580px; grid-area: top; }
.hero__more { max-width: 580px; grid-area: more; }
.hero__formwrap { grid-area: form; }
.hero h1 { color: #fff; margin: 20px 0 0; }
/* bespoke hero label - editorial gold rule + letterspaced caps, not a pill */
.hero__kicker { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 600; font-size: var(--text-13); letter-spacing: .2em; text-transform: uppercase; color: #fff; }
.hero__kicker::before { content: ""; width: 30px; height: 2px; background: var(--as-gold); flex: none; }
.hero__kicker .ph { border-bottom: none; }
.hero__sub { margin: 20px 0 0; color: rgba(255,255,255,.82); font-family: var(--font-display); font-weight: 400; font-size: var(--text-19); line-height: 1.5; max-width: 520px; }
.hero__usps { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 13px; }
.hero__usps li { display: flex; gap: 12px; align-items: center; font-family: var(--font-body); font-size: var(--text-16); line-height: 1.4; color: rgba(255,255,255,.92); }
.hero__usps .tick { width: 26px; height: 26px; border-radius: 50%; background: rgba(163,145,113,.22); display: grid; place-items: center; flex: none; }
.hero__usps .tick svg { width: 15px; height: 15px; color: var(--as-gold-soft); }
/* rating - score-led, not a bare row of 5 stars */
.hero__rating { margin-top: 26px; display: inline-flex; align-items: center; gap: 16px; }
.hero__rating-score { font-family: var(--font-display); font-weight: 300; font-size: 50px; line-height: .9; color: #fff; letter-spacing: -.02em; }
.hero__rating-score sup { font-size: var(--text-17); font-weight: 400; color: var(--as-gold-soft); vertical-align: super; margin-left: 1px; }
.hero__rating-div { width: 1px; height: 44px; background: rgba(255,255,255,.22); }
.hero__rating-meta { display: flex; flex-direction: column; gap: 5px; }
.stars { display: inline-flex; gap: 2px; color: var(--as-gold-soft); }
.hero__rating-meta small { font-family: var(--font-body); font-size: var(--text-13); color: rgba(255,255,255,.8); }
.hero__rating-meta small b { color: #fff; font-weight: 600; }

/* scarcity - distinctive: big gold number + meter */
.scarcity { margin-top: 30px; display: flex; align-items: center; gap: 20px; max-width: 460px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.scarcity__num { font-family: var(--font-display); font-weight: 300; font-size: 70px; line-height: .8; color: var(--as-gold-soft); flex: none; font-variant-numeric: tabular-nums; }
.scarcity__body { flex: 1; }
.scarcity__lead { font-family: var(--font-display); font-weight: 500; font-size: var(--text-17); color: #fff; line-height: 1.25; }
.scarcity__track { height: 4px; border-radius: 999px; background: rgba(255,255,255,.18); overflow: hidden; margin: 11px 0 9px; }
.scarcity__track span { display: block; height: 100%; background: var(--as-gold); border-radius: 999px; transition: width var(--dur-slow) var(--ease-soft); }
.scarcity__note { font-family: var(--font-body); font-size: var(--text-13); color: rgba(255,255,255,.7); line-height: 1.45; }

/* ---------- Lead form ---------------------------------------------------- */
.lead-form { background: #fff; color: var(--as-ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(28px, 2.6vw, 38px); }
.lead-form__title { font-family: var(--font-display); font-weight: 400; font-size: var(--text-24); color: var(--as-ink); margin: 0; letter-spacing: -.01em; }
.lead-form__note { font-family: var(--font-body); font-size: var(--text-14); color: var(--as-ink-2); margin: 10px 0 22px; line-height: 1.55; }
.field { margin-bottom: 15px; }
.field > label { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--text-13); color: var(--as-ink); margin-bottom: 7px; }
.field input { width: 100%; border: 1px solid var(--as-mist); border-radius: var(--radius-sm); padding: 13px 15px; font-family: var(--font-body); font-size: var(--text-16); color: var(--as-ink); background: #fff; transition: border-color var(--dur), box-shadow var(--dur); }
.field input::placeholder { color: var(--as-stone); }
.field input:focus { outline: none; border-color: var(--as-teal); box-shadow: 0 0 0 3px rgba(19,87,97,.15); }

.treat { margin: 6px 0 20px; border: 0; padding: 0; }
.treat__legend { font-family: var(--font-display); font-weight: 600; font-size: var(--text-13); color: var(--as-ink); margin-bottom: 10px; }
.treat__opts { display: grid; grid-template-columns: 1fr; gap: 9px; }
.treat__opt { position: relative; }
.treat__opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.treat__opt span { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--as-mist); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: var(--text-16); font-weight: 500; color: var(--as-ink); line-height: 1.2; transition: border-color var(--dur), background var(--dur); }
.treat__opt span::before { content: ""; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--as-mist); flex: none; transition: border-color var(--dur), background var(--dur), box-shadow var(--dur); }
.treat__opt input:checked + span { border-color: var(--as-teal); background: rgba(19,87,97,.05); }
.treat__opt input:checked + span::before { border-color: var(--as-teal); background: var(--as-teal); box-shadow: inset 0 0 0 3px #fff; }
.treat__opt input:focus-visible + span { box-shadow: 0 0 0 3px rgba(19,87,97,.18); }

.lead-form__foot { display: flex; align-items: flex-start; gap: 9px; margin-top: 15px; font-family: var(--font-body); font-size: var(--text-12); line-height: 1.5; color: var(--as-ink-2); }
.lead-form__foot svg { width: 14px; height: 14px; color: var(--as-teal); flex: none; margin-top: 1px; }
.lead-form--success { text-align: center; padding-block: 48px; }
.lead-form--success .tick-lg { width: 62px; height: 62px; border-radius: 50%; background: rgba(19,87,97,.1); display: grid; place-items: center; margin: 0 auto 18px; }
.lead-form--success .tick-lg svg { width: 30px; height: 30px; color: var(--as-teal); }

/* ---------- Value strip -------------------------------------------------- */
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 36px); }
.value { text-align: center; }
.value__ic { width: 64px; height: 64px; border-radius: 50%; background: var(--as-ink); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; }
.value__ic svg { width: 28px; height: 28px; }
.value__t { font-family: var(--font-display); font-weight: 500; font-size: var(--text-19); color: var(--as-ink); margin: 0 0 8px; letter-spacing: -.005em; }
.value__s { font-family: var(--font-body); font-size: var(--text-14); line-height: 1.6; color: var(--as-ink-2); margin: 0; }

/* ---------- Split media rows -------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-md); }
.split__media--portrait img { aspect-ratio: 4/5; }
.split__media--wide img { aspect-ratio: 4/3; }

.checklist { list-style: none; margin: 26px 0 30px; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.checklist li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.checklist__ic { width: 44px; height: 44px; border-radius: 50%; background: var(--as-gold-wash); color: var(--as-teal); display: grid; place-items: center; }
.checklist__ic svg { width: 21px; height: 21px; }
.checklist h4 { font-family: var(--font-display); font-weight: 500; font-size: var(--text-19); color: var(--as-ink); margin: 0 0 5px; letter-spacing: -.005em; }
.checklist p { font-family: var(--font-body); font-size: var(--text-16); line-height: 1.6; color: var(--as-ink-2); margin: 0; }
.ink .checklist h4, .teal .checklist h4 { color: #fff; }
.ink .checklist p, .teal .checklist p { color: rgba(255,255,255,.78); }
.ink .checklist__ic, .teal .checklist__ic { background: rgba(255,255,255,.1); color: var(--as-gold-soft); }

/* floating price chip */
.pricechip { position: absolute; left: -22px; bottom: 28px; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 18px 24px; max-width: 250px; }
.pricechip__label { font-family: var(--font-display); font-size: var(--text-12); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--as-ink-2); margin: 0 0 6px; }
.pricechip__val { font-family: var(--font-display); font-weight: 400; font-size: var(--text-34); color: var(--as-ink); line-height: 1; display: flex; align-items: baseline; gap: 8px; }
.pricechip__from { font-family: var(--font-body); font-weight: 500; font-size: var(--text-14); color: var(--as-ink-2); }
.pricechip__val .ph, .exam-band__price .ph { border-bottom: none; padding-bottom: 0; }
.pricechip__sub { font-family: var(--font-body); font-size: var(--text-13); color: var(--as-ink-2); margin: 9px 0 0; line-height: 1.45; }

/* ---------- Flow --------------------------------------------------------- */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 56px; }
.fstep { position: relative; }
.fstep__n { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 300; font-size: var(--text-19); margin-bottom: 18px; }
.fstep__t { font-family: var(--font-display); font-weight: 500; font-size: var(--text-19); color: #fff; margin: 0 0 9px; line-height: 1.25; letter-spacing: -.005em; }
.fstep__s { font-family: var(--font-body); font-size: var(--text-14); line-height: 1.6; color: rgba(255,255,255,.78); margin: 0; }

/* ---------- Costs / membership ------------------------------------------ */
.exam-band { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; background: var(--as-ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 3.4vw, 44px) clamp(30px, 4vw, 52px); margin-bottom: 30px; position: relative; overflow: hidden; }
.exam-band__mono { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 220px; opacity: .08; pointer-events: none; }
.exam-band__l { max-width: 560px; position: relative; }
.exam-band__l .h3 { color: #fff; }
.exam-band__l p { font-family: var(--font-body); font-size: var(--text-16); line-height: 1.6; color: rgba(255,255,255,.78); margin: 9px 0 0; }
.exam-band__price { text-align: right; position: relative; }
.exam-band__price b { display: block; font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 6vw, 60px); line-height: 1; color: var(--as-gold-soft); }
.exam-band__price b .ph { font-size: inherit; }
.exam-band__price > span { font-family: var(--font-display); font-size: var(--text-13); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan { position: relative; background: #fff; border: 1px solid var(--as-cloud); border-radius: var(--radius-lg); padding: 38px 30px 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.plan--feat { border: 1.5px solid var(--as-gold); box-shadow: var(--shadow-md); }
.plan__tag { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; font-family: var(--font-display); font-weight: 600; font-size: var(--text-12); letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--as-gold); border-radius: var(--radius-pill); padding: 7px 16px; box-shadow: var(--shadow-sm); }
.plan__name { font-family: var(--font-display); font-weight: 500; font-size: var(--text-24); color: var(--as-ink); margin: 0 0 6px; letter-spacing: -.005em; }
.plan__desc { font-family: var(--font-body); font-size: var(--text-14); line-height: 1.6; color: var(--as-ink-2); margin: 0 0 18px; }
.plan__price { display: flex; align-items: baseline; gap: 7px; margin: 0 0 22px; }
.plan__price b { font-family: var(--font-display); font-weight: 400; font-size: var(--text-45); color: var(--as-ink); line-height: 1; letter-spacing: -.01em; }
.plan__price b .ph { border-bottom: none; padding-bottom: 0; font-size: inherit; }
.plan__price > span { font-family: var(--font-body); font-size: var(--text-14); color: var(--as-ink-2); }
.plan__list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.plan__list li { display: flex; gap: 10px; align-items: flex-start; font-family: var(--font-body); font-size: var(--text-14); line-height: 1.5; color: var(--as-ink); }
.plan__list svg { width: 18px; height: 18px; color: var(--as-teal); flex: none; margin-top: 1px; }
.plan .cta, .plan .pill { margin-top: auto; }
.costs__fine { font-family: var(--font-body); font-size: var(--text-13); color: var(--as-ink-2); margin: 26px auto 0; max-width: 800px; text-align: center; line-height: 1.65; }

/* ---------- Reviews ------------------------------------------------------ */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.revcard { background: #fff; border: 1px solid var(--as-cloud); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
.revcard .stars { color: var(--as-gold); }
.revcard__q { font-family: var(--font-body); font-size: var(--text-16); line-height: 1.7; color: var(--as-ink); margin: 0; }
.revcard__by { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.revcard__av { width: 44px; height: 44px; border-radius: 50%; background: var(--as-gold-wash); display: grid; place-items: center; font-family: var(--font-display); font-weight: 500; color: var(--as-teal); font-size: var(--text-16); }
.revcard__n { font-family: var(--font-display); font-weight: 600; font-size: var(--text-14); color: var(--as-ink); }
.revcard__m { font-family: var(--font-body); font-size: var(--text-13); color: var(--as-ink-2); }

/* ---------- Image strip / gallery mosaic ------------------------------- */
.imgstrip__grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(130px, 17vw, 200px); gap: 14px; margin-top: 48px; }
.imgstrip__item { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.imgstrip__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-soft); }
.imgstrip__item:hover img { transform: scale(1.04); }
.imgstrip__item--a { grid-column: span 5; grid-row: span 2; }
.imgstrip__item--b { grid-column: span 4; grid-row: span 1; }
.imgstrip__item--c { grid-column: span 3; grid-row: span 1; }
.imgstrip__item--d { grid-column: span 4; grid-row: span 1; }
.imgstrip__item--e { grid-column: span 3; grid-row: span 1; }
.imgstrip__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px; background: linear-gradient(0deg, rgba(20,23,29,.7), rgba(20,23,29,0)); color: #fff; font-family: var(--font-display); font-weight: 500; font-size: var(--text-14); }
.imgstrip__play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(20,23,29,.32); transition: background var(--dur); }
.imgstrip__item--video:hover .imgstrip__play { background: rgba(20,23,29,.46); }
.imgstrip__play span { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.imgstrip__play svg { width: 24px; height: 24px; color: var(--as-teal); margin-left: 3px; }
.imgstrip__vlabel { position: absolute; left: 0; bottom: 0; padding: 16px 18px; color: #fff; font-family: var(--font-display); font-weight: 500; font-size: var(--text-14); z-index: 1; }
@media (max-width: 820px) {
  .imgstrip__grid { grid-auto-rows: 150px; }
  .imgstrip__item--a { grid-column: span 12; grid-row: span 2; }
  .imgstrip__item--b, .imgstrip__item--d { grid-column: span 6; }
  .imgstrip__item--c, .imgstrip__item--e { grid-column: span 6; }
}

/* ---------- Testimonial band (in/below hero) ---------------------------- */
.testi { position: relative; overflow: hidden; }
.testi .barcode { opacity: .05; }
.testi__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.testi__rule { width: 40px; height: 2px; background: var(--as-gold); margin: 0 auto 24px; }
.testi .stars { color: var(--as-gold); margin-bottom: 22px; }
.testi__q { font-family: var(--font-display); font-weight: 300; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.28; letter-spacing: -.01em; color: var(--as-ink); margin: 0; text-wrap: balance; }
.testi__by { margin-top: 26px; font-family: var(--font-display); font-weight: 600; font-size: var(--text-14); letter-spacing: .04em; text-transform: uppercase; color: var(--as-teal); }
.testi__by span { color: var(--as-stone); }
.testi.ink .testi__q { color: #fff; }
.testi.ink .testi__by { color: var(--as-gold-soft); }
.testi.ink .testi__by span { color: rgba(255,255,255,.6); }
.testi.teal .testi__q { color: #fff; }
.testi.teal .testi__by { color: #fff; }
.testi.teal .testi__by span { color: rgba(255,255,255,.7); }
.testi.teal .testi__rule, .testi.ink .testi__rule { background: var(--as-gold-soft); }
.testi.teal .stars, .testi.ink .stars { color: var(--as-gold-soft); }

/* ---------- FAQ ---------------------------------------------------------- */
.faq { max-width: 840px; margin: 48px auto 0; }
.faq__item { border-bottom: 1px solid var(--as-mist); }
.faq__q { width: 100%; background: none; border: 0; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-family: var(--font-display); font-weight: 400; font-size: var(--text-19); color: var(--as-ink); letter-spacing: -.005em; }
.faq__ic { width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1.5px solid var(--as-mist); display: grid; place-items: center; color: var(--as-teal); transition: transform var(--dur) var(--ease-soft), background var(--dur), border-color var(--dur), color var(--dur); }
.faq__ic svg { width: 15px; height: 15px; }
.faq__item[data-open="true"] .faq__ic { transform: rotate(45deg); background: var(--as-teal); border-color: var(--as-teal); color: #fff; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-soft); }
.faq__a-inner { padding: 0 0 26px; font-family: var(--font-body); font-size: var(--text-16); line-height: 1.7; color: var(--as-ink-2); max-width: 720px; }

/* ---------- Final CTA ---------------------------------------------------- */
.final { position: relative; overflow: hidden; }
.final__mono { position: absolute; left: -120px; bottom: -140px; width: 480px; opacity: .07; pointer-events: none; }
.final__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; text-align: center; }
.final .h2 { margin-top: 18px; }
.final .lead { margin: 20px auto 0; max-width: 600px; }
.final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.final__alt { margin-top: 24px; font-family: var(--font-body); font-size: var(--text-14); color: rgba(255,255,255,.72); display: inline-flex; align-items: center; gap: 8px; justify-content: center; flex-wrap: wrap; }
.final__alt a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); }
.final__alt svg { width: 16px; height: 16px; color: var(--as-gold-soft); }

/* ---------- Footer (wood-grain) ----------------------------------------- */
.footer { position: relative; padding: 72px 0 30px; color: #fff; overflow: hidden; }
.footer__wood { position: absolute; inset: 0; z-index: 0; background: url("assets/wood-bg.webp") center/cover no-repeat, var(--as-ink); }
.footer__wood::after { content: ""; position: absolute; inset: 0; background: rgba(28,24,20,.5); }
.footer__inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding-inline: 40px; }
.footer__cards { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 18px; }
.fcard { background: rgba(255,255,255,.97); color: var(--as-ink); border-radius: var(--radius-lg); padding: 30px; }
.fcard--contact { grid-row: span 1; }
.fcard h4 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-13); letter-spacing: .04em; text-transform: uppercase; color: var(--as-ink-2); margin: 0 0 14px; }
.fcard .fc-name { font-family: var(--font-display); font-weight: 400; font-size: var(--text-24); color: var(--as-ink); margin: 0 0 12px; letter-spacing: -.01em; }
.fcard p, .fcard a, .fcard li, .fcard dd, .fcard dt { font-family: var(--font-body); font-size: var(--text-14); line-height: 1.7; color: var(--as-ink-2); }
.fcard a:hover { color: var(--as-teal); }
.fcard .fc-pills .pill { color: #fff; }
.fcard .fc-pills .pill:hover { color: #fff; }
.fc-contact-rows { display: grid; gap: 10px; margin: 16px 0 18px; }
.fc-contact-rows .fc-label { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--text-13); color: var(--as-ink); }
.fc-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.fcard--hours .hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px solid var(--as-cloud); }
.fcard--hours .hours-row:last-child { border-bottom: 0; }
.fcard--hours .hours-row span:last-child { color: var(--as-ink); font-weight: 500; font-variant-numeric: tabular-nums; }
.fcard--links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer__bottom { position: relative; z-index: 1; max-width: 1240px; margin: 30px auto 0; padding: 0 40px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer__bottom .footer-logo { height: 38px; }
.footer__bottom .cta { margin-left: auto; }
.footer__legal { position: relative; z-index: 1; max-width: 1240px; margin: 26px auto 0; padding: 22px 40px 0; border-top: 1px solid rgba(255,255,255,.18); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-body); font-size: var(--text-12); color: rgba(255,255,255,.6); }

/* ---------- Sticky mobile CTA ------------------------------------------- */
.mobile-cta { display: none; }

/* ---------- Reveal ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive --------------------------------------------------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; grid-template-areas: "top" "form" "more"; }
  .hero__copy { max-width: 640px; }
  .hero__mono { display: none; }
  .values__grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .flow { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .rev-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .footer__cards { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
}
@media (max-width: 620px) {
  .wrap { padding-inline: 22px; }
  .site-header__row { padding-inline: 22px; }
  .header-phone { display: inline-flex; font-size: var(--text-13); gap: 6px; }
  .header-phone svg { width: 15px; height: 15px; }
  .header-callbtn { display: none; }
  .site-header__cta { gap: 10px; }
  /* hide the whole top header once scrolled (the bottom sticky CTA takes over) */
  .site-header { transition: transform var(--dur) var(--ease-soft), background var(--dur) var(--ease-soft), box-shadow var(--dur); }
  html.is-scrolled-past .site-header { transform: translateY(-100%); pointer-events: none; }
  .site-header__cta .pill { padding: 11px 17px; font-size: var(--text-13); }
  .brand img, .site-header.scrolled .brand img { height: 30px; }
  .lbl-long { display: none; }
  .lbl-short { display: inline; }
  .hero__inner { padding-inline: 22px; }
  .values__grid { grid-template-columns: 1fr; gap: 32px; }
  .flow { grid-template-columns: 1fr; }
  .exam-band { flex-direction: column; align-items: flex-start; }
  .exam-band__price { text-align: left; }
  .footer__cards { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom .cta { margin-left: 0; }
  .footer__legal { padding-inline: 22px; }
  .pricechip { left: 16px; right: 16px; max-width: none; }
  .mobile-cta { display: flex; gap: 10px; align-items: stretch; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)); background: rgba(255,255,255,.96); border-top: 1px solid var(--as-mist); box-shadow: 0 -4px 18px rgba(20,22,28,.08); transform: translateY(130%); transition: transform var(--dur) var(--ease-soft); }
  .mobile-cta.mobile-cta--in { transform: translateY(0); }
  .mobile-cta .cta { flex: 1; }
  .mobile-cta__call { flex: none; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-width: 64px; padding: 0 14px; border-radius: 14px; border: 1.5px solid var(--as-mist); color: var(--as-ink); font-family: var(--font-display); font-weight: 600; font-size: var(--text-12); letter-spacing: .01em; }
  .mobile-cta__call svg { width: 20px; height: 20px; color: var(--as-teal); }
  .mobile-cta__call:active { transform: scale(.97); }
  body { padding-bottom: 80px; }
}
@media (max-width: 620px) and (prefers-reduced-motion: reduce) { .mobile-cta { transition: none; } }
