/* =========================================================
   CECI — COMMUNITY ENVIRONMENTAL CHAMPIONS INITIATIVE
   ========================================================= */


/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
    --ceci-forest: #1a3a0f;
    --ceci-forest-mid: #2d5a1a;
    --ceci-moss: #7aab52;

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

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

    --ceci-black: #000000;
    --ceci-white: #ffffff;
    --ceci-off-white: #F6F3E8;

    --ceci-ink: #1a1a1a;
    --ceci-steel: #444444;
    --ceci-muted: #777777;

    --ceci-border: #e0dbd0;

    --ceci-leaf-bg: #eef5e6;
    --ceci-cream: #f5f1e8;

    --ceci-max-width: 1200px;
}


/* =========================================================
   RESET / BASE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ceci-white);
    color: var(--ceci-ink);

    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;

    overflow-x: hidden;
}

a {
    color: inherit;
}

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


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

.ceci-container {
    width: min(calc(100% - 10%),
            var(--ceci-max-width));

    margin-inline: auto;
}


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

.ceci-section {
    padding: 7rem 0;
}


/* =========================================================
   EYEBROW
   ========================================================= */

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

    font-family: 'Space Mono', monospace;
    font-size: .65rem;
    font-weight: 700;

    letter-spacing: .16em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .75);
}

.ceci-eyebrow span {
    width: 32px;
    height: 1px;
    background: currentColor;
}

.ceci-eyebrow-dark {
    color: var(--ceci-olive);
}


/* =========================================================
   HEADINGS
   ========================================================= */

.ceci-section-heading {
    max-width: 850px;
    margin-bottom: 4rem;
}

.ceci-section-heading h2,
.ceci-champions-placeholder h2 {
    margin: 1.2rem 0 0;

    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.02em;
}

.ceci-section-heading h2 em,
.ceci-champions-placeholder h2 em {
    color: var(--ceci-gold);
    font-weight: 400;
}


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

.ceci-hero {
    min-height: 100svh;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--ceci-white);

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .78),
            rgba(26, 58, 15, .72)),
        url('../../images/ceci-hero.jpg') center / cover no-repeat;

    background-color: var(--ceci-forest);
}

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

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .18),
            rgba(0, 0, 0, .28));
}

.ceci-hero-content {
    position: relative;
    z-index: 2;

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

.ceci-hero h1 {
    max-width: 900px;

    margin: 1.5rem 0 1.8rem;

    font-family: 'Cormorant Garamond', serif;

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

    font-weight: 500;
    line-height: .88;

    letter-spacing: -.035em;
}

.ceci-hero h1 em {
    display: block;

    color: var(--ceci-gold);

    font-weight: 400;
}

.ceci-hero-description {
    max-width: 650px;

    margin: 0;

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

    font-size: 1rem;
    line-height: 1.8;
}

.ceci-hero-actions {
    display: flex;
    align-items: center;
    gap: .8rem;

    margin-top: 2.2rem;
}


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

.ceci-btn {
    display: inline-flex;
    align-items: center;
    gap: .8rem;

    padding: .85rem 1.35rem;

    border: 1px solid transparent;
    border-radius: 3px;

    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;

    text-decoration: none;

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

.ceci-btn:hover {
    transform: translateY(-2px);
}

.ceci-btn-primary {
    background: var(--ceci-gold);
    color: var(--ceci-black);
}

.ceci-btn-primary:hover {
    background: var(--ceci-deep-gold);
}

.ceci-btn-outline {
    border-color: rgba(255, 255, 255, .4);
    color: var(--ceci-white);
}

.ceci-btn-outline:hover {
    border-color: var(--ceci-white);
    background: rgba(255, 255, 255, .08);
}


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

.ceci-hero-meta {
    display: flex;
    gap: 3rem;

    margin-top: 4.5rem;
}

.ceci-hero-meta div {
    display: flex;
    flex-direction: column;

    padding-left: 1rem;

    border-left: 1px solid rgba(255, 255, 255, .25);
}

.ceci-hero-meta strong {
    font-family: 'Cormorant Garamond', serif;

    font-size: 2.8rem;
    font-weight: 500;

    line-height: 1;

    color: var(--ceci-gold);
}

.ceci-hero-meta span {
    margin-top: .35rem;

    font-family: 'Space Mono', monospace;

    font-size: .58rem;
    letter-spacing: .14em;

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


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

.ceci-scroll {
    position: absolute;

    right: 5%;
    bottom: 2.5rem;

    z-index: 3;

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

    font-family: 'Space Mono', monospace;
    font-size: .55rem;
    letter-spacing: .15em;

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

    writing-mode: vertical-rl;
}

.ceci-scroll i {
    display: block;

    width: 1px;
    height: 55px;

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


/* =========================================================
   INTRODUCTION
   ========================================================= */

.ceci-intro {
    background: var(--ceci-white);
}

.ceci-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 6rem;

    margin-bottom: 5rem;
}

.ceci-intro-lead p {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;

    color: var(--ceci-forest);
}

.ceci-intro-copy {
    color: var(--ceci-steel);
}

.ceci-intro-copy p {
    margin: 0 0 1.2rem;
}


/* =========================================================
   FACT STRIP
   ========================================================= */

.ceci-fact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

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

.ceci-fact {
    padding: 2rem 2rem 0 0;
}

.ceci-fact+.ceci-fact {
    padding-left: 2rem;

    border-left: 1px solid var(--ceci-border);
}

.ceci-fact span {
    display: block;

    margin-bottom: 1rem;

    font-family: 'Space Mono', monospace;
    font-size: .65rem;
    letter-spacing: .12em;

    color: var(--ceci-gold);
}

.ceci-fact strong {
    display: block;

    margin-bottom: .5rem;

    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;

    color: var(--ceci-forest);
}

.ceci-fact p {
    margin: 0;

    color: var(--ceci-muted);
    font-size: .85rem;
}


/* =========================================================
   WHY CECI
   ========================================================= */

.ceci-why {
    background: var(--ceci-leaf-bg);
}

.ceci-challenge-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 6rem;
}

.ceci-challenge-intro {
    max-width: 420px;

    color: var(--ceci-steel);
}

.ceci-challenge-intro p {
    margin: 0 0 1.5rem;
}

.ceci-challenge-flow {
    border-top: 1px solid rgba(131, 131, 75, .35);
}

.ceci-challenge-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;

    padding: 1.6rem 0;
}

.ceci-challenge-item>span {
    font-family: 'Space Mono', monospace;
    font-size: .65rem;

    color: var(--ceci-olive);
}

.ceci-challenge-item h3 {
    margin: 0 0 .3rem;

    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;

    color: var(--ceci-forest);
}

.ceci-challenge-item p {
    max-width: 500px;

    margin: 0;

    color: var(--ceci-muted);
    font-size: .85rem;
}

.ceci-flow-line {
    width: 1px;
    height: 22px;

    margin-left: 29px;

    background: rgba(131, 131, 75, .35);
}


/* =========================================================
   CHAMPIONS PLACEHOLDER
   ========================================================= */

.ceci-champions-placeholder {
    background: var(--ceci-forest);
    color: var(--ceci-white);
}

.ceci-champions-placeholder h2 {
    max-width: 800px;
}

.ceci-champions-placeholder p {
    max-width: 600px;

    margin-top: 2rem;

    color: rgba(255, 255, 255, .7);
}


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

@media (max-width: 960px) {

    .ceci-section {
        padding: 5rem 0;
    }

    .ceci-hero-content {
        padding-top: 8rem;
    }

    .ceci-hero h1 {
        font-size: clamp(3.5rem,
                10vw,
                6rem);
    }

    .ceci-intro-grid,
    .ceci-challenge-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ceci-fact-strip {
        grid-template-columns: 1fr;
    }

    .ceci-fact,
    .ceci-fact+.ceci-fact {
        padding: 1.5rem 0;
        border-left: 0;
        border-top: 1px solid var(--ceci-border);
    }

    .ceci-fact:first-child {
        border-top: 0;
    }

    .ceci-scroll {
        display: none;
    }
}


@media (max-width: 600px) {

    .ceci-container {
        width: calc(100% - 3rem);
    }

    .ceci-section {
        padding: 4.5rem 0;
    }

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

    .ceci-hero-content {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .ceci-hero h1 {
        font-size: clamp(3.2rem,
                15vw,
                5rem);

        line-height: .9;
    }

    .ceci-hero-description {
        font-size: .9rem;
    }

    .ceci-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ceci-btn {
        justify-content: center;
    }

    .ceci-hero-meta {
        gap: 1.2rem;
        margin-top: 3rem;
    }

    .ceci-hero-meta strong {
        font-size: 2.2rem;
    }

    .ceci-hero-meta span {
        font-size: .5rem;
    }

    .ceci-section-heading {
        margin-bottom: 2.5rem;
    }

    .ceci-section-heading h2,
    .ceci-champions-placeholder h2 {
        font-size: 3.2rem;
    }

    .ceci-intro-lead p {
        font-size: 2rem;
    }

    .ceci-challenge-grid {
        gap: 2rem;
    }

}

/* =========================================================
   SCROLL REVEALS
   ========================================================= */

.ceci-reveal {
    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.ceci-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   COMMUNITY ENVIRONMENTAL CHAMPIONS
   ========================================================= */

.ceci-champions {
    padding: 7rem 0;

    background: var(--ceci-forest);
    color: var(--ceci-white);
}


/* Header */

.ceci-champions-header {
    margin-bottom: 5rem;
}

.ceci-champions-heading {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;

    align-items: start;

    margin-top: 1.5rem;
}

.ceci-big-number {
    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(8rem, 15vw, 13rem);
    font-weight: 500;
    line-height: .7;

    color: var(--ceci-gold);

    letter-spacing: -.05em;
}

.ceci-champions-heading h2 {
    max-width: 800px;

    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 500;

    line-height: .95;
}

.ceci-champions-heading h2 em {
    color: var(--ceci-gold);
    font-weight: 400;
}

.ceci-champions-heading p {
    max-width: 650px;

    margin: 1.8rem 0 0;

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

    font-size: .95rem;
    line-height: 1.8;
}


/* Focus areas */

.ceci-champions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.ceci-champion-focus {
    position: relative;

    padding: 2.5rem 3rem 2.8rem 0;
}

.ceci-champion-focus:nth-child(odd) {
    padding-right: 3rem;

    border-right: 1px solid rgba(255, 255, 255, .18);
}

.ceci-champion-focus:nth-child(even) {
    padding-left: 3rem;
}

.ceci-champion-focus:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.ceci-card-number {
    display: block;

    margin-bottom: 1.5rem;

    font-family: 'Space Mono', monospace;
    font-size: .65rem;
    letter-spacing: .12em;

    color: var(--ceci-gold);
}

.ceci-champion-focus h3 {
    margin: 0 0 .7rem;

    font-family: 'Cormorant Garamond', serif;

    font-size: 2rem;
    font-weight: 600;

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

.ceci-champion-focus p {
    max-width: 500px;

    margin: 0;

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

    font-size: .85rem;
    line-height: 1.8;
}


/* Bottom facts */

.ceci-champions-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 3rem;
}

.ceci-champions-footer>div {
    display: flex;
    flex-direction: column;

    padding-left: 1.5rem;

    border-left: 1px solid rgba(255, 255, 255, .2);
}

.ceci-mono-label {
    margin-bottom: .4rem;

    font-family: 'Space Mono', monospace;
    font-size: .55rem;
    letter-spacing: .14em;

    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
}

.ceci-champions-footer strong {
    font-family: 'Cormorant Garamond', serif;

    font-size: 1.6rem;
    font-weight: 500;

    color: var(--ceci-gold);
}


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

@media (max-width: 960px) {

    .ceci-champions-heading {
        grid-template-columns: 140px 1fr;
        gap: 2.5rem;
    }

    .ceci-big-number {
        font-size: 9rem;
    }

}


@media (max-width: 600px) {

    .ceci-champions {
        padding: 5rem 0;
    }

    .ceci-champions-heading {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ceci-big-number {
        font-size: 7rem;
    }

    .ceci-champions-heading h2 {
        font-size: 3.2rem;
    }

    .ceci-champions-grid {
        grid-template-columns: 1fr;
    }

    .ceci-champion-focus,
    .ceci-champion-focus:nth-child(odd),
    .ceci-champion-focus:nth-child(even) {
        padding: 2rem 0;

        border-right: 0;
    }

    .ceci-champion-focus:nth-child(n + 2) {
        border-top: 1px solid rgba(255, 255, 255, .18);
    }

    .ceci-champions-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ceci-champions-footer>div {
        padding-left: 1rem;
    }

}

/* =========================================================
   SIX AREAS OF ACTION
   ========================================================= */

.ceci-work-packages {
    background: var(--ceci-off-white);
}

.ceci-section-intro {
    max-width: 680px;

    margin: 1.5rem 0 0;

    color: var(--ceci-muted);

    font-size: .95rem;
    line-height: 1.8;
}


/* Work package list */

.ceci-work-list {
    border-top: 1px solid var(--ceci-border);
}


/* Individual work package */

.ceci-work-row {
    display: grid;
    grid-template-columns: 100px 1fr;

    gap: 2.5rem;

    padding: 3.2rem 2rem 3.2rem 0;

    border-bottom: 1px solid var(--ceci-border);

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


/* Number */

.ceci-work-number {
    font-family: 'Space Mono', monospace;

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

    letter-spacing: .08em;

    color: var(--ceci-olive);

    transition: color .35s ease;
}


/* Content */

.ceci-work-content {
    max-width: 850px;
}

.ceci-work-meta {
    margin-bottom: .65rem;

    font-family: 'Space Mono', monospace;

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

    letter-spacing: .13em;

    color: var(--ceci-olive);
}


/* Title */

.ceci-work-content h3 {
    max-width: 800px;

    margin: 0 0 1rem;

    font-family: 'Cormorant Garamond', serif;

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

    font-weight: 500;

    line-height: 1;

    color: var(--ceci-forest);

    transition: color .35s ease;
}


/* Description */

.ceci-work-content>p {
    max-width: 700px;

    margin: 0;

    color: var(--ceci-steel);

    font-size: .88rem;
    line-height: 1.8;
}


/* Outcome */

.ceci-work-outcome {
    display: grid;
    grid-template-columns: 130px 1fr;

    gap: 1.5rem;

    max-width: 760px;

    margin-top: 1.8rem;
    padding-top: 1.3rem;

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

.ceci-work-outcome span {
    font-family: 'Space Mono', monospace;

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

    letter-spacing: .12em;

    color: var(--ceci-muted);
}

.ceci-work-outcome strong {
    font-size: .78rem;
    font-weight: 500;

    color: var(--ceci-forest);
}


/* Hover */

.ceci-work-row:hover {
    padding-left: 2rem;
    padding-right: 2rem;

    background: var(--ceci-forest);
}

.ceci-work-row:hover .ceci-work-number,
.ceci-work-row:hover .ceci-work-meta {
    color: var(--ceci-gold);
}

.ceci-work-row:hover .ceci-work-content h3 {
    color: var(--ceci-white);
}

.ceci-work-row:hover .ceci-work-content>p {
    color: rgba(255, 255, 255, .68);
}

.ceci-work-row:hover .ceci-work-outcome {
    border-color: rgba(255, 255, 255, .18);
}

.ceci-work-row:hover .ceci-work-outcome span {
    color: rgba(255, 255, 255, .45);
}

.ceci-work-row:hover .ceci-work-outcome strong {
    color: var(--ceci-white);
}


/* =========================================================
   WORK PACKAGE RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {

    .ceci-work-row {
        grid-template-columns: 60px 1fr;

        gap: 1.5rem;

        padding: 2.5rem 0;
    }

    .ceci-work-row:hover {
        padding-left: 1rem;
        padding-right: 1rem;
    }

}


@media (max-width: 600px) {

    .ceci-work-row {
        grid-template-columns: 1fr;

        gap: .8rem;

        padding: 2.5rem 0;
    }

    .ceci-work-row:hover {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ceci-work-content h3 {
        font-size: 2.3rem;
    }

    .ceci-work-outcome {
        grid-template-columns: 1fr;

        gap: .6rem;
    }

}

/* =========================================================
   18-MONTH JOURNEY
   ========================================================= */

.ceci-timeline {
    background: var(--ceci-white);
}

.ceci-timeline-track {
    position: relative;
    width: 100%;
    margin-top: 5rem;
    padding-left: 80px;
}

.ceci-timeline-track::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 22px;

    width: 1px;

    background: var(--ceci-border);
}


/* =========================================================
   PHASE
   ========================================================= */

.ceci-phase {
    position: relative;

    width: 100%;

    padding-bottom: 6rem;
}

.ceci-phase:last-child {
    padding-bottom: 0;
}


/* =========================================================
   PHASE MARKER
   ========================================================= */

.ceci-phase-marker {
    position: absolute;

    left: -80px;
    top: 0;

    width: 45px;
    height: 45px;

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

    border: 1px solid var(--ceci-gold);
    border-radius: 50%;

    background: var(--ceci-white);

    z-index: 2;
}

.ceci-phase-marker span {
    font-family: 'Space Mono', monospace;

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

    color: var(--ceci-deep-gold);
}


/* =========================================================
   PHASE CONTENT
   ========================================================= */

.ceci-phase-content {
    width: 100%;
    max-width: 900px;
}

.ceci-phase-time {
    margin-bottom: .7rem;

    font-family: 'Space Mono', monospace;

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

    letter-spacing: .12em;

    color: var(--ceci-olive);
}

.ceci-phase-content h3 {
    max-width: 750px;

    margin: 0 0 1.2rem;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2.8rem, 5vw, 5rem);

    font-weight: 500;

    line-height: .95;

    color: var(--ceci-forest);
}

.ceci-phase-content h3 em {
    color: var(--ceci-gold);
    font-weight: 400;
}

.ceci-phase-content>p {
    max-width: 700px;

    margin: 0 0 2rem;

    color: var(--ceci-steel);

    font-size: .95rem;
    line-height: 1.8;
}


/* =========================================================
   PHASE ACTIVITIES
   ========================================================= */

.ceci-phase-content ul {
    display: grid;

    grid-template-columns: repeat(2, minmax(200px, 1fr));

    gap: .7rem 3rem;

    width: 100%;
    max-width: 700px;

    margin: 0;
    padding: 1.5rem 0 0;

    border-top: 1px solid var(--ceci-border);

    list-style: none;
}

.ceci-phase-content li {
    position: relative;

    padding-left: 1rem;

    font-size: .8rem;
    line-height: 1.5;

    color: var(--ceci-muted);
}

.ceci-phase-content li::before {
    content: "";

    position: absolute;

    left: 0;
    top: .6em;

    width: 5px;
    height: 5px;

    border-radius: 50%;

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

/* =========================================================
   CECI × SUPER CUP — FULL BLEED IMAGE
   ========================================================= */

.ceci-supercup-link {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #000;

    color: #fff;
}


/* ---------------------------------------------------------
   BACKGROUND IMAGE
--------------------------------------------------------- */

.ceci-supercup-background {
    position: absolute;
    inset: 0;

    z-index: 0;

    display: block;
}

.ceci-supercup-background img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* ---------------------------------------------------------
   OVERLAY
--------------------------------------------------------- */

.ceci-supercup-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .90) 0%,
            rgba(0, 0, 0, .76) 34%,
            rgba(0, 0, 0, .38) 65%,
            rgba(0, 0, 0, .20) 100%);
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.ceci-supercup-link .ceci-container {
    position: relative;

    z-index: 2;

    width: 100%;
    margin-left: 8rem;
    margin-top: 8rem;
}

.ceci-supercup-content {
    max-width: 720px;

    padding: 6rem 0;
}


.ceci-supercup-content h2 {
    max-width: 700px;

    margin: 1.5rem 0;

    font-family: 'Cormorant Garamond', serif;

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

    font-weight: 500;

    line-height: .88;

    letter-spacing: -.035em;
}

.ceci-supercup-content h2 em {
    color: var(--ceci-gold);

    font-weight: 400;
}


.ceci-supercup-content p {
    max-width: 590px;

    margin: 0 0 2rem;

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

    font-size: .92rem;

    line-height: 1.85;
}


/* ---------------------------------------------------------
   IMAGE HOVER
--------------------------------------------------------- */

.ceci-supercup-background img {
    transition: transform 1.2s ease;
}

.ceci-supercup-link:hover .ceci-supercup-background img {
    transform: scale(1.025);
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

    .ceci-supercup-link {
        min-height: 680px;

        align-items: flex-end;
    }

    .ceci-supercup-background img {
        object-position: center center;
    }

    .ceci-supercup-overlay {
        background:
            linear-gradient(180deg,
                rgba(0, 0, 0, .15) 0%,
                rgba(0, 0, 0, .45) 35%,
                rgba(0, 0, 0, .92) 72%,
                rgba(0, 0, 0, .97) 100%);
    }

    .ceci-supercup-content {
        padding: 4rem 0 3.5rem;
    }

    .ceci-supercup-content h2 {
        font-size: clamp(3.4rem, 14vw, 5rem);

        line-height: .9;
    }

    .ceci-supercup-content p {
        font-size: .84rem;

        line-height: 1.75;
    }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {

    .ceci-supercup-grid {
        grid-template-columns: 1fr;

        gap: 3rem;
    }

    .ceci-supercup-visual {
        max-width: 750px;

        aspect-ratio: 8 / 5;
    }

}


@media (max-width: 700px) {

    .ceci-supercup-visual {
        aspect-ratio: 5 / 6;
    }

    .ceci-image-label {
        left: 1rem;
        bottom: 1rem;

        font-size: .48rem;
    }

}

@media (max-width: 600px) {

    .ceci-supercup-link {
        padding: 5rem 0;
    }

    .ceci-supercup-copy h2 {
        font-size: 3.4rem;
    }

    .ceci-supercup-visual {
        aspect-ratio: 1 / 1;
    }

    .ceci-supercup-stat strong {
        font-size: 2rem;
    }

}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

    .ceci-timeline-track {
        padding-left: 65px;
    }

    .ceci-phase-marker {
        left: -65px;
    }

    .ceci-phase-content {
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .ceci-timeline-track {
        margin-top: 3rem;
        padding-left: 45px;
    }

    .ceci-timeline-track::before {
        left: 14px;
    }

    .ceci-phase {
        padding-bottom: 4rem;
    }

    .ceci-phase-marker {
        left: -45px;

        width: 30px;
        height: 30px;
    }

    .ceci-phase-marker span {
        font-size: .5rem;
    }

    .ceci-phase-content h3 {
        font-size: 2.7rem;
    }

    .ceci-phase-content ul {
        grid-template-columns: 1fr;
    }

}

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

.ceci-final-cta {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #000;
    color: #fff;
}


/* Background */

.ceci-final-cta-background {
    position: absolute;
    inset: 0;

    display: block;

    z-index: 0;
}

.ceci-final-cta-background img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Overlay */

.ceci-final-cta-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .88) 0%,
            rgba(0, 0, 0, .72) 45%,
            rgba(0, 0, 0, .30) 100%);
}


/* Content */

.ceci-final-cta .ceci-container {
    position: relative;
    z-index: 2;

    width: 100%;
}

.ceci-final-cta-content {
    max-width: 650px;

    padding: 6rem 0;
    margin-left: 20rem;
}

.ceci-final-cta-content h2 {
    margin: 1.5rem 0;

    font-family: 'Cormorant Garamond', serif;

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

    font-weight: 500;

    line-height: .88;

    letter-spacing: -.03em;
}

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

    font-weight: 400;
}

.ceci-final-cta-content p {
    max-width: 560px;

    margin: 0 0 2rem;

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

    font-size: .92rem;

    line-height: 1.8;
}


/* Buttons */

.ceci-final-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: .8rem;
}

.ceci-btn-outline {
    border: 1px solid rgba(255, 255, 255, .5);

    color: #fff;

    background: transparent;
}

.ceci-btn-outline:hover {
    background: #fff;

    color: #000;
}


/* Mobile */

@media (max-width: 700px) {

    .ceci-final-cta {
        min-height: 650px;

        align-items: flex-end;
    }

    .ceci-final-cta-overlay {
        background:
            linear-gradient(180deg,
                rgba(0, 0, 0, .15) 0%,
                rgba(0, 0, 0, .48) 35%,
                rgba(0, 0, 0, .92) 72%,
                rgba(0, 0, 0, .98) 100%);
    }

    .ceci-final-cta-content {
        padding: 4rem 0 3.5rem;
    }

    .ceci-final-cta-content h2 {
        font-size: 4rem;
    }

    .ceci-final-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

}