/* =========================================================
   SOEA–NCCG ENVIRONMENTAL SUPER CUP
   ========================================================= */

:root {
    --sc-black: #000000;
    --sc-black-soft: #0b0b0a;
    --sc-charcoal: #171716;

    --sc-gold: #D9AF3F;
    --sc-deep-gold: #BA9327;

    --sc-olive: #83834B;
    --sc-light-olive: #A8A658;
    --sc-earth: #504624;

    --sc-white: #FFFFFF;
    --sc-offwhite: #F6F3E8;

    --sc-border: rgba(255, 255, 255, .16);

    --sc-serif: "Cormorant Garamond", Georgia, serif;
    --sc-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.supercup-page {
    background: var(--sc-offwhite);
    color: var(--sc-black);
    overflow: hidden;
}

.supercup-page *,
.supercup-page *::before,
.supercup-page *::after {
    box-sizing: border-box;
}

.sc-container {
    width: min(1240px, calc(100% - 4rem));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.sc-hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--sc-black);

    color: var(--sc-white);
}


/* Background */

.sc-hero-bg {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.sc-hero-bg picture,
.sc-hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
}

.sc-hero-bg img {
    object-fit: cover;
}


/* Cinematic overlay */

.sc-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .90) 0%,
            rgba(0, 0, 0, .68) 34%,
            rgba(0, 0, 0, .20) 72%,
            rgba(0, 0, 0, .48) 100%);
}


/* Grain */

.sc-grain {
    position: absolute;
    inset: 0;

    z-index: 2;

    opacity: .07;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.sc-hero-content {
    position: relative;

    z-index: 5;

    width: min(1240px, calc(100% - 4rem));

    margin: 0 auto;

    padding-top: 5rem;
}

.sc-eyebrow {
    display: flex;
    align-items: center;

    gap: .8rem;

    margin-bottom: 1.6rem;

    color: var(--sc-gold);

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: .22em;
}

.sc-eyebrow span {
    width: 38px;
    height: 1px;

    background: var(--sc-gold);
}

.sc-hero h1 {
    max-width: 850px;

    margin: 0;

    font-family: var(--sc-serif);

    font-size: clamp(4rem, 8vw, 8.5rem);

    font-weight: 500;

    line-height: .82;

    letter-spacing: -.045em;
}

.sc-hero h1 span {
    display: inline;
}

.sc-hero h1 em {
    display: block;

    margin-top: .28em;

    color: var(--sc-gold);

    font-weight: 400;
}

.sc-hero-description {
    margin: 2rem 0;

    color: rgba(255, 255, 255, .76);

    font-size: .9rem;

    line-height: 1.7;

    letter-spacing: .05em;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.sc-hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.sc-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 1rem;

    min-height: 48px;

    padding: .8rem 1.25rem;

    border: 1px solid transparent;

    text-decoration: none;

    font-family: var(--sc-sans);

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.sc-button:hover {
    transform: translateY(-2px);
}

.sc-button-gold {
    background: var(--sc-gold);
    color: var(--sc-black);
}

.sc-button-gold:hover {
    background: var(--sc-white);
    color: var(--sc-black);
}

.sc-button-outline {
    border-color: rgba(255, 255, 255, .55);
    color: var(--sc-white);
}

.sc-button-outline:hover {
    border-color: var(--sc-gold);
    color: var(--sc-gold);
}


/* =========================================================
   JOURNEY WORDS
   ========================================================= */

.sc-word {
    position: absolute;

    z-index: 4;

    color: rgba(255, 255, 255, .8);

    font-size: .6rem;
    font-weight: 700;

    letter-spacing: .25em;

    opacity: 0;
}

.sc-word-community {
    top: 22%;
    right: 18%;
}

.sc-word-environment {
    bottom: 27%;
    left: 47%;
}

.sc-word-opportunity {
    right: 10%;
    bottom: 17%;
}


/* =========================================================
   FOOTBALL
   ========================================================= */

.sc-ball {
    position: absolute;

    z-index: 7;

    width: 56px;
    height: 56px;

    left: 47%;
    bottom: 24%;

    border-radius: 50%;

    background:
        radial-gradient(circle at 50% 48%,
            #111 0 10%,
            transparent 11%),
        radial-gradient(circle at 22% 25%,
            #111 0 8%,
            transparent 9%),
        radial-gradient(circle at 76% 30%,
            #111 0 8%,
            transparent 9%),
        radial-gradient(circle at 28% 76%,
            #111 0 8%,
            transparent 9%),
        radial-gradient(circle at 76% 75%,
            #111 0 8%,
            transparent 9%),
        #fff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .45);

    will-change: transform;
}

.sc-ball-pattern {
    position: absolute;
    inset: 0;

    border-radius: 50%;

    border: 2px solid rgba(0, 0, 0, .06);
}

.sc-ball-shadow {
    position: absolute;

    z-index: 6;

    width: 52px;
    height: 12px;

    left: calc(47% + 2px);
    bottom: calc(24% - 5px);

    border-radius: 50%;

    background: rgba(0, 0, 0, .35);

    filter: blur(5px);

    transform-origin: center;

    will-change: transform;
}


/* =========================================================
   SCROLL INDICATOR
   ========================================================= */

.sc-scroll {
    position: absolute;

    z-index: 5;

    right: 2rem;
    bottom: 2rem;

    display: flex;
    align-items: center;
    gap: .7rem;

    color: rgba(255, 255, 255, .6);

    font-size: .58rem;

    letter-spacing: .2em;

    text-transform: uppercase;

    text-decoration: none;

    writing-mode: vertical-rl;
}

.sc-scroll span {
    width: 1px;
    height: 40px;

    background: rgba(255, 255, 255, .45);
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.sc-section-label {
    display: flex;
    align-items: center;
    gap: .8rem;

    margin-bottom: 1.5rem;

    color: var(--sc-earth);

    font-size: .62rem;
    font-weight: 700;

    letter-spacing: .2em;
}

.sc-section-label span {
    width: 35px;
    height: 1px;

    background: currentColor;
}

.sc-label-light {
    color: var(--sc-gold);
}


/* =========================================================
   STORY
   ========================================================= */

.sc-story {
    padding: 9rem 0;

    background: var(--sc-offwhite);
}

.sc-story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8rem;
}

.sc-story-heading h2 {
    margin: 0;

    max-width: 620px;

    font-family: var(--sc-serif);

    font-size: clamp(3.5rem, 6vw, 6rem);

    font-weight: 500;

    line-height: .88;

    letter-spacing: -.04em;
}

.sc-story-heading h2 em {
    color: var(--sc-deep-gold);
    font-weight: 400;
}

.sc-story-copy {
    padding-top: 1rem;
}

.sc-story-copy p {
    max-width: 540px;

    color: #5f5a4d;

    font-size: .95rem;

    line-height: 1.8;
}

.sc-story-copy .sc-lead {
    margin-top: 0;

    color: #292720;

    font-size: 1.15rem;

    line-height: 1.65;
}

.sc-location-pair {
    display: flex;

    align-items: center;

    gap: 1rem;

    margin-top: 4rem;
}

.sc-location-pair div:not(.sc-location-line) {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.sc-location-pair span {
    color: var(--sc-gold);

    font-size: .55rem;

    font-weight: 700;

    letter-spacing: .15em;
}

.sc-location-pair strong {
    font-size: .75rem;

    letter-spacing: .1em;
}

.sc-location-line {
    width: 80px;
    height: 1px;

    background: var(--sc-deep-gold);
}


/* =========================================================
   FAIR
   ========================================================= */

.sc-fair {
    padding: 9rem 0;

    background: var(--sc-black);

    color: var(--sc-white);
}

.sc-fair-intro {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 7rem;

    align-items: end;
}

.sc-fair-intro h2 {
    margin: 0;

    max-width: 650px;

    font-family: var(--sc-serif);

    font-size: clamp(4rem, 7vw, 7rem);

    font-weight: 500;

    line-height: .84;

    letter-spacing: -.04em;
}

.sc-fair-intro h2 em {
    color: var(--sc-gold);
    font-weight: 400;
}

.sc-fair-intro p {
    max-width: 500px;

    margin: 0;

    color: rgba(255, 255, 255, .65);

    font-size: .95rem;

    line-height: 1.8;
}


/* Fair image */

.sc-fair-image {
    margin: 6rem 0 4rem;
}

.sc-image-placeholder {
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .15);

    background:
        linear-gradient(135deg,
            #151515,
            #292820);

    color: rgba(255, 255, 255, .3);

    font-size: .6rem;

    letter-spacing: .2em;
}


/* Fair cards */

.sc-fair-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--sc-border);
}

.sc-fair-card {
    min-height: 310px;

    padding: 2rem;

    border-right: 1px solid var(--sc-border);
    border-bottom: 1px solid var(--sc-border);

    transition:
        background .35s ease,
        transform .35s ease;
}

.sc-fair-card:nth-child(3n) {
    border-right: 0;
}

.sc-fair-card:hover {
    background: #11110f;
}

.sc-card-number {
    display: block;

    margin-bottom: 4rem;

    color: var(--sc-gold);

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: .15em;
}

.sc-fair-card h3 {
    max-width: 260px;

    margin: 0 0 1.2rem;

    font-family: var(--sc-serif);

    font-size: 2.8rem;

    font-weight: 500;

    line-height: .9;
}

.sc-fair-card h3 em {
    color: var(--sc-gold);

    font-weight: 400;
}

.sc-fair-card p {
    max-width: 300px;

    margin: 0;

    color: rgba(255, 255, 255, .55);

    font-size: .78rem;

    line-height: 1.7;
}


/* =========================================================
   EXPERIENCE
   ========================================================= */

.sc-experience {
    padding: 9rem 0;

    background: var(--sc-offwhite);
}

.sc-experience-header {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 4rem;

    margin-bottom: 6rem;
}

.sc-experience-header h2 {
    margin: 0;

    font-family: var(--sc-serif);

    font-size: clamp(4rem, 7vw, 7rem);

    font-weight: 500;

    line-height: .84;

    letter-spacing: -.04em;
}

.sc-experience-header h2 em {
    color: var(--sc-deep-gold);

    font-weight: 400;
}


/* Timeline */

.sc-timeline {
    border-top: 1px solid rgba(0, 0, 0, .2);
}

.sc-timeline-item {
    display: grid;

    grid-template-columns: 120px 1fr;

    gap: 3rem;

    padding: 2.5rem 0;

    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.sc-time {
    color: var(--sc-deep-gold);

    font-size: .65rem;

    font-weight: 700;

    letter-spacing: .15em;
}

.sc-timeline-item h3 {
    margin: 0 0 .6rem;

    font-family: var(--sc-serif);

    font-size: 2.3rem;

    font-weight: 500;
}

.sc-timeline-item p {
    max-width: 620px;

    margin: 0;

    color: #666154;

    font-size: .85rem;

    line-height: 1.7;
}


/* =========================================================
   FOOTBALL SECTION
   ========================================================= */

.sc-football {
    position: relative;

    padding: 10rem 0;

    background: var(--sc-charcoal);

    color: #fff;

    overflow: hidden;
}

.sc-football-bg {
    position: absolute;
    inset: 0;

    opacity: .1;

    background:
        repeating-linear-gradient(90deg,
            transparent 0,
            transparent 24%,
            rgba(255, 255, 255, .5) 24%,
            rgba(255, 255, 255, .5) calc(24% + 1px));
}

.sc-football-content {
    position: relative;

    max-width: 780px;
}

.sc-football-content h2 {
    margin: 0 0 2rem;

    font-family: var(--sc-serif);

    font-size: clamp(4rem, 8vw, 8rem);

    font-weight: 500;

    line-height: .82;

    letter-spacing: -.045em;
}

.sc-football-content h2 em {
    color: var(--sc-gold);

    font-weight: 400;
}

.sc-football-content>p {
    max-width: 600px;

    color: rgba(255, 255, 255, .65);

    font-size: .95rem;

    line-height: 1.8;
}

.sc-football-stats {
    display: flex;

    gap: 4rem;

    margin-top: 5rem;

    padding-top: 2rem;

    border-top: 1px solid var(--sc-border);
}

.sc-football-stats div {
    display: flex;
    flex-direction: column;
}

.sc-football-stats strong {
    color: var(--sc-gold);

    font-family: var(--sc-serif);

    font-size: 4rem;

    font-weight: 500;

    line-height: 1;
}

.sc-football-stats span {
    margin-top: .5rem;

    color: rgba(255, 255, 255, .5);

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: .15em;

    text-transform: uppercase;
}


/* =========================================================
   DISCOVER
   ========================================================= */

.sc-discover {
    padding: 9rem 0;

    background: var(--sc-offwhite);
}

.sc-discover-header {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 4rem;

    margin-bottom: 5rem;
}

.sc-discover-header h2 {
    margin: 0;

    font-family: var(--sc-serif);

    font-size: clamp(4rem, 7vw, 7rem);

    font-weight: 500;

    line-height: .85;

    letter-spacing: -.04em;
}

.sc-discover-header h2 em {
    color: var(--sc-deep-gold);

    font-weight: 400;
}

.sc-discover-list {
    border-top: 1px solid rgba(0, 0, 0, .2);
}

.sc-discover-item {
    display: grid;

    grid-template-columns: 80px 1fr 1fr;

    gap: 2rem;

    align-items: center;

    padding: 1.8rem 0;

    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.sc-discover-item span {
    color: var(--sc-deep-gold);

    font-size: .6rem;

    font-weight: 700;
}

.sc-discover-item strong {
    font-family: var(--sc-serif);

    font-size: 2rem;

    font-weight: 500;
}

.sc-discover-item p {
    margin: 0;

    color: #696456;

    font-size: .78rem;

    line-height: 1.6;
}


/* =========================================================
   INVOLVED
   ========================================================= */

.sc-involved {
    padding: 9rem 0;

    background: var(--sc-gold);

    color: var(--sc-black);
}

.sc-involved-inner {
    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 6rem;

    align-items: end;
}

.sc-involved h2 {
    margin: 0;

    font-family: var(--sc-serif);

    font-size: clamp(4rem, 7vw, 7rem);

    font-weight: 500;

    line-height: .82;

    letter-spacing: -.04em;
}

.sc-involved h2 em {
    font-weight: 400;
}

.sc-involved p {
    max-width: 600px;

    margin: 2rem 0 0;

    color: rgba(0, 0, 0, .7);

    font-size: .9rem;

    line-height: 1.8;
}

.sc-involved-actions {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: .8rem;
}

.sc-involved .sc-button-outline {
    border-color: rgba(0, 0, 0, .45);

    color: var(--sc-black);
}

.sc-involved .sc-button-outline:hover {
    border-color: var(--sc-black);

    color: var(--sc-black);
}


/* =========================================================
   INFO
   ========================================================= */

.sc-info {
    padding: 7rem 0;

    background: var(--sc-offwhite);
}

.sc-info-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(0, 0, 0, .2);
}

.sc-info-block {
    padding: 2.5rem 2rem 2.5rem 0;

    border-right: 1px solid rgba(0, 0, 0, .15);
}

.sc-info-block:not(:first-child) {
    padding-left: 2rem;
}

.sc-info-block:last-child {
    border-right: 0;
}

.sc-info-block>span {
    display: block;

    margin-bottom: 2rem;

    color: var(--sc-deep-gold);

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: .18em;
}

.sc-info-block strong {
    display: block;

    font-family: var(--sc-serif);

    font-size: 2.5rem;

    font-weight: 500;
}

.sc-info-block p {
    max-width: 300px;

    margin: 1rem 0 0;

    color: #6a6558;

    font-size: .78rem;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.sc-final-cta {
    position: relative;

    min-height: 80vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 7rem 2rem;

    background:
        radial-gradient(circle at 70% 30%,
            rgba(217, 175, 63, .14),
            transparent 30%),
        #050505;

    color: #fff;

    text-align: center;

    overflow: hidden;
}

.sc-final-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
            transparent,
            rgba(131, 131, 75, .08));
}

.sc-final-content {
    position: relative;

    z-index: 2;

    max-width: 950px;
}

.sc-final-content .sc-section-label {
    justify-content: center;
}

.sc-final-content h2 {
    margin: 0;

    font-family: var(--sc-serif);

    font-size: clamp(4rem, 9vw, 9rem);

    font-weight: 500;

    line-height: .8;

    letter-spacing: -.05em;
}

.sc-final-content h2 em {
    color: var(--sc-gold);

    font-weight: 400;
}

.sc-final-content p {
    max-width: 600px;

    margin: 2.5rem auto;

    color: rgba(255, 255, 255, .6);

    font-size: .9rem;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .sc-container,
    .sc-hero-content {
        width: min(100% - 3rem, 800px);
    }

    .sc-story-grid,
    .sc-fair-intro,
    .sc-experience-header,
    .sc-discover-header,
    .sc-involved-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sc-fair-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-fair-card:nth-child(3n) {
        border-right: 1px solid var(--sc-border);
    }

    .sc-fair-card:nth-child(2n) {
        border-right: 0;
    }

    .sc-info-grid {
        grid-template-columns: 1fr;
    }

    .sc-info-block,
    .sc-info-block:not(:first-child) {
        padding: 2rem 0;

        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .15);
    }

    .sc-info-block:last-child {
        border-bottom: 0;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .sc-container,
    .sc-hero-content {
        width: min(100% - 2rem, 600px);
    }


    /* Hero */

    .sc-hero {
        min-height: 100svh;
    }

    .sc-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(0, 0, 0, .15) 0%,
                rgba(0, 0, 0, .28) 35%,
                rgba(0, 0, 0, .72) 66%,
                rgba(0, 0, 0, .95) 100%);
    }

    .sc-hero-content {
        align-self: flex-end;

        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .sc-eyebrow {
        font-size: .6rem;
    }

    .sc-hero h1 {
        max-width: 500px;

        font-size: clamp(3.8rem, 15vw, 5.5rem);
    }

    .sc-hero h1 span {
        display: block;
    }

    .sc-hero-description {
        margin: 1.5rem 0;
    }

    .sc-hero-actions {
        flex-direction: column;

        align-items: stretch;

        max-width: 260px;
    }

    .sc-button {
        width: 100%;
    }


    /* Journey */

    .sc-word {
        font-size: .5rem;
    }

    .sc-word-community {
        top: 20%;
        left: 8%;
        right: auto;
    }

    .sc-word-environment {
        top: 40%;
        right: 8%;
        bottom: auto;
        left: auto;
    }

    .sc-word-opportunity {
        right: 8%;
        bottom: 37%;
    }


    /* Ball */

    .sc-ball {
        width: 38px;
        height: 38px;

        left: 50%;
        bottom: 34%;

        margin-left: -19px;
    }

    .sc-ball-shadow {
        width: 35px;
        height: 8px;

        left: calc(50% - 17px);
        bottom: calc(34% - 4px);
    }

    .sc-scroll {
        display: none;
    }


    /* Sections */

    .sc-story,
    .sc-fair,
    .sc-experience,
    .sc-discover,
    .sc-involved {
        padding: 6rem 0;
    }

    .sc-story-grid {
        gap: 2.5rem;
    }

    .sc-story-heading h2,
    .sc-fair-intro h2,
    .sc-experience-header h2,
    .sc-discover-header h2,
    .sc-involved h2 {
        font-size: clamp(3.5rem, 15vw, 5.2rem);
    }


    /* Fair */

    .sc-fair-image {
        margin: 4rem 0 2rem;
    }

    .sc-image-placeholder {
        min-height: 280px;
    }

    .sc-fair-grid {
        grid-template-columns: 1fr;
    }

    .sc-fair-card,
    .sc-fair-card:nth-child(2n),
    .sc-fair-card:nth-child(3n) {
        min-height: auto;

        padding: 2rem 0;

        border-right: 0;
    }

    .sc-card-number {
        margin-bottom: 2rem;
    }


    /* Timeline */

    .sc-timeline-item {
        grid-template-columns: 45px 1fr;

        gap: 1rem;
    }

    .sc-timeline-item h3 {
        font-size: 2rem;
    }


    /* Football */

    .sc-football {
        padding: 7rem 0;
    }

    .sc-football-stats {
        gap: 1.5rem;
        justify-content: space-between;
    }

    .sc-football-stats strong {
        font-size: 3rem;
    }


    /* Discover */

    .sc-discover-item {
        grid-template-columns: 35px 1fr;

        gap: .8rem;
    }

    .sc-discover-item p {
        grid-column: 2;
    }


    /* Involved */

    .sc-involved-inner {
        gap: 3rem;
    }


    /* Info */

    .sc-info {
        padding: 5rem 0;
    }


    /* Final */

    .sc-final-cta {
        min-height: 75vh;

        padding: 5rem 1rem;
    }

    .sc-final-content h2 {
        font-size: clamp(3.8rem, 16vw, 6rem);
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .sc-button {
        transition: none;
    }

    .sc-ball {
        transform: none !important;
    }

}
