/* =============================================================
   Championship 2027 — Cinematic Event Design
   PBI-307: 6th FAI World Indoor Skydiving Championships 2027
   ============================================================= */

/* -------------------------------------------------------------
   Design Tokens
   ------------------------------------------------------------- */
:root {
    --champ-blue:        #5AC4F1;
    --champ-blue-dim:    rgba(90, 196, 241, 0.15);
    --champ-blue-glow:   rgba(90, 196, 241, 0.35);
    --champ-orange:      #FFA505;
    --champ-dark:        #353A3D;
    --champ-btn:         #517380;

    --champ-bg-light:    #F5F6F7;
    --champ-bg-mid:      #1A2530;
    --champ-bg-dark:     #0F1A23;
    --champ-bg-darker:   #080E14;

    --champ-text:        #353A3D;
    --champ-text-muted:  #555E6B;
    --champ-text-light:  rgba(255,255,255,0.88);
    --champ-text-bright: rgba(255,255,255,1.0);

    --champ-border-dim:  rgba(255,255,255,0.08);
    --champ-border-light: rgba(255,255,255,0.15);

    --champ-radius-btn:  8px;
    --champ-radius-card: 10px;

    --champ-section-py:    100px;
    --champ-section-py-sm: 56px;

    --champ-font:      'Myriad Pro', 'Trebuchet MS', Arial, sans-serif;
    --champ-max-width: 1200px;

    /* Diagonal clip amounts */
    --champ-diag: 48px;
}

/* -------------------------------------------------------------
   Base & Reset
   ------------------------------------------------------------- */
.champ-page {
    font-family: var(--champ-font);
    color: var(--champ-text);
    overflow-x: hidden;
}


.champ-container {
    max-width: var(--champ-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.champ-section {
    padding: var(--champ-section-py) 0;
    position: relative;
}

.champ-section--light   { background: var(--champ-bg-light); }
.champ-section--mid     { background: var(--champ-bg-mid); --champ-text-light: rgba(255,255,255,1.0); }
.champ-section--dark    { background: var(--champ-bg-dark); }
.champ-section--darker  { background: var(--champ-bg-darker); }

/* Boost text contrast on mid-dark sections */
.champ-section--mid .champ-timeline__content p,
.champ-section--mid .champ-venue-text p,
.champ-section--mid .champ-specs-list__item dt,
.champ-section--mid .champ-venue-feature        { color: #fff; }

/* Text overrides for light sections */
.champ-section--light .champ-section-title,
.champ-section--light .champ-section-title--light { color: var(--champ-text) !important; }
.champ-section--light .champ-section-intro         { color: var(--champ-text-muted); }
/* Timeline */
.champ-section--light .champ-timeline__content strong { color: var(--champ-text); }
.champ-section--light .champ-timeline__content p      { color: var(--champ-text-muted); }
.champ-section--light .champ-timeline__marker         { background: var(--champ-bg-light); }
/* About */
.champ-section--light .champ-display-title            { color: var(--champ-text) !important; }
.champ-section--light .champ-about__body p            { color: var(--champ-text); }
.champ-section--light .champ-about__body p strong     { color: var(--champ-text); }
.champ-section--light .champ-about__lead              { color: var(--champ-text) !important; }
.champ-section--light .champ-about__sub               { color: var(--champ-text) !important; border-color: rgba(0,0,0,0.12) !important; }
/* Tunnel — all elements inverted for light background */
.champ-section--light .champ-venue-text p              { color: var(--champ-text); }
.champ-section--light .champ-venue-text p strong       { color: var(--champ-dark); }
.champ-section--light .champ-venue-feature             { color: var(--champ-text); }
.champ-section--light .champ-pv-callout                { background: rgba(255,193,7,0.12); border-color: rgba(255,193,7,0.55); }
.champ-section--light .champ-pv-callout__title         { color: var(--champ-orange); }
.champ-section--light .champ-pv-callout__text          { color: var(--champ-text-muted); }
.champ-section--light .champ-specs-hud                 { background: var(--champ-bg-mid); border-color: rgba(90,196,241,0.22); }
/* Tunnel CTA: dark card for contrast on light bg */
.champ-section--light .champ-tunnel-cta                { background: var(--champ-bg-mid); box-shadow: 0 8px 48px rgba(0,0,0,0.15), 0 0 60px rgba(255,165,5,0.08); }
.champ-section--light .champ-tunnel-cta__title         { color: #ffffff !important; }
.champ-section--light .champ-tunnel-cta__content p     { color: rgba(255,255,255,0.80); }
/* Disciplines — mid-dark cards on light section */
.champ-section--light .champ-disc-card {
    background: var(--champ-bg-mid);
    border-color: rgba(90,196,241,0.22);
    box-shadow: 0 4px 24px rgba(0,0,0,0.20);
}
.champ-section--light .champ-disc-card:hover {
    border-color: var(--champ-blue);
    box-shadow: 0 16px 48px rgba(0,0,0,0.32), 0 0 48px rgba(90,196,241,0.40), inset 0 0 32px rgba(90,196,241,0.07);
    transform: translateY(-5px);
}
/* Accent card (IPS) — warm light to contrast with dark regular cards */
.champ-section--light .champ-disc-card--accent {
    background: #FFF8EE;
    border-color: rgba(255,165,5,0.45);
    box-shadow: 0 4px 24px rgba(255,165,5,0.12);
}
.champ-section--light .champ-disc-card--accent::before {
    color: rgba(255,165,5,0.10);
}
.champ-section--light .champ-disc-card--accent:hover {
    border-color: var(--champ-orange);
    box-shadow: 0 16px 48px rgba(255,165,5,0.20), 0 0 48px rgba(255,165,5,0.35), inset 0 0 32px rgba(255,165,5,0.07);
    transform: translateY(-5px);
}
.champ-section--light .champ-disc-card--accent .champ-disc-card__title { color: var(--champ-text) !important; }
.champ-section--light .champ-disc-card--accent .champ-disc-card__desc  { color: var(--champ-text-muted); }
.champ-section--light .champ-disc-card--accent .champ-disc-card__tag   { color: var(--champ-text-muted); background: rgba(255,165,5,0.12); }

/* Diagonal cuts */
.champ-section--diag-bottom {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--champ-diag)), 0 100%);
    padding-bottom: calc(var(--champ-section-py) + var(--champ-diag));
    margin-bottom: calc(-1 * var(--champ-diag));
}
.champ-section--diag-top {
    clip-path: polygon(0 var(--champ-diag), 100% 0, 100% 100%, 0 100%);
    padding-top: calc(var(--champ-section-py) + var(--champ-diag));
    margin-top: calc(-1 * var(--champ-diag));
}
.champ-section--diag-top.champ-section--diag-bottom {
    clip-path: polygon(0 var(--champ-diag), 100% 0, 100% calc(100% - var(--champ-diag)), 0 100%);
    padding-top: calc(var(--champ-section-py) + var(--champ-diag));
    padding-bottom: calc(var(--champ-section-py) + var(--champ-diag));
    margin-bottom: calc(-1 * var(--champ-diag));
}

/* Colors */
.champ-blue   { color: var(--champ-blue); }
.champ-orange { color: var(--champ-orange); }

/* Icon */
.champ-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
}

/* Link */
.champ-link {
    color: var(--champ-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.champ-link:hover {
    text-decoration: underline;
    color: var(--champ-blue);
}

/* -------------------------------------------------------------
   Scroll-reveal Animations
   ------------------------------------------------------------- */
.champ-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.champ-animate--delay-1 { transition-delay: 0.12s; }
.champ-animate--delay-2 { transition-delay: 0.24s; }
.champ-animate--delay-3 { transition-delay: 0.36s; }
.champ-animate--delay-4 { transition-delay: 0.48s; }

.champ-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Float animation for hero athlete */
@keyframes champ-float {
    0%, 100% { transform: translateY(0px);   }
    50%       { transform: translateY(-14px); }
}

/* Mobile: subtle float via background-position */
@keyframes champ-float-bg {
    0%, 100% { background-position: center 20%; }
    50%       { background-position: center 30%; }
}

/* Countdown pulse */
@keyframes champ-pulse-border {
    0%, 100% { border-color: var(--champ-blue-glow); }
    50%       { border-color: var(--champ-blue); }
}

/* Scroll hint bounce */
@keyframes champ-bounce-down {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(6px); opacity: 0.5; }
}

/* -------------------------------------------------------------
   Typography
   ------------------------------------------------------------- */
.champ-display-title {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: clamp(52px, 8vw, 96px);
    line-height: 1.15 !important;
    text-transform: uppercase;
    color: var(--champ-text-bright);
    margin: 0 0 48px;
    letter-spacing: -0.01em;
}

.champ-display-title--center { text-align: center; }

.champ-section-title {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--champ-dark);
    margin: 0 0 48px;
}
.champ-section-title--center { text-align: center; }
.champ-section-title--light  { color: var(--champ-text-bright) !important; }
.champ-section-title .champ-blue { color: var(--champ-blue); }
.champ-section-title--light .champ-blue { color: var(--champ-blue); }

.champ-subsection-title {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--champ-blue);
    margin: 0 0 16px;
}

.champ-section-intro {
    text-align: center;
    max-width: 720px;
    margin: -28px auto 56px;
    font-size: 19px;
    line-height: 1.75;
    color: var(--champ-text-light);
}
.champ-section-intro--light {
    color: var(--champ-text-light);
}

/* -------------------------------------------------------------
   Button
   ------------------------------------------------------------- */
.champ-btn {
    display: inline-block;
    border-radius: var(--champ-radius-btn);
    padding: 14px 36px;
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    border: none;
}

.champ-btn--primary {
    background: var(--champ-orange);
    color: #000 !important;
    box-shadow: 0 4px 24px rgba(255, 165, 5, 0.30);
}
.champ-btn--primary:hover {
    background: #e89500;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 165, 5, 0.45);
    color: #0A0A0A;
    text-decoration: none;
}

/* -------------------------------------------------------------
   HERO
   ------------------------------------------------------------- */
.champ-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    background-color: var(--champ-bg-darker);
    overflow: hidden;
}

/* Atmospheric glow — top-left blue radial */
.champ-hero__bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(90,196,241,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 75% 30%, rgba(90,196,241,0.05) 0%, transparent 60%);
}

/* Athlete — right side, floating */
.champ-hero__athlete-wrap {
    position: absolute;
    right: -2%;
    top: 0;
    bottom: 0;
    width: 58%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.champ-hero__athlete-wrap picture {
    display: block;
    width: 100%;
    height: 100%;
}

.champ-hero__athlete-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    animation: champ-float 5s ease-in-out infinite;
}

@media (min-width: 769px) {
    .champ-hero__athlete-wrap {
        position: absolute;
        right: -2%;
        left: auto;
        top: 0;
        bottom: 0;
        width: 58%;
        height: auto;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
        mask-image: linear-gradient(to right, transparent 0%, black 30%);
    }

    .champ-hero__athlete-img {
        object-fit: cover;
        object-position: center center;
    }
}

/* Left-to-right gradient so text area is readable */
.champ-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        95deg,
        var(--champ-bg-darker) 22%,
        rgba(8, 14, 20, 0.60) 45%,
        rgba(8, 14, 20, 0.10) 65%,
        transparent 78%
    );
    pointer-events: none;
}

.champ-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
    max-width: 680px;
}

/* Eyebrow */
.champ-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #fff;
    margin: 0 0 24px;
}

.champ-hero__eyebrow-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--champ-blue);
    opacity: 0.5;
    flex-shrink: 0;
}

/* H1 */
.champ-hero__title {
    font-family: var(--champ-font);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--champ-text-bright) !important;
    margin: 0 0 28px;
    line-height: 0.95;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.champ-hero__title-line { display: block; }
.champ-hero__title-line--sm  { font-size: clamp(20px, 3vw, 32px); letter-spacing: 0.06em; margin-bottom: 4px; }
.champ-hero__title-line--md  { font-size: clamp(28px, 4.5vw, 52px); }
.champ-hero__title-line--lg  { font-size: clamp(40px, 6.5vw, 78px); }
.champ-hero__title-line--xl  { font-size: clamp(52px, 9vw, 108px); line-height: 0.9; }

/* Meta bar */
.champ-hero__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.90);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 36px;
}
.champ-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
}
.champ-hero__meta-item .champ-icon { color: var(--champ-blue); }
.champ-hero__meta-sep { opacity: 0.3; }

/* Countdown */
.champ-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 40px;
}

.champ-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
    padding: 12px 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--champ-blue-glow);
    border-radius: 8px;
    animation: champ-pulse-border 3s ease-in-out infinite;
}

.champ-countdown__val {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: var(--champ-text-bright);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.champ-countdown__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--champ-blue);
    margin-top: 4px;
}

.champ-countdown__sep {
    font-size: 28px;
    font-weight: 700;
    color: var(--champ-blue);
    line-height: 1;
    margin-top: -16px;
    opacity: 0.6;
}

/* Scroll hint */
.champ-hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.champ-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--champ-blue));
    animation: champ-bounce-down 1.8s ease-in-out infinite;
    display: block;
}

.champ-hero__scroll-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champ-blue);
    opacity: 0.6;
}

/* -------------------------------------------------------------
   About
   ------------------------------------------------------------- */
.champ-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}


.champ-about__headline .champ-display-title {
    margin: 0;
    font-size: clamp(32px, 4vw, 56px);
}

.champ-about__body p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    margin: 0 0 16px;
}

.champ-about__body p strong {
    color: var(--champ-text-bright);
}

.champ-about__lead {
    font-size: 18px !important;
    color: var(--champ-text-bright) !important;
}

.champ-about__sub {
    font-family: var(--champ-font) !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    color: rgba(255,255,255,0.92) !important;
    margin: 40px 0 16px !important;
    padding-top: 32px;
    border-top: 1px solid var(--champ-border-dim);
}

/* -------------------------------------------------------------
   Event Dates — Timeline
   ------------------------------------------------------------- */
.champ-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}

.champ-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--champ-blue), rgba(90,196,241,0.10));
}

.champ-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
    padding: 0 0 48px;
    align-items: start;
}

.champ-timeline__item:last-child {
    padding-bottom: 0;
}

.champ-timeline__marker {
    position: absolute;
    left: -47px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--champ-bg-mid);
    border: 2px solid rgba(90,196,241,0.4);
    transition: border-color 0.2s, background 0.2s;
}

.champ-timeline__item--highlight .champ-timeline__marker {
    background: var(--champ-blue);
    border-color: var(--champ-blue);
    box-shadow: 0 0 12px var(--champ-blue-glow);
}

.champ-timeline__date {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--champ-blue);
    padding-top: 2px;
}

.champ-timeline__content strong {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: var(--champ-text-bright);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.champ-timeline__content p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

/* -------------------------------------------------------------
   Disciplines
   ------------------------------------------------------------- */
#disciplines {
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(90,196,241,0.18) 0%, transparent 70%),
        var(--champ-bg-mid);
}

.champ-disciplines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 16px;
}

.champ-disc-card {
    position: relative;
    background: #E4E7EA;
    border: 1px solid rgba(90,196,241,0.3);
    border-top: 3px solid var(--champ-blue);
    border-radius: var(--champ-radius-card);
    padding: 24px 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.30);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

/* Watermark abbreviation */
.champ-disc-card::before {
    content: attr(data-abbr);
    position: absolute;
    right: -8px;
    bottom: -12px;
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 80px;
    line-height: 1;
    color: rgba(0,0,0,0.05);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
    transition: color 0.25s;
}

.champ-disc-card:hover {
    border-color: var(--champ-blue);
    box-shadow: 0 8px 36px rgba(0,0,0,0.25), 0 0 32px rgba(90,196,241,0.15);
    transform: translateY(-3px);
}

.champ-disc-card:hover::before {
    color: rgba(0,0,0,0.08);
}

.champ-disc-card--accent {
    border-color: rgba(255,165,5,0.40);
    border-top-color: var(--champ-orange);
    background: #E4E7EA;
}

.champ-disc-card--accent:hover {
    border-color: var(--champ-orange);
    box-shadow: 0 8px 36px rgba(0,0,0,0.25), 0 0 32px rgba(255,165,5,0.15);
}

.champ-disc-card__abbr {
    display: block;
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--champ-blue);
    background: #F5F6F7;
    border: 2px solid rgba(90,196,241,0.4);
    padding: 6px 10px;
    border-radius: 4px;
    margin: 0 0 16px;
    text-align: center;
}

.champ-disc-card--accent .champ-disc-card__abbr {
    color: var(--champ-orange);
    border-width: 2px;
    border-color: rgba(255,165,5,0.40);
}

.champ-disc-card__title {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--champ-bg-dark) !important;
    margin: 0 0 10px;
    line-height: 1.35;
}

.champ-disc-card__desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(15,26,35,0.72);
    margin: 0 0 14px;
    flex: 1;
}

.champ-disc-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #ffffff;
    background: var(--champ-blue);
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: auto;
    align-self: flex-start;
}

/* -------------------------------------------------------------
   Venue
   ------------------------------------------------------------- */
.champ-venue-photo {
    margin-bottom: 56px;
    border-radius: 12px;
    overflow: hidden;
}

.champ-venue-photo__img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 65%;
    display: block;
}

.champ-venue-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    margin-bottom: 56px;
    align-items: start;
}

.champ-venue-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    margin: 0 0 16px;
}

.champ-venue-text p strong {
    color: var(--champ-text-bright);
}

/* HUD-style specs panel */
.champ-specs-hud {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--champ-border-light);
    border-radius: var(--champ-radius-card);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}

.champ-specs-hud::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--champ-blue), transparent);
}

.champ-specs-hud__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--champ-blue);
    margin: 0 0 20px;
}

.champ-specs-list {
    margin: 0;
    padding: 0;
}

.champ-specs-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--champ-border-dim);
    gap: 16px;
}

.champ-specs-list__item:last-child { border-bottom: none; }

.champ-specs-list__item dt {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
}

.champ-specs-list__item dd {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 14px;
    color: var(--champ-text-bright);
    margin: 0;
    text-align: right;
}

/* Venue feature icons */
.champ-venue-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid var(--champ-border-dim);
    padding-top: 40px;
}

.champ-venue-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.88);
    font-size: 16px;
}

.champ-venue-feature svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--champ-blue);
}

/* -------------------------------------------------------------
   Location & Travel
   ------------------------------------------------------------- */
.champ-location-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
}

.champ-address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    color: var(--champ-text);
    margin: 0 0 16px;
}

.champ-location-note {
    font-size: 14px;
    color: var(--champ-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
}

.champ-location-note::before {
    content: '✓';
    color: var(--champ-blue);
    font-weight: 700;
    font-size: 15px;
}

.champ-travel-card {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
    align-items: flex-start;
}

.champ-travel-card:last-child { border-bottom: none; }

.champ-travel-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--champ-blue-dim);
    border: 1px solid rgba(90,196,241,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.champ-travel-card > div > strong {
    display: block;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--champ-dark);
    margin-bottom: 6px;
}

.champ-travel-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #3D4450;
    margin: 0;
}

/* -------------------------------------------------------------
   Stay Updated — Minimal
   ------------------------------------------------------------- */
.champ-newsletter {
    max-width: 640px;
    text-align: center;
}

.champ-newsletter__intro {
    font-size: 17px;
    line-height: 1.75;
    color: var(--champ-text-light);
    margin: -20px 0 40px;
}

.champ-newsletter__form-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--champ-border-light);
    border-radius: 12px;
    padding: 36px 32px;
}

.champ-brevo-slot {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.champ-brevo-slot__note {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    font-style: italic;
    margin: 0;
}

/* -------------------------------------------------------------
   Organizer
   ------------------------------------------------------------- */
.champ-organizer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.champ-organizer-card {
    text-align: center;
    padding: 40px 28px;
    background: #fff;
    border-radius: var(--champ-radius-card);
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.champ-organizer-card__logo {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.champ-organizer-card__logo img {
    max-height: 72px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.champ-organizer-card__logo-placeholder {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--champ-text-muted);
    border: 2px dashed #D1D5DB;
    padding: 12px 20px;
    border-radius: 6px;
}

.champ-organizer-card__name {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--champ-dark);
    margin: 0 0 10px;
}

.champ-organizer-card p {
    font-size: 13px;
    color: var(--champ-text-muted);
    margin: 0 0 8px;
    line-height: 1.5;
}

.champ-organizer__sanctioned {
    text-align: center;
    font-size: 14px;
    color: var(--champ-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.champ-organizer__sanctioned strong { color: var(--champ-dark); }

/* =============================================================
   SEO SECTION (bottom)
   ============================================================= */
.champ-seo-section {
    padding: 48px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.champ-seo-section__title {
    font-family: var(--champ-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--champ-text-muted);
    margin: 0 0 10px;
}

.champ-seo-section__text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--champ-text-muted);
    max-width: 720px;
    margin: 0;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1100px) {
    .champ-disciplines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .champ-venue-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .champ-venue-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root { --champ-section-py: var(--champ-section-py-sm); }

    .champ-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .champ-timeline {
        padding-left: 28px;
    }
    .champ-timeline__item {
        grid-template-columns: 140px 1fr;
        gap: 20px;
    }
    .champ-timeline__marker {
        left: -35px;
    }
}

@media (max-width: 768px) {
    .champ-container { padding: 0 20px; }

    .champ-hero__athlete-wrap {
        display: flex;
        left: auto;
        right: -5%;
        width: 70%;
        top: 28%;
        bottom: 0;
        height: auto;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%), linear-gradient(to top, black 60%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 30%), linear-gradient(to top, black 60%, transparent 100%);
        -webkit-mask-composite: source-in;
        mask-composite: intersect;
    }

    .champ-hero__athlete-img {
        object-fit: cover;
        object-position: center 20%;
    }

    .champ-hero {
        background:
            linear-gradient(
                to bottom,
                var(--champ-bg-darker) 22%,
                rgba(8, 14, 20, 0.60) 45%,
                rgba(8, 14, 20, 0.10) 65%,
                transparent 78%
            ),
            #7bbccc;
    }

    .champ-hero::after {
        background: linear-gradient(
            to bottom,
            var(--champ-bg-darker) 25%,
            rgba(8, 14, 20, 0.55) 48%,
            rgba(8, 14, 20, 0.10) 68%,
            transparent 85%
        );
    }

    .champ-hero__scroll-hint {
        display: none;
    }

    .champ-hero__scroll-line {
        background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
    }

    .champ-hero__scroll-text {
        color: rgba(255,255,255,0.7);
    }

    .champ-hero__content {
        padding-top: 90px;
        padding-bottom: 60px;
    }

    .champ-hero__title-line--xl {
        font-size: clamp(44px, 14vw, 72px);
    }

    .champ-hero__title-line--lg {
        font-size: clamp(32px, 10vw, 60px);
    }

    .champ-countdown__unit { min-width: 58px; }
    .champ-countdown__val  { font-size: 28px; }

    .champ-timeline__item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .champ-timeline__date {
        font-size: 13px;
    }

    .champ-disciplines-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 4px 20px 16px;
        margin: 0 -20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .champ-disciplines-grid::-webkit-scrollbar {
        display: none;
    }

    .champ-disc-card {
        flex: 0 0 78%;
        scroll-snap-align: center;
    }

    .champ-venue-features {
        grid-template-columns: 1fr;
    }

    .champ-location-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .champ-organizer-grid {
        grid-template-columns: 1fr;
    }

    .champ-section--diag-bottom,
    .champ-section--diag-top,
    .champ-section--diag-top.champ-section--diag-bottom {
        clip-path: none;
        margin-bottom: 0;
        margin-top: 0;
        padding-top: var(--champ-section-py-sm);
        padding-bottom: var(--champ-section-py-sm);
    }
}

@media (max-width: 480px) {
    .champ-hero__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
    .champ-hero__meta-sep { display: none; }
    .champ-countdown { gap: 4px; }
    .champ-countdown__unit { min-width: 52px; padding: 10px 6px; }
    .champ-countdown__val { font-size: 24px; }
    .champ-newsletter__form-wrapper { padding: 24px 16px; }
}

/* =============================================================
   GALLERY — Cinematic fullbleed slider
   ============================================================= */
.champ-gallery {
    position: relative;
    height: 580px;
    margin: 0 -32px 56px;
    overflow: hidden;
}

/* All items stacked, fade in/out */
.champ-gallery.has-slider .champ-gallery__item {
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}
.champ-gallery.has-slider .champ-gallery__item.is-active {
    opacity: 1;
    pointer-events: auto;
}

.champ-gallery__item { margin: 0; }

.champ-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.champ-gallery__placeholder {
    width: 100%;
    height: 100%;
    background: rgba(90,196,241,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.champ-gallery__placeholder-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.15);
}

/* Caption: gradient overlay at bottom */
.champ-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 72px 32px 52px;
    background: linear-gradient(to top, rgba(8,14,20,0.80) 0%, transparent 100%);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
    font-style: italic;
}

/* Light section — slightly lighter gradient */
.champ-section--light .champ-gallery__caption {
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    color: rgba(255,255,255,0.85);
}
.champ-section--light .champ-gallery__placeholder { background: #EAECEE; }
.champ-section--light .champ-gallery__placeholder-text { color: rgba(0,0,0,0.15); }

/* Clickable */
.champ-gallery__item--clickable { cursor: zoom-in; }

/* Counter: "01 / 03" */
.champ-gallery__counter {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: var(--champ-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.55);
    z-index: 3;
}

/* Arrows: minimal chevrons */
.champ-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.65);
    width: 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 3;
}
.champ-gallery__arrow--prev { left: 20px; }
.champ-gallery__arrow--next { right: 20px; }
.champ-gallery__arrow:hover { color: #fff; }
.champ-gallery__arrow svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

/* Line indicators */
.champ-gallery__dots {
    position: absolute;
    bottom: 24px;
    left: 32px;
    display: flex;
    gap: 6px;
    z-index: 3;
}

.champ-gallery__dot {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    border: none;
    background: rgba(255,255,255,0.30);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s;
}
.champ-gallery__dot.is-active {
    background: #fff;
    width: 48px;
}

@media (max-width: 768px) {
    .champ-gallery {
        height: 320px;
        margin: 0 -20px 48px;
    }
    .champ-gallery__caption { padding: 48px 20px 44px; font-size: 13px; }
    .champ-gallery__dots { left: 20px; bottom: 16px; }
    .champ-gallery__counter { right: 20px; top: 16px; }
    .champ-gallery__arrow svg { width: 22px; height: 22px; }
}

/* =============================================================
   PHOTOVOLTAIK USP CALLOUT
   ============================================================= */
.champ-pv-callout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgba(255,193,7,0.07);
    border: 1px solid rgba(255,193,7,0.35);
    border-radius: var(--champ-radius-card);
    padding: 28px 32px;
    margin-bottom: 56px;
}

.champ-pv-callout__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: #FFC107;
    margin-top: 2px;
}

.champ-pv-callout__title {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #FFC107;
    margin: 0 0 8px;
}

.champ-pv-callout__text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

/* =============================================================
   TUNNEL CTA
   ============================================================= */
.champ-tunnel-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #E4E7EA;
    border: none;
    border-left: 5px solid var(--champ-orange);
    border-radius: var(--champ-radius-card);
    padding: 32px 40px;
    margin-top: 48px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.40), 0 0 60px rgba(255,165,5,0.12);
}

.champ-tunnel-cta a.champ-btn {
    flex-shrink: 0;
}

.champ-tunnel-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--champ-orange);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px 4px 8px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.champ-tunnel-cta__badge svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.champ-tunnel-cta__title {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--champ-text) !important;
    margin: 0 0 8px;
}

.champ-tunnel-cta__content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--champ-text-muted);
    margin: 0;
}

.champ-scarcity {
    margin-top: 16px;
}

.champ-scarcity__bar {
    height: 6px;
    background: rgba(255,255,255,0.12);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.champ-scarcity__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--champ-orange), #ff6b00);
    border-radius: 3px;
    transition: width 1.2s ease;
}

.champ-scarcity__label {
    font-size: 13px !important;
    color: rgba(255,255,255,0.65) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.champ-scarcity__label strong {
    color: var(--champ-orange);
    font-weight: 700;
}

/* =============================================================
   ARENA EXPERIENCE GRID
   ============================================================= */
.champ-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.champ-exp-card {
    display: grid;
    grid-template-areas: "stack";
    border-radius: var(--champ-radius-card);
    overflow: hidden;
    text-decoration: none;
}

.champ-exp-card:hover {
    text-decoration: none;
}

.champ-exp-card__img {
    grid-area: stack;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.champ-exp-card:hover .champ-exp-card__img {
    transform: scale(1.05);
}

.champ-exp-card__overlay {
    grid-area: stack;
    align-self: end;
    background: linear-gradient(to top, rgba(8,14,20,0.88) 0%, rgba(8,14,20,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
    transition: background 0.3s;
}

.champ-exp-card:hover .champ-exp-card__overlay {
    background: linear-gradient(to top, rgba(8,14,20,0.95) 0%, rgba(8,14,20,0.5) 60%, transparent 100%);
}

.champ-exp-card__title {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 20px;
    color: #ffffff !important;
    margin: 0 0 8px;
    line-height: 1.2;
}

.champ-exp-card__cta {
    font-size: 12px;
    font-weight: 700;
    color: var(--champ-orange);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s, transform 0.25s;
}

.champ-exp-card:hover .champ-exp-card__cta {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================
   B2B CALLOUT
   ============================================================= */
.champ-b2b-callout .champ-gallery {
    height: 100%;
    min-height: 320px;
    margin: 0;
}

.champ-b2b-callout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--champ-radius-card);
    overflow: hidden;
    background: var(--champ-bg-dark);
    margin-top: 16px;
}

.champ-b2b-callout__img {
    background-size: cover;
    background-position: center;
    min-height: 280px;
}

.champ-b2b-callout__content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.champ-b2b-callout__eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--champ-orange);
    margin: 0;
}

.champ-b2b-callout__title {
    font-family: var(--champ-font);
    font-weight: 700;
    font-size: 26px;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.2;
}

.champ-b2b-callout__text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin: 0;
}

.champ-b2b-callout .champ-btn {
    align-self: flex-start;
    margin-top: 6px;
}

/* Gallery: clickable items */
.champ-gallery__item--clickable {
    cursor: zoom-in;
    transition: opacity 0.2s;
}
.champ-gallery__item--clickable:hover { opacity: 0.88; }

/* =============================================================
   LIGHTBOX
   ============================================================= */
.champ-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8, 14, 20, 0.96);
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.champ-lightbox.is-open {
    display: flex;
    flex-direction: column;
}

.champ-lightbox__figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.champ-lightbox__img {
    max-height: 78vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.champ-lightbox__caption {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    text-align: center;
}

.champ-lightbox__counter {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
}

.champ-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
    transition: color 0.15s;
}
.champ-lightbox__close:hover { color: #fff; }

.champ-lightbox__prev,
.champ-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s;
}
.champ-lightbox__prev svg,
.champ-lightbox__next svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}
.champ-lightbox__prev { left: 20px; }
.champ-lightbox__next { right: 20px; }
.champ-lightbox__prev:hover,
.champ-lightbox__next:hover { background: rgba(255, 255, 255, 0.18); }

@media (max-width: 768px) {
    .champ-lightbox { padding: 56px 12px 32px; }
    .champ-lightbox__prev { left: 6px; }
    .champ-lightbox__next { right: 6px; }
    .champ-lightbox__img { border-radius: 4px; }
}

/* Responsive: new sections */
@media (max-width: 1100px) {
    .champ-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .champ-experience-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
        margin: 0 -20px 40px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none;
    }
    .champ-experience-grid::-webkit-scrollbar {
        display: none;
    }
    .champ-exp-card {
        flex: 0 0 75vw;
        max-width: 300px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {

    .champ-tunnel-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .champ-pv-callout {
        flex-direction: column;
        padding: 24px;
    }

    .champ-experience-grid {
        grid-template-columns: 1fr;
    }

    .champ-exp-card__img {
        height: 160px;
    }

    .champ-b2b-callout {
        grid-template-columns: 1fr;
    }

    .champ-b2b-callout__img {
        min-height: 200px;
    }

    .champ-b2b-callout__content {
        padding: 28px 24px;
    }
}
