@charset "UTF-8";

/* ==========================================================================
   Advanced Hair Restoration
   Design system: "Advanced Hair Restoration — Clinical Editorial"
   Token values were read from the Figma export's own PDF fill operators.

   Order: fonts, tokens, reset, utilities, type, buttons, shared blocks,
   sections (page order), responsive, reduced motion.
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------
   General Sans is a documented STAND-IN. The export flattened all 15 faces to
   Type3 glyph procedures, so the real family names are unrecoverable from the
   PDF. See docs/ASSET_REQUIREMENTS.md #2.
   -------------------------------------------------------------------------- */
@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Variable.woff2") format("woff2-variations");
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

/* --- Tokens --------------------------------------------------------------- */
:root {
    --bg: #F5F2ED;
    --surface: #FFFFFF;
    --ink: #0A0A0A;
    --accent: #2A68A6;
    --accent-deep: #3C6B9A;
    --guarantee: #009605;
    --guarantee-tint: #E4EFE3;
    --navy: #0B1C30;
    --sage: #8B9E7E;
    --slate: #4A5565;
    --hairline: #E2E8F0;
    --star: #FDA000;
    /* Tints derived from the two accents. Nothing else may introduce a hue. */
    --accent-wash: #F1F5F9;
    --accent-band: #DDE5EC;

    --font: "General Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-pill: 999px;

    --s-xs: 8px;
    --s-sm: 16px;
    --s-md: 32px;
    --s-lg: 64px;

    /* One vertical rhythm for the whole page. Every section uses it, so the
       spacing between any two sections is identical and adjusting the page's
       breathing is a single-value change. */
    --section-pad: clamp(88px, 9.5vw, 152px);
    --block-gap: clamp(40px, 5vw, 72px);
    /* One gap for every card grid on the page. */
    --grid-gap: 20px;

    /* The export's text box measures 1280 wide inside 80px gutters on a
       1440 canvas, so the container is 1440 with an 80px gutter — not a
       1280 container, which lost 88px of content width. */
    --container: 1440px;
    --gutter: clamp(20px, 5.56vw, 80px);

    /* Type scale, measured from the export. Each step is named for its px
       size at 1440 and scales down proportionally below that. Do not invent
       intermediate sizes — the design uses exactly these. */
    --t-100: clamp(2.6rem, 6.94vw, 6.25rem);
    --t-78: clamp(2.4rem, 5.42vw, 4.875rem);
    --t-48: clamp(1.75rem, 3.33vw, 3rem);
    --t-40: clamp(1.6rem, 2.78vw, 2.5rem);
    --t-36: clamp(1.35rem, 2.5vw, 2.25rem);
    --t-34: clamp(1.3rem, 2.36vw, 2.125rem);
    --t-30: clamp(1.15rem, 2.08vw, 1.875rem);
    --t-28: clamp(1.15rem, 1.94vw, 1.75rem);
    --t-24: clamp(1.05rem, 1.67vw, 1.5rem);
    --t-22: clamp(1rem, 1.53vw, 1.375rem);
    --t-20: clamp(1rem, 1.39vw, 1.25rem);
    --t-18: 1.125rem;
    --t-16: 1rem;
    --t-14: 0.875rem;
    --t-12: 0.75rem;
    --t-10: 0.625rem;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-float: 0 18px 46px rgba(80, 76, 68, .14);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

:where(body, h1, h2, h3, h4, p, ul, ol, li, figure, figcaption, blockquote, dl, dd, fieldset) {
    margin: 0;
    padding: 0;
}

:where(ul, ol) { list-style: none; }
:where(fieldset) { border: 0; }
/* `height: auto` is load-bearing, not cosmetic. Every <img> carries width and
   height attributes for CLS, and with both dimensions definite the browser
   ignores any `aspect-ratio` we set and lays the image out at its natural
   height. Rules that genuinely want a filled box set `height: 100%` themselves,
   which wins because this reset has zero specificity. */
:where(img, svg, video) { display: block; max-width: 100%; height: auto; }
:where(a) { color: inherit; text-decoration: none; }
:where(button) { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:where(address) { font-style: normal; }
:where(table) { border-collapse: collapse; width: 100%; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-weight: 400;
    font-size: var(--t-16);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- Utilities ------------------------------------------------------------ */
.ah-container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.ah-section { padding-block: var(--section-pad); }

.ah-u-visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.ah-skip {
    position: absolute;
    left: var(--gutter);
    top: -100px;
    z-index: 100;
    padding: 12px 20px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-pill);
    transition: top .2s var(--ease);
}
.ah-skip:focus { top: 12px; }

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

/* Placeholder content the client still owes us. Visibly unfinished on purpose. */
.is-placeholder {
    color: color-mix(in srgb, var(--slate) 62%, transparent);
    font-style: italic;
}

/* --- Typography ----------------------------------------------------------- */
.ah-display, .ah-h1, .ah-h2 {
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.ah-display { font-size: var(--t-40); }
.ah-h1 { font-size: var(--t-48); }
.ah-h2 { font-size: var(--t-28); }

.ah-accent { color: var(--accent); }
.ah-accent-warm { color: #A8D5BA; font-style: normal; }

.ah-line { display: block; overflow: hidden; padding-bottom: 0.09em; }
.ah-line__inner { display: block; }

.ah-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--t-14);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
}
.ah-eyebrow__mark {
    width: 7px; height: 7px;
    background: currentColor;
    flex: none;
}
.ah-eyebrow--light { color: rgba(255, 255, 255, .9); }

.ah-prose { max-width: 68ch; padding-block: var(--section-pad); }
.ah-prose > * + * { margin-top: 1em; }

.ah-stars { display: inline-flex; gap: 3px; color: var(--star); }
.ah-stars svg { width: 15px; height: 15px; }

.ah-check { color: var(--guarantee); }
.ah-cross { color: #D24B3E; }

/* --- Section head --------------------------------------------------------- */
.ah-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--s-md);
    margin-bottom: var(--block-gap);
}
.ah-head__text { display: grid; gap: 14px; }
.ah-head__title { max-width: 22ch; }
.ah-head__body { max-width: 56ch; color: var(--slate); }
.ah-head__actions { display: flex; flex-wrap: wrap; gap: 12px; flex: none; }

.ah-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ah-head--center .ah-head__text { justify-items: center; }
.ah-head--center .ah-eyebrow { justify-content: center; }
.ah-head--center .ah-head__title { max-width: 20ch; }

.ah-head--light, .ah-head--light .ah-eyebrow { color: #fff; }
.ah-head--light .ah-head__body { color: rgba(255, 255, 255, .82); }

/* --- Buttons -------------------------------------------------------------- */
.ah-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 10px 0 26px;
    border-radius: var(--r-pill);
    font-size: var(--t-16);
    font-weight: 500;
    line-height: 1.15;
    transition: background-color .3s var(--ease), color .3s var(--ease),
                border-color .3s var(--ease), transform .3s var(--ease);
}
.ah-btn:active { transform: translateY(1px); }

.ah-btn--primary { background: var(--ink); color: #fff; }
.ah-btn--primary:hover { background: #1d1d1d; }

.ah-btn--light { background: var(--surface); color: var(--ink); }
.ah-btn--light .ah-btn__badge { background: var(--ink); color: #fff; }

.ah-btn--accent { background: var(--accent); color: #fff; }
.ah-btn--accent:hover { background: var(--accent-deep); }

.ah-btn--outline {
    padding: 0 26px;
    border: 1px solid rgba(10, 10, 10, .22);
    color: var(--ink);
}
.ah-btn--outline:hover { border-color: var(--ink); background: rgba(10, 10, 10, .04); }

.ah-btn--outline-accent {
    border: 1px solid var(--hairline);
    background: var(--surface);
    color: var(--ink);
}
.ah-btn--outline-accent .ah-btn__badge { background: var(--accent); color: #fff; }

.ah-btn--ghost {
    padding: 0 26px;
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(6px);
}
.ah-btn--ghost:hover { background: rgba(255, 255, 255, .2); }

.ah-btn--ghost-light {
    padding: 0 26px;
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    background: rgba(10, 10, 10, .22);
    backdrop-filter: blur(8px);
}
.ah-btn--ghost-light:hover { background: rgba(10, 10, 10, .38); }

.ah-btn__badge {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    flex: none;
}
.ah-btn__arrow { width: 18px; height: 18px; }
.ah-icon { width: 16px; height: 16px; flex: none; }

/* --- Shared pills / cards ------------------------------------------------- */
.ah-pill__dot {
    display: grid;
    place-items: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    flex: none;
}
/* One dot, not three hues. These are decorative bullets, not categories. */
.ah-pill__dot--blue,
.ah-pill__dot--lime,
.ah-pill__dot--pink { background: var(--guarantee); }
.ah-tech__features .ah-pill__dot { background: var(--accent); }

/* ==========================================================================
   1. Header
   ========================================================================== */
.ah-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    color: #fff;
    transition: background-color .4s var(--ease), backdrop-filter .4s var(--ease),
                color .4s var(--ease), box-shadow .4s var(--ease);
}
.ah-header__inner {
    /* The export insets the header 62px, not the body gutter's 80px. */
    padding-inline: clamp(20px, 4.31vw, 62px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-md);
    min-height: 84px;
    transition: min-height .4s var(--ease);
}
.ah-header__brand {
    display: inline-flex;
    align-items: flex-start;
    font-size: var(--t-24);
    font-weight: 600;
    letter-spacing: -0.02em;
}
.ah-header__brand-tm { font-size: .55em; margin-top: .25em; }
.ah-header__actions { display: flex; align-items: center; gap: var(--s-sm); }
.ah-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding-inline: 4px;
    font-size: var(--t-16);
    opacity: .95;
}
.ah-header__phone:hover { opacity: 1; }
.ah-header__menu { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r-sm); }
.ah-header__menu-bars { display: grid; gap: 5px; width: 22px; }
.ah-header__menu-bars i {
    display: block; height: 2px;
    background: currentColor; border-radius: 2px;
    transition: width .3s var(--ease);
}
.ah-header__menu-bars i:first-child { width: 22px; }
.ah-header__menu-bars i:last-child { width: 14px; justify-self: end; }
.ah-header__menu[aria-expanded="true"] .ah-header__menu-bars i:last-child { width: 22px; }

.ah-header.is-stuck {
    background: rgba(245, 242, 237, .88);
    backdrop-filter: blur(14px);
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(10, 10, 10, .07);
}
.ah-header.is-stuck .ah-header__inner { min-height: 66px; }
.ah-header.is-stuck .ah-btn--ghost {
    border-color: transparent; background: var(--ink); color: #fff;
}

.ah-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 45;
    padding-block: 110px var(--s-lg);
    background: var(--bg);
    color: var(--ink);
    box-shadow: 0 20px 60px rgba(10, 10, 10, .12);
}
.ah-nav[hidden] { display: none; }
.ah-nav__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--s-md); }
.ah-nav__title { font-weight: 600; margin-bottom: var(--s-sm); }
.ah-nav__list { display: grid; gap: 2px; }
.ah-nav__list a { display: inline-flex; align-items: center; min-height: 34px; color: var(--slate); }
.ah-nav__list a:hover { color: var(--ink); }

/* ==========================================================================
   2. Hero
   ========================================================================== */
.ah-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Tracks the export's 945/1440 hero proportion, but never shorter than
       560px and never taller than the viewport. */
    min-height: max(560px, min(100svh, 66vw));
    padding-block: 130px clamp(32px, 5vw, 60px);
    overflow: clip;
    color: #fff;
    isolation: isolate;
}
.ah-hero__media { position: absolute; inset: 0; z-index: -1; }
.ah-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; will-change: transform; }
.ah-hero__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(6, 10, 14, .84) 0%, rgba(6, 10, 14, .4) 45%, rgba(6, 10, 14, .12) 72%),
        linear-gradient(to right, rgba(6, 10, 14, .55) 0%, rgba(6, 10, 14, 0) 58%);
}
.ah-hero__inner { width: 100%; }
.ah-hero__title { max-width: 15ch; }
.ah-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-md); }
.ah-hero__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(36px, 5vw, 64px);
    max-width: 1000px;
}
.ah-hero__card > a {
    display: flex; align-items: center; gap: 12px; height: 100%;
    padding: 18px 18px 18px 22px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--r-md);
    background: rgba(10, 10, 10, .3);
    backdrop-filter: blur(10px);
    transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.ah-hero__card > a:hover {
    background: rgba(10, 10, 10, .48);
    border-color: rgba(255, 255, 255, .38);
    transform: translateY(-2px);
}
.ah-hero__card-text { display: grid; gap: 2px; flex: 1 1 auto; }
.ah-hero__card-title { font-size: var(--t-20); line-height: 1.25; }
.ah-hero__card-accent, .ah-hero__card-meta { color: #A8D5BA; line-height: 1.3; }
.ah-hero__card-accent { font-size: var(--t-20); }
.ah-hero__card-meta { font-size: var(--t-14); }
.ah-hero__card-icon {
    display: grid; place-items: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .14);
    flex: none;
}
.ah-hero__card-icon svg { width: 22px; height: 22px; }
.ah-card__chevron { width: 18px; height: 18px; opacity: .7; flex: none; }

/* ==========================================================================
   3. New Hair the very Next Day
   ========================================================================== */
.ah-nextday {
    position: relative;
    padding-block: var(--section-pad);
    text-align: center;
    background: var(--bg);
}
.ah-nextday__title { max-width: 18ch; margin-inline: auto; }
.ah-nextday__cta { margin-top: var(--s-md); }
.ah-nextday__stage { position: relative; margin-top: var(--block-gap); display: grid; justify-items: center; }
.ah-nextday__portrait {
    width: clamp(260px, 42vw, 520px);
    height: auto;
    /* Alpha is composited into the WebP from the export's own SMask, so no
       CSS vignette is needed to hide a background that is no longer there. */
}
.ah-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px 12px 14px;
    border-radius: var(--r-pill);
    background: var(--guarantee-tint);
    font-size: var(--t-24);
    line-height: 1.25;
    text-align: left;
    box-shadow: none;
}

/* ==========================================================================
   4. Built on Trust
   ========================================================================== */
.ah-community {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: min(84svh, 720px);
    padding-block: var(--section-pad);
    overflow: clip;
    color: #fff;
    isolation: isolate;
}
.ah-community__media { position: absolute; inset: 0; z-index: -1; }
.ah-community__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; will-change: transform; }
.ah-community__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(6, 10, 14, .8) 0%, rgba(6, 10, 14, .34) 58%, rgba(6, 10, 14, .1) 100%),
        linear-gradient(to right, rgba(6, 10, 14, .34) 0%, rgba(6, 10, 14, .5) 100%);
}
.ah-community__inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    gap: var(--s-lg);
}
.ah-community__title { max-width: 14ch; }
.ah-community__body { font-size: var(--t-18); max-width: 60ch; }

/* ==========================================================================
   5. Text in your Hair Loss
   ========================================================================== */
.ah-textconsult { background: var(--surface); }
.ah-textconsult__grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(32px, 6vw, 80px);
}
.ah-textconsult__phone img {
    width: min(100%, 340px);
    margin-inline: auto;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-float);
}
.ah-textconsult__title { max-width: 12ch; font-size: var(--t-34); }
.ah-textconsult__options { display: grid; gap: 10px; margin-top: var(--block-gap); max-width: 440px; }
.ah-optionrow {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--r-pill);
    background: var(--surface);
    box-shadow: 0 6px 18px rgba(80, 76, 68, .08);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ah-optionrow:hover { transform: translateX(4px); box-shadow: var(--shadow-float); }
.ah-optionrow__icon {
    display: grid; place-items: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    flex: none;
}
.ah-optionrow__icon svg { width: 18px; height: 18px; }
.ah-optionrow__label { flex: 1 1 auto; font-size: var(--t-14); }
.ah-textconsult__cta { margin-top: var(--s-md); }

/* ==========================================================================
   6. Advanced Hair is Now for Everyone
   ========================================================================== */
.ah-audience__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--grid-gap);
}
.ah-audience__card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    isolation: isolate;
}
.ah-audience__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.ah-audience__card:hover .ah-audience__img { transform: scale(1.05); }
.ah-audience__panel {
    position: absolute;
    inset: auto 14px 14px;
    padding: 20px;
    border-radius: var(--r-md);
    background: rgba(10, 10, 10, .42);
    backdrop-filter: blur(14px);
    color: #fff;
    display: grid;
    gap: 6px;
}
.ah-audience__title { font-size: var(--t-28); font-weight: 600; letter-spacing: -0.01em; }
.ah-audience__body { font-size: var(--t-16); color: rgba(255, 255, 255, .88); }
.ah-audience__link {
    margin-top: 6px;
    font-size: var(--t-14);
    text-decoration: underline;
    text-underline-offset: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
}

/* ==========================================================================
   7. See If you're a Candidate
   ========================================================================== */
.ah-candidate { background: var(--surface); }

.ah-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(20px, 5vw, 68px);
    margin-bottom: var(--block-gap);
    position: relative;
}
.ah-steps::before {
    content: "";
    position: absolute;
    top: 7px; left: 8%; right: 8%;
    height: 1px;
    background: var(--hairline);
}
.ah-steps__item { display: grid; justify-items: center; gap: 12px; position: relative; }
.ah-steps__dot {
    width: 15px; height: 15px;
    border-radius: 50%;
    background: #CBD3DC;
    outline: 4px solid var(--bg);
}
.ah-steps__item.is-active .ah-steps__dot { background: var(--accent); }
.ah-steps__label {
    font-size: var(--t-12);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--slate);
    text-align: center;
}
.ah-steps__item.is-active .ah-steps__label { color: var(--ink); font-weight: 600; }

.ah-candidate__options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.ah-option__input {
    position: absolute;
    width: 1px; height: 1px;
    opacity: 0;
}
.ah-option__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 128px;
    padding: 22px 24px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    background: var(--surface);
    cursor: pointer;
    transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ah-option__label:hover { border-color: #B9C4D0; transform: translateY(-2px); }
.ah-option__text {
    font-size: var(--t-24);
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: uppercase;
    line-height: 1.2;
}
.ah-option__art { color: var(--ink); opacity: .8; flex: none; }
.ah-scalp { width: 74px; height: 74px; }

.ah-option__input:checked + .ah-option__label {
    border-color: transparent;
    color: #fff;
    background: var(--accent);
    box-shadow: none;
}
.ah-option__input:checked + .ah-option__label .ah-option__art { color: #fff; opacity: 1; }
/* Selection is never signalled by colour alone. */
.ah-option__input:checked + .ah-option__label .ah-option__text::after {
    content: " — selected";
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: .85;
}
.ah-option__input:focus-visible + .ah-option__label {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.ah-upload {
    margin-top: 16px;
    padding: 26px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    background: var(--surface);
}
.ah-upload__title { font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
.ah-upload__drop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
    padding: 26px;
    border: 1.5px dashed #B9C4D0;
    border-radius: var(--r-sm);
    cursor: pointer;
    text-align: center;
    transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.ah-upload__drop:hover { border-color: var(--accent); background: rgba(42, 104, 166, .04); }
.ah-upload__drop:focus-within { outline: 2px solid var(--accent); outline-offset: 3px; }
.ah-upload__icon svg { width: 24px; height: 24px; }
.ah-upload__text { font-weight: 500; font-size: var(--t-18); }
.ah-upload__filename:not(:empty) { margin-top: 12px; font-size: var(--t-14); color: var(--slate); }

/* ==========================================================================
   8. The intelligent decision
   ========================================================================== */
.ah-professional {
    position: relative;
    padding-block: var(--section-pad);
    overflow: clip;
    color: #fff;
    isolation: isolate;
}
.ah-professional__media { position: absolute; inset: 0; z-index: -1; }
.ah-professional__img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 30%; }
.ah-professional__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10, 12, 14, .88) 0%, rgba(10, 12, 14, .62) 48%, rgba(10, 12, 14, .3) 100%);
}
.ah-professional__inner {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .62fr);
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
}
.ah-professional__body { margin-top: var(--s-md); max-width: 52ch; font-size: var(--t-18); color: rgba(255, 255, 255, .88); }
.ah-professional__points { display: grid; gap: 14px; margin-top: var(--block-gap); max-width: 620px; }
.ah-proofcard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(8px);
}
.ah-proofcard__text { display: grid; gap: 4px; }
.ah-proofcard__title { font-size: var(--t-24); font-weight: 600; }
.ah-proofcard__body { font-size: var(--t-16); color: rgba(255, 255, 255, .8); }
.ah-proofcard__check svg { width: 30px; height: 30px; color: #fff; }
.ah-proofcard__check .ah-check path:last-child { stroke: var(--ink); }

.ah-professional__stack { display: grid; gap: 12px; }
.ah-professional__stack img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--r-md);
}

/* ==========================================================================
   9 + 10. Real Transformations and reviews
   ========================================================================== */
.ah-transformations__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--grid-gap);
}
.ah-videocard {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    isolation: isolate;
    background: var(--ink);
}
.ah-videocard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ah-videocard__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6, 10, 14, .72) 0%, rgba(6, 10, 14, .1) 50%);
}
.ah-videocard__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 14px;
    color: #fff;
}
.ah-videocard__play[disabled] { cursor: not-allowed; }
.ah-videocard__playmark {
    display: grid; place-items: center;
    width: 66px; height: 66px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    backdrop-filter: blur(6px);
    transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.ah-videocard__playmark svg { width: 30px; height: 30px; }
.ah-videocard__play:hover:not([disabled]) .ah-videocard__playmark { transform: scale(1.06); background: rgba(255, 255, 255, .42); }
.ah-videocard__watch { font-size: var(--t-16); letter-spacing: .1em; text-transform: uppercase; }
.ah-videocard__meta { position: absolute; left: 24px; bottom: 22px; color: #fff; }
.ah-videocard__name { font-size: var(--t-24); font-weight: 600; }
.ah-videocard__role { font-size: var(--t-14); color: rgba(255, 255, 255, .82); }

.ah-reviews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.ah-reviewcard {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 28px 26px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    background: var(--surface);
    text-align: center;
}
.ah-reviewcard__quote { font-size: var(--t-16); line-height: 1.55; }
.ah-reviewcard__accent { color: var(--accent); }
.ah-reviewcard__name { font-weight: 600; }
.ah-reviewcard__verified {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: var(--t-12); color: var(--slate);
}
.ah-reviewcard__verified svg { width: 15px; height: 15px; color: var(--accent); }

/* ==========================================================================
   11 + 12 + 13. Technology, comparison, guarantee banner
   ========================================================================== */
.ah-tech { background: var(--bg); }
.ah-tech__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: end;
    gap: clamp(24px, 4vw, 56px);
    margin-bottom: var(--block-gap);
}
.ah-tech__subtitle { margin-top: 12px; font-size: var(--t-28); }
.ah-tech__headimg img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4 / 3; object-fit: cover; }

.ah-tech__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1.6fr);
    gap: var(--grid-gap);
    align-items: stretch;
}
.ah-stat {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 40px 28px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-lg);
    background: var(--surface);
    text-align: center;
}
.ah-stat__value { font-size: var(--t-78); font-weight: 600; line-height: 1; letter-spacing: -0.03em; }
.ah-stat__plus { color: var(--accent); }
.ah-stat__label { font-size: var(--t-16); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.ah-tech__features {
    display: grid;
    align-content: center;
    gap: 20px;
    padding: 34px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-lg);
    background: var(--surface);
}
.ah-tech__features li { display: flex; align-items: center; gap: 16px; font-size: var(--t-24); }

.ah-tech__tabletitle { margin-top: calc(var(--section-pad) * .7); margin-bottom: var(--s-md); }

.ah-compare {
    border: 1px solid var(--hairline);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--surface);
}
.ah-compare__th {
    padding: 22px 18px;
    font-size: var(--t-14);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid var(--hairline);
}
.ah-compare__th:first-child { text-align: left; }
.ah-compare__th.is-ours { background: var(--ink); color: #fff; }
.ah-compare__badge {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 12px;
    border-radius: var(--r-pill);
    background: #46C07A;
    color: var(--ink);
    font-size: var(--t-10);
}
.ah-compare__feature {
    padding: 22px 18px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid var(--hairline);
    display: table-cell;
}
.ah-compare__featurename { display: block; font-size: var(--t-20); font-weight: 600; }
.ah-compare__featuremeta {
    display: block; margin-top: 4px;
    font-size: var(--t-14); letter-spacing: .08em; text-transform: uppercase;
    color: var(--accent);
}
.ah-compare__cell {
    padding: 22px 18px;
    border-bottom: 1px solid var(--hairline);
    text-align: center;
    vertical-align: middle;
    font-size: var(--t-14);
    line-height: 1.45;
}
.ah-compare__cell.is-ours { background: var(--accent-wash); }
.ah-compare__mark { display: block; margin: 0 auto 8px; }
.ah-compare__mark svg { width: 20px; height: 20px; margin-inline: auto; }
.ah-compare__table tbody tr:last-child > * { border-bottom: 0; }

.ah-guarantee-banner {
    background: var(--accent-band);
    padding-block: clamp(48px, 6vw, 84px);
}
.ah-guarantee-banner__inner { display: flex; align-items: center; gap: clamp(16px, 3vw, 34px); }
.ah-guarantee-banner__mark { flex: none; color: var(--guarantee); }
.ah-guarantee-banner__mark svg { width: clamp(60px, 9vw, 116px); height: clamp(60px, 9vw, 116px); }
.ah-guarantee-banner__mark .ah-check path:last-child { stroke: #fff; }
.ah-guarantee-banner__text {
    font-size: var(--t-100);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(10, 10, 10, .13);
}

/* ==========================================================================
   14. The One-Day Experience
   ========================================================================== */
.ah-oneday__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--grid-gap);
}
.ah-stepcard {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
    padding: 26px;
    border-radius: var(--r-lg);
    overflow: hidden;
    isolation: isolate;
    color: #fff;
}
.ah-stepcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.ah-stepcard__scrim { position: absolute; inset: 0; z-index: -1; }
.ah-stepcard--navy .ah-stepcard__scrim { background: linear-gradient(180deg, rgba(11, 28, 48, .78) 0%, rgba(11, 28, 48, .94) 100%); }
.ah-stepcard--sage .ah-stepcard__scrim { background: linear-gradient(180deg, rgba(139, 158, 126, .72) 0%, rgba(107, 126, 96, .94) 100%); }
.ah-stepcard--photo .ah-stepcard__scrim { background: linear-gradient(180deg, rgba(6, 10, 14, .18) 0%, rgba(6, 10, 14, .82) 62%); }
.ah-stepcard__step {
    align-self: flex-start;
    padding: 8px 18px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
    font-size: var(--t-14);
    letter-spacing: .1em;
    text-transform: uppercase;
}
.ah-stepcard__body { display: grid; gap: 10px; }
.ah-stepcard__title { font-size: var(--t-28); font-weight: 600; letter-spacing: -0.01em; }
.ah-stepcard__text { font-size: var(--t-16); line-height: 1.5; color: rgba(255, 255, 255, .9); }

/* ==========================================================================
   15. Team
   ========================================================================== */
.ah-team__head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-md); }
.ah-team__head .ah-head { margin-bottom: 0; }
.ah-team__badge { flex: none; }
.ah-ring { width: clamp(120px, 14vw, 186px); height: clamp(120px, 14vw, 186px); color: var(--ink); }
.ah-ring__text { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; fill: currentColor; font-family: var(--font); }

.ah-team__credentials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: var(--block-gap);
}
.ah-credcard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    background: var(--surface);
}
.ah-credcard__text strong { display: block; font-size: var(--t-16); font-weight: 600; letter-spacing: .01em; line-height: 1.35; }
.ah-credcard__meta { display: block; margin-top: 4px; font-size: var(--t-12); color: var(--slate); }
.ah-credcard__art { flex: none; color: var(--ink); opacity: .3; }
.ah-credcard__art svg { width: 34px; height: 34px; }

.ah-team__body {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 56px);
    margin-top: var(--block-gap);
    align-items: start;
}
.ah-team__stat { font-size: var(--t-20); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; max-width: 16ch; }
.ah-team__portraits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: var(--s-md); max-width: 420px; }
.ah-team__portraits img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-sm); }
.ah-team__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-md); }
.ah-team__group img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3 / 2; object-fit: cover; }

/* ==========================================================================
   16 + 17. Lifetime Growth Guarantee, Before & After
   ========================================================================== */
.ah-lifetime {
    background: var(--ink);
    color: #fff;
    padding-block: var(--section-pad);
    /* The oversized check watermark is deliberately larger than its column. */
    overflow: clip;
}
.ah-lifetime__grid {
    display: grid;
    grid-template-columns: minmax(0, .4fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}
.ah-lifetime__body { position: relative; isolation: isolate; }
.ah-lifetime__mark {
    position: absolute;
    left: -6%; top: 8%;
    z-index: -1;
    color: rgba(255, 255, 255, .05);
}
.ah-lifetime__mark svg { width: clamp(180px, 26vw, 340px); height: auto; }
.ah-lifetime__mark .ah-check path:last-child { stroke: var(--ink); }
.ah-lifetime__text {
    font-size: var(--t-36);
    font-weight: 500;
    line-height: 1.32;
    letter-spacing: -0.015em;
    max-width: 26ch;
}
.ah-lifetime__accent {
    background: linear-gradient(90deg, #7FD3A0 0%, #6FB6E8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ah-lifetime__cta { margin-top: var(--s-md); }
.ah-lifetime__image { margin-top: var(--block-gap); }
.ah-lifetime__image img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 21 / 9; object-fit: cover; }

.ah-results__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--grid-gap); }
.ah-resultcard {
    padding: 14px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    background: var(--surface);
}
.ah-resultcard__media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: var(--r-sm);
}
.ah-resultcard__labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
    font-size: var(--t-12);
    color: var(--slate);
}
.ah-resultcard__labels span:last-child { text-align: left; }

/* ==========================================================================
   18 + 19 + 20. Facilities, credentials, press
   ========================================================================== */
.ah-facilities__layout {
    display: grid;
    grid-template-columns: minmax(0, .26fr) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
}
.ah-facilities__tabs { display: grid; gap: 12px; }
.ah-facilitytab {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 2px;
    min-height: 150px;
    padding: 20px;
    border-radius: var(--r-md);
    color: #fff;
    font-size: var(--t-24);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    transition: transform .3s var(--ease), filter .3s var(--ease);
}
.ah-facilitytab {
    border: 1px solid var(--hairline);
    background: var(--surface);
    color: var(--ink);
}
.ah-facilitytab:hover { border-color: #B9C4D0; }
.ah-facilitytab[aria-selected="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.ah-facilitypanel { display: grid; gap: var(--s-md); }
.ah-facilitypanel[hidden] { display: none; }
.ah-facilities__copy { display: grid; gap: 14px; justify-items: start; max-width: 62ch; }
.ah-facilities__body { color: var(--slate); }
.ah-facilities__img img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 16 / 9; object-fit: cover; }

.ah-credentials { background: var(--bg); }
.ah-credentials__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.ah-credcol {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 26px;
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    background: var(--surface);
}
.ah-credcol__icon svg { width: 44px; height: 44px; color: var(--ink); }
.ah-credcol__title { font-size: var(--t-22); font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
.ah-credcol__list { display: grid; gap: 10px; }

.ah-press {
    display: flex;
    align-items: center;
    gap: clamp(20px, 5vw, 64px);
    margin-top: var(--section-pad);
    padding-top: var(--s-md);
    border-top: 1px solid rgba(10, 10, 10, .12);
    border-bottom: 1px solid rgba(10, 10, 10, .12);
    padding-bottom: var(--s-md);
    flex-wrap: wrap;
}
.ah-press__label { font-size: var(--t-14); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; flex: none; }
.ah-press__list { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 4vw, 56px); }
.ah-press__list li { font-size: var(--t-28); font-weight: 600; letter-spacing: -0.01em; }

/* ==========================================================================
   21 + 22. Instagram, testimonials
   ========================================================================== */
.ah-instagram__title { display: flex; align-items: center; gap: 16px; margin-bottom: var(--block-gap); }
.ah-instagram__glyph {
    display: grid; place-items: center;
    width: clamp(38px, 4vw, 54px); height: clamp(38px, 4vw, 54px);
    border-radius: 14px;
    background: linear-gradient(45deg, #FEDA75 0%, #FA7E1E 25%, #D62976 55%, #962FBF 80%, #4F5BD5 100%);
    color: #fff;
}
.ah-instagram__glyph svg { width: 60%; height: 60%; }
.ah-instagram__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ah-instagram__grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--r-md);
    transition: transform .5s var(--ease);
}
.ah-instagram__grid a:hover img { transform: scale(1.03); }

.ah-testimonials { background: var(--surface); }
.ah-fan {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 20px;
    max-width: 980px;
    margin-inline: auto;
}
.ah-fan__card { border-radius: var(--r-lg); background: var(--surface); }
.ah-fan__card--main {
    box-shadow: var(--shadow-float);
    overflow: hidden;
    z-index: 2;
}
.ah-fan__card--side {
    aspect-ratio: 3 / 4;
    border: 1px dashed #CBD3DC;
    background: rgba(255, 255, 255, .55);
}
.ah-fan__card--left { transform: rotate(-6deg) translateX(8%); }
.ah-fan__card--right { transform: rotate(6deg) translateX(-8%); }
.ah-fan__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.ah-fan__body { display: grid; gap: 10px; padding: 24px; }
.ah-fan__quote { font-size: var(--t-16); line-height: 1.5; }
.ah-fan__name { font-weight: 600; }
.ah-fan__loc { display: inline-flex; align-items: center; gap: 6px; font-size: var(--t-14); color: var(--slate); }
.ah-fan__loc svg { width: 15px; height: 15px; }

/* ==========================================================================
   23 + 24. Locations, pricing
   ========================================================================== */
.ah-locations { background: var(--bg); }
.ah-locations__current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--accent);
}
.ah-locations__current strong { font-weight: 600; }

.ah-map {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--hairline);
    background: var(--surface);
    min-height: clamp(340px, 42vw, 520px);
}
/* Placeholder ground, not the export's Google Maps screenshot — see
   ASSET_REQUIREMENTS.md #8. */
.ah-map__canvas {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, .045) 1px, transparent 1px) 0 0 / 68px 68px,
        linear-gradient(rgba(10, 10, 10, .045) 1px, transparent 1px) 0 0 / 68px 68px,
        linear-gradient(126deg, #F7F5F0 0%, #EDEFEA 48%, #E6EBEF 100%);
}
.ah-map__pin { color: var(--accent); }
.ah-map__pin svg { width: 46px; height: 46px; }
.ah-locationcard {
    position: absolute;
    right: clamp(16px, 3vw, 34px);
    top: clamp(16px, 3vw, 34px);
    width: min(360px, calc(100% - 32px));
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: var(--r-md);
    background: var(--surface);
    box-shadow: var(--shadow-float);
}
.ah-locationcard__name { font-size: var(--t-24); font-weight: 600; }
.ah-locationcard__row { display: flex; align-items: flex-start; gap: 10px; font-size: var(--t-14); color: var(--slate); }
.ah-locationcard__row svg { width: 17px; height: 17px; flex: none; margin-top: 3px; }
.ah-locationcard__row a { color: var(--ink); }
.ah-locationcard__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.ah-locationcard__actions .ah-btn { min-height: 46px; font-size: var(--t-14); }

.ah-pricing__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
    align-items: end;
    gap: var(--s-md);
    margin-bottom: var(--block-gap);
}
.ah-pricing__head .ah-eyebrow { margin-bottom: 14px; }
.ah-pricing__note { color: var(--slate); max-width: 46ch; }
.ah-pricing__grid {
    display: grid;
    grid-template-columns: minmax(0, .46fr) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 44px);
    align-items: stretch;
}
.ah-plan {
    position: relative;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 30px;
    border-radius: var(--r-lg);
    background: var(--ink);
    color: #fff;
}
.ah-plan__ribbon {
    position: absolute;
    right: 24px; top: 26px;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .14);
    font-size: var(--t-12);
    letter-spacing: .06em;
    text-transform: uppercase;
}
.ah-plan__glyph {
    display: grid; place-items: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: #F3E7C2;
    color: var(--ink);
    margin-bottom: 20px;
}
.ah-plan__glyph svg { width: 28px; height: 28px; }
.ah-plan__name { font-size: var(--t-24); font-weight: 600; }
.ah-plan__grafts { font-size: var(--t-12); letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .66); }
.ah-plan__starting { margin-top: 18px; font-size: var(--t-12); color: rgba(255, 255, 255, .7); }
.ah-plan__price { display: flex; align-items: baseline; gap: 6px; }
.ah-plan__price > span:first-child { font-size: var(--t-48); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.ah-plan__period { font-size: var(--t-14); color: rgba(255, 255, 255, .7); }
.ah-plan__features { display: grid; gap: 12px; margin-top: 22px; }
.ah-plan__features li { display: flex; align-items: center; gap: 10px; font-size: var(--t-14); }
.ah-plan__tick svg { width: 18px; height: 18px; color: rgba(255, 255, 255, .5); }
.ah-plan__tick .ah-check path:last-child { stroke: var(--ink); }
.ah-plan__cta { margin-top: 26px; justify-content: space-between; }

.ah-pricing__graph {
    border: 1px solid var(--hairline);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--surface);
    display: grid;
    place-items: center;
    padding: 18px;
}
.ah-pricing__graph img { width: 100%; height: auto; }

/* ==========================================================================
   25 + 26. FAQ, social proof
   ========================================================================== */
.ah-faq__grid {
    display: grid;
    /* Answer column starts at x=508 in the export → 370px label column. */
    grid-template-columns: minmax(0, 370px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}
.ah-faq__title { margin-bottom: var(--s-md); }
.ah-accordion { border-bottom: 1px dashed rgba(10, 10, 10, .18); }
.ah-accordion__heading { margin: 0; font-size: inherit; font-weight: inherit; }
.ah-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 22px 0;
    text-align: left;
    font-size: var(--t-24);
    font-weight: 500;
    letter-spacing: -0.01em;
}
.ah-accordion__sign { position: relative; width: 18px; height: 18px; flex: none; }
.ah-accordion__sign::before,
.ah-accordion__sign::after {
    content: "";
    position: absolute;
    inset: 50% 0 auto 0;
    height: 1.5px;
    background: currentColor;
    transition: transform .3s var(--ease);
}
.ah-accordion__sign::after { transform: rotate(90deg); }
.ah-accordion__trigger[aria-expanded="true"] .ah-accordion__sign::after { transform: rotate(0deg); }
.ah-accordion__panel { overflow: hidden; }
.ah-accordion__panel[hidden] { display: none; }
.ah-accordion__inner { padding-bottom: 24px; max-width: 68ch; color: var(--slate); }

.ah-social { background: var(--bg); overflow: clip; }
.ah-social__center { display: grid; justify-items: center; gap: 14px; text-align: center; max-width: 44ch; margin-inline: auto; }
.ah-social__eyebrow { font-size: var(--t-14); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.ah-social__body { color: var(--slate); }
.ah-social__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 4px; }
.ah-social__chips li {
    padding: 7px 16px;
    border-radius: var(--r-pill);
    background: var(--surface);
    border: 1px solid var(--hairline);
    font-size: var(--t-12);
}

.ah-social__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--grid-gap);
    margin-top: var(--block-gap);
}
.ah-quotecard {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: var(--r-lg);
}
.ah-quotecard { border: 1px solid var(--hairline); background: var(--surface); }
.ah-quotecard--blue { background: var(--accent); border-color: var(--accent); color: #fff; }
.ah-quotecard--long { grid-column: 1 / -1; }
.ah-quotecard__avatar { width: 56px; height: 56px; border-radius: var(--r-sm); object-fit: cover; flex: none; }
.ah-quotecard__body { display: grid; gap: 8px; }
.ah-quotecard__quote { font-size: var(--t-16); line-height: 1.5; }
.ah-quotecard__name { font-weight: 600; padding-top: 8px; border-top: 1px solid currentColor; }
.ah-quotecard--blue .ah-quotecard__name { border-color: rgba(255, 255, 255, .35); }
.ah-quotecard__name + .ah-quotecard__role { margin-top: -4px; }
.ah-quotecard__role { font-size: var(--t-12); letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.ah-quotecard--blue .ah-quotecard__role { color: rgba(255, 255, 255, .8); }

/* ==========================================================================
   27. Footer
   ========================================================================== */
.ah-footer { background: var(--ink); color: #fff; padding-top: var(--section-pad); overflow: clip; }
.ah-footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: var(--s-lg) var(--s-md); }
.ah-footer__blurb { max-width: 34ch; color: rgba(255, 255, 255, .82); }
.ah-footer__follow { margin-top: var(--s-md); font-weight: 500; }
.ah-footer__social { display: flex; gap: 12px; margin-top: var(--s-sm); }
.ah-footer__social a {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #fff; color: var(--ink);
    transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.ah-footer__social a:hover { transform: translateY(-3px); background: #E9E9E9; }
.ah-icon--social { width: 18px; height: 18px; }
.ah-footer__col-title { font-weight: 600; margin-bottom: var(--s-sm); }
.ah-footer__col ul { display: grid; gap: 4px; }
.ah-footer__col a, .ah-footer__col span {
    display: inline-flex; align-items: center; min-height: 32px;
    color: rgba(255, 255, 255, .78);
}
.ah-footer__col a:hover { color: #fff; }
.ah-footer__wordmark {
    margin: var(--section-pad) 0 0;
    padding-inline: var(--gutter);
    font-size: clamp(4rem, 16vw, 15rem);
    font-weight: 600;
    line-height: .82;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, .07);
    white-space: nowrap;
}
.ah-footer__wordmark span { font-size: .18em; vertical-align: super; }

.ah-main--simple { padding-top: 120px; }

/* --- Scroll reveal pre-state ---------------------------------------------
   Gated on .has-js so no-JS visitors and crawlers get everything visible.
   -------------------------------------------------------------------------- */
.has-js [data-reveal],
.has-js [data-hero-actions],
.has-js [data-hero-cards] { opacity: 0; }
.has-js [data-hero-line],
.has-js [data-reveal-line] { transform: translateY(105%); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
    .ah-credentials__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ah-instagram__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ah-tech__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ah-tech__features { grid-column: 1 / -1; }
    .ah-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .ah-head { flex-direction: column; align-items: flex-start; }
    .ah-head--center { align-items: center; }
    .ah-community__inner { grid-template-columns: 1fr; gap: var(--s-md); }
    .ah-textconsult__grid { grid-template-columns: 1fr; }
    .ah-textconsult__options { max-width: none; }
    .ah-audience__grid { grid-template-columns: 1fr; }
    .ah-audience__card { aspect-ratio: 4 / 3; }
    .ah-candidate__options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ah-professional__inner { grid-template-columns: 1fr; }
    .ah-professional__stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .ah-transformations__grid { grid-template-columns: 1fr; }
    .ah-reviews { grid-template-columns: 1fr; }
    .ah-tech__head { grid-template-columns: 1fr; }
    .ah-oneday__grid { grid-template-columns: 1fr; }
    .ah-stepcard { min-height: 420px; }
    .ah-team__head { flex-direction: column-reverse; align-items: flex-start; }
    .ah-team__credentials { grid-template-columns: 1fr; }
    .ah-team__body { grid-template-columns: 1fr; }
    .ah-lifetime__grid { grid-template-columns: 1fr; }
    .ah-results__grid { grid-template-columns: 1fr; }
    .ah-facilities__layout { grid-template-columns: 1fr; }
    .ah-facilities__tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .ah-facilitytab { min-height: 104px; font-size: 1.05rem; }
    .ah-fan { grid-template-columns: 1fr; max-width: 460px; }
    .ah-fan__card--side { display: none; }
    .ah-locationcard { position: static; width: auto; margin: 16px; box-shadow: none; border: 1px solid var(--hairline); }
    .ah-map { min-height: 0; }
    .ah-map__canvas { position: relative; min-height: 260px; }
    .ah-pricing__head { grid-template-columns: 1fr; }
    .ah-pricing__grid { grid-template-columns: 1fr; }
    .ah-faq__grid { grid-template-columns: 1fr; }
    .ah-social__cards { grid-template-columns: 1fr; }
}

/* Comparison table → one card per feature. No column is dropped; the column
   name moves inline so every value keeps its heading. */
@media (max-width: 900px) {
    .ah-compare { border: 0; background: none; }
    .ah-compare__table, .ah-compare__table tbody, .ah-compare__table tr { display: block; }
    .ah-compare__table thead { display: none; }
    .ah-compare__table tr {
        margin-bottom: 16px;
        border: 1px solid var(--hairline);
        border-radius: var(--r-md);
        overflow: hidden;
        background: var(--surface);
    }
    .ah-compare__feature, .ah-compare__cell { display: block; width: auto; text-align: left; }
    .ah-compare__feature { background: var(--bg); }
    .ah-compare__cell::before {
        content: attr(data-col);
        display: block;
        margin-bottom: 6px;
        font-size: .7rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--slate);
    }
    .ah-compare__cell.is-ours::before { color: var(--accent); }
    .ah-compare__mark { margin: 0 0 8px; }
    .ah-compare__mark svg { margin-inline: 0; }
}

@media (max-width: 640px) {
    .ah-hero { min-height: max(520px, 88svh); }
    .ah-hero__cards { grid-template-columns: 1fr; max-width: 460px; }
    .ah-hero__actions .ah-btn { flex: 1 1 auto; justify-content: center; }
    .ah-header__phone span { display: none; }
    .ah-header__cta { display: none; }
    .ah-candidate__options { grid-template-columns: 1fr; }
    .ah-option__label { min-height: 96px; }
    .ah-scalp { width: 58px; height: 58px; }
    .ah-professional__stack { grid-template-columns: 1fr; }
    .ah-facilities__tabs { grid-template-columns: 1fr; }
    .ah-instagram__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .ah-credentials__grid { grid-template-columns: 1fr; }
    .ah-press { flex-direction: column; align-items: flex-start; gap: 18px; }
    .ah-press__list { gap: 22px; }
    .ah-press__list li { font-size: 1.2rem; }
    .ah-team__portraits { max-width: none; }
    .ah-footer__grid { grid-template-columns: 1fr; }
    .ah-footer__wordmark { font-size: clamp(3rem, 19vw, 6rem); }
    .ah-quotecard { flex-direction: column; }
}

/* Desktop only: pills orbit the portrait. Below this they stack, because a
   label over the face is unreadable on both counts. */
@media (min-width: 901px) {
    .ah-nextday__pills { display: block; }
    .ah-pill {
        position: absolute;
        z-index: 2;
        width: max-content;
        max-width: min(42%, 470px);
    }
    .ah-pill--tl { left: 3%;  top: 12%; }
    .ah-pill--tr { right: 3%; top: 21%; }
    .ah-pill--bl { left: 3%;  top: 53%; }
    .ah-pill--br { right: 3%; top: 63%; }
}

@media (max-width: 900px) {
    .ah-nextday__pills {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: var(--s-md);
    }
    .ah-pill { text-align: center; }
}

/* ==========================================================================
   Reduced motion — everything resolves to its final state, instantly.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .has-js [data-reveal],
    .has-js [data-hero-actions],
    .has-js [data-hero-cards] { opacity: 1 !important; }

    .has-js [data-hero-line],
    .has-js [data-reveal-line] { transform: none !important; }

    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}
