:root {
    --yellow: #f2d400;
    --yellow-light: #ffe92f;
    --black: #080808;
    --black-soft: #111111;
    --black-card: #171717;
    --white: #ffffff;
    --gray: #a7a7a7;
    --gray-light: #e9e9e9;
    --max: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    background: var(--white);
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.97);
    border-bottom: 3px solid var(--yellow);
}

.header-inner {
    max-width: 1500px;
    min-height: 82px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    line-height: 1;
}

.brand-popeye {
    font-size: 28px;
    font-weight: 1000;
    letter-spacing: -1px;
    color: var(--yellow);
}

.brand-sub {
    margin-top: 5px;
    color: var(--white);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 19px;
}

.main-nav a {
    position: relative;
    padding: 31px 0 28px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 3px;
    background: var(--yellow);
    transition: right 0.2s ease;
}

.main-nav a:hover {
    color: var(--yellow);
}

.main-nav a:hover::after {
    right: 0;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid #444;
    background: transparent;
    cursor: pointer;
    padding: 9px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    margin: 4px 0;
    background: var(--yellow);
}

.hero {
    min-height: calc(100vh - 82px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 35%,
            #383300 0,
            transparent 35%
        ),
        linear-gradient(
            125deg,
            #050505 0%,
            #121212 58%,
            #050505 100%
        );
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent 0 24px,
            var(--yellow) 25px 27px,
            transparent 28px 55px
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.94) 0%,
            rgba(0,0,0,0.70) 48%,
            rgba(0,0,0,0.20) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 56px));
    margin: 0 auto;
    padding: 100px 0;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(56px, 8vw, 126px);
    font-weight: 1000;
    line-height: 0.87;
    letter-spacing: -5px;
    text-transform: uppercase;
}

.hero h1 span,
.page-hero h1 span,
h2 span {
    color: var(--yellow);
}

.hero-lead {
    max-width: 690px;
    margin: 32px 0 0;
    color: #d5d5d5;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border: 2px solid transparent;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

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

.button-primary {
    background: var(--yellow);
    color: var(--black);
}

.button-primary:hover {
    background: var(--yellow-light);
}

.button-outline {
    border-color: var(--white);
    color: var(--white);
}

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

.button-outline-dark {
    border-color: var(--black);
    color: var(--black);
}

.button-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

.hero-number {
    position: absolute;
    z-index: 1;
    right: -20px;
    bottom: -50px;
    color: rgba(242, 212, 0, 0.09);
    font-size: clamp(180px, 28vw, 500px);
    font-weight: 1000;
    line-height: 0.8;
    letter-spacing: -35px;
}

.section {
    padding: 105px 28px;
}

.section > * {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-heading {
    margin-bottom: 52px;
}

.section-heading h2,
.split-layout h2,
.event-banner h2,
.event-feature h2,
.contact-box h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 1000;
    line-height: 0.94;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.section-heading p {
    max-width: 760px;
    margin: 22px 0 0;
    color: #626262;
    font-size: 18px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 330px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    background: var(--black);
    color: var(--white);
    border-bottom: 6px solid var(--yellow);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    background: #161616;
}

.feature-number {
    color: var(--yellow);
    font-size: 18px;
    font-weight: 900;
}

.feature-card h3 {
    margin: auto 0 15px;
    font-size: 35px;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

.feature-card span {
    margin-top: 20px;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.split-layout,
.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.large-copy,
.story-copy p {
    color: #c7c7c7;
    font-size: 18px;
    line-height: 1.8;
}

.split-layout .button {
    margin-top: 20px;
}

.portrait-card {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: #222;
}

.portrait-card img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.portrait-card:hover img {
    transform: scale(1.025);
}

.portrait-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 30px 30px;
    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.94)
        );
}

.portrait-caption small {
    display: block;
    margin-bottom: 7px;
    color: var(--yellow);
    font-weight: 900;
    letter-spacing: 2px;
}

.portrait-caption strong {
    font-size: 30px;
}

.event-banner {
    min-height: 430px;
    padding: 75px max(28px, calc((100vw - 1280px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    background: var(--yellow);
    color: var(--black);
}

.event-banner .eyebrow {
    color: var(--black);
}

.event-banner h2 span {
    display: block;
    color: var(--black);
}

.event-banner p {
    font-size: 20px;
}

.event-year {
    font-size: clamp(100px, 19vw, 280px);
    font-weight: 1000;
    line-height: 0.8;
    letter-spacing: -18px;
    opacity: 0.14;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-placeholder {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #141414,
            #292929
        );
    color: #777;
    border-bottom: 5px solid var(--yellow);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.photo-placeholder.large {
    aspect-ratio: 1 / 1;
}

.center {
    margin-top: 40px;
    text-align: center;
}

.page-hero {
    min-height: 500px;
    padding: 90px 28px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at 75% 50%,
            #3f3700 0,
            transparent 30%
        ),
        var(--black);
    color: var(--white);
}

.page-hero > div {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
}

.page-hero p {
    max-width: 650px;
    color: #bbb;
    font-size: 20px;
    line-height: 1.6;
}

.story-photo img {
    width: 100%;
    max-height: 760px;
    object-fit: cover;
    object-position: center top;
    border-bottom: 8px solid var(--yellow);
}

.story-copy h2 {
    margin: 0 0 25px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    text-transform: uppercase;
}

.story-copy p {
    color: #444;
}

.quote-section {
    padding: 110px 28px;
    background: var(--yellow);
    text-align: center;
}

.quote-section blockquote {
    max-width: 1100px;
    margin: 0 auto;
    font-size: clamp(44px, 7vw, 90px);
    font-weight: 1000;
    line-height: 0.96;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.quote-section span {
    display: block;
}

.event-feature,
.contact-box {
    max-width: var(--max);
    min-height: 430px;
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
}

.giant-year,
.contact-mark {
    color: rgba(242, 212, 0, 0.16);
    font-size: clamp(90px, 18vw, 245px);
    font-weight: 1000;
    line-height: 0.8;
    letter-spacing: -12px;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sponsor-placeholder {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ddd;
    color: #888;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
}

.site-footer {
    padding: 50px 28px;
    background: var(--black);
    color: var(--white);
    border-top: 5px solid var(--yellow);
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-inner strong {
    color: var(--yellow);
    font-size: 20px;
}

.footer-inner p {
    margin-bottom: 0;
    color: #888;
}

.footer-tag {
    color: #292929;
    font-size: clamp(38px, 6vw, 75px);
    font-weight: 1000;
    letter-spacing: -4px;
}

@media (max-width: 1100px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 28px 24px;
        background: var(--black);
        border-bottom: 3px solid var(--yellow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 15px 0;
        border-bottom: 1px solid #222;
    }

    .main-nav a::after {
        display: none;
    }

    .feature-grid,
    .placeholder-grid,
    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 760px) {

    .header-inner {
        min-height: 72px;
        padding: 0 18px;
    }

    .main-nav {
        top: 72px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand-popeye {
        font-size: 24px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        width: calc(100% - 36px);
        padding: 85px 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(50px, 17vw, 78px);
        letter-spacing: -3px;
    }

    .hero-number {
        right: -15px;
        bottom: 0;
        font-size: 150px;
        letter-spacing: -12px;
    }

    .section {
        padding: 75px 18px;
    }

    .section-heading h2,
    .split-layout h2,
    .event-banner h2,
    .event-feature h2,
    .contact-box h2 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .feature-grid,
    .placeholder-grid,
    .sponsor-grid,
    .split-layout,
    .story-layout {
        grid-template-columns: 1fr;
    }

    .split-layout,
    .story-layout {
        gap: 40px;
    }

    .portrait-card {
        min-height: 500px;
    }

    .portrait-card img {
        height: 500px;
    }

    .event-banner,
    .event-feature,
    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-year,
    .giant-year,
    .contact-mark {
        align-self: flex-end;
    }

    .page-hero {
        min-height: 430px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 480px) {

    .button {
        width: 100%;
    }

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

    .event-feature,
    .contact-box {
        padding: 35px 25px;
    }

}

/* ==========================================================
   POPEYE WOW HOME — ETAPE 1
   ========================================================== */

.popeye-wow-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(242, 212, 0, 0.28),
            transparent 30%
        ),
        linear-gradient(
            115deg,
            #050505 0%,
            #0d0d0d 45%,
            #161616 100%
        );
    color: #fff;
}

.popeye-wow-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -36deg,
            transparent 0 30px,
            rgba(255,255,255,0.025) 31px 32px,
            transparent 33px 61px
        );
    pointer-events: none;
}

.popeye-wow-grain {
    position: absolute;
    inset: 0;
    opacity: 0.23;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255,255,255,0.07) 0 1px,
            transparent 1.5px
        );
    background-size: 8px 8px;
    mix-blend-mode: overlay;
}

.popeye-wow-inner {
    position: relative;
    z-index: 2;
    width: min(1440px, calc(100% - 56px));
    min-height: 680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 40px;
    align-items: center;
}

.popeye-wow-copy {
    padding: 85px 0;
}

.popeye-kicker {
    margin-bottom: 18px;
    color: #f2d400;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.popeye-wow-copy h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(64px, 7vw, 116px);
    font-weight: 1000;
    line-height: 0.86;
    letter-spacing: -6px;
    text-transform: uppercase;
}

.popeye-wow-copy h1 span {
    display: block;
    color: #f2d400;
}

.popeye-wow-copy p {
    max-width: 650px;
    margin: 28px 0 0;
    color: #c5c5c5;
    font-size: 20px;
    line-height: 1.65;
}

.popeye-wow-actions {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.popeye-btn {
    min-height: 54px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.popeye-btn-yellow {
    background: #f2d400;
    color: #090909;
}

.popeye-btn-dark {
    border-color: #fff;
    color: #fff;
}

.popeye-wow-visual {
    position: relative;
    min-height: 620px;
}

.popeye-truck-card {
    position: absolute;
    right: 2%;
    top: 50%;
    width: min(680px, 92%);
    aspect-ratio: 1.45 / 1;
    transform: translateY(-50%) rotate(-2deg);
    border: 1px solid rgba(255,255,255,0.12);
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.01)
        );
    box-shadow:
        0 40px 90px rgba(0,0,0,0.55);
}

.popeye-truck-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    padding: 9px 13px;
    background: #f2d400;
    color: #090909;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: 2px;
}

.popeye-truck-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.popeye-truck-body {
    position: relative;
    width: 64%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-7deg);
    background:
        linear-gradient(
            135deg,
            #2a2a2a,
            #090909
        );
    border: 5px solid #3b3b3b;
    color: #f2d400;
    font-size: clamp(22px, 3vw, 46px);
    font-weight: 1000;
    letter-spacing: -2px;
    text-transform: uppercase;
    box-shadow:
        0 25px 35px rgba(0,0,0,0.65);
}

.popeye-truck-wheel {
    position: absolute;
    bottom: 24%;
    width: 24%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background:
        repeating-radial-gradient(
            circle,
            #111 0 10px,
            #272727 11px 17px,
            #080808 18px 25px
        );
    border: 8px solid #0b0b0b;
    box-shadow:
        inset 0 0 0 7px #2d2d2d,
        0 15px 25px rgba(0,0,0,0.75);
}

.popeye-truck-wheel.left {
    left: 18%;
}

.popeye-truck-wheel.right {
    right: 10%;
}

.popeye-rock {
    position: absolute;
    border-radius: 38% 62% 48% 52%;
    background:
        linear-gradient(
            145deg,
            #5b5b5b,
            #1a1a1a 65%
        );
    filter: brightness(0.65);
}

.popeye-rock-1 {
    width: 330px;
    height: 200px;
    right: 7%;
    bottom: 4%;
    transform: rotate(-8deg);
}

.popeye-rock-2 {
    width: 260px;
    height: 175px;
    left: 6%;
    bottom: 8%;
    transform: rotate(11deg);
}

.popeye-rock-3 {
    width: 220px;
    height: 150px;
    right: 34%;
    bottom: -1%;
    transform: rotate(-18deg);
}

.popeye-wow-stripe {
    position: relative;
    z-index: 3;
    padding: 18px 28px;
    background: #f2d400;
    color: #090909;
    text-align: center;
    font-size: clamp(17px, 2vw, 28px);
    font-weight: 1000;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.popeye-quicklinks {
    position: relative;
    z-index: 5;
    width: min(1500px, calc(100% - 40px));
    margin: -34px auto 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #101010;
    box-shadow:
        0 28px 50px rgba(0,0,0,0.28);
}

.popeye-quick-card {
    min-height: 310px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    color: #fff;
    background:
        linear-gradient(
            180deg,
            #1a1a1a,
            #101010
        );
    border-right: 1px solid #2a2a2a;
    border-bottom: 6px solid #f2d400;
    transition:
        transform 0.18s ease,
        background 0.18s ease;
}

.popeye-quick-card:hover {
    transform: translateY(-8px);
    background: #1f1f1f;
}

.popeye-quick-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
    background: #f2d400;
    color: #090909;
    font-size: 28px;
    font-weight: 1000;
}

.popeye-quick-card h3 {
    margin: 0 0 14px;
    font-size: 19px;
    line-height: 1.08;
    text-transform: uppercase;
}

.popeye-quick-card p {
    margin: 0;
    color: #a8a8a8;
    font-size: 13px;
    line-height: 1.6;
}

.popeye-quick-card span {
    margin-top: auto;
    padding-top: 25px;
    color: #f2d400;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.popeye-quick-secret {
    background:
        linear-gradient(
            145deg,
            #262100,
            #111 65%
        );
}

.popeye-quick-secret h3 {
    color: #f2d400;
}

.popeye-next-preview {
    padding: 120px 28px 110px;
    background: #f2d400;
    color: #090909;
}

.popeye-next-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.popeye-next-preview .popeye-kicker {
    color: #090909;
}

.popeye-next-preview h2 {
    margin: 0;
    font-size: clamp(50px, 7vw, 94px);
    line-height: 0.88;
    letter-spacing: -5px;
    text-transform: uppercase;
}

.popeye-next-preview h2 span {
    display: block;
    color: #090909;
}

.popeye-next-preview p {
    max-width: 620px;
    font-size: 20px;
    line-height: 1.5;
}

.popeye-next-year {
    font-size: clamp(120px, 18vw, 260px);
    font-weight: 1000;
    line-height: 0.8;
    letter-spacing: -16px;
    opacity: 0.14;
}

@media (max-width: 1250px) {

    .popeye-quicklinks {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 900px) {

    .popeye-wow-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .popeye-wow-copy {
        padding-bottom: 10px;
    }

    .popeye-wow-visual {
        min-height: 500px;
    }

}

@media (max-width: 700px) {

    .popeye-wow-inner {
        width: calc(100% - 36px);
    }

    .popeye-wow-copy h1 {
        font-size: clamp(56px, 18vw, 82px);
        letter-spacing: -4px;
    }

    .popeye-wow-actions {
        flex-direction: column;
    }

    .popeye-btn {
        width: 100%;
    }

    .popeye-quicklinks {
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
        margin-top: -18px;
    }

    .popeye-quick-card {
        min-height: 220px;
    }

    .popeye-next-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .popeye-next-year {
        align-self: flex-end;
    }

}

/* ==========================================================
   LOGO OFFICIEL POPEYE
   ========================================================== */

.brand-logo {
    position: relative;
    display: flex;
    align-items: center;
    width: 150px;
    height: 82px;
    flex-shrink: 0;
}

.site-logo {
    position: absolute;
    top: 5px;
    left: 0;
    width: 132px;
    height: 132px;
    object-fit: contain;
    z-index: 10;
    filter:
        drop-shadow(0 7px 12px rgba(0, 0, 0, 0.55));
}

@media (max-width: 1100px) {

    .brand-logo {
        width: 115px;
    }

    .site-logo {
        width: 105px;
        height: 105px;
        top: 4px;
    }

}

@media (max-width: 760px) {

    .brand-logo {
        width: 95px;
        height: 72px;
    }

    .site-logo {
        width: 88px;
        height: 88px;
        top: 3px;
    }

}

/* ==========================================================
   HERO — VRAIE PHOTO CRAWLER
   ========================================================== */

.popeye-real-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.popeye-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    border-left: 1px solid rgba(255,255,255,0.08);
    filter:
        contrast(1.08)
        saturate(1.05)
        brightness(0.90);
}

.popeye-hero-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.86) 0%,
            rgba(5,5,5,0.40) 32%,
            rgba(5,5,5,0.04) 62%,
            rgba(5,5,5,0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0.12),
            rgba(0,0,0,0.34)
        );
}

@media (max-width: 900px) {

    .popeye-real-hero {
        min-height: 460px;
    }

    .popeye-hero-photo {
        object-position: center center;
    }

}

@media (max-width: 700px) {

    .popeye-real-hero {
        min-height: 390px;
    }

}

/* ==========================================================
   HERO FULL WIDTH — PHOTO 035
   ========================================================== */

.popeye-full-photo-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #050505;
}

.popeye-full-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    filter:
        contrast(1.08)
        saturate(1.06)
        brightness(0.82);
}

.popeye-full-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.98) 0%,
            rgba(0,0,0,0.93) 18%,
            rgba(0,0,0,0.78) 36%,
            rgba(0,0,0,0.28) 58%,
            rgba(0,0,0,0.08) 78%,
            rgba(0,0,0,0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0.10) 0%,
            rgba(0,0,0,0.04) 60%,
            rgba(0,0,0,0.46) 100%
        );
}

.popeye-full-photo-hero .popeye-wow-grain {
    z-index: 2;
}

.popeye-full-hero-inner {
    position: relative;
    z-index: 3;
    width: min(1440px, calc(100% - 56px));
    min-height: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.popeye-full-hero-inner .popeye-wow-copy {
    width: min(640px, 52%);
    padding: 90px 0 110px;
}

.popeye-full-hero-inner .popeye-wow-copy h1 {
    font-size: clamp(60px, 6vw, 104px);
    line-height: 0.86;
    letter-spacing: -5px;
}

.popeye-full-hero-inner .popeye-wow-copy h1 span {
    white-space: nowrap;
}

.popeye-full-photo-hero .popeye-wow-stripe {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}

.site-header .site-logo {
    width: 150px;
    height: 150px;
    top: 0;
}

@media (max-width: 1100px) {

    .site-header .site-logo {
        width: 118px;
        height: 118px;
    }

    .popeye-full-hero-inner .popeye-wow-copy {
        width: 62%;
    }

}

@media (max-width: 760px) {

    .popeye-full-photo-hero {
        min-height: 720px;
    }

    .popeye-full-hero-photo {
        object-position: 66% center;
    }

    .popeye-full-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.40) 0%,
                rgba(0,0,0,0.72) 46%,
                rgba(0,0,0,0.95) 100%
            ),
            linear-gradient(
                90deg,
                rgba(0,0,0,0.75) 0%,
                rgba(0,0,0,0.18) 100%
            );
    }

    .popeye-full-hero-inner {
        width: calc(100% - 36px);
        min-height: 660px;
        align-items: flex-end;
    }

    .popeye-full-hero-inner .popeye-wow-copy {
        width: 100%;
        padding: 270px 0 110px;
    }

    .popeye-full-hero-inner .popeye-wow-copy h1 {
        font-size: clamp(52px, 15vw, 76px);
        letter-spacing: -3px;
    }

    .site-header .site-logo {
        width: 92px;
        height: 92px;
    }

}

/* ==========================================================
   MAQUETTE POPEYE — REFERENCE WOW
   ========================================================== */

.mock-home {
    background: #080909;
    color: #fff;
    overflow: hidden;
}

.mock-home * {
    box-sizing: border-box;
}


/* HEADER BASE MASQUE SUR ACCUEIL */

body:has(.mock-home) .site-header {
    display: none;
}

body:has(.mock-home) .site-footer {
    display: none;
}


/* ==========================================================
   TOP
   ========================================================== */

.mock-top {
    min-height: 150px;
    position: relative;
    background:
        linear-gradient(
            90deg,
            #050505,
            #151711 55%,
            #050505
        );
    border-bottom: 1px solid #292929;
}

.mock-top::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background:
        repeating-linear-gradient(
            -35deg,
            transparent 0 20px,
            rgba(255,255,255,.04) 21px 22px,
            transparent 23px 45px
        );
}

.mock-top-inner {
    position: relative;
    z-index: 2;
    width: min(1500px, calc(100% - 40px));
    min-height: 150px;
    margin: auto;
    display: grid;
    grid-template-columns:
        180px 360px 1fr 220px;
    align-items: center;
    gap: 25px;
}

.mock-logo-placeholder {
    width: 175px;
    height: 175px;
    margin-bottom: -40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border: 7px solid #ffd800;
    box-shadow:
        0 0 0 6px #fff,
        0 10px 25px #000;
    color: #ffd800;
    font-weight: 1000;
    font-size: 24px;
}

.mock-slogan {
    transform: rotate(-2deg);
}

.mock-hand {
    font-size: 30px;
    font-weight: 900;
    font-style: italic;
}

.mock-slogan strong {
    display: block;
    color: #ffd800;
    font-size: 41px;
    line-height: .95;
    font-style: italic;
}

.mock-brush-line {
    width: 220px;
    height: 8px;
    margin-top: 10px;
    background: #ffd800;
    transform: skewX(-30deg);
}

.mock-top-photo {
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #5c5c5c;
    color: #777;
    font-size: 12px;
    letter-spacing: 2px;
}

.mock-social {
    text-align: right;
}

.mock-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 8px;
}

.mock-social-icons span {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd800;
    color: #000;
    font-weight: 1000;
}

.mock-social-copy {
    font-size: 14px;
    line-height: 1.2;
    font-style: italic;
}


/* ==========================================================
   MENU
   ========================================================== */

.mock-menu {
    position: relative;
    z-index: 5;
    min-height: 55px;
    padding-left: max(
        20px,
        calc((100vw - 1120px) / 2)
    );
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: rgba(5,5,5,.97);
    border-bottom: 2px solid #222;
}

.mock-menu a {
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.mock-menu a:hover,
.mock-menu a.active {
    background: #ffd800;
    color: #080808;
}


/* ==========================================================
   COMMUNITY
   ========================================================== */

.mock-community {
    position: relative;
    width: min(1600px, 100%);
    min-height: 510px;
    margin: auto;
    display: grid;
    grid-template-columns: 300px 1fr 210px;
    background: #111;
}

.mock-community-left {
    z-index: 2;
    padding: 65px 15px 40px 35px;
    background:
        linear-gradient(
            90deg,
            #080808 50%,
            rgba(8,8,8,.7)
        );
}

.mock-brush-title {
    font-size: 32px;
    font-weight: 1000;
    font-style: italic;
    line-height: .95;
    transform: rotate(-3deg);
}

.mock-big-yellow {
    margin: 8px 0;
    color: #ffd800;
    font-size: 55px;
    font-weight: 1000;
    font-style: italic;
    line-height: .92;
    transform: rotate(-4deg);
}

.mock-main-photo {
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #242424,
            #111
        );
    color: #777;
    border-left: 1px dashed #444;
    border-right: 1px dashed #444;
    letter-spacing: 2px;
}

.mock-sign {
    align-self: center;
    margin: 20px;
    padding: 22px;
    transform: rotate(-4deg);
    background: #88632f;
    color: #111;
    box-shadow:
        0 7px 20px rgba(0,0,0,.6);
}

.mock-sign span {
    display: block;
    padding: 7px 3px;
    border-bottom: 2px solid rgba(0,0,0,.3);
    font-size: 19px;
    font-weight: 1000;
    font-style: italic;
}


/* ==========================================================
   VALUES
   ========================================================== */

.mock-values {
    width: min(1550px, 100%);
    min-height: 100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #0a0b0b;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.mock-value {
    min-height: 100px;
    padding: 12px 10px;
    text-align: center;
}

.mock-value-icon {
    margin-bottom: 5px;
    color: #ffd800;
    font-size: 33px;
    font-weight: 1000;
}

.mock-value strong {
    font-size: 11px;
    line-height: 1.15;
}


/* ==========================================================
   CARDS
   ========================================================== */

.mock-cards {
    width: min(1550px, calc(100% - 30px));
    margin: 14px auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.mock-card {
    min-width: 0;
    background:
        linear-gradient(
            #181818,
            #090909
        );
    border: 1px solid #777;
    border-radius: 5px;
    overflow: hidden;
}

.mock-card-photo {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #292929,
            #111
        );
    color: #777;
    font-size: 10px;
    letter-spacing: 1px;
    border-bottom: 1px dashed #444;
}

.mock-card-body {
    min-height: 175px;
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mock-card-icon {
    margin-top: -27px;
    margin-bottom: 5px;
    font-size: 35px;
    font-weight: 1000;
    color: white;
    text-shadow: 0 3px 5px #000;
}

.mock-card h3 {
    margin: 3px 0;
    font-size: 20px;
    line-height: 1;
}

.mock-card p {
    margin: 4px 0 9px;
    min-height: 30px;
    color: #ddd;
    font-size: 12px;
    line-height: 1.1;
}

.mock-card a {
    min-height: 34px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd800;
    color: #000;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 1000;
}

.mock-card-secret {
    border-color: #ffd800;
}

.mock-card-secret h3 {
    color: #ffd800;
    font-size: 15px;
}


/* ==========================================================
   EVENT
   ========================================================== */

.mock-event {
    width: min(1550px, 100%);
    min-height: 260px;
    margin: 12px auto 0;
    display: grid;
    grid-template-columns: 360px 1fr 300px;
    background: #101010;
}

.mock-event-info {
    padding: 20px 25px;
    background:
        linear-gradient(
            135deg,
            #30200d,
            #171009
        );
}

.mock-wood-title {
    padding: 8px 14px;
    background: #815e2d;
    color: #ffd800;
    font-size: 21px;
    font-weight: 1000;
    transform: rotate(-2deg);
}

.mock-event-date {
    margin: 16px 0 12px;
    font-size: 25px;
    font-weight: 1000;
}

.mock-event-place {
    margin-bottom: 14px;
    font-size: 18px;
}

.mock-yellow-button {
    min-height: 38px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffd800;
    color: #000;
    font-size: 11px;
    font-weight: 1000;
}

.mock-event-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border: 1px dashed #444;
}

.mock-event-quote {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 23px;
    font-style: italic;
    transform: rotate(-2deg);
}

.mock-event-quote span {
    width: 180px;
    height: 6px;
    margin-top: 10px;
    background: #ffd800;
}


/* ==========================================================
   GALLERY
   ========================================================== */

.mock-gallery {
    width: min(1550px, 100%);
    margin: auto;
    padding: 10px 20px 18px;
    background: #0b0c0c;
}

.mock-section-title {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mock-section-title strong {
    font-size: 24px;
}

.mock-section-title small {
    margin-left: 10px;
    color: #ccc;
}

.mock-section-title a {
    padding: 7px 12px;
    border: 1px solid #aaa;
    color: white;
    font-size: 10px;
    font-weight: 900;
}

.mock-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
}

.mock-gallery-grid > div {
    aspect-ratio: 1.8 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d1d1d;
    border: 1px dashed #555;
    color: #777;
    font-size: 10px;
}


/* ==========================================================
   FACEBOOK
   ========================================================== */

.mock-facebook {
    width: min(1550px, 100%);
    min-height: 210px;
    margin: auto;
    padding: 18px 25px;
    display: grid;
    grid-template-columns: 125px 310px 1fr 310px;
    gap: 18px;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            #111,
            #171918,
            #090909
        );
    border-top: 1px solid #333;
}

.mock-facebook-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #1877f2;
    font-size: 80px;
    font-weight: bold;
}

.mock-facebook-copy h2 {
    margin: 0;
    font-size: 30px;
    line-height: .9;
}

.mock-facebook-copy p {
    color: #ddd;
    font-size: 12px;
}

.mock-facebook-photo {
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border: 1px dashed #444;
}

.mock-facebook-list {
    font-size: 13px;
    line-height: 1.7;
}

.mock-facebook-list div::first-letter {
    color: #ffd800;
}


/* ==========================================================
   SPONSORS
   ========================================================== */

.mock-sponsors {
    width: min(1550px, 100%);
    margin: auto;
    padding: 8px 20px 18px;
    background: #101111;
}

.mock-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.mock-sponsor-grid > div {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #777;
    font-size: 11px;
    font-weight: 800;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.mock-footer {
    width: min(1550px, 100%);
    min-height: 150px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns:
        110px 220px 1fr auto 160px;
    gap: 18px;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            #050505,
            #151713,
            #050505
        );
    border-top: 1px solid #333;
}

.mock-footer-logo {
    width: 90px;
    height: 90px;
    border: 4px solid #ffd800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd800;
    font-weight: 1000;
}

.mock-footer-brand small {
    display: block;
    font-size: 11px;
}

.mock-footer-brand strong {
    display: block;
    color: #ffd800;
    font-size: 25px;
}

.mock-footer-slogan {
    color: #ffd800;
    font-size: 24px;
    font-style: italic;
}

.mock-footer-copy {
    color: #aaa;
    font-size: 10px;
}

.mock-footer-social {
    color: #ffd800;
    font-size: 26px;
}


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

@media (max-width: 1200px) {

    .mock-top-inner {
        grid-template-columns:
            150px 300px 1fr;
    }

    .mock-social {
        display: none;
    }

    .mock-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .mock-values {
        grid-template-columns: repeat(3, 1fr);
    }

    .mock-sponsor-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


@media (max-width: 800px) {

    .mock-top-inner {
        grid-template-columns: 105px 1fr;
        min-height: 115px;
    }

    .mock-logo-placeholder {
        width: 100px;
        height: 100px;
        margin: 0;
    }

    .mock-top-photo {
        display: none;
    }

    .mock-hand {
        font-size: 19px;
    }

    .mock-slogan strong {
        font-size: 27px;
    }

    .mock-menu {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .mock-menu a {
        flex: 0 0 auto;
        min-height: 50px;
    }

    .mock-community {
        grid-template-columns: 1fr;
    }

    .mock-community-left {
        padding: 35px 20px;
    }

    .mock-main-photo {
        min-height: 330px;
    }

    .mock-sign {
        display: none;
    }

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

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

    .mock-event {
        grid-template-columns: 1fr;
    }

    .mock-event-photo {
        min-height: 250px;
    }

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

    .mock-facebook {
        grid-template-columns: 90px 1fr;
    }

    .mock-facebook-photo,
    .mock-facebook-list {
        grid-column: 1 / -1;
    }

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

    .mock-footer {
        grid-template-columns: 90px 1fr;
    }

    .mock-footer-slogan,
    .mock-footer-copy,
    .mock-footer-social {
        grid-column: 1 / -1;
    }

}


@media (max-width: 520px) {

    .mock-cards {
        grid-template-columns: 1fr;
    }

    .mock-gallery-grid {
        grid-template-columns: 1fr;
    }

}
