/* =========================================================================
   BOOST SBX — main.css
   Design language: sport-tech editorial. Dark navy + coral, sporty type.
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
    /* Colour */
    --navy:        #0B1A30;
    --navy-2:      #16263F;
    --navy-3:      #1F2D44;
    --navy-line:   #243349;
    --coral:       #FF5A5F;
    --coral-dark:  #E84A4F;
    --coral-soft:  #FFE0E1;
    --cream:       #F5F2EC;
    --cream-2:     #ECE7DD;
    --white:       #FFFFFF;
    --text:        #0B1A30;
    --text-soft:   #3D4A60;
    --text-muted:  #6B7280;
    --border:      #E5E7EB;
    --border-2:    #D9D5CB;
    --blue:        #2E4F8C;

    /* Type */
    --font-display: 'Saira', system-ui, sans-serif;
    --font-body:    'Manrope', system-ui, sans-serif;

    /* Scale */
    --container:   1240px;
    --gutter:      24px;
    --radius-sm:   6px;
    --radius:      12px;
    --radius-lg:   20px;

    /* Motion */
    --ease:        cubic-bezier(.22, 1, .36, 1);
    --ease-out:    cubic-bezier(.16, 1, .3, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

ul, ol { padding: 0; margin: 0; list-style: none; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--coral); color: var(--white); }

/* ---------- 3. Typography utilities ---------- */
.eyebrow {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--text);
}
.eyebrow--coral { color: var(--coral); }
.eyebrow--dark { color: var(--navy); }

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.75rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    color: var(--navy);
}
.section-title--light { color: var(--white); }

.section-intro {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 56ch;
    margin: 0 auto;
}

.lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    max-width: 56ch;
}

.muted { color: var(--text-muted); font-size: 0.95rem; }

.rule {
    width: 60px;
    height: 3px;
    background: var(--navy);
    margin: 0 0 1.5rem;
    border-radius: 2px;
}
.rule--coral { background: var(--coral); }

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

.section {
    padding-block: clamp(4rem, 3rem + 5vw, 7rem);
}

.section-header {
    margin-bottom: 3rem;
}
.section-header--center {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}

/* ---------- 5. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), box-shadow 200ms var(--ease);
    will-change: transform;
    text-align: center;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 6px 16px -8px rgba(255, 90, 95, 0.6);
}
.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -10px rgba(255, 90, 95, 0.7);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--white);
}

.btn--block { width: 100%; }

.btn--has-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 200ms var(--ease);
}
.btn--has-arrow:hover svg { transform: translateX(3px); }

/* ---------- 6. Site header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 26, 48, 0.92);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 0.875rem;
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.site-header__logo img {
    width: 44px;
    height: auto;
    border-radius: 4px;
}
.site-header__wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.site-header__wordmark-name {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
}
.site-header__wordmark-sub {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--coral);
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 2px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.primary-nav__link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    transition: color 200ms var(--ease);
    position: relative;
    padding-block: 4px;
}
.primary-nav__link:hover { color: var(--white); }
.primary-nav__link.is-active { color: var(--white); }
.primary-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--coral);
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 6px;
}
.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
    position: relative;
    min-height: clamp(560px, 88vh, 880px);
    color: var(--white);
    background: var(--navy);
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 40%;
    transform: scale(1.04);
}
.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(95deg, rgba(11, 26, 48, 0.92) 0%, rgba(11, 26, 48, 0.55) 55%, rgba(11, 26, 48, 0.2) 100%),
        linear-gradient(180deg, rgba(11, 26, 48, 0.3) 0%, rgba(11, 26, 48, 0) 30%, rgba(11, 26, 48, 0.6) 100%);
}
.hero__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    mix-blend-mode: overlay;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.6) 1px, transparent 0);
    background-size: 3px 3px;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-block: 5rem 6rem;
    max-width: 760px;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 1.5rem + 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0.5rem 0 0.25rem;
    text-transform: uppercase;
}

.hero__subtitle {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1rem, 0.9rem + 0.6vw, 1.25rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin: 0 0 1.75rem;
    line-height: 1.4;
}

.hero__rule {
    width: 80px;
    height: 4px;
    background: var(--coral);
    margin-bottom: 1.75rem;
    border-radius: 2px;
}

.hero__tagline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 0.9rem + 2.4vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.1em;
}
.hero__tagline em {
    font-style: normal;
    color: var(--coral);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.hero__scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 30px;
    height: 50px;
    border: 1.5px solid rgba(255,255,255,0.45);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero__scroll-cue-line {
    display: block;
    width: 2px;
    height: 10px;
    background: var(--white);
    border-radius: 1px;
    animation: scrollCue 1.8s var(--ease) infinite;
}
@keyframes scrollCue {
    0%   { transform: translateY(0);   opacity: 1; }
    70%  { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0);   opacity: 0; }
}

/* ---------- 8. What we do ---------- */
.what-we-do {
    background: var(--cream);
    position: relative;
}
/* Decorative diagonal stripe */
.what-we-do::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 200px;
    height: 8px;
    background: var(--coral);
    transform-origin: right top;
}

.what-we-do__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 1rem + 4vw, 5rem);
    align-items: center;
}

.what-we-do__copy .lead { margin-bottom: 1.5rem; }

.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding-block: 1.5rem;
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
}
.pillar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--navy);
}
.pillar__icon {
    width: 36px;
    height: 36px;
    color: var(--coral);
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar__label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.what-we-do__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(11,26,48,0.4);
}
.what-we-do__media-frame { width: 100%; height: 100%; }
.what-we-do__media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.what-we-do__media-tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
}

/* ---------- 9. Who it's for ---------- */
.who-its-for {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.who-its-for::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.06), transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tier {
    background: var(--navy-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: transform 300ms var(--ease), border-color 300ms var(--ease), background 300ms var(--ease);
    position: relative;
    overflow: hidden;
}
.tier::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 400ms var(--ease);
}
.tier:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 90, 95, 0.3);
    background: var(--navy-3);
}
.tier:hover::before { transform: scaleX(1); }
.tier--featured {
    background: var(--navy-3);
    border-color: rgba(255, 90, 95, 0.18);
}
.tier--featured::before { transform: scaleX(1); }

.tier__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.tier__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 90, 95, 0.12);
    color: var(--coral);
}
.tier__icon svg { width: 24px; height: 24px; }
.tier__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.4);
}
.tier__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
    color: var(--white);
}
.tier__age {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral);
    margin: 0 0 1rem;
}
.tier__copy {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
}

/* ---------- 10. Programme ---------- */
.programme {
    background: var(--cream);
}
.programme__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 1rem + 4vw, 5rem);
    align-items: start;
}
.programme__intro .btn { margin-top: 1.5rem; }

.timeline {
    position: relative;
    padding-left: 5.5rem;
}
.timeline::before {
    content: "";
    position: absolute;
    top: 0.5rem; bottom: 0.5rem;
    left: 2rem;
    width: 2px;
    background: linear-gradient(180deg, var(--coral) 0%, rgba(255, 90, 95, 0.2) 100%);
}
.timeline__item {
    position: relative;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-2);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.timeline__item:last-child { border-bottom: none; }
.timeline__marker {
    position: absolute;
    left: -5rem;
    top: 1.125rem;
    width: 4rem;
    height: 2.25rem;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--coral);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.8125rem;
    letter-spacing: 0.14em;
}
.timeline__body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
    color: var(--navy);
}
.timeline__body p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- 11. Coaching ---------- */
.coaching {
    position: relative;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    padding-block: clamp(5rem, 4rem + 5vw, 8rem);
}
.coaching__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.coaching__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 40%;
    filter: grayscale(0.3) contrast(1.05);
}
.coaching__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--navy) 0%, rgba(11, 26, 48, 0.85) 50%, rgba(11, 26, 48, 0.6) 100%);
}

.coaching__panel {
    max-width: 600px;
    background: rgba(11, 26, 48, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin: 1.75rem 0 2rem;
}
.checklist li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.92);
}
.checklist__check {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--coral);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.checklist__check svg { width: 16px; height: 16px; }

.pull-quote {
    margin: 0;
    padding: 1.5rem 1.75rem 1.5rem 2.5rem;
    border-left: 3px solid var(--coral);
    background: rgba(255,255,255,0.04);
    border-radius: 0 var(--radius) var(--radius) 0;
    position: relative;
}
.pull-quote__mark {
    position: absolute;
    top: -0.6rem;
    left: 0.6rem;
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--coral);
    font-weight: 800;
}
.pull-quote p {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--white);
    font-style: italic;
    margin: 0;
}
.pull-quote em {
    font-style: italic;
    color: var(--coral);
    font-weight: 700;
}

/* ---------- 12. Register / Contact ---------- */
.register {
    background: linear-gradient(135deg, var(--coral) 0%, #FF7B6E 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.register::before {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
    pointer-events: none;
}

.register__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.register__cta .eyebrow { color: rgba(11,26,48,0.7); }
.register__cta .section-title { color: var(--white); }
.register__cta .lead {
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.75rem;
}

.register-form {
    background: var(--white);
    color: var(--text);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px -30px rgba(11,26,48,0.4);
    display: grid;
    gap: 1rem;
}
.register-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.register-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.register-form__field span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
}
.register-form__field em {
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-muted);
}
.register-form__field input,
.register-form__field select,
.register-form__field textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.75rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.register-form__field input:focus,
.register-form__field select:focus,
.register-form__field textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.18);
}
.register-form__field textarea { resize: vertical; min-height: 88px; }

.register-form__note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0.25rem 0 0;
}

.register__contact {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
}
.register__contact-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}
.register__contact > p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: var(--navy-2);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}
.contact-card:hover {
    background: var(--navy-3);
    border-color: rgba(255, 90, 95, 0.3);
    transform: translateY(-1px);
}
.contact-card__icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--coral);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.contact-card__value {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    margin-top: 2px;
}

.register__quote {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.register__quote p {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-style: italic;
}

/* ---------- 13. Footer ---------- */
.site-footer {
    background: #060F1E;
    color: rgba(255,255,255,0.75);
    padding-block: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.site-footer__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}
.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.site-footer__brand img {
    width: 38px;
    height: auto;
    border-radius: 4px;
}
.site-footer__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin: 0;
}
.site-footer__tag {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin: 2px 0 0;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.site-footer__nav a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color 200ms var(--ease);
}
.site-footer__nav a:hover { color: var(--coral); }

.site-footer__copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
    text-align: right;
}

/* ---------- 14. Programme page specific ---------- */
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding-block: clamp(4rem, 3rem + 4vw, 6rem) 3rem;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: "";
    position: absolute;
    bottom: 0; right: 0;
    width: 320px; height: 8px;
    background: var(--coral);
}
.page-hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.25rem, 1.5rem + 3.5vw, 4.25rem);
    line-height: 1;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    margin: 0.5rem 0;
}
.page-hero__intro {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.78);
    max-width: 60ch;
    margin: 1rem 0 0;
}

.camp-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.camp {
    display: grid;
    grid-template-columns: 80px 1fr 1.4fr 1.4fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), border-color 250ms var(--ease);
}
.camp:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 90, 95, 0.3);
    box-shadow: 0 20px 40px -25px rgba(11,26,48,0.2);
}
.camp__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
}
.camp__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    color: var(--navy);
}
.camp__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}
.camp__meta {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.camp__meta-row {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-soft);
}
.camp__meta-row svg {
    width: 18px;
    height: 18px;
    color: var(--coral);
    flex: 0 0 auto;
    margin-top: 1px;
}
.camp__focus h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 0.625rem;
    color: var(--coral);
}
.camp__focus ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.camp__focus li {
    font-size: 0.9375rem;
    color: var(--text-soft);
    padding-left: 1rem;
    position: relative;
}
.camp__focus li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.55em;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--coral);
}

.programme-overview {
    background: var(--cream);
    padding-block: 3rem;
}
.programme-overview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.overview-stat {
    text-align: left;
    padding: 1.25rem;
    border-left: 3px solid var(--coral);
}
.overview-stat__label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin: 0 0 0.5rem;
}
.overview-stat__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--navy);
    margin: 0;
    line-height: 1.4;
}

/* ---------- 15. Animations on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
    }
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}

/* ---------- 16. Responsive ---------- */
@media (max-width: 960px) {
    .what-we-do__grid,
    .programme__grid,
    .register__grid {
        grid-template-columns: 1fr;
    }
    .what-we-do__media { aspect-ratio: 16 / 11; max-height: 420px; }
    .tier-grid { grid-template-columns: 1fr 1fr; }
    .camp { grid-template-columns: 60px 1fr; gap: 1.25rem; }
    .camp__main, .camp__title-block { grid-column: span 1; }
    .camp__meta, .camp__focus { grid-column: 1 / -1; padding-left: 76px; }
    .programme-overview__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
    }
    .site-footer__brand { justify-content: center; }
    .site-footer__copy { text-align: center; }
}

@media (max-width: 720px) {
    .nav-toggle { display: inline-flex; }
    .primary-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem var(--gutter) 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 300ms var(--ease), opacity 200ms var(--ease);
    }
    .primary-nav.is-open {
        max-height: 400px;
        opacity: 1;
    }
    .primary-nav__link { font-size: 1rem; }
    .primary-nav__link.is-active::after { display: none; }

    .tier-grid { grid-template-columns: 1fr; }
    .pillars { grid-template-columns: repeat(2, 1fr); }
    .register-form__row { grid-template-columns: 1fr; }
    .programme-overview__grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 3.5rem; }
    .timeline__marker { left: -3.5rem; width: 4rem; font-size: 0.75rem; }
    .coaching__panel { padding: 1.75rem 1.5rem; }
    .hero__content { padding-block: 4rem 5rem; }
    .hero__scroll-cue { display: none; }
    .camp { padding: 1.5rem; }
    .camp__meta, .camp__focus { padding-left: 76px; }
}

@media (max-width: 480px) {
    .camp__meta, .camp__focus { padding-left: 0; }
}
