:root {
      --gold: #C39E6D;
      --gold-hover: #d4b07e;
      --black: #000000;
      --dark: #111111;
      --charcoal: #1a1a1a;
      --gray: #888888;
      --light: #f8f7f5;
      --white: #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Josefin Sans', sans-serif; color: #333; overflow-x: hidden; }
    ::selection { background: rgba(195,158,109,0.3); }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== UTILITIES ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
    .container--narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }
    .container--mid { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
    .section { padding: 120px 0; scroll-margin-top: 80px; }
    .section-label {
      font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 44px); font-weight: 500;
      line-height: 1.2; margin-bottom: 8px;
    }
    .section-sub { font-size: 18px; color: var(--gray); margin-bottom: 12px; }
    .gold-text { color: var(--gold); }
    .gray-text { color: var(--gray); }

    /* Fade-in animation */
    .fade-in {
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in.delay-1 { transition-delay: 0.12s; }
    .fade-in.delay-2 { transition-delay: 0.24s; }
    .fade-in.delay-3 { transition-delay: 0.36s; }
    .fade-in.delay-4 { transition-delay: 0.48s; }

    /* ===== BUTTONS ===== */
    .btn-gold {
      display: inline-block; background: var(--gold); color: var(--black);
      border: none; padding: 14px 36px;
      font-family: 'Josefin Sans', sans-serif; font-size: 13px; font-weight: 500;
      letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(195,158,109,0.15);
    }
    .btn-gold:hover {
      background: var(--gold-hover); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(195,158,109,0.3);
    }
    .btn-gold--large { padding: 18px 48px; font-size: 15px; }
    .btn-gold--full { width: 100%; text-align: center; }
    .btn-outline {
      display: inline-block; background: transparent; color: var(--gold);
      border: 1px solid var(--gold); padding: 14px 36px;
      font-family: 'Josefin Sans', sans-serif; font-size: 13px; font-weight: 500;
      letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-outline:hover { background: rgba(195,158,109,0.1); }

    /* ===== NAV ===== */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      transition: all 0.4s ease;
      background: rgba(0,0,0,0.95); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(195,158,109,0.15);
      display: flex; align-items: center; justify-content: space-between;
      height: 92px; padding: 0 64px;
    }
    @media (min-width: 1600px) {
      .nav { padding: 0 96px; }
    }
    .nav.scrolled {
      background: rgba(0,0,0,0.98);
    }
    .nav__inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      display: flex; align-items: center; justify-content: space-between; height: 72px;
    }
    .nav__logo {
      display: flex; align-items: center; gap: 22px;
      text-transform: uppercase;
    }
    .nav__logo img { height: 78px; width: auto; }
    .nav__logo-text {
      font-size: 18px; font-weight: 500; letter-spacing: 3px;
      color: #fff; line-height: 1.3;
    }
    .nav__logo-text span { color: var(--gold); display: block; font-size: 22px; letter-spacing: 4px; }
    .nav__links { display: flex; align-items: center; gap: 36px; }
    .nav__link {
      color: rgba(255,255,255,0.85); font-size: 14px;
      letter-spacing: 2.5px; text-transform: uppercase; transition: color 0.3s;
      font-weight: 400;
    }
    .nav__link:hover { color: var(--gold); }
    .nav__cta { margin-left: 4px; }

    /* ===== HERO ===== */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; overflow: hidden;
      background: var(--black);
    }
    .hero__bg {
      position: absolute; inset: 0; z-index: 1;
      background-size: cover; background-position: center 30%;
      background-image: url('/images/hero.jpg');
    }
    .hero__overlay {
      position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.3) 100%);
    }
    .hero__accent {
      position: absolute; right: 15%; top: 0; bottom: 0; width: 1px; z-index: 3;
      background: linear-gradient(to bottom, transparent, rgba(195,158,109,0.2), transparent);
      transform: rotate(15deg) scaleY(1.5);
    }
    .hero__content {
      position: relative; z-index: 4;
      max-width: 1200px; margin: 0 auto; padding: 120px 32px 80px; width: 100%;
    }
    .hero__inner { max-width: 720px; }
    .hero__bar { width: 48px; height: 2px; background: var(--gold); margin-bottom: 32px; }
    .hero__brand { margin-bottom: 36px; }
    .hero__brand-inner { display: flex; align-items: center; gap: 28px; }
    .hero__brand-crest {
      height: clamp(120px, 16vw, 180px); width: auto;
    }
    .hero__brand-name { display: flex; flex-direction: column; }
    .hero__brand-apex {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(42px, 7vw, 72px); font-weight: 500;
      letter-spacing: 10px; text-transform: uppercase;
      color: var(--gold); line-height: 1;
      text-shadow: 0 2px 40px rgba(0,0,0,0.3);
    }
    .hero__brand-sub {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(14px, 2.2vw, 22px); font-weight: 400;
      letter-spacing: 6px; text-transform: uppercase;
      color: rgba(255,255,255,0.85); line-height: 1;
      margin-top: 6px;
    }
    .hero__brand-location {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold); margin-top: 20px; opacity: 0.7;
    }
    .hero h1 {
      font-size: clamp(28px, 4vw, 48px); font-weight: 400;
      line-height: 1.2; color: #fff; letter-spacing: -0.3px;
      text-shadow: 0 2px 40px rgba(0,0,0,0.5);
    }
    .hero h1 span { color: var(--gold); }
    .hero__sub {
      font-size: clamp(16px, 2vw, 20px); font-weight: 400;
      line-height: 1.7; color: rgba(255,255,255,0.7);
      margin: 28px 0 44px; max-width: 540;
      text-shadow: 0 1px 20px rgba(0,0,0,0.3);
    }
    .hero__scroll {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.4;
    }
    .hero__scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
    }

    /* ===== PROOF POINTS ===== */
    .proofs { background: var(--light); }
    .proofs__grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px;
    }
    .proof-card {
      background: #fff; padding: 36px;
      border-top: 3px solid var(--gold);
      display: flex; flex-direction: column; height: 100%;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .proof-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }
    .proof-card__num {
      font-size: 12px; color: var(--gold); letter-spacing: 3px; margin-bottom: 16px;
    }
    .proof-card__title {
      font-size: 20px; font-weight: 500; margin-bottom: 16px;
    }
    .proof-card__body {
      font-size: 15px; line-height: 1.7; color: #555; margin-bottom: 20px; flex: 1;
    }
    .proof-card__outcome {
      font-size: 14px; color: var(--gold); font-weight: 500; letter-spacing: 0.5px;
    }

    /* ===== ACADEMY + CLUB ===== */
    .club-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 48px; position: relative; }
    .club-col { padding: 36px 48px; }
    .club-col--left { border-right: 1px solid #e5e5e5; }
    .club-col__label {
      font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .club-col__text { font-size: 16px; line-height: 1.8; color: #555; }
    @media (max-width: 900px) {
      .club-grid {
        grid-template-columns: 1fr;
      }
      .club-col {
        padding: 24px 20px; position: relative;
      }
      .club-col--left {
        border-right: none; border-bottom: none;
        background: var(--light); border-left: 3px solid #ddd;
      }
      .club-col:not(.club-col--left) {
        background: rgba(195,158,109,0.04);
        border-left: 3px solid var(--gold);
      }
      .club-col__text { font-size: 15px; }
      .club-grid::after {
        content: 'VS'; position: absolute; left: 50%; top: 50%;
        transform: translate(-50%, -50%);
        width: 56px; height: 56px; border-radius: 50%;
        background: #fff; border: 2px solid var(--gold);
        display: flex; align-items: center; justify-content: center;
        font-family: 'Josefin Sans', sans-serif; font-size: 15px; font-weight: 600;
        letter-spacing: 2px; color: var(--gold); z-index: 2;
        box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      }
    }
    .club-callout {
      border-left: 3px solid var(--gold); padding-left: 28px; margin-bottom: 36px;
    }
    .club-callout p { font-size: 17px; line-height: 1.8; color: #444; margin-bottom: 16px; }
    .club-callout p:last-child { margin-bottom: 0; }
    .club-tagline { font-size: 22px; font-weight: 500; margin-bottom: 16px; }
    .club-subtitle { font-size: 16px; color: var(--gray); font-style: italic; }

    /* ===== PATHWAY ===== */
    .pathway { background: var(--light); }
    .pathway__pricing { font-size: 17px; color: var(--gold); font-weight: 500; margin-bottom: 64px; }
    .pathway__grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .pathway__scroll-hint {
      display: none; text-align: center; margin-top: 12px;
      font-size: 12px; color: var(--gray); letter-spacing: 2px;
    }
    .pathway__mobile-list { display: none; }
    @media (max-width: 960px) {
      /* Homepage: hide grid, show mobile compact list */
      .pathway--has-mobile .pathway__grid { display: none; }
      .pathway--has-mobile .pathway__mobile-list {
        display: flex; flex-direction: column; gap: 12px;
      }
      /* Programs page (no mobile list): stack cards vertically */
      .pathway:not(.pathway--has-mobile) .pathway__grid {
        grid-template-columns: 1fr; gap: 32px;
      }
      .pathway__scroll-hint { display: none; }
    }
    .pathway__mobile-item {
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 24px 20px;
      background: #fff; border: 1px solid #eaeaea;
      transition: all 0.25s ease;
      text-decoration: none; color: inherit;
    }
    .pathway__mobile-item:active {
      transform: scale(0.98); border-color: var(--gold);
    }
    .pathway__mobile-item--accent {
      background: var(--black); border-color: rgba(195,158,109,0.3);
    }
    .pathway__mobile-item--accent .pathway__mobile-name { color: #fff; }
    .pathway__mobile-item--accent .pathway__mobile-age,
    .pathway__mobile-item--accent .pathway__mobile-desc {
      color: rgba(255,255,255,0.6);
    }
    .pathway__mobile-item--accent .pathway__mobile-bar { background: #333; }
    .pathway__mobile-item--accent .pathway__mobile-bar--active { background: var(--gold); }
    .pathway__mobile-item--accent .pathway__mobile-arrow { color: var(--gold); }
    .pathway__mobile-tier { flex: 1; min-width: 0; }
    .pathway__mobile-progress {
      display: flex; align-items: center; gap: 4px; margin-bottom: 10px;
    }
    .pathway__mobile-bar { width: 16px; height: 2px; background: #ddd; display: block; }
    .pathway__mobile-bar--active { background: var(--gold); }
    .pathway__mobile-name {
      font-size: 22px; font-weight: 500; color: var(--black);
      margin-bottom: 4px; line-height: 1.2;
    }
    .pathway__mobile-age {
      font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gray); margin-bottom: 6px;
    }
    .pathway__mobile-desc {
      font-size: 13px; color: #666; line-height: 1.4;
    }
    .pathway__mobile-arrow {
      font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gold); white-space: nowrap; font-weight: 500;
      flex-shrink: 0;
    }
    .tier-card {
      display: flex; flex-direction: column; height: 100%; overflow: hidden;
      border: 1px solid #eee; background: #fff;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .tier-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    }
    .tier-card--accent:hover {
      box-shadow: 0 16px 40px rgba(195,158,109,0.15);
    }
    .tier-card--accent { background: var(--black); border-color: rgba(195,158,109,0.2); }
    .tier-card__img {
      width: 100%; aspect-ratio: 16/10; object-fit: cover;
    }
    .tier-card__body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }
    .tier-card__progress { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
    .tier-card__bar { width: 24px; height: 3px; background: #ddd; }
    .tier-card__bar--active { background: var(--gold); }
    .tier-card--accent .tier-card__bar { background: #333; }
    .tier-card--accent .tier-card__bar--active { background: var(--gold); }
    .tier-card__level {
      font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gray); margin-left: 8px;
    }
    .tier-card--accent .tier-card__level { color: var(--gold); }
    .tier-card__name { font-size: 26px; font-weight: 500; margin-bottom: 6px; }
    .tier-card--accent .tier-card__name { color: #fff; }
    .tier-card__tag { font-size: 14px; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
    .tier-card__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
    .tier-badge {
      font-size: 11px; letter-spacing: 1px; padding: 5px 10px;
      background: rgba(195,158,109,0.1); color: #8a7450; border-radius: 2px;
    }
    .tier-card--accent .tier-badge { background: rgba(195,158,109,0.15); color: var(--gold); }
    .tier-card__ratio {
      font-size: 13px; font-weight: 500; color: var(--gray);
      margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #eee;
    }
    .tier-card--accent .tier-card__ratio { color: rgba(255,255,255,0.5); border-bottom-color: rgba(255,255,255,0.08); }
    .tier-card__desc { font-size: 15px; line-height: 1.7; color: #555; margin-bottom: 16px; }
    .tier-card--accent .tier-card__desc { color: rgba(255,255,255,0.7); }
    .tier-card__sub { font-size: 14px; line-height: 1.7; color: #777; margin-bottom: 20px; }
    .tier-card--accent .tier-card__sub { color: rgba(255,255,255,0.45); }
    .tier-card__features { margin-bottom: 24px; flex: 1; }
    .tier-feature {
      font-size: 13px; color: #666; padding: 4px 0;
      display: flex; align-items: center; gap: 8px;
    }
    .tier-feature__dot { color: var(--gold); font-size: 8px; }
    .tier-card--accent .tier-feature { color: rgba(255,255,255,0.5); }

    .pathway-note {
      margin-top: 48px; padding: 28px 32px; background: #fff;
      border-left: 3px solid var(--gold);
    }
    .pathway-note__title { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
    .pathway-note__text { font-size: 14px; line-height: 1.7; color: #666; }

    /* ===== SESSION VIDEO ===== */
    .session {
      background: var(--black); position: relative; overflow: hidden;
    }
    .session__glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(195,158,109,0.05) 0%, transparent 60%);
    }
    .session__inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 0 32px; text-align: center; }
    .session__title { color: #fff; }
    .session__sub { font-size: 18px; color: rgba(255,255,255,0.5); }
    .session__video {
      width: 100%; aspect-ratio: 16/9; margin: 48px 0;
      background: linear-gradient(135deg, var(--charcoal), #222);
      display: flex; align-items: center; justify-content: center;
      border-radius: 4px; overflow: hidden; position: relative;
    }
    .session__video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
    .session__play {
      position: absolute; width: 72px; height: 72px;
      border: 2px solid rgba(255,255,255,0.5); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 24px; cursor: pointer;
      transition: all 0.3s; background: rgba(0,0,0,0.3);
    }
    .session__play:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.1); }

    /* ===== FACILITY ===== */
    .facility__grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .facility__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
    .stat__value { font-size: 28px; font-weight: 500; color: var(--gold); }
    .stat__label { font-size: 12px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
    .facility__img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px;
    }

    /* ===== ABOUT INTRO ===== */
    .about-intro { background: var(--black); }
    .about-intro__header {
      text-align: center; margin-bottom: 56px;
    }
    .about-intro__header .section-label { color: var(--gold); }
    .about-intro__header .section-title { color: #fff; }
    .about-intro__lead {
      font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.6);
      max-width: 640px; margin: 24px auto 0;
    }
    .about-intro__points {
      display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    }
    .about-intro__point {
      padding: 28px; background: rgba(255,255,255,0.03);
      border: 1px solid rgba(195,158,109,0.12);
      transition: border-color 0.3s;
    }
    .about-intro__point:hover {
      border-color: rgba(195,158,109,0.3);
    }
    .about-intro__point-title {
      font-size: 16px; font-weight: 500; color: var(--gold);
      margin-bottom: 10px; letter-spacing: 0.5px;
    }
    .about-intro__point-text {
      font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.55);
    }
    @media (max-width: 600px) {
      .about-intro__points { grid-template-columns: 1fr; gap: 16px; }
      .about-intro__lead { font-size: 16px; }
    }
    /* About page: differentiate coach from proofs */
    .about-intro + .coach + .proofs {
      background: #fff;
      border-top: 3px solid var(--gold);
      padding-top: 56px;
    }
    .about-intro + .coach {
      padding-bottom: 48px;
    }

    /* ===== CONTACT PAGE ===== */
    .contact-page { background: #fff; }
    .contact-page__header {
      text-align: center; margin-bottom: 64px;
    }
    .contact-page__intro {
      font-size: 17px; line-height: 1.7; color: #555;
      max-width: 580px; margin: 24px auto 0;
    }
    .contact-page__grid {
      display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px;
      align-items: start;
    }
    .contact-page__info {
      background: var(--light); padding: 40px 36px;
      border-left: 3px solid var(--gold);
    }
    .contact-page__info-heading {
      font-size: 22px; font-weight: 500; color: var(--black);
      margin-bottom: 24px; line-height: 1.3;
    }
    .contact-page__info-item {
      padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .contact-page__info-item:last-of-type {
      border-bottom: none;
    }
    .contact-page__info-label {
      font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gray); margin-bottom: 6px; font-weight: 500;
    }
    .contact-page__info-value {
      font-size: 15px; color: #333; line-height: 1.5;
      text-decoration: none; transition: color 0.3s;
      display: block;
    }
    .contact-page__info-value:hover {
      color: var(--gold);
    }
    .contact-page__cta-box {
      margin-top: 32px; padding-top: 24px;
      border-top: 1px solid rgba(0,0,0,0.08);
    }
    .contact-page__cta-text {
      font-size: 14px; color: #555; margin-bottom: 14px;
    }
    .contact-page__form-sub {
      font-size: 14px; color: var(--gray); margin-bottom: 8px;
    }
    @media (max-width: 900px) {
      .contact-page__grid {
        grid-template-columns: 1fr; gap: 32px;
      }
      .contact-page__info { order: 2; }
      .contact-page__form { order: 1; }
    }

    /* ===== FACILITY TEASER (Homepage) ===== */
    .facility-teaser { background: var(--light); }
    .facility-teaser__grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .facility-teaser__image img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px;
    }
    .facility-teaser__text {
      font-size: 17px; line-height: 1.7; color: #555; margin-bottom: 28px;
    }
    .facility-teaser__features {
      margin-bottom: 32px;
    }
    .facility-teaser__feature {
      font-size: 14px; color: #444; padding: 10px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .facility-teaser__feature:last-child { border-bottom: none; }
    @media (max-width: 900px) {
      .facility-teaser__grid {
        grid-template-columns: 1fr; gap: 32px;
      }
      .facility-teaser__image { order: 2; }
      .facility-teaser__content { order: 1; }
    }

    /* ===== FACILITY RENTAL ===== */
    .facility-rental__grid {
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
      max-width: 960px; margin: 0 auto;
    }
    @media (max-width: 600px) {
      .facility-rental__grid { grid-template-columns: 1fr; }
    }

    /* ===== QUOTE BREAKER ===== */
    .quote-breaker {
      background: var(--black); position: relative; overflow: hidden;
      padding: 100px 0;
    }
    .quote-breaker__glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(195,158,109,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .quote-breaker__inner {
      position: relative; z-index: 2;
      max-width: 900px; margin: 0 auto; padding: 0 32px;
      text-align: center;
    }
    .quote-breaker__inner::before {
      content: ''; display: block;
      width: 48px; height: 2px; background: var(--gold);
      margin: 0 auto 32px;
    }
    .quote-breaker__text {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(28px, 4vw, 42px); font-weight: 400; color: #fff;
      line-height: 1.3; letter-spacing: 0.5px;
      margin-bottom: 28px;
    }
    .quote-breaker__attribution {
      font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); font-weight: 500;
    }
    @media (max-width: 600px) {
      .quote-breaker { padding: 28px 0; }
      .quote-breaker__text {
        font-size: 20px; margin-bottom: 28px; line-height: 1.4;
      }
      .quote-breaker__attribution {
        font-size: 11px; letter-spacing: 2px;
      }
      .quote-breaker__inner::before {
        margin-bottom: 16px; width: 36px;
      }
    }

    /* ===== MID-PAGE ASSESSMENT CTA ===== */
    .mid-cta {
      background: var(--black);
      padding: 88px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .mid-cta::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(195,158,109,0.10) 0%, transparent 55%);
      pointer-events: none;
    }
    .mid-cta__inner {
      position: relative; z-index: 2;
      max-width: 720px; margin: 0 auto; padding: 0 32px;
    }
    .mid-cta__eyebrow {
      font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); font-weight: 500;
      margin-bottom: 20px;
    }
    .mid-cta__title {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(28px, 4vw, 40px); font-weight: 400;
      color: #fff; line-height: 1.25;
      margin-bottom: 24px;
    }
    .mid-cta__sub {
      font-size: 16px; line-height: 1.7;
      color: rgba(255,255,255,0.65);
      margin: 0 auto 36px;
      max-width: 560px;
    }
    @media (max-width: 600px) {
      .mid-cta { padding: 64px 0; }
      .mid-cta__title { font-size: 24px; }
      .mid-cta__sub { font-size: 15px; margin-bottom: 28px; }
    }

    /* ===== COACH ===== */
    .coach { background: var(--light); }
    .coach__grid { display: grid; grid-template-columns: 5fr 4fr; gap: 64px; align-items: start; }
    .coach__text p { font-size: 16px; line-height: 1.85; color: #555; margin-bottom: 20px; }
    .coach__quote {
      border-left: 3px solid var(--gold); padding-left: 24px; margin-top: 32px;
    }
    .coach__quote p { font-size: 18px; font-style: italic; line-height: 1.7; color: #444; }
    .coach__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; }
    .coach__creds {
      margin-top: 24px; padding: 20px 24px; background: #fff;
    }
    .coach__creds-label {
      font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px;
    }
    .coach__cred {
      font-size: 14px; color: #555; padding: 6px 0;
      border-bottom: 1px solid #f0f0f0;
    }
    .coach__cred:last-child { border-bottom: none; }

    /* ===== TESTIMONIALS ===== */
    .testimonials { background: #fff; }
    .testimonials__header {
      text-align: center; margin-bottom: 48px;
    }
    .testimonials__header .review-badge {
      margin: 0 auto 32px;
    }
    .testimonials__header .section-label {
      margin-bottom: 12px;
    }
    .testimonials__list {
      display: flex; flex-direction: column; gap: 24px;
    }
    .testimonial {
      background: var(--light); padding: 40px 36px;
      border-left: 3px solid var(--gold);
    }
    .testimonial__text { font-size: 17px; line-height: 1.8; color: #444; font-style: italic; margin-bottom: 20px; }
    .testimonial__name { font-size: 14px; font-weight: 500; }

    /* ===== ASSESSMENT CTA ===== */
    .assessment {
      background: var(--black); position: relative; overflow: hidden;
    }
    .assessment__glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(195,158,109,0.08) 0%, transparent 50%),
                  radial-gradient(ellipse at 70% 30%, rgba(195,158,109,0.05) 0%, transparent 40%);
    }
    .assessment__lines {
      position: absolute; top: 0; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(195,158,109,0.13), transparent);
    }
    .assessment__inner {
      position: relative; z-index: 2;
      max-width: 700px; margin: 0 auto; padding: 0 32px;
    }
    .assessment__bar { width: 48px; height: 2px; background: var(--gold); margin: 0 auto 24px; }
    .assessment__title {
      font-size: clamp(28px, 4vw, 40px); font-weight: 500; color: #fff;
      text-align: center; line-height: 1.3; margin-bottom: 16px;
    }
    .assessment__sub {
      font-size: 17px; color: rgba(255,255,255,0.5); text-align: center;
      line-height: 1.7; margin-bottom: 48px;
    }
    .assessment__form {
      background: var(--charcoal); border: 1px solid rgba(195,158,109,0.13);
      padding: 40px;
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-label {
      display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,0.4); margin-bottom: 6px;
    }
    .form-input, .form-select {
      width: 100%; padding: 12px 14px;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      color: #fff; font-family: 'Josefin Sans', sans-serif; font-size: 15px;
      outline: none; box-sizing: border-box; transition: border-color 0.3s;
      -webkit-appearance: none; appearance: none;
    }
    .form-input:focus, .form-select:focus {
      border-color: var(--gold); background: rgba(195,158,109,0.06);
    }
    .form-select { color: rgba(255,255,255,0.6); }
    .form-full { margin-bottom: 16px; }
    .form-submit { margin-top: 8px; }
    .form-note {
      font-size: 13px; color: rgba(255,255,255,0.3);
      text-align: center; margin-top: 16px;
    }

    /* ===== CAMPS ===== */
    .camp-card {
      border: 1px solid #eee; padding: 32px 28px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }
    .camp-card + .camp-card { border-top: none; }
    .camp-card__name { font-size: 20px; font-weight: 500; margin-bottom: 6px; }
    .camp-card__details { font-size: 14px; color: var(--gray); }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--black); padding: 80px 0 40px;
      border-top: 1px solid rgba(195,158,109,0.13);
    }
    .footer__grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 48px; margin-bottom: 56px;
    }
    .footer__heading {
      font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .footer__logo {
      display: flex; align-items: center; gap: 12px;
      font-size: 16px; font-weight: 500; letter-spacing: 3px;
      color: #fff; text-transform: uppercase; margin-bottom: 16px;
    }
    .footer__logo img { height: 64px; width: auto; }
    .footer__logo span { color: var(--gold); }
    .footer__text { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; }
    .footer__link {
      display: block; font-size: 14px; color: rgba(255,255,255,0.5);
      padding: 5px 0; transition: color 0.3s;
    }
    .footer__link:hover { color: var(--gold); }
    .footer__newsletter { display: flex; gap: 0; }
    .footer__email-input {
      flex: 1; padding: 12px 14px;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-right: none; color: #fff;
      font-family: 'Josefin Sans', sans-serif; font-size: 14px; outline: none;
    }
    .footer__email-btn {
      background: var(--gold); border: none; padding: 12px 20px;
      font-family: 'Josefin Sans', sans-serif; font-size: 11px;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--black); font-weight: 500; cursor: pointer;
    }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
    .footer__socials { display: flex; gap: 16px; }
    .footer__social {
      font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.3s;
    }
    .footer__social:hover { color: var(--gold); }


    /* ===== PARTNER BAR ===== */
    .partners {
      background: #fff; padding: 64px 0;
      border-bottom: 1px solid #eee;
    }
    .partners__inner {
      display: flex; align-items: center; justify-content: center;
      gap: 64px; flex-wrap: wrap;
    }
    .partners__label {
      font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gray); white-space: nowrap;
    }
    .partners__logos {
      display: flex; align-items: center; gap: 64px; flex-wrap: wrap;
      justify-content: center;
    }
    .partners__logo {
      height: 110px; width: auto; opacity: 0.95;
      transition: opacity 0.3s;
    }
    .partners__logo:hover { opacity: 1; }
    .partners__divider {
      width: 1px; height: 60px; background: #ddd;
    }
    /* FTF logo is wide and visually thinner - give it more height to balance */
    .partners__logo[alt*="FTF"] {
      height: 130px;
    }

    /* ===== TOURNAMENTS ===== */
    .tournaments { background: var(--black); position: relative; overflow: hidden; }
    .tournaments__glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 40% 40%, rgba(195,158,109,0.06) 0%, transparent 50%);
    }
    .tournaments__inner { position: relative; z-index: 2; }
    .tournaments__title { color: #fff; }
    .tournaments__sub { color: rgba(255,255,255,0.5); }
    .tournaments__grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px; margin-bottom: 48px;
    }
    .trip-card {
      background: var(--charcoal); border: 1px solid rgba(255,255,255,0.06);
      overflow: hidden; display: flex; flex-direction: column;
    }
    .trip-card__img {
      width: 100%; aspect-ratio: 16/10; object-fit: cover; opacity: 0.85;
    }
    .trip-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
    .trip-card__badge {
      display: inline-block; font-size: 10px; letter-spacing: 2px;
      text-transform: uppercase; padding: 4px 10px; margin-bottom: 12px;
      border-radius: 2px; width: fit-content;
    }
    .trip-card__badge--past { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }
    .trip-card__badge--upcoming { background: rgba(195,158,109,0.2); color: var(--gold); }
    .trip-card__name { font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 8px; }
    .trip-card__details { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
    .trip-card__desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); flex: 1; }

    .interest-box {
      background: var(--charcoal); border: 1px solid rgba(195,158,109,0.15);
      padding: 40px; text-align: center;
    }
    .interest-box__title { font-size: 22px; font-weight: 500; color: #fff; margin-bottom: 8px; }
    .interest-box__sub { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 24px; line-height: 1.7; }
    .interest-form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; max-width: 800px; margin: 0 auto; }
    .interest-form .form-input { font-size: 14px; padding: 14px; }


    /* ===== PARTNERSHIPS SECTION ===== */
    .partnerships { background: var(--black); position: relative; overflow: hidden; }
    .partnerships__glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(195,158,109,0.06) 0%, transparent 50%);
    }
    .partnerships__inner { position: relative; z-index: 2; }
    .partnerships__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; }
    .partnership-card {
      background: var(--charcoal); border: 1px solid rgba(255,255,255,0.06);
      padding: 40px 36px; display: flex; flex-direction: column;
    }
    .partnership-card__logo-wrap {
      height: 120px; display: flex; align-items: center; margin-bottom: 32px;
      padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .partnership-card__logo { height: 110px; width: auto; }
    .partnership-card__name {
      font-size: 26px; font-weight: 500; color: #fff; margin-bottom: 12px;
    }
    .partnership-card__role {
      font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
    }
    .partnership-card__desc {
      font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.55);
      margin-bottom: 20px; flex: 1;
    }
    .partnership-card__benefits { margin-top: auto; }
    .partnership-benefit {
      font-size: 13px; color: rgba(255,255,255,0.5); padding: 5px 0;
      display: flex; align-items: center; gap: 10px;
    }
    .partnership-benefit__dot { color: var(--gold); font-size: 8px; }



    /* ===== PROGRAM FINDER ===== */
    .finder {
      background: #fff; border-top: 1px solid #eee;
      position: relative; overflow: hidden;
    }
    .finder__inner { max-width: 760px; margin: 0 auto; text-align: center; }
    .finder__steps { margin-top: 48px; }
    .finder__step {
      display: none; animation: finderFade 0.4s ease;
    }
    .finder__step.active { display: block; }
    @keyframes finderFade {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .finder__question {
      font-size: 22px; font-weight: 500; color: var(--black);
      margin-bottom: 32px;
    }
    .finder__options {
      display: flex; flex-wrap: wrap; gap: 12px;
      justify-content: center;
    }
    .finder__option {
      background: var(--light); border: 2px solid #eee;
      padding: 16px 28px; font-family: 'Josefin Sans', sans-serif;
      font-size: 15px; color: var(--black); cursor: pointer;
      transition: all 0.25s; border-radius: 4px; min-width: 120px;
    }
    .finder__option:hover { border-color: var(--gold); background: rgba(195,158,109,0.06); }
    .finder__option.selected { border-color: var(--gold); background: rgba(195,158,109,0.1); color: var(--gold); font-weight: 500; }
    .finder__result {
      display: none; animation: finderFade 0.5s ease;
      text-align: center; padding: 40px 0;
    }
    .finder__result.active { display: block; }
    .finder__result-tier {
      font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }
    .finder__result-name {
      font-size: clamp(32px, 5vw, 48px); font-weight: 500;
      color: var(--black); margin-bottom: 16px;
    }
    .finder__result-desc {
      font-size: 16px; line-height: 1.7; color: #666;
      max-width: 520px; margin: 0 auto 32px;
    }
    .finder__restart {
      display: inline-block; margin-top: 16px;
      font-size: 13px; color: var(--gray); cursor: pointer;
      letter-spacing: 1px; transition: color 0.3s;
      background: none; border: none; font-family: 'Josefin Sans', sans-serif;
    }
    .finder__restart:hover { color: var(--gold); }
    .finder__progress {
      display: flex; justify-content: center; gap: 8px;
      margin-bottom: 32px;
    }
    .finder__dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #ddd; transition: background 0.3s;
    }
    .finder__dot.active { background: var(--gold); }



    /* ===== CAPACITY BADGES ===== */
    .tier-capacity {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 16px; background: rgba(195,158,109,0.06);
      border-top: 1px solid #eee; font-size: 12px;
      letter-spacing: 1px; color: var(--gray);
    }
    .tier-capacity__dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #34a853; flex-shrink: 0;
    }
    .tier-capacity__dot--limited { background: #f4b400; }
    .tier-capacity__dot--waitlist { background: #ea4335; }

    /* ===== SOCIAL PROOF ===== */
    .review-badge {
      display: inline-flex; align-items: center; gap: 12px;
      background: #fff; border: 1px solid #eee; padding: 12px 20px;
      margin-bottom: 40px;
    }
    .review-badge__stars { color: #f4b400; font-size: 18px; letter-spacing: 2px; }
    .review-badge__text { font-size: 14px; color: var(--gray); }
    .review-badge__text strong { color: var(--black); font-weight: 600; }
    .review-badge__link {
      font-size: 13px; color: var(--gold); text-decoration: none;
      transition: color 0.3s;
    }
    .review-badge__link:hover { color: var(--gold-hover); text-decoration: underline; }


    /* ===== REFERRAL ===== */
    .referral {
      background: var(--light); padding: 48px 0;
      border-top: 1px solid #eee; border-bottom: 1px solid #eee;
      text-align: center;
    }
    .referral__text {
      font-size: 18px; color: var(--black); margin-bottom: 20px;
    }
    .referral__buttons {
      display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    }
    .referral__btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 24px; font-size: 13px; letter-spacing: 1px;
      text-transform: uppercase; text-decoration: none;
      border: 1px solid #ddd; color: var(--black); background: #fff;
      transition: all 0.3s; font-family: 'Josefin Sans', sans-serif;
      cursor: pointer;
    }
    .referral__btn:hover { border-color: var(--gold); color: var(--gold); }

    /* ===== FAQ ===== */
    .faq { background: #fff; }
    .faq__list { max-width: 760px; margin-top: 48px; }
    .faq-item { border-bottom: 1px solid #eee; }
    .faq-item__q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 24px 0; cursor: pointer; gap: 16px;
      -webkit-user-select: none; user-select: none;
    }
    .faq-item__q:hover .faq-item__text { color: var(--gold); }
    .faq-item__q:hover { padding-left: 8px; }
    .faq-item__text {
      font-size: 17px; font-weight: 500; color: var(--black);
      transition: color 0.3s; line-height: 1.4;
    }
    .faq-item__icon {
      font-size: 20px; color: var(--gold); flex-shrink: 0;
      transition: transform 0.3s; font-weight: 300;
    }
    .faq-item__icon.open { transform: rotate(45deg); }
    .faq-item__a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .faq-item__a.open { max-height: 400px; }
    .faq-item__a-inner {
      padding: 0 0 24px 0;
      font-size: 15px; line-height: 1.8; color: #666;
    }

    /* ===== SCHOOL PROGRAMS ===== */
    .school { background: var(--light); }
    .school__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .school__formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
    .school-format {
      background: #fff; padding: 20px 16px; text-align: center;
      border: 1px solid #eee; transition: border-color 0.3s;
    }
    .school-format:hover { border-color: var(--gold); }
    .school-format__label {
      font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 6px;
    }
    .school-format__name { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
    .school-format__detail { font-size: 12px; color: var(--gray); }
    .school__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }
    .school__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
    .school__badge {
      font-size: 12px; padding: 6px 14px;
      background: #fff; border: 1px solid #eee; color: #555;
    }

    /* ===== NOTIFY BANNER ===== */
    .notify {
      background: var(--light); border-top: 1px solid #eee; border-bottom: 1px solid #eee;
      padding: 40px 0;
    }
    .notify__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
    }
    .notify__text { max-width: 500px; }
    .notify__title { font-size: 20px; font-weight: 500; margin-bottom: 6px; }
    .notify__sub { font-size: 14px; color: var(--gray); line-height: 1.6; }
    .notify__form { display: flex; gap: 0; }
    .notify__input {
      padding: 14px 16px; border: 1px solid #ddd; border-right: none;
      font-family: 'Josefin Sans', sans-serif; font-size: 14px;
      outline: none; width: 260px;
    }
    .notify__input:focus { border-color: var(--gold); }
    .notify__btn {
      background: var(--gold); border: none; padding: 14px 24px;
      font-family: 'Josefin Sans', sans-serif; font-size: 12px;
      letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
      cursor: pointer; transition: background 0.3s; white-space: nowrap;
    }
    .notify__btn:hover { background: var(--gold-hover); }


    /* ===== MOBILE MENU ===== */
    .nav__hamburger {
      display: none; width: 44px; height: 44px;
      flex-direction: column; align-items: center; justify-content: center;
      gap: 5px; cursor: pointer; padding: 0;
      background: #fff; border: 1px solid var(--gold);
      border-radius: 4px; transition: all 0.3s;
    }
    .nav__hamburger:hover { background: var(--gold); }
    .nav__hamburger:hover span { background: #fff; }
    .nav__hamburger span {
      display: block; width: 22px; height: 2px; background: var(--black);
      transition: all 0.3s; transform-origin: center;
    }
    .nav__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav__hamburger.open span:nth-child(2) { opacity: 0; }
    .nav__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav__mobile-menu {
      display: none; position: fixed; top: 72px; left: 0; right: 0;
      background: rgba(0,0,0,0.97); backdrop-filter: blur(16px);
      padding: 24px 32px 32px; z-index: 999;
      border-bottom: 1px solid rgba(195,158,109,0.15);
    }
    .nav__mobile-menu.open { display: block; }
    .nav__mobile-link {
      display: block; color: rgba(255,255,255,0.7); font-size: 15px;
      letter-spacing: 2px; text-transform: uppercase; padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.3s;
    }
    .nav__mobile-link:hover { color: var(--gold); }
    .nav__mobile-cta { margin-top: 20px; display: block; text-align: center; }
    @media (max-width: 900px) {
      .nav__hamburger { display: flex; }
    }


    /* ===== RHYTHM BREAKER / IMPACT BAR ===== */
    .impact-bar {
      background: var(--gold); padding: 56px 0; position: relative;
      overflow: hidden;
    }
    .impact-bar__bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #b8904f 0%, var(--gold) 40%, #d4ad73 100%);
    }
    .impact-bar__inner {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      display: flex; align-items: center; justify-content: center;
      gap: 64px; flex-wrap: wrap;
    }
    .impact-stat { text-align: center; }
    .impact-stat__value {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(36px, 5vw, 52px); font-weight: 500;
      color: var(--black); line-height: 1;
      height: clamp(36px, 5vw, 52px);
      display: flex; align-items: flex-end; justify-content: center;
      margin-bottom: 8px;
      white-space: nowrap;
    }
    .impact-stat__value--text {
      font-size: clamp(26px, 3.5vw, 38px);
      letter-spacing: 1px;
    }
    .impact-stat__label {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(0,0,0,0.5); margin-top: 8px;
    }
    @media (max-width: 600px) {
      .impact-bar__inner { gap: 32px; }
      .impact-stat__value { font-size: 32px; height: 32px; }
      .impact-stat__value--text { font-size: 22px; }
    }


    /* ===== SCROLL TO TOP ===== */
    .scroll-top {
      position: fixed; bottom: 32px; right: 32px; z-index: 900;
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--gold); color: var(--black);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; cursor: pointer; border: none;
      opacity: 0; transform: translateY(16px);
      transition: all 0.3s; pointer-events: none;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    .scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .scroll-top:hover { background: var(--gold-hover); transform: translateY(-2px); }

    /* ===== MOBILE STICKY CTA ===== */
    .mobile-cta {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
      background: var(--black); padding: 12px 20px;
      border-top: 1px solid rgba(195,158,109,0.2);
      text-align: center;
      transform: translateY(100%); transition: transform 0.3s;
    }
    .mobile-cta.visible { transform: translateY(0); }
    .mobile-cta .btn-gold { width: 100%; padding: 14px; font-size: 13px; }
    @media (max-width: 900px) {
      .mobile-cta { display: block; }
      .scroll-top { bottom: 80px; }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .nav { padding: 0 20px; height: 76px; }
      .nav__logo img { height: 52px; }
      .nav__logo-text { font-size: 13px; }
      .nav__logo-text span { font-size: 14px; }
      .nav__links .nav__link { display: none; }
      .nav__links {
        order: 2; gap: 0; display: flex; align-items: center;
        margin-left: auto;
      }
      .nav__cta { padding: 10px 16px; font-size: 11px; letter-spacing: 1.5px; }
      .nav__hamburger { order: 3; margin-left: 12px; }
      .facility__grid { grid-template-columns: 1fr; gap: 40px; }
      .coach__grid { grid-template-columns: 1fr; gap: 40px; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .interest-form { grid-template-columns: 1fr 1fr; }
      .notify__inner { flex-direction: column; text-align: center; }
      .notify__form { width: 100%; }
      .notify__input { flex: 1; }
      .partnerships__grid { grid-template-columns: 1fr; }
      .school__grid { grid-template-columns: 1fr; gap: 40px; }
      .school__formats { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 600px) {
      .section { padding: 80px 0; scroll-margin-top: 72px; }
      .container, .container--narrow, .container--mid { padding: 0 20px; }
      .footer__grid { grid-template-columns: 1fr; }
      .pathway__grid { grid-template-columns: 1fr; }
      .proofs__grid { grid-template-columns: 1fr; }
      .hero__content { padding: 100px 20px 60px; }
      .hero__brand-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
      .hero__brand-crest { height: 72px; }
      .hero__brand-apex { letter-spacing: 6px; }
      .hero__brand-sub { letter-spacing: 4px; }
      .assessment__form { padding: 28px 20px; }
      .assessment__inner { padding: 0 20px; }
      .interest-form { grid-template-columns: 1fr; }
      .interest-box { padding: 28px 20px; }
      .school__formats { grid-template-columns: repeat(2, 1fr); }
      .finder__option { min-width: 100px; padding: 14px 20px; font-size: 14px; }
    }