/* ============================================================
   styles.css — Musky Fit

   DESIGN SYSTEM
   Layout   : everything centered, max-width 900px, margin auto
   Hero     : full-viewport, photo centred behind text, all-edge fade
   Dividers : 1px gold line (opacity 0.2) between every section
   Fonts    : CollegiateFLF (local) + Manrope (Google)

   COLOR TOKENS
   #1b1b1b   page base
   #1e1e1e   card background
   #1a1a1a   testimonial card background
   #2a2a2a   card border
   #c9a87c   gold accent
   #e8e8e0   dirty white — headlines
   #a89880   muted body text
   ============================================================ */

@font-face {
    font-family: 'CollegiateFLF';
    src: url('fonts/CollegiateFLF.woff2') format('woff2'),
         url('fonts/CollegiateFLF.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: #1b1b1b;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; display: block; }
ul   { list-style: none; }

/* Reveal marker — JS drives the actual animation */
.reveal { will-change: opacity, transform; }

/* Emoji used in place of SVG icons throughout */
.card-emoji {
    font-size: 2rem;
    line-height: 1;
    display: block;
}

.step__emoji {
    font-size: 2.6rem;
    line-height: 1;
    display: block;
}


/* ============================================================
   LAYOUT — centred container used by every section below hero
   ============================================================ */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}


/* ============================================================
   SECTION DIVIDERS
   Thin gold line between every section (except top of hero)
   ============================================================ */
/* Hero fades into problem — no divider line needed there.
   how-it-works is light bg so its contrast is the divider. */
.offer,
.testimonials,
.cta {
    border-top: 1px solid rgba(201, 168, 124, 0.20);
}


/* ============================================================
   SHARED SECTION HEADER — eyebrow + large centered heading
   ============================================================ */
.eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.40em;
    color: #c9a87c;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-heading {
    font-family: 'CollegiateFLF', 'Impact', 'Arial Narrow', serif;
    font-size: clamp(2.6rem, 5.5vw, 5.2rem);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.98;
    color: #e8e8e0;
}

/* Centred lead line used in problem section */
.section-lead {
    text-align: center;
    font-size: 1.05rem;
    color: #a89880;
    line-height: 1.8;
    margin-bottom: 48px;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 16px 38px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease,
                color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.btn--primary {
    background-color: #c9a87c;
    color: #1b1b1b;
    border-color: #c9a87c;
}
.btn--primary:hover {
    background-color: #d9bc96;
    border-color: #d9bc96;
    transform: scale(1.02);
}

.btn--outline {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.06);
    transform: scale(1.02);
}

.btn--xl {
    padding: 20px 72px;
    font-size: 1rem;
}


/* ============================================================
   SECTION 1 — HERO
   Layer 1 (bg)  : hero-bg.jpg on the section itself
   Layer 2 (z:2) : hero-coach.png — full height, bottom-center
   Layer 3 (z:3) : gradient — bottom 70% only, no top darkening
   Layer 4 (z:4) : all text — centered column, bottom-anchored
   Section mask  : fades bottom 15% into next section (no hard edge)
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 580px;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-color: #1b1b1b;
    overflow: hidden;
    border: none;
    box-shadow: none;
    /* Smooth fade into the next section */
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* ── Layer 1: TOP BLOCK — label + headline ─────────────────
   Anchored to the top of the hero.
   z-index: 1 → sits BEHIND the coach (z-index: 2)
   The coach's lower body overlaps the headline bottom edge,
   creating the 3-D depth illusion.                         */
.hero__top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    padding: 6vh 5vw 0;
    pointer-events: none;
}

/* Gold label */
.hero__label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.40em;
    color: #c9a87c;
    margin-bottom: 18px;
}

/* Headline — same size as other section headings */
.hero__headline {
    display: flex;
    flex-direction: column;
    font-family: 'CollegiateFLF', 'Impact', 'Arial Narrow', serif;
    font-size: clamp(2.6rem, 5.5vw, 5.2rem);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.98;
    color: #e8e8e0;
}
.hero__hl-line { display: block; }

/* ── Layer 2: COACH PNG ────────────────────────────────────
   Full hero height, bottom-anchored, centred.
   z-index: 2 → overlaps the lower portion of the headline,
   sits behind the bottom text block (z-index: 4).         */
.hero__coach {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    height: 100%;
    pointer-events: none;
}
.hero__coach img {
    height: 100%;
    width: auto;
    display: block;
}

/* ── Layer 3: GRADIENT OVERLAY ─────────────────────────────
   Dark ramp on the bottom 70% only — leaves the top open
   so the background and coach upper body read clearly.    */
.hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 3;
    background: linear-gradient(
        to top,
        rgba(27, 27, 27, 0.92) 0%,
        rgba(27, 27, 27, 0.70) 40%,
        transparent            70%
    );
    pointer-events: none;
}

/* ── Layer 4: BOTTOM TEXT — kicker + body only ────────────
   Anchored to the bottom of the hero.
   z-index: 4 → in front of the coach (z-index: 2).
   Extra bottom padding reserves space for the CTA below.  */
.hero__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    text-align: center;
    padding: 0 5vw calc(6vh + 65px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    pointer-events: none;
}

/* Gold kicker */
.hero__kicker {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.58rem, 1.0vw, 0.76rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.52em;
    color: #c9a87c;
}

/* Body copy */
.hero__subheadline {
    font-size: 1rem;
    font-weight: 400;
    color: #e8e8e0;
    line-height: 1.75;
    max-width: 520px;
    opacity: 0.88;
}

/* ── Layer 5: CTA — independently anchored to bottom ──────
   Pulled out of hero__bottom so mobile can reorder it
   after the coach image.                                   */
.hero__cta {
    position: absolute;
    bottom: 6vh;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    pointer-events: auto;
}


/* ============================================================
   SECTION 2 — PROBLEM
   Centred heading + lead + 3-col icon cards
   ============================================================ */
.problem {
    padding: 104px 0 96px;
    background-color: #1b1b1b;
}

/* 3-column card grid */
.problem__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.problem__card {
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-top: 3px solid #c9a87c;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.25s ease;
}
.problem__card:hover {
    box-shadow: 0 0 24px rgba(201, 168, 124, 0.14);
}

.problem__card-icon { display: block; }

.problem__card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.problem__card-text {
    font-size: 0.91rem;
    color: #a89880;
    line-height: 1.82;
}

/* Closing line */
.problem__close-wrap { text-align: center; }

.problem__close {
    display: inline-block;
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    position: relative;
    padding-bottom: 18px;
}
.problem__close::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 2px;
    background-color: #c9a87c;
}


/* ============================================================
   SECTION 3 — OFFER
   Centred heading + intro text + 2×2 icon card grid
   ============================================================ */
.offer {
    padding: 104px 0 96px;
    background-color: #1b1b1b;
}

.offer__intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
}

.offer__body {
    font-size: 1rem;
    font-weight: 400;
    color: #e8e8e0;
    line-height: 1.75;
    opacity: 0.88;
    margin-bottom: 14px;
}
.offer__body:last-child { margin-bottom: 0; }

/* 2×2 grid */
.offer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}

.offer__card {
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-top: 3px solid #c9a87c;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.25s ease;
}
.offer__card:hover {
    box-shadow: 0 0 24px rgba(201, 168, 124, 0.14);
}

.offer__card-icon { display: block; }

.offer__card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    line-height: 1.3;
}

.offer__card-text {
    font-size: 0.92rem;
    color: #a89880;
    line-height: 1.82;
}

/* Footer: disclaimer + CTA centred */
.offer__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.offer__disclaimer {
    font-style: italic;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 500px;
}


/* ============================================================
   SECTION 4 — TESTIMONIALS
   Gold left border, badge + quote mark, hover lift
   ============================================================ */
.testimonials {
    padding: 104px 0 96px;
    background-color: #1b1b1b;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    background-color: #1a1a1a;
    border-left: 3px solid #c9a87c;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card__badge {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c9a87c;
    border: 1px solid rgba(201, 168, 124, 0.38);
    padding: 4px 10px;
    border-radius: 2px;
}

.card__quotemark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.5rem;
    line-height: 0.8;
    color: #c9a87c;
    opacity: 0.22;
    user-select: none;
}

.card__label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c9a87c;
    line-height: 1.6;
}

.card__quote {
    font-size: 0.94rem;
    color: #a89880;
    line-height: 1.9;
    font-style: normal;
    flex: 1;
}

.card__attr {
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.38);
}

/* Before / After photo strip at the bottom of each testimonial card */
.card__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.card__photo-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.card__photo-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}
.card:hover .card__photo-wrap img { transform: scale(1.03); }

.card__photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 27, 27, 0.72);
    font-family: 'Manrope', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c9a87c;
    text-align: center;
    padding: 5px 0;
}


/* ============================================================
   SECTION 5 — HOW IT WORKS
   Light theme — dirty white bg, dark text, darker gold
   ============================================================ */
.how-it-works {
    padding: 104px 0 96px;
    background-color: #f0ece4;
}

/* Override text colours for the light section */
.how-it-works .eyebrow        { color: #8B6914; }
.how-it-works .section-heading { color: #1b1b1b; }
.how-it-works .step__title    { color: #1b1b1b; }
.how-it-works .step__body     { color: #4a4540; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    text-align: center;
}

/* Dotted connector between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.4rem;
    right: -24px;
    width: 48px;
    height: 0;
    border-top: 2px dashed rgba(139, 105, 20, 0.40);
    pointer-events: none;
}

.step__title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #ffffff;
    line-height: 1.3;
}

.step__body {
    font-size: 0.95rem;
    color: #a89880;
    line-height: 1.85;
}


/* ============================================================
   SECTION 6 — FINAL CTA
   Centred, collegiate statement, radial glow
   ============================================================ */
.cta {
    padding: 120px 0;
    background-color: #1b1b1b;
    background-image: radial-gradient(
        ellipse 65% 55% at 50% 50%,
        rgba(201, 168, 124, 0.055) 0%,
        transparent 68%
    );
    position: relative;
}

.cta__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Social proof box — "Four people…" stat in a framed callout */
.cta__proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    border: 1px solid rgba(201, 168, 124, 0.35);
    border-top: 3px solid #c9a87c;
    background: rgba(201, 168, 124, 0.05);
    padding: 32px 36px;
    max-width: 620px;
    margin-bottom: 52px;
}

.cta__proof-emoji {
    font-size: 2.2rem;
    line-height: 1;
}

.cta__proof p {
    font-size: 1rem;
    color: #a89880;
    line-height: 1.85;
}

.cta__proof strong {
    color: #ffffff;
    font-weight: 800;
}

.cta__statement {
    font-family: 'CollegiateFLF', 'Impact', 'Arial Narrow', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.04;
    color: #e8e8e0;
    margin-bottom: 52px;
}

.cta__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.cta__sub {
    font-size: 0.92rem;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.7;
    max-width: 440px;
    opacity: 0.88;
    margin-bottom: 40px;
}


/* ============================================================
   RESPONSIVE — TABLET  (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {

    .hero__inner { padding: 100px 32px 64px; }

    /* Problem: 2-col on tablet */
    .problem__cards { grid-template-columns: repeat(2, 1fr); }

    /* Steps: single column, no connector */
    .steps {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 480px;
        margin: 0 auto;
    }
    .step:not(:last-child)::after { display: none; }
    .step { text-align: left; }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {

    /* Hero mobile — switch to natural column flow so order is:
       headline → kicker/subheadline → coach → buttons       */
    .hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .hero__top {
        position: relative;
        top: auto; left: auto; right: auto;
        padding: 6vh 5vw 20px;
        order: 1;
        flex-shrink: 0;
    }
    .hero__label       { letter-spacing: 0.28em; margin-bottom: 12px; }
    .hero__bottom {
        position: relative;
        top: auto; bottom: auto; left: auto; right: auto;
        padding: 0 5vw 0;
        gap: 12px;
        order: 2;
        flex-shrink: 0;
    }
    .hero__gradient    { display: none; }
    .hero__coach {
        position: relative;
        bottom: auto; left: auto;
        transform: none;
        width: 100%;
        height: auto;
        order: 3;
        flex-shrink: 0;
    }
    .hero__coach img   { width: 88vw; height: auto; margin: 0 auto; }
    .hero__cta {
        position: relative;
        bottom: auto; left: auto; right: auto;
        order: 4;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 5vw 5vh;
        flex-shrink: 0;
    }
    .hero__cta .btn    { text-align: center; }

    /* Global */
    .container { padding: 0 20px; }

    .problem      { padding: 72px 0 64px; }
    .offer        { padding: 72px 0 64px; }
    .testimonials { padding: 72px 0 64px; }
    .how-it-works { padding: 72px 0 64px; }
    .cta          { padding: 80px 0; }

    .section-header { margin-bottom: 36px; }

    /* Problem: single column */
    .problem__cards { grid-template-columns: 1fr; gap: 16px; }

    /* Offer: single column */
    .offer__grid { grid-template-columns: 1fr; }

    /* Testimonials: single column */
    .testimonials__grid { grid-template-columns: 1fr; }
    .card { padding: 28px 22px; }

    /* Buttons */
    .btn    { width: 100%; text-align: center; padding: 16px 20px; }
    .btn--xl { padding: 18px 20px; }

    /* CTA */
    .cta__inner  { padding: 0 20px; }
    .cta__bottom { gap: 16px; }

    /* Steps */
    .steps { max-width: 100%; }
}


/* ============================================================
   HERO — BADGE
   ============================================================ */
.hero__badge {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #c9a87c;
    border: 1px solid rgba(201, 168, 124, 0.55);
    padding: 10px 22px;
    margin-top: 6px;
}


/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background-color: #141414;
    border-top: 1px solid rgba(201, 168, 124, 0.20);
    border-bottom: 1px solid rgba(201, 168, 124, 0.20);
    padding: 36px 32px;
}

.stats-bar__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat__number {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #c9a87c;
    line-height: 1.2;
}

.stat__label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #a89880;
    margin-top: 6px;
}


/* ============================================================
   SECTION — I UNDERSTAND YOUR LIFE
   ============================================================ */
.understand {
    padding: 104px 0 96px;
    background-color: #1b1b1b;
    border-top: 1px solid rgba(201, 168, 124, 0.20);
}

.understand__items {
    max-width: 640px;
    margin: 0 auto 24px;
    display: flex;
    flex-direction: column;
}

.understand__item {
    border-left: 3px solid #c9a87c;
    padding: 20px 24px;
    background-color: #1e1e1e;
    border-bottom: 1px solid #2a2a2a;
}

.understand__item p {
    font-size: 1rem;
    color: #e8e8e0;
    line-height: 1.75;
}

.understand__item strong {
    color: #ffffff;
    font-weight: 700;
}

.understand__quote {
    max-width: 640px;
    margin: 0 auto;
    border-left: 3px solid #c9a87c;
    padding: 24px 28px;
    background-color: #1e1e1e;
}

.understand__quote p {
    font-size: 1rem;
    font-style: italic;
    color: #a89880;
    line-height: 1.8;
}


/* ============================================================
   SECTION — BUILT FROM BREAKING POINTS
   ============================================================ */
.story {
    padding: 104px 0 96px;
    background-color: #1b1b1b;
    border-top: 1px solid rgba(201, 168, 124, 0.20);
}

.story__chapters {
    max-width: 640px;
    margin: 0 auto 52px;
}

.story__chapter {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(201, 168, 124, 0.15);
    align-items: start;
}

.story__chapter:last-child { border-bottom: none; }

.story__chapter-num {
    font-family: 'CollegiateFLF', 'Impact', 'Arial Narrow', serif;
    font-size: 3.6rem;
    color: rgba(201, 168, 124, 0.30);
    line-height: 1;
    padding-top: 4px;
}

.story__chapter-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: #c9a87c;
    margin-bottom: 8px;
}

.story__chapter-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #e8e8e0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.story__chapter-text {
    font-size: 0.95rem;
    color: #a89880;
    line-height: 1.85;
}

.story__chapter-text strong { color: #ffffff; }

.story__quote {
    max-width: 640px;
    margin: 0 auto 48px;
    border-left: 3px solid #c9a87c;
    padding: 24px 28px;
    background-color: #1e1e1e;
}

.story__quote p {
    font-size: 1.05rem;
    font-style: italic;
    color: #a89880;
    line-height: 1.85;
}

.story__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.story__pillar {
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story__pillar-icon { font-size: 1.8rem; line-height: 1; }

.story__pillar-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c9a87c;
}

.story__pillar-text {
    font-size: 0.88rem;
    color: #a89880;
    line-height: 1.7;
}


/* ============================================================
   SECTION — QUALIFICATIONS
   ============================================================ */
.quals {
    padding: 104px 0 96px;
    background-color: #1b1b1b;
    border-top: 1px solid rgba(201, 168, 124, 0.20);
}

.quals__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.quals__card {
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-top: 3px solid #c9a87c;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    transition: box-shadow 0.25s ease;
}

.quals__card:hover {
    box-shadow: 0 0 24px rgba(201, 168, 124, 0.14);
}

.quals__card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #c9a87c;
}

.quals__card-text {
    font-size: 0.92rem;
    color: #a89880;
    line-height: 1.75;
}


/* ============================================================
   SECTION — PRICING
   ============================================================ */
.pricing {
    padding: 104px 0 96px;
    background-color: #1b1b1b;
    border-top: 1px solid rgba(201, 168, 124, 0.20);
}

.pricing__cards {
    max-width: 640px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
}

.pricing__card {
    background-color: #1e1e1e;
    border-left: 3px solid #c9a87c;
    border-top: 1px solid rgba(201, 168, 124, 0.20);
    padding: 36px 32px;
}

.pricing__card + .pricing__card {
    border-top: 1px solid rgba(201, 168, 124, 0.20);
}

.pricing__type {
    font-family: 'Manrope', sans-serif;
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: #c9a87c;
    margin-bottom: 8px;
}

.pricing__label {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e8e8e0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.pricing__price {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #c9a87c;
    line-height: 1.1;
}

.pricing__period {
    font-size: 0.88rem;
    color: #a89880;
    margin-bottom: 16px;
}

.pricing__desc {
    font-size: 0.95rem;
    color: #a89880;
    line-height: 1.8;
    margin-bottom: 12px;
}

.pricing__location {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
}

.pricing__home {
    max-width: 640px;
    margin: 0 auto 40px;
    border: 1px dashed rgba(201, 168, 124, 0.35);
    padding: 24px 28px;
    text-align: center;
}

.pricing__home-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e8e8e0;
    margin-bottom: 8px;
}

.pricing__home-text {
    font-size: 0.92rem;
    color: #a89880;
    line-height: 1.7;
}

.pricing__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.pricing__cta-note {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #a89880;
}


/* ============================================================
   HOW IT WORKS — TROPHY PROOF CARD
   ============================================================ */
.steps__proof {
    margin-top: 64px;
    background-color: #1b1b1b;
    border: 1px solid rgba(201, 168, 124, 0.35);
    border-top: 3px solid #c9a87c;
    padding: 36px 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.steps__proof-emoji { font-size: 2rem; line-height: 1; }

.steps__proof p {
    font-size: 1rem;
    color: #4a4540;
    line-height: 1.85;
}

.steps__proof-highlight {
    color: #c9a87c;
    font-weight: 800;
}


/* ============================================================
   TESTIMONIALS — PRIVACY NOTE
   ============================================================ */
.testimonials__privacy {
    margin-top: 40px;
    border-left: 3px solid rgba(201, 168, 124, 0.35);
    padding: 20px 24px;
    background-color: #1a1a1a;
}

.testimonials__privacy p {
    font-size: 0.9rem;
    font-style: italic;
    color: #a89880;
    line-height: 1.8;
}


/* ============================================================
   SECTION — FAQ
   ============================================================ */
.faq {
    padding: 104px 0 96px;
    background-color: #1b1b1b;
    border-top: 1px solid rgba(201, 168, 124, 0.20);
}

.faq__list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    padding: 28px 28px;
}

.faq__question {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #e8e8e0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq__answer {
    font-size: 0.95rem;
    color: #a89880;
    line-height: 1.82;
}


/* ============================================================
   CTA — UPDATED STYLES
   ============================================================ */
.hero__hl-outline {
    font-family: 'CollegiateFLF', 'Impact', 'Arial Narrow', serif;
    -webkit-text-stroke: 2px #e8e8e0;
    color: transparent;
    display: block;
}

.cta__eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.40em;
    color: #c9a87c;
    margin-bottom: 24px;
}

.cta__outline {
    font-family: 'CollegiateFLF', 'Impact', 'Arial Narrow', serif;
    -webkit-text-stroke: 2px #e8e8e0;
    color: transparent;
}

.cta__spaces {
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.30em;
    color: rgba(255, 255, 255, 0.40);
}


/* ============================================================
   FOOTER — DARK THEME
   ============================================================ */
.site-footer {
    background-color: #111111;
    border-top: 1px solid rgba(201, 168, 124, 0.15);
    padding: 28px 0;
    text-align: center;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__legal {
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: #a89880;
    letter-spacing: 0.04em;
}

.footer__designed {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #a89880;
    margin-top: 6px;
}

.footer__designed a {
    color: #c9a87c;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__designed a:hover { opacity: 0.75; }


/* ============================================================
   RESPONSIVE — NEW SECTIONS  (≤ 900px tablet)
   ============================================================ */
@media (max-width: 900px) {

    .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .story__pillars { grid-template-columns: repeat(3, 1fr); }

    .quals__grid { grid-template-columns: repeat(2, 1fr); }

}


/* ============================================================
   RESPONSIVE — NEW SECTIONS  (≤ 600px mobile)
   ============================================================ */
@media (max-width: 600px) {

    .understand  { padding: 72px 0 64px; }
    .story       { padding: 72px 0 64px; }
    .quals       { padding: 72px 0 64px; }
    .pricing     { padding: 72px 0 64px; }
    .faq         { padding: 72px 0 64px; }

    .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .story__chapter { grid-template-columns: 48px 1fr; gap: 16px; }
    .story__chapter-num { font-size: 2.8rem; }
    .story__pillars { grid-template-columns: 1fr; }

    .quals__grid { grid-template-columns: 1fr; }

    .pricing__card { padding: 28px 22px; }
    .pricing__home { padding: 20px 20px; }

    .steps__proof { padding: 28px 24px; margin-top: 48px; }

    .faq__item { padding: 22px 20px; }

}
