/* ============================================
   CAVAL'ANGE EVENTS - Shared Styles
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cinzel+Decorative:wght@400;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

:root {
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-bright: #f0d875;
    --gold-dark: #8b7332;
    --bg: #0a0806;
    --bg-warm: #12100c;
    --bg-card: #1a1710;
    --bg-border: #2a2518;
    --text: #faf3e3;
    --text-body: #e0d6c2;
    --text-muted: #8a7e68;
    --nav-bg: rgba(10, 8, 6, 0.92);
    --font-display: 'Cinzel Decorative', 'Cinzel', serif;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 2px 20px rgba(0,0,0,0.3);
    --logo-filter: brightness(0) invert(1);
}

/* ============================================
   BEIGE SECTIONS (light contrast blocks)
   ============================================ */
.section--beige {
    background: #f5f0e6;
    color: #1a1508;
}
.section--beige .section-label,
.section--beige .section__label { color: #8a6b1e; }
.section--beige .section-title,
.section--beige .section__title,
.section--beige h2 {
    background: linear-gradient(135deg, #8a6b1e 0%, #a67c1a 50%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section--beige p,
.section--beige .card__desc,
.section--beige .card__text,
.section--beige .coach-card__desc,
.section--beige .event-card__desc,
.section--beige .info-block__value { color: #3d3520; }
.section--beige strong { color: #8a6b1e; }
.section--beige .card,
.section--beige .coach-card,
.section--beige .stat {
    background: #ffffff;
    border-color: #d8ceb8;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.section--beige .card__title,
.section--beige .coach-card__name { color: #6a5010; -webkit-text-fill-color: #6a5010; }
.section--beige .card__title { -webkit-text-fill-color: #8a6b1e; }
.section--beige .coach-card__role { color: #8a6b1e; }
.section--beige .ornament::before { background: #f5f0e6; }
.section--beige .stat__number { color: #8a6b1e; }
.section--beige .stat__label { color: #8a7e68; }
.section--beige .badge { border-color: #c9a84c; color: #8a6b1e; }
.section--beige .card__link { color: #8a6b1e; }
.section--beige a { color: #8a6b1e; }
.section--beige .card__icon { filter: none; }
.section--beige .card:hover { border-color: #c9a84c; }

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background 0.5s, color 0.5s;
}

img { max-width: 100%; display: block; }

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
}
a:hover { color: var(--gold-bright); }

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.section-label,
.section__label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}
.section-label::before,
.section__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.section-title,
.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 30%, var(--gold) 60%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(201,168,76,0.15));
}

.ornament {
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
    position: relative;
}
.ornament::before {
    content: '\2726';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 14px;
    background: var(--bg);
    padding: 0 10px;
    transition: background 0.5s;
}
.ornament--left { margin-left: 0; }
.ornament--wide { width: 200px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ============================================
   NAVIGATION - Grand, Medieval, Logo Centered
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.6rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s var(--ease);
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}
.nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    padding: 0.9rem 3.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav__left, .nav__right {
    display: flex;
    align-items: center;
    flex: 1;
}
.nav__left { justify-content: flex-end; gap: 3rem; }
.nav__right { justify-content: flex-start; gap: 2.5rem; }

/* --- Center Logo with ornamental lines --- */
.nav__center {
    margin: 0 2.5rem;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav__center::before,
.nav__center::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark));
    opacity: 0.5;
    transition: width 0.5s var(--ease), opacity 0.5s;
}
.nav__center::after {
    background: linear-gradient(90deg, var(--gold-dark), transparent);
}
.nav.scrolled .nav__center::before,
.nav.scrolled .nav__center::after {
    width: 25px;
    opacity: 0.3;
}
.nav__center img {
    height: 70px;
    transition: all 0.5s var(--ease);
    filter: brightness(0) invert(1);
    drop-shadow: 0 0 20px rgba(201,168,76,0.15);
}
.nav.scrolled .nav__center img {
    height: 45px;
    filter: var(--logo-filter);
}

/* --- Nav Links --- */
.nav__link {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.nav.scrolled .nav__link {
    color: var(--text-body);
    text-shadow: none;
}
.nav__link::before {
    content: '\2726';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 0.5rem;
    color: var(--gold);
    opacity: 0;
    transition: all 0.4s var(--ease);
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 15%; right: 15%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--gold); }
.nav__link.active::after { transform: scaleX(1); }

/* --- Controls: Theme Toggle (Shield style) --- */
.nav__controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.5rem;
}
/* --- Language Toggle (Medieval shield feel) --- */
.toggle-lang {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(42, 37, 24, 0.6);
    border: 1px solid var(--gold-dark);
    padding: 0.35rem 0.65rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.toggle-lang::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.toggle-lang:hover::before { opacity: 1; }
.toggle-lang:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(201,168,76,0.15);
}

/* --- Burger (Medieval cross feel) --- */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}
.nav__burger span {
    width: 28px; height: 2px;
    background: var(--gold);
    transition: all 0.4s var(--ease);
    transform-origin: center;
    border-radius: 1px;
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Mobile Nav (Full-screen medieval overlay) --- */
.nav__mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.96);
    backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    position: relative;
    transition: color 0.3s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 30%; right: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}
.nav__mobile a:last-of-type::after { display: none; }
.nav__mobile .nav__controls {
    margin-top: 2.5rem;
    margin-left: 0;
    gap: 1rem;
}
.nav__mobile .toggle-lang { font-size: 0.75rem; padding: 0.45rem 0.9rem; }

/* ============================================
   HERO (Landing page only)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) saturate(0.7);
    transform: scale(1.05);
    transition: transform 10s linear;
}
.hero:hover .hero__bg { transform: scale(1.0); }
.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(10,8,6,0.3) 0%, rgba(10,8,6,0.05) 40%,
        rgba(10,8,6,0.6) 80%, var(--bg) 100%);
}
.hero__content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}
/* Hero Eyebrow */
.hero__eyebrow {
    font-family: var(--font-heading);
    font-size: clamp(0.65rem, 1.5vw, 0.85rem);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s 0.2s var(--ease) both;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
/* Hero Title - Stacked dramatic */
.hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 0;
}
.hero__title-line {
    display: block;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero__title-line--1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    animation: fadeInUp 0.8s 0.3s var(--ease) both;
}
.hero__title-line--2 {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
    margin: 0.3rem 0;
    letter-spacing: 0.15em;
    animation: fadeInUp 0.8s 0.5s var(--ease) both;
}
.hero__title-line--3 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    letter-spacing: 0.04em;
    background: linear-gradient(180deg, #fff 30%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(201,168,76,0.2));
    animation: fadeInUp 1s 0.6s var(--ease) both;
}
/* Hero Divider */
.hero__divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
    animation: fadeIn 1s 0.9s both;
}
.hero__tagline {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-top: 0;
    animation: fadeInUp 0.8s 1s var(--ease) both;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
/* Hero Actions */
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 1.2s var(--ease) both;
}
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0a0806;
    background: linear-gradient(135deg, #c9a84c, #e8d5a3);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}
.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.35);
    color: #0a0806;
}
.hero__cta--outline {
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
}
.hero__cta--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    box-shadow: none;
}
.hero__scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s 1.5s both, float 3s ease-in-out infinite 2s;
}
.hero__scroll span {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.6);
}
.hero__scroll-line {
    width: 1px; height: 35px;
    background: linear-gradient(to bottom, var(--gold-dark), transparent);
}

/* ============================================
   PAGE HEADER (sub-pages) — Premium Gold
   ============================================ */
.page-header {
    padding: 12rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: brightness(0.18) saturate(0.4);
    z-index: 0;
}
.page-header__overlay,
.page-header > .page-header__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.12) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(10,8,6,0.6) 0%, rgba(10,8,6,0.2) 40%, rgba(10,8,6,0.7) 75%, var(--bg) 100%);
    z-index: 1;
}
.page-header__content {
    position: relative; z-index: 2;
}
.page-header h1,
.page-header__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.15;
    background: linear-gradient(135deg, #fff 0%, #f0d875 25%, #c9a84c 50%, #e8d5a3 75%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 25px rgba(201,168,76,0.35));
    position: relative;
    z-index: 2;
    letter-spacing: 0.06em;
}
.page-header__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
    margin-top: 1rem;
    opacity: 0.85;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 2;
}
.page-header__divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
    margin: 1.5rem auto 0;
    position: relative;
    z-index: 2;
}
.page-header__divider::before {
    content: '\2726';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-bright);
    font-size: 14px;
    background: transparent;
    padding: 0 12px;
    text-shadow: 0 0 15px rgba(201,168,76,0.5);
}
@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 0.55rem 0;
    overflow: hidden;
}
.marquee__track {
    display: flex; gap: 3rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee__item {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #0a0806;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3rem;
}
.marquee__item::after { content: '\2726'; font-size: 0.55rem; }

/* ============================================
   CONTENT CARDS — Premium
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    padding: 2.5rem 2rem;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-bright), var(--gold), var(--gold-dark), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}
.card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.03), transparent);
    transition: left 0.8s var(--ease);
}
.card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2), 0 0 30px rgba(201,168,76,0.06);
}
.card:hover::before { opacity: 1; }
.card:hover::after { left: 100%; }
.card__icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(201,168,76,0.2));
}
.card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}
.card__desc, .card__text {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.75;
}
.card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s var(--ease), color 0.3s;
}
.card__link:hover { gap: 0.8rem; color: var(--gold-bright); }
.card__date {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

/* ============================================
   STAT BADGES — Premium Gold
   ============================================ */
.stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat {
    text-align: center;
    padding: 2rem 2.5rem;
    border: 1px solid var(--bg-border);
    background: var(--bg-card);
    min-width: 140px;
    flex: 1;
    position: relative;
    transition: all 0.4s var(--ease);
}
.stat::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.stat:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
}
.stat__number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 1;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(201,168,76,0.2));
}
.stat__label {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Stats grid (association page) */
.stats__grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}
.stats__item {
    text-align: center;
    padding: 2rem 2.5rem;
    border: 1px solid var(--bg-border);
    background: var(--bg-card);
    flex: 1;
    min-width: 160px;
    position: relative;
    transition: all 0.4s var(--ease);
}
.stats__item::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.stats__item:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
}
.stats__number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 1;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(201,168,76,0.2));
}
.stats__label {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    border: none;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #0a0806;
}
.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
    color: #0a0806;
}
.btn--outline {
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn--outline:hover {
    background: var(--gold);
    color: var(--bg);
}

/* Badge / Tag */
.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--gold);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================
   PHILOSOPHY QUOTE
   ============================================ */
.quote-block {
    padding: 5rem 2rem;
    background: var(--bg-warm);
    text-align: center;
    transition: background 0.5s;
}
.quote-block__inner { max-width: 850px; margin: 0 auto; }
.quote-block__text {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 3vw, 1.9rem);
    font-style: italic;
    font-weight: 400;
    color: var(--text);
    line-height: 1.8;
    position: relative;
    padding: 0 2.5rem;
}
.quote-block__text::before, .quote-block__text::after {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold-dark);
    position: absolute;
    line-height: 1;
}
.quote-block__text::before { content: '\201C'; top: -0.5rem; left: -0.5rem; }
.quote-block__text::after { content: '\201D'; bottom: -1.5rem; right: -0.5rem; }
.quote-block__author {
    margin-top: 2rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--bg-border);
    text-align: center;
    background: var(--bg-warm);
    transition: all 0.5s;
}
.footer__logo {
    height: 40px;
    margin: 0 auto 1rem;
    filter: var(--logo-filter);
    opacity: 0.6;
}
.footer__text {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.footer__links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.footer__links a {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.footer__links a:hover { color: var(--gold); }

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-2-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

/* ============================================
   SECTION SPACING
   ============================================ */
.section { padding: 6rem 2rem; }
.section--alt { background: var(--bg-warm); transition: background 0.5s; }
.section__header { text-align: center; margin-bottom: 3rem; }

/* ============================================
   IMAGE TREATMENTS
   ============================================ */
.img-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bg-border);
}
.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.img-frame:hover img { transform: scale(1.04); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-25px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
/* Tablet: shrink nav a bit */
@media (max-width: 1200px) {
    .nav { padding: 1.2rem 2rem; }
    .nav.scrolled { padding: 0.7rem 2rem; }
    .nav__left, .nav__right { gap: 1.5rem; }
    .nav__link { font-size: 0.72rem; letter-spacing: 0.15em; }
    .nav__center { margin: 0 1.5rem; }
    .nav__center img { height: 55px; }
    .nav.scrolled .nav__center img { height: 38px; }
    .nav__center::before, .nav__center::after { width: 25px; }
}

/* Mobile: burger */
@media (max-width: 960px) {
    .nav__left, .nav__right { display: none; }
    .nav__burger { display: flex; }
    .nav {
        justify-content: space-between;
        padding: 1rem 1.5rem;
        background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    }
    .nav.scrolled { padding: 0.7rem 1.5rem; }
    .nav__center { margin: 0; }
    .nav__center::before, .nav__center::after { display: none; }
    .nav__center img { height: 45px; }
    .nav.scrolled .nav__center img { height: 35px; }
    .nav__controls--desktop { display: none; }
    .grid-2, .grid-2-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__cta { width: 100%; max-width: 280px; justify-content: center; }
    .hero__title-line--3 { font-size: clamp(3rem, 15vw, 5rem); }
    .stats { flex-direction: row; flex-wrap: wrap; }
    .stat { min-width: 0; padding: 1rem; flex: 1 1 40%; }
    .stat__number { font-size: 1.6rem; }
    .section { padding: 4rem 1.5rem; }
    .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================
   COACH CARDS — Premium
   ============================================ */
.coach-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}
.coach-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
}
.coach-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15), 0 0 20px rgba(201,168,76,0.05);
}
.coach-card__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}
.coach-card__role {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gold-dark);
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}
.coach-card__desc {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.75;
}

/* ============================================
   INFO CARD — Premium
   ============================================ */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-bright), var(--gold), var(--gold-dark), transparent);
}
.info-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    text-align: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
.info-card__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.info-card__item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem;
    border: 1px solid var(--bg-border);
    background: var(--bg-warm);
    transition: border-color 0.3s;
}
.info-card__item:hover { border-color: var(--gold-dark); }
.info-card__item strong {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--gold);
}
.info-card__item span {
    font-size: 1rem;
    color: var(--text-body);
}

/* ============================================
   SPECTACLE BADGES
   ============================================ */
.spectacle__badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    border: 1px solid var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.spectacle__badge::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(201,168,76,0.08), transparent);
}
.spectacle__badge:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   TAG
   ============================================ */
.tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.35rem 1rem;
    border: 1px solid var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.06);
}

/* ============================================
   SECTION CTA — Centered
   ============================================ */
.section--cta {
    text-align: center;
    padding: 3rem 2rem 5rem;
}
.cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   SECTION INTRO TEXT
   ============================================ */
.section__intro {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 700px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-style: italic;
}

/* ============================================
   H2 GLOBAL — Golden Gradient
   ============================================ */
section h2:not(.section-title):not(.section__title) {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.25;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.04em;
}

/* ============================================
   STRONG / BOLD — Gold accent in paragraphs
   ============================================ */
section p strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* ============================================
   QUOTE BLOCK — Enhanced
   ============================================ */
.quote-block__text::before,
.quote-block__text::after {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   GALLERY — Scrollbar styled
   ============================================ */
.gallery { padding-bottom: 1rem; }
.gallery .img-frame {
    transition: all 0.5s var(--ease);
    border: 1px solid var(--bg-border);
}
.gallery .img-frame:hover {
    border-color: var(--gold-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 20px rgba(201,168,76,0.08);
}

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