/* ============================================================
   APEX TRAINING — CUSTOM STYLES
   ============================================================ */

/* ---- Base ---- */
:root {
    --black: #0D0D0D;
    --black-2: #111210;
    --black-3: #0a0b09;
    --cu: #B87333;
    --cu-d: #7A4E28;
    --cu-l: #C8742A;
    --cu-p: #C8956A;
    --cu-pp: #DDB88A;
    --cu-dim: rgba(184,115,51,.12);
    --cu-line: rgba(184,115,51,.18);
    --white: #F5F0E8;
    --warm: #EDE5D8;
    --muted: rgba(245,240,232,.55);
    --dim: rgba(245,240,232,.38);
    --fd: 'Bebas Neue', sans-serif;
    --fb: 'DM Sans', sans-serif;
    --r: 2px;
    --nav-h: 64px;
    --ease: cubic-bezier(.4,0,.2,1);
}

html, body {
    overflow-x: clip;
}

body {
    font-family: var(--fb);
    background: var(--black);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* ---- WP Layout Overrides ---- */
/* Remove WP default margins between site blocks */
:where(.wp-site-blocks) > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

/* Prevent WP constrained layout from limiting our full-width sections */
.wp-block-post-content > * {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Remove WP template-part default padding */
.wp-block-template-part {
    margin-block-start: 0 !important;
}

/* Noise overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/* Remove WP blockGap on post-content */
.wp-block-post-content > * + * {
    margin-block-start: 0 !important;
}

/* ---- Skip link ---- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--cu);
    color: var(--white);
    padding: 8px 16px;
    z-index: 999;
    font-size: 14px;
}
.skip-link:focus {
    left: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.apex-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    padding: 0 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .4s var(--ease), border-color .4s;
    border-bottom: 1px solid transparent;
}
.apex-nav.scrolled {
    background: rgba(13,13,13,.95);
    border-color: rgba(184,115,51,.12);
    backdrop-filter: blur(14px);
}
.apex-nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}
.apex-nav-logo img,
.apex-nav-logo svg {
    height: 32px;
    width: auto;
}
.apex-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.apex-nav-links a {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245,240,232,.5);
    text-decoration: none;
    padding: 0 13px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(184,115,51,.1);
    transition: color .2s;
    position: relative;
}
.apex-nav-links a:hover {
    color: var(--white);
}
.apex-nav-links a.active {
    color: var(--white);
}
.apex-nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--cu);
    border-radius: 2px 2px 0 0;
}
.apex-nav-cta {
    background: var(--cu) !important;
    color: var(--white) !important;
    height: 38px !important;
    padding: 0 24px !important;
    border-left: none !important;
    border-radius: var(--r);
    margin-left: 14px;
    transition: background .2s !important;
}
.apex-nav-cta:hover {
    background: var(--cu-l) !important;
}
.apex-nav-cta.active::after {
    display: none !important;
}

/* Hamburger */
.apex-hbg {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.apex-hbg span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.apex-hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.apex-hbg.open span:nth-child(2) { opacity: 0; }
.apex-hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.apex-mmenu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,13,13,.97);
    z-index: 190;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.apex-mmenu.open {
    display: flex;
    animation: apex-fadein .2s ease;
}
.apex-mmenu a {
    font-family: var(--fd);
    font-size: 48px;
    letter-spacing: .06em;
    color: var(--white);
    text-decoration: none;
    opacity: .7;
    transition: opacity .2s, color .2s;
    line-height: 1;
}
.apex-mmenu a:hover {
    opacity: 1;
    color: var(--cu-p);
}
.apex-mmenu .apex-mmenu-cta {
    font-family: var(--fb) !important;
    font-size: 13px !important;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--cu);
    color: var(--white) !important;
    padding: 15px 44px;
    border-radius: var(--r);
    opacity: 1 !important;
    margin-top: 10px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 15px 34px;
    border-radius: var(--r);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s, color .2s, border-color .2s;
    border: none;
}
.btn-fill { background: var(--cu); color: var(--white); }
.btn-fill:hover { background: var(--cu-l); transform: translateY(-1px); }
.btn-outline { background: transparent; color: rgba(245,240,232,.65); border: 1px solid rgba(245,240,232,.22); }
.btn-outline:hover { color: var(--white); border-color: rgba(245,240,232,.55); }
.btn-cu-outline { background: transparent; color: var(--cu-p); border: 1px solid var(--cu-line); }
.btn-cu-outline:hover { background: rgba(184,115,51,.1); color: var(--white); border-color: var(--cu); }
.btn-white { background: var(--white); color: var(--cu-d); }
.btn-white:hover { background: var(--warm); transform: translateY(-1px); }
.btn-lg { padding: 18px 44px; font-size: 13px; }
.btn-sm { padding: 10px 22px; font-size: 11px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.sec { padding: 100px 60px; }
.sec-dark { background: var(--black-2); }
.sec-darker { background: var(--black-3); }
.sec-cu { background: var(--cu); }
.con { max-width: 1160px; margin: 0 auto; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.lbl {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cu-p);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.lbl::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--cu);
    flex-shrink: 0;
}
.sec-cu .lbl { color: rgba(245,240,232,.65); }
.sec-cu .lbl::before { background: rgba(245,240,232,.4); }

h1.ht, h2.ht {
    font-family: var(--fd);
    line-height: .9;
    letter-spacing: .02em;
    color: var(--white);
}
h1.ht { font-size: clamp(72px, 11vw, 148px); }
h2.ht { font-size: clamp(48px, 6.5vw, 84px); }
h2.ht-sm {
    font-family: var(--fd);
    font-size: clamp(40px, 5vw, 64px);
    line-height: .92;
    letter-spacing: .02em;
    color: var(--white);
}
.ht .c, .ht-sm .c { color: var(--cu-p); }
.sec-cu .ht, .sec-cu .ht-sm { color: var(--white); }

.dvd {
    width: 44px;
    height: 2px;
    background: var(--cu);
    margin-bottom: 36px;
}
.sec-cu .dvd { background: rgba(245,240,232,.4); }

p.lead {
    font-size: clamp(17px, 1.9vw, 21px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,240,232,.8);
    margin-bottom: 18px;
}
p.body {
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(245,240,232,.55);
    margin-bottom: 14px;
}
p.lead strong, p.body strong { color: var(--white); font-weight: 400; }

.pull {
    border-left: 3px solid var(--cu);
    padding: 6px 0 6px 26px;
    font-size: clamp(17px, 2vw, 24px);
    font-weight: 300;
    line-height: 1.5;
    color: var(--white);
    font-style: italic;
    margin: 32px 0;
}

/* ============================================================
   LAYOUTS
   ============================================================ */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.g2s { display: grid; grid-template-columns: 1.5fr 1fr; gap: 72px; align-items: start; }
.g2w { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ============================================================
   CARDS
   ============================================================ */
.card { background: var(--cu-dim); border: 1px solid var(--cu-line); border-radius: var(--r); padding: 32px; transition: border-color .2s, background .2s; }
.card:hover { border-color: rgba(184,115,51,.42); background: rgba(184,115,51,.09); }

/* ============================================================
   IMAGES
   ============================================================ */
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-dark { filter: brightness(.6) saturate(.8); transition: filter .5s, transform .5s; }
.img-dark:hover { filter: brightness(.75) saturate(.9); }
.img-wrap { position: relative; overflow: hidden; border-radius: var(--r); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.rev {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.rev.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.btt {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--cu);
    color: var(--white);
    border: none;
    border-radius: var(--r);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s, background .2s;
    pointer-events: none;
}
.btt.vis { opacity: 1; transform: translateY(0); pointer-events: auto; }
.btt:hover { background: var(--cu-l); }

/* ============================================================
   TENSION BAR (marquee)
   ============================================================ */
.tbar { background: var(--cu); padding: 13px 0; overflow: hidden; }
.tbar-inner { display: flex; white-space: nowrap; animation: apex-marquee 32s linear infinite; }
.ti { font-family: var(--fd); font-size: 16px; letter-spacing: .1em; color: rgba(245,240,232,.85); padding: 0 28px; flex-shrink: 0; }
.ti.s { color: var(--white); }
.tsep { width: 3px; height: 3px; border-radius: 50%; background: rgba(245,240,232,.28); flex-shrink: 0; align-self: center; }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(184,115,51,.1); }
.stat-item { padding: 36px 32px; border-right: 1px solid rgba(184,115,51,.08); position: relative; overflow: hidden; cursor: default; }
.stat-item:last-child { border-right: none; }
.stat-item::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--cu); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.stat-item:hover::before { transform: scaleX(1); }
.stat-n { font-family: var(--fd); font-size: clamp(44px, 5vw, 64px); line-height: 1; color: var(--white); }
.stat-l { font-size: 13px; font-weight: 300; line-height: 1.5; color: rgba(245,240,232,.42); margin-top: 6px; }

/* ============================================================
   HOMEPAGE: HERO
   ============================================================ */
.hero-home {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(.45) saturate(.7);
    transform: scale(1.06);
    animation: apex-heroZoom 12s ease-out forwards;
}
.hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,.9) 38%, rgba(13,13,13,.15) 100%),
                linear-gradient(to top, rgba(13,13,13,.95) 0%, transparent 60%);
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-grid-lines::before,
.hero-grid-lines::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(184,115,51,.12) 30%, rgba(184,115,51,.12) 70%, transparent 100%);
    animation: apex-gridFade 2s ease forwards;
    opacity: 0;
}
.hero-grid-lines::before { left: 33.33%; animation-delay: .8s; }
.hero-grid-lines::after { left: 66.66%; animation-delay: 1s; }

.hero-con {
    position: relative;
    z-index: 2;
    padding: calc(var(--nav-h) + 40px) 80px 88px;
    max-width: 780px;
}
.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--cu-p);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: apex-slideIn .6s var(--ease) forwards .3s;
}
.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--cu);
    flex-shrink: 0;
}
.hero-h1 {
    font-family: var(--fd);
    font-size: clamp(88px, 13vw, 172px);
    line-height: .86;
    letter-spacing: .01em;
    color: var(--white);
    margin-bottom: 18px;
    opacity: 0;
    animation: apex-slideUp .8s var(--ease) forwards .5s;
}
.hero-h1 .c { color: var(--cu-p); }
.hero-line {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(245,240,232,.68);
    max-width: 500px;
    margin-bottom: 28px;
    opacity: 0;
    animation: apex-slideUp .7s var(--ease) forwards .75s;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: apex-slideUp .7s var(--ease) forwards .95s;
}
.hero-badge {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    animation: apex-badgePop .8s var(--ease) forwards 1.4s;
}
.badge-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(184,115,51,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: apex-badgeSpin 20s linear infinite;
}
.badge-ring svg { position: absolute; width: 100%; height: 100%; }
.badge-inner {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: rgba(13,13,13,.7);
    border: 1px solid rgba(184,115,51,.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    animation: apex-badgeSpin 20s linear infinite reverse;
    backdrop-filter: blur(8px);
}
.badge-n { font-family: var(--fd); font-size: 40px; line-height: 1; color: var(--white); }
.badge-l { font-size: 9px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--cu-p); }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(184,115,51,.2);
    flex-wrap: wrap;
    opacity: 0;
    animation: apex-slideUp .7s var(--ease) forwards 1.15s;
}
.hs { border-left: 2px solid var(--cu); padding-left: 14px; cursor: default; }
.hs-n { font-family: var(--fd); font-size: 38px; line-height: 1; color: var(--white); transition: color .2s; }
.hs:hover .hs-n { color: var(--cu-p); }
.hs-l { font-size: 11px; font-weight: 300; letter-spacing: .06em; color: rgba(245,240,232,.4); margin-top: 4px; }

.hero-scroll {
    position: absolute;
    right: 44px;
    bottom: 44px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: apex-fadein 1s ease forwards 1.6s;
}
.scl { width: 1px; height: 52px; background: linear-gradient(to bottom, transparent, var(--cu)); animation: apex-spulse 2.2s ease-in-out infinite; }
.scl-t { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--cu-p); writing-mode: vertical-rl; transform: rotate(180deg); }

/* Cursor glow */
.cursor-glow {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,115,51,.06) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity .4s;
    mix-blend-mode: screen;
}

/* ============================================================
   HOMEPAGE: WHY SECTION
   ============================================================ */
.why-img-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    height: 520px;
}
.why-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.65) saturate(.8);
    transition: filter .6s, transform 8s;
}
.why-img-wrap:hover img {
    filter: brightness(.75) saturate(.9);
    transform: scale(1.04);
}
.why-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(13,13,13,.85) 0%, transparent 100%);
    z-index: 2;
}
.why-caption-t { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--cu-p); }
.why-caption-s { font-size: 11px; font-weight: 300; color: rgba(245,240,232,.42); margin-top: 3px; }

/* ============================================================
   HOMEPAGE: ROUTES
   ============================================================ */
.rg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 44px; }
.rc {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    opacity: 0;
    transform: translateY(32px);
}
.rc.vis {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.rc:nth-child(1).vis { transition-delay: .05s; }
.rc:nth-child(2).vis { transition-delay: .15s; }
.rc:nth-child(3).vis { transition-delay: .25s; }
.rc:nth-child(4).vis { transition-delay: .35s; }
.rc img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    filter: brightness(.5) saturate(.7);
    transition: filter .6s var(--ease), transform .7s var(--ease);
    display: block;
}
.rc:hover img { filter: brightness(.72) saturate(.9); transform: scale(1.06); }
.rc-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,.92) 0%, rgba(13,13,13,.1) 65%, transparent 100%); }
.rc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; z-index: 2; }
.rc-tag { font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; background: var(--cu); color: var(--white); padding: 2px 9px; border-radius: 2px; display: inline-block; margin-bottom: 10px; }
.rc-name { font-family: var(--fd); font-size: 28px; letter-spacing: .03em; color: var(--white); line-height: 1; margin-bottom: 6px; }
.rc-sub { font-size: 13px; font-weight: 300; color: rgba(245,240,232,.58); font-style: italic; margin-bottom: 14px; line-height: 1.4; }
.rc-link { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--cu-p); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s, gap .2s; }
.rc-link:hover { color: var(--white); gap: 10px; }
.rc-link::after { content: '\2192'; }
.rc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--cu); transform: scaleX(0); transition: transform .4s var(--ease); z-index: 3; }
.rc:hover::before { transform: scaleX(1); }

/* ============================================================
   HOMEPAGE: GYM SLIDESHOW
   ============================================================ */
.gs-wrap { position: relative; height: 100svh; overflow: hidden; background: var(--black); cursor: grab; }
.gs-wrap:active { cursor: grabbing; }
.gs-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s cubic-bezier(.4,0,.2,1); pointer-events: none; }
.gs-slide.active { opacity: 1; pointer-events: auto; }
.gs-photo { position: absolute; inset: -8%; background-size: cover; background-position: center; filter: brightness(.52) saturate(.72); }
.gs-slide.active .gs-photo { animation: apex-kb 8s ease-out forwards; }
.gs-ov { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 30%, rgba(13,13,13,.5) 100%), linear-gradient(to top, rgba(13,13,13,.9) 0%, rgba(13,13,13,.18) 48%, transparent 72%), linear-gradient(to right, rgba(13,13,13,.65) 0%, transparent 60%); }
.gs-con { position: absolute; bottom: 14%; left: 8%; z-index: 2; max-width: 640px; }
.gs-lbl { display: block; font-size: 11px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 14px; opacity: 0; transform: translateY(14px); transition: opacity .6s ease .3s, transform .6s ease .3s; }
.gs-slide.active .gs-lbl { opacity: 1; transform: translateY(0); }
.gs-t { font-family: var(--fd); font-size: clamp(64px, 10vw, 128px); line-height: .88; letter-spacing: .01em; color: var(--white); margin-bottom: 16px; opacity: 0; transform: translateY(22px); transition: opacity .7s ease .5s, transform .7s ease .5s; }
.gs-slide.active .gs-t { opacity: 1; transform: translateY(0); }
.gs-s { font-size: clamp(14px, 1.6vw, 18px); font-weight: 300; color: rgba(245,240,232,.62); letter-spacing: .04em; opacity: 0; transform: translateY(14px); transition: opacity .6s ease .7s, transform .6s ease .7s; }
.gs-slide.active .gs-s { opacity: 1; transform: translateY(0); }
.gs-counter { position: absolute; right: 52px; top: 50%; transform: translateY(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gs-dots { display: flex; flex-direction: column; gap: 8px; }
.gs-dot { width: 3px; height: 24px; background: rgba(245,240,232,.2); border: none; cursor: pointer; border-radius: 2px; transition: background .3s, height .3s; padding: 0; }
.gs-dot.active { background: var(--cu); height: 40px; }
.gs-num { font-family: var(--fd); font-size: 13px; color: rgba(245,240,232,.3); letter-spacing: .1em; }
.gs-arr { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; background: rgba(13,13,13,.3); border: 1px solid rgba(184,115,51,.18); color: rgba(245,240,232,.65); font-size: 16px; cursor: pointer; z-index: 10; border-radius: var(--r); transition: background .2s, border-color .2s, color .2s; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.gs-arr:hover { background: rgba(184,115,51,.22); border-color: var(--cu); color: var(--white); }
.gs-prev { left: 24px; }
.gs-prog { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(245,240,232,.06); z-index: 10; }
.gs-fill { height: 100%; background: var(--cu); width: 0%; transition: width 5s linear; }

/* ============================================================
   HOMEPAGE: QUOTES
   ============================================================ */
.qstrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.qcard { background: var(--cu-dim); border: 1px solid var(--cu-line); border-radius: var(--r); padding: 32px; position: relative; transition: border-color .3s, transform .3s var(--ease); cursor: default; }
.qcard:hover { border-color: rgba(184,115,51,.5); transform: translateY(-4px); }
.qm { font-family: var(--fd); font-size: 64px; color: var(--cu); line-height: 0; position: absolute; top: 34px; left: 24px; opacity: .55; }
.qtag { font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; background: var(--cu); color: var(--white); padding: 2px 9px; border-radius: 2px; display: inline-block; margin-bottom: 22px; }
.qt { font-size: 14px; font-weight: 300; line-height: 1.82; color: rgba(245,240,232,.72); font-style: italic; margin-bottom: 20px; padding-top: 10px; }
.qa { display: flex; gap: 11px; align-items: center; }
.qav { width: 38px; height: 38px; border-radius: 50%; background: var(--cu); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 18px; color: var(--white); flex-shrink: 0; }
.qn { font-size: 13px; font-weight: 500; color: var(--white); }
.qr { font-size: 11px; font-weight: 300; color: var(--cu-p); margin-top: 2px; }

/* ============================================================
   HOMEPAGE: CTA SECTION
   ============================================================ */
.cta-section { padding: 100px 60px; background: var(--cu); position: relative; overflow: hidden; }
.cta-bg-txt { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--fd); font-size: 16vw; color: rgba(0,0,0,.1); white-space: nowrap; pointer-events: none; letter-spacing: .02em; animation: apex-ctaFloat 8s ease-in-out infinite; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #080907; padding: 64px 60px 32px; border-top: 1px solid rgba(184,115,51,.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--fd); font-size: 20px; letter-spacing: .1em; color: var(--white); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-logo img,
.footer-logo svg { height: 24px; width: auto; }
.footer-sub { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(245,240,232,.3); max-width: 240px; margin-bottom: 18px; }
.footer-soc { display: flex; gap: 8px; }
.footer-soc a { font-size: 16px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(184,115,51,.1); border: 1px solid rgba(184,115,51,.18); color: var(--cu-p); text-decoration: none; border-radius: var(--r); transition: all .2s; }
.footer-soc a:hover { background: rgba(184,115,51,.2); color: var(--white); }
.site-footer h4 { font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 16px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 0; padding: 0; }
.site-footer li a { font-size: 13px; font-weight: 300; color: rgba(245,240,232,.32); text-decoration: none; transition: color .2s; }
.site-footer li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(184,115,51,.08); }
.footer-bottom p { font-size: 11px; font-weight: 300; color: rgba(245,240,232,.18); margin: 0; }
.footer-tagline { font-family: var(--fd); font-size: 14px; letter-spacing: .14em; color: rgba(184,115,51,.28); }

/* ============================================================
   MOBILE CTA BAR
   ============================================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 10px 16px;
    background: rgba(13,13,13,.95);
    border-top: 1px solid rgba(184,115,51,.15);
    backdrop-filter: blur(10px);
    gap: 8px;
}
.mcta-secondary {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cu-p);
    text-decoration: none;
    padding: 12px 20px;
    border: 1px solid var(--cu-line);
    border-radius: var(--r);
    text-align: center;
}
.mcta-primary {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--cu);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: var(--r);
    text-align: center;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes apex-fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes apex-slideIn { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }
@keyframes apex-slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes apex-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes apex-spulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes apex-kb { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes apex-heroZoom { to { transform: scale(1); } }
@keyframes apex-gridFade { to { opacity: 1; } }
@keyframes apex-badgePop { from { opacity: 0; transform: translateY(-50%) scale(.85); } to { opacity: 1; transform: translateY(-50%) scale(1); } }
@keyframes apex-badgeSpin { to { transform: rotate(360deg); } }
@keyframes apex-ctaFloat { 0%, 100% { transform: translate(-50%, -50%) translateY(0); } 50% { transform: translate(-50%, -50%) translateY(-12px); } }

/* ============================================================
   CROSSFIT ATD: HERO
   ============================================================ */
.cf-hero { min-height: 100svh; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: end; }
.cf-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.42) saturate(.7); transform: scale(1.04); animation: apex-heroZoom 12s ease-out forwards; }
.cf-hero-ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,13,13,.94) 50%, rgba(13,13,13,.2) 100%), linear-gradient(to top, rgba(13,13,13,.95) 0%, transparent 55%); }
.cf-hero-grid { position: absolute; inset: 0; pointer-events: none; }
.cf-hero-grid::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(184,115,51,.15) 40%, rgba(184,115,51,.15) 60%, transparent); animation: apex-gridFade 2s ease forwards .6s; opacity: 0; }
.cf-con { position: relative; z-index: 2; padding: calc(var(--nav-h) + 24px) 80px 88px; max-width: 680px; }
.cf-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; opacity: 0; animation: apex-slideIn .6s var(--ease) forwards .3s; }
.cf-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--cu); flex-shrink: 0; }
.cf-h1 { font-family: var(--fd); font-size: clamp(72px, 10vw, 144px); line-height: .86; letter-spacing: .01em; color: var(--white); margin-bottom: 24px; opacity: 0; animation: apex-slideUp .8s var(--ease) forwards .5s; }
.cf-h1 .c { color: var(--cu-p); }
.cf-lead { font-size: clamp(16px, 1.7vw, 19px); font-weight: 300; line-height: 1.65; color: rgba(245,240,232,.65); max-width: 420px; margin-bottom: 40px; opacity: 0; animation: apex-slideUp .7s var(--ease) forwards .75s; }
.cf-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: apex-slideUp .7s var(--ease) forwards .95s; }
.cf-panel { position: relative; z-index: 2; padding: 80px 80px 88px 40px; display: flex; flex-direction: column; justify-content: flex-end; gap: 16px; }
.cf-stat-v { opacity: 0; animation: apex-slideUp .6s var(--ease) forwards; }
.cf-stat-v:nth-child(1) { animation-delay: .7s; }
.cf-stat-v:nth-child(2) { animation-delay: .85s; }
.cf-stat-v:nth-child(3) { animation-delay: 1s; }
.cf-stat-n { font-family: var(--fd); font-size: clamp(52px, 6vw, 80px); line-height: 1; color: var(--white); }
.cf-stat-l { font-size: 12px; font-weight: 300; color: rgba(245,240,232,.38); letter-spacing: .06em; margin-top: 4px; border-left: 2px solid var(--cu); padding-left: 10px; }
.cf-scroll { position: absolute; right: 44px; bottom: 44px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: apex-fadein 1s ease forwards 1.4s; }
.cf-scl { width: 1px; height: 52px; background: linear-gradient(to bottom, transparent, var(--cu)); animation: apex-spulse 2.2s ease-in-out infinite; }
.cf-scl-t { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--cu-p); writing-mode: vertical-rl; transform: rotate(180deg); }

/* ============================================================
   CROSSFIT ATD: ON-RAMP TIMELINE
   ============================================================ */
.tl { display: flex; flex-direction: column; gap: 0; position: relative; margin-top: 44px; }
.tl::before { content: ''; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 1px; background: linear-gradient(to bottom, var(--cu), rgba(184,115,51,.08)); }
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding-bottom: 36px; opacity: 0; transform: translateX(-16px); transition: opacity .6s ease, transform .6s ease; }
.tl-step.vis { opacity: 1; transform: none; }
.tl-step:nth-child(1).vis { transition-delay: .1s; }
.tl-step:nth-child(2).vis { transition-delay: .22s; }
.tl-step:nth-child(3).vis { transition-delay: .34s; }
.tl-step:last-child { padding-bottom: 0; }
.tl-num { width: 56px; height: 56px; border-radius: 50%; background: var(--cu); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 22px; color: var(--white); flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 0 0 4px var(--black); }
.tl-body { padding-top: 14px; }
.tl-step:nth-child(2) .tl-num { background: rgba(184,115,51,.7); }
.tl-step:nth-child(3) .tl-num { background: rgba(184,115,51,.45); }

/* ============================================================
   CROSSFIT ATD: FOR-WHO SPLIT
   ============================================================ */
.fw { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 44px; }
.fw-yes { background: rgba(184,115,51,.08); border: 1px solid rgba(184,115,51,.22); border-radius: 2px 0 0 2px; padding: 32px; }
.fw-no { background: rgba(245,240,232,.02); border: 1px solid rgba(245,240,232,.07); border-radius: 0 2px 2px 0; padding: 32px; }
.fw-l { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(184,115,51,.18); }
.fw-no .fw-l { color: rgba(245,240,232,.28); border-color: rgba(245,240,232,.08); }
.fw-item { font-size: 14px; font-weight: 300; line-height: 1.65; color: rgba(245,240,232,.68); display: flex; gap: 10px; margin-bottom: 11px; }
.fw-item::before { content: '\2713'; color: var(--cu-p); flex-shrink: 0; }
.fw-no .fw-item::before { content: '\2717'; color: rgba(245,240,232,.2); }
.fw-no .fw-item { color: rgba(245,240,232,.35); }

/* ============================================================
   PRICING (reusable)
   ============================================================ */
.abn-list { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; }
.abn-row { padding: 18px 22px; background: rgba(184,115,51,.07); border: 1px solid rgba(184,115,51,.14); border-radius: 2px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; transition: background .2s, border-color .2s; }
.abn-row:hover { background: rgba(184,115,51,.12); border-color: rgba(184,115,51,.38); }
.abn-row.pop { background: rgba(184,115,51,.11); border-color: var(--cu); }
.abn-name { font-size: 15px; font-weight: 500; color: var(--white); }
.abn-cr { font-size: 12px; font-weight: 300; color: rgba(245,240,232,.38); margin-top: 2px; }
.abn-p { font-family: var(--fd); font-size: 30px; color: var(--white); }
.abn-p span { font-family: var(--fb); font-size: 13px; color: var(--cu-p); margin-left: 2px; }
.pill { font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; background: var(--cu); color: var(--white); padding: 2px 8px; border-radius: 2px; margin-left: 8px; }

/* ============================================================
   IMAGE GRADIENT OVERLAY
   ============================================================ */
.img-grad-b { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,.7) 0%, transparent 55%); pointer-events: none; }

/* ============================================================
   HYROX HERO
   ============================================================ */
.hx-hero { min-height: 100svh; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.hx-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 35%; filter: brightness(.38) saturate(.65); transform: scale(1.06); animation: apex-heroZoom 14s ease-out forwards; }
.hx-hero-ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,13,13,.96) 45%, rgba(13,13,13,.1) 100%), linear-gradient(to top, rgba(13,13,13,.98) 0%, transparent 55%); }
.hx-con { position: relative; z-index: 2; padding: calc(var(--nav-h) + 24px) 80px 88px; max-width: 740px; }
.hx-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; opacity: 0; animation: apex-slideIn .6s var(--ease) forwards .3s; }
.hx-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--cu); flex-shrink: 0; }
.hx-h1 { font-family: var(--fd); font-size: clamp(52px, 8.5vw, 124px); line-height: .87; letter-spacing: .01em; color: var(--white); margin-bottom: 28px; opacity: 0; animation: apex-slideUp .8s var(--ease) forwards .5s; }
.hx-h1 .c { color: var(--cu-p); }
.hx-lead { font-size: clamp(16px, 1.7vw, 19px); font-weight: 300; line-height: 1.65; color: rgba(245,240,232,.65); max-width: 480px; margin-bottom: 40px; opacity: 0; animation: apex-slideUp .7s var(--ease) forwards .75s; }
.hx-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: apex-slideUp .7s var(--ease) forwards .95s; }
.hx-badge { position: absolute; right: 72px; bottom: 100px; z-index: 1; opacity: 0; animation: apex-slideUp .8s var(--ease) forwards 1.1s; pointer-events: none; }
.hx-badge-n { font-family: var(--fd); font-size: clamp(120px, 14vw, 200px); line-height: .9; color: rgba(184,115,51,.12); letter-spacing: -.02em; }
.hx-badge-l { font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(184,115,51,.4); text-align: right; margin-top: 8px; }
.hx-scroll { position: absolute; right: 44px; top: 50%; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: apex-fadein 1s ease forwards 1.6s; }
.hx-scl { width: 1px; height: 52px; background: linear-gradient(to bottom, transparent, var(--cu)); animation: apex-spulse 2.2s ease-in-out infinite; }
.hx-scl-t { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--cu-p); writing-mode: vertical-rl; transform: rotate(180deg); }

/* Stations grid */
.stations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 44px; }
.station { padding: 22px 18px; background: rgba(184,115,51,.07); border: 1px solid rgba(184,115,51,.14); border-radius: 2px; text-align: center; transition: background .2s, border-color .2s, transform .2s; cursor: default; }
.station:hover { background: rgba(184,115,51,.15); border-color: var(--cu); transform: translateY(-4px); }
.st-n { font-family: var(--fd); font-size: 36px; color: var(--cu-p); line-height: 1; margin-bottom: 6px; }
.st-name { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.st-sub { font-size: 11px; font-weight: 300; color: rgba(245,240,232,.38); }

/* Progress bars */
.prog-wrap { display: flex; flex-direction: column; gap: 16px; margin-top: 44px; }
.prog-row { display: grid; grid-template-columns: 220px 1fr 52px; gap: 16px; align-items: center; }
.prog-lbl { font-size: 13px; font-weight: 300; color: rgba(245,240,232,.65); }
.prog-track { height: 5px; background: rgba(184,115,51,.12); border-radius: 3px; overflow: hidden; }
.prog-fill { height: 100%; background: var(--cu); border-radius: 3px; width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.prog-val { font-family: var(--fd); font-size: 16px; color: var(--cu-p); text-align: right; }

/* ============================================================
   COMMUNITY: HERO
   ============================================================ */
.comm-hero-above { min-height: 100svh; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.comm-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.4) saturate(.65); transform: scale(1.04); animation: apex-heroZoom 12s ease-out forwards; }
.comm-hero-ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,13,13,.94) 40%, rgba(13,13,13,.15) 100%), linear-gradient(to top, rgba(13,13,13,.96) 0%, transparent 55%); }
.comm-hero-con { position: relative; z-index: 2; padding: calc(var(--nav-h) + 24px) 80px 88px; max-width: 720px; }
.comm-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; opacity: 0; animation: apex-slideIn .6s var(--ease) forwards .3s; }
.comm-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--cu); flex-shrink: 0; }
.comm-h1 { font-family: var(--fd); font-size: clamp(64px, 9vw, 130px); line-height: .87; letter-spacing: .01em; color: var(--white); margin-bottom: 24px; opacity: 0; animation: apex-slideUp .8s var(--ease) forwards .5s; }
.comm-h1 .c { color: var(--cu-p); }
.comm-sub { font-size: clamp(16px, 1.7vw, 19px); font-weight: 300; line-height: 1.65; color: rgba(245,240,232,.62); max-width: 460px; margin-bottom: 40px; opacity: 0; animation: apex-slideUp .7s var(--ease) forwards .75s; }
.comm-stats { display: flex; gap: 24px; flex-wrap: wrap; opacity: 0; animation: apex-slideUp .7s var(--ease) forwards .95s; }
.comm-stat { border-left: 2px solid var(--cu); padding-left: 12px; }
.comm-stat-n { font-family: var(--fd); font-size: 32px; line-height: 1; color: var(--white); }
.comm-stat-l { font-size: 11px; font-weight: 300; color: rgba(245,240,232,.4); margin-top: 3px; }
.comm-scroll { position: absolute; right: 44px; bottom: 44px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: apex-fadein 1s ease forwards 1.4s; }

/* ============================================================
   COACHES: HERO
   ============================================================ */
.co-hero { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.co-hero-left { position: relative; overflow: hidden; }
.co-hero-photo { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.55) saturate(.8); }
.co-hero-left-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,.85) 0%, transparent 50%); }
.co-hero-caption { position: absolute; bottom: 32px; left: 32px; z-index: 2; }
.co-caption-name { font-family: var(--fd); font-size: 28px; color: var(--white); letter-spacing: .04em; }
.co-caption-role { font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--cu-p); margin-top: 4px; }
.co-hero-right { display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--nav-h) + 40px) 60px 80px; background: var(--black); position: relative; }
.co-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; opacity: 0; animation: apex-slideIn .6s var(--ease) forwards .3s; }
.co-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--cu); flex-shrink: 0; }
.co-h1 { font-family: var(--fd); font-size: clamp(48px, 6vw, 88px); line-height: .88; letter-spacing: .01em; color: var(--white); margin-bottom: 22px; opacity: 0; animation: apex-slideUp .8s var(--ease) forwards .5s; }
.co-lead { font-size: clamp(16px, 1.7vw, 19px); font-weight: 300; line-height: 1.65; color: rgba(245,240,232,.62); max-width: 440px; margin-bottom: 36px; opacity: 0; animation: apex-slideUp .7s var(--ease) forwards .75s; }
.co-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: apex-slideUp .7s var(--ease) forwards .95s; }

/* Coach card */
.coach-card { position: relative; overflow: hidden; border-radius: var(--r); }
.coach-photo { width: 100%; height: 360px; object-fit: cover; filter: brightness(.6) saturate(.8); transition: filter .5s, transform .6s; display: block; }
.coach-card:hover .coach-photo { filter: brightness(.75) saturate(.9); transform: scale(1.04); }
.coach-photo-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,.88) 0%, transparent 55%); pointer-events: none; }
.coach-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; }
.coach-name { font-family: var(--fd); font-size: 24px; color: var(--white); letter-spacing: .04em; margin-bottom: 4px; }
.coach-role { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 12px; }
.coach-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ctag { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; background: rgba(184,115,51,.12); border: 1px solid rgba(184,115,51,.22); border-radius: 2px; color: var(--cu-p); }

/* Values grid */
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 44px; }
.val-item { padding: 28px 24px; background: var(--cu-dim); border: 1px solid var(--cu-line); border-radius: var(--r); transition: background .2s, border-color .2s; cursor: default; }
.val-item:hover { background: rgba(184,115,51,.14); border-color: rgba(184,115,51,.4); }
.val-n { font-family: var(--fd); font-size: 22px; color: var(--white); letter-spacing: .04em; margin-bottom: 8px; }
.val-l { font-size: 13px; font-weight: 300; line-height: 1.6; color: rgba(245,240,232,.52); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding: calc(var(--nav-h) + 80px) 60px 80px;
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.ph-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.42) saturate(.7);
    transform: scale(1.04);
    animation: apex-kb 10s ease-out forwards;
}
.ph-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,.92) 40%, rgba(13,13,13,.28) 100%),
                linear-gradient(to top, rgba(13,13,13,.95) 0%, transparent 60%);
}
.ph-con { position: relative; z-index: 2; max-width: 700px; }
.ph-lbl {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--cu-p);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: apex-slideIn .6s var(--ease) forwards .2s;
}
.ph-lbl::before { content: ''; width: 28px; height: 1px; background: var(--cu); flex-shrink: 0; }
.ph-h1 {
    font-family: var(--fd);
    font-size: clamp(64px, 9vw, 120px);
    line-height: .88;
    letter-spacing: .01em;
    color: var(--white);
    margin-bottom: 22px;
    opacity: 0;
    animation: apex-slideUp .8s var(--ease) forwards .4s;
}
.ph-h1 .c { color: var(--cu-p); }
.ph-lead {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(245,240,232,.72);
    max-width: 520px;
    opacity: 0;
    animation: apex-slideUp .7s var(--ease) forwards .65s;
}
.ph-scroll {
    position: absolute;
    right: 44px;
    bottom: 44px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: apex-fadein 1s ease forwards 1.2s;
}

/* ============================================================
   AANPAK: DIFF COMPARISON
   ============================================================ */
.diff-wrap { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0; margin-top: 44px; overflow: hidden; }
.diff-col { padding: 36px 32px; opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.diff-col.vis { opacity: 1; transform: translateY(0); }
.diff-col.no-col { transition-delay: .1s; }
.diff-col.yes-col { transition-delay: .2s; opacity: .55; }
.diff-col.yes-col.vis { opacity: 1; }
.diff-sep { background: rgba(184,115,51,.2); opacity: 0; transition: opacity .5s .3s; }
.diff-sep.vis { opacity: 1; }
.dl { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(184,115,51,.18); }
.diff-col.no-col .dl { color: rgba(245,240,232,.28); border-color: rgba(245,240,232,.08); }
.di { font-size: 14px; font-weight: 300; line-height: 1.65; color: rgba(245,240,232,.65); display: flex; gap: 10px; margin-bottom: 12px; }
.di::before { content: '\2713'; color: var(--cu-p); flex-shrink: 0; }
.diff-col.no-col .di::before { content: '\2717'; color: rgba(245,240,232,.22); }
.diff-col.no-col .di { color: rgba(245,240,232,.35); }

/* ============================================================
   AANPAK: PYRAMIDS
   ============================================================ */
.pyr-visual-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.pyr-visual { background: var(--black-2); border: 1px solid rgba(184,115,51,.15); border-radius: var(--r); padding: 32px; overflow: hidden; }
.pyr-visual h3 { font-family: var(--fd); font-size: 24px; letter-spacing: .08em; color: var(--white); margin-bottom: 6px; }
.pyr-subtitle { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 24px; }
.pyr-svg { width: 100%; max-width: 280px; display: block; margin: 0 auto 24px; }
.pyr-layers { display: flex; flex-direction: column; gap: 2px; }
.pl { padding: 14px 18px; background: rgba(184,115,51,.06); border-left: 3px solid rgba(184,115,51,.25); transition: background .2s, border-color .2s; }
.pl:hover { background: rgba(184,115,51,.12); border-color: var(--cu); }
.pl:first-child { background: rgba(184,115,51,.1); border-color: rgba(184,115,51,.5); }
.pl-n { font-family: var(--fd); font-size: 20px; letter-spacing: .06em; color: var(--cu-p); margin-bottom: 3px; }
.pl:first-child .pl-n { color: var(--cu-pp); }
.pl-d { font-size: 12px; font-weight: 300; line-height: 1.55; color: rgba(245,240,232,.52); }

/* ============================================================
   AANPAK: OVERLAP ROW
   ============================================================ */
.ov-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 8px; }
.ov-i { padding: 18px 20px; background: var(--cu-dim); border: 1px solid var(--cu-line); border-radius: var(--r); transition: background .2s; }
.ov-i:hover { background: rgba(184,115,51,.14); }
.ov-f { font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--cu-p); margin-bottom: 3px; }
.ov-a { font-size: 11px; color: rgba(245,240,232,.28); margin-bottom: 3px; }
.ov-t { font-family: var(--fd); font-size: 24px; letter-spacing: .04em; color: var(--white); }

/* ============================================================
   AANPAK: PRINCIPLES TIMELINE
   ============================================================ */
.timeline { position: relative; margin-top: 48px; }
.tl-line { position: absolute; top: 28px; left: 28px; right: 28px; height: 1px; background: rgba(184,115,51,.2); }
.tl-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tl-item { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.tl-item.vis { opacity: 1; transform: translateY(0); }
.tl-item:nth-child(1).vis { transition-delay: .05s; }
.tl-item:nth-child(2).vis { transition-delay: .15s; }
.tl-item:nth-child(3).vis { transition-delay: .25s; }
.tl-item:nth-child(4).vis { transition-delay: .35s; }
.tl-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--cu-dim); border: 1px solid var(--cu-line); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-family: var(--fd); font-size: 22px; color: var(--cu-p); transition: background .2s, border-color .2s; }
.tl-item:hover .tl-dot { background: rgba(184,115,51,.18); border-color: var(--cu); }
.tl-h { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.tl-d { font-size: 13px; font-weight: 300; line-height: 1.65; color: rgba(245,240,232,.52); }

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip { height: 440px; overflow: hidden; position: relative; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.52) saturate(.75); }
.photo-strip-ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,13,13,.75) 0%, transparent 55%), linear-gradient(to top, rgba(13,13,13,.65) 0%, transparent 50%); }
.photo-strip-txt { position: absolute; bottom: 0; left: 0; right: 0; padding: 44px 60px; z-index: 2; max-width: 640px; }
.photo-strip-txt p { font-family: var(--fd); font-size: clamp(32px, 4.5vw, 54px); line-height: .92; color: var(--white); letter-spacing: .02em; }
.photo-strip-txt .c { color: var(--cu-p); }
.photo-strip-cta { margin-top: 20px; display: inline-flex; }

/* ============================================================
   CTA BG TEXT (reusable)
   ============================================================ */
.cta-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--fd); font-size: 14vw; color: rgba(0,0,0,.1); white-space: nowrap; pointer-events: none; animation: apex-ctaFloat 8s ease-in-out infinite; }

/* ============================================================
   BULLET LIST (reusable)
   ============================================================ */
.blist { list-style: none; display: flex; flex-direction: column; gap: 13px; padding: 0; margin: 0; }
.blist li { display: flex; gap: 12px; align-items: flex-start; font-size: clamp(14px, 1.4vw, 16px); font-weight: 300; line-height: 1.65; color: rgba(245,240,232,.7); }
.blist li::before { content: '\2014'; color: var(--cu-p); flex-shrink: 0; margin-top: 1px; }
.blist li strong { color: var(--white); font-weight: 400; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .apex-nav { padding: 0 24px; }
    .apex-nav-links, .apex-nav-cta { display: none; }
    .apex-hbg { display: flex; }
    .hero-con { padding: 0 28px 72px; }
    .hero-badge, .hero-scroll, .hero-grid-lines { display: none; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stat-item { border-bottom: 1px solid rgba(184,115,51,.08); }
    .sec { padding: 72px 28px; }
    .g2, .g2s, .g2w, .g3, .g4 { grid-template-columns: 1fr; gap: 36px; }
    .rg { grid-template-columns: 1fr 1fr; gap: 3px; }
    .rc img { height: 260px; }
    .qstrip { grid-template-columns: 1fr; }
    .gs-counter, .gs-arr { display: none; }
    .gs-t { font-size: clamp(52px, 14vw, 80px); }
    .cta-section { padding: 72px 28px; }
    .site-footer { padding: 48px 28px 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .mobile-cta { display: flex; }
    /* Page hero */
    .page-hero { padding: calc(var(--nav-h) + 44px) 28px 60px; min-height: auto; }
    .ph-scroll { display: none; }
    /* CrossFit ATD */
    .cf-hero { grid-template-columns: 1fr; }
    .cf-panel { display: none; }
    .cf-con { padding: calc(var(--nav-h) + 20px) 28px 72px; max-width: 100%; }
    .cf-scroll { display: none; }
    .fw { grid-template-columns: 1fr; }
    .fw-yes { border-radius: 2px 2px 0 0; }
    .fw-no { border-radius: 0 0 2px 2px; }
    /* HYROX */
    .hx-con { padding: calc(var(--nav-h) + 20px) 28px 72px; max-width: 100%; }
    .hx-badge, .hx-scroll { display: none; }
    .stations { grid-template-columns: 1fr 1fr; }
    .prog-row { grid-template-columns: 110px 1fr 44px; }
    /* Community */
    .comm-hero-con { padding: calc(var(--nav-h) + 20px) 28px 72px; }
    .comm-scroll { display: none; }
    /* Coaches */
    .co-hero { grid-template-columns: 1fr; }
    .co-hero-left { height: 50vh; }
    .co-hero-right { padding: 40px 28px 60px; }
    .val-grid { grid-template-columns: 1fr; }
    /* Aanpak */
    .diff-wrap { grid-template-columns: 1fr; gap: 0; }
    .diff-sep { height: 1px; background: rgba(184,115,51,.2); }
    .pyr-visual-wrap { grid-template-columns: 1fr; }
    .ov-row { grid-template-columns: 1fr; }
    .tl-items { grid-template-columns: 1fr 1fr; }
    .photo-strip-txt { padding: 28px; }
}

/* ---- Utility classes ---- */
.v-opacity-70 { opacity: .7; }
.v-opacity-90 { opacity: .9; }
.v-opacity-95 { opacity: .95; }
.v-narrow-500 { max-width: 500px; margin-left: auto; margin-right: auto; }
.v-narrow-550 { max-width: 550px; margin-left: auto; margin-right: auto; }
.v-narrow-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.v-narrow-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.v-narrow-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.v-max-500 { max-width: 500px; }
.v-max-700 { max-width: 700px; }
.v-max-800 { max-width: 800px; }
.v-mb-30 { margin-bottom: 30px; }
.v-mb-32 { margin-bottom: 32px; }
.v-mb-40 { margin-bottom: 40px; }
.v-mb-60 { margin-bottom: 60px; }
.v-mt-20 { margin-top: 20px; }
.v-mt-24 { margin-top: 24px; }
.v-mt-30 { margin-top: 30px; }
.v-mt-32 { margin-top: 32px; }
.v-mt-36 { margin-top: 36px; }
