:root {
    --bg-color: #0B0C33;
    --dark-blue: #FFFFFF;
    --gold: #D8B452;
    --blue: #004ABA;
    --glass-bg: rgba(11, 12, 51, 0.45);
    --glass-border: rgba(11, 12, 51, 0.7);
}

/* --- DESTRUCTION TOTALE DU CURSEUR NATIF --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html {
    cursor: none !important;
    overflow-x: hidden;
}

body {
    cursor: none !important;
    background-color: var(--bg-color);
    color: var(--dark-blue);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    width: 100vw;
}

a { text-decoration: none; color: inherit; cursor: none !important; }
button, input, select, textarea { cursor: none !important; }

/* --- SKIP LINK --- */
.skip-link {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--gold);
    color: var(--bg-color);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 99999;
    font-weight: 700;
    transform: translateY(-100%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* --- FOCUS VISIBLE POUR NAVIGATION CLAVIER --- */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

a:focus-visible, button:focus-visible, [role="button"]:focus-visible, [role="menuitem"]:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* --- CURSEUR CUSTOM BLANC --- */
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background-color: var(--dark-blue);
    opacity: 0.65;
    pointer-events: none;
    z-index: 999999;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease;
}

.custom-cursor.is-hovering {
    width: 12px; height: 12px;
    opacity: 1;
}

/* --- PRE-LOADER --- */
#loading-screen {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--bg-color); z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    cursor: none !important;
}
.loader-content { display: flex; align-items: center; justify-content: center; position: relative; }
.loader-totem {
    width: 44px; height: 44px; z-index: 2;
    display: flex; align-items: center; justify-content: center;
}
.loader-totem svg { width: 100%; height: 100%; overflow: visible; }
.petal { opacity: 0; will-change: opacity; animation: petalPulse 2.3s ease-in-out infinite; }
.petal-1 { animation-delay: 0s; }
.petal-4 { animation-delay: 0.2s; }
.petal-2 { animation-delay: 0.4s; }
.petal-3 { animation-delay: 0.6s; }
@keyframes petalPulse {
    0% { opacity: 0; }
    17% { opacity: 1; }
    50% { opacity: 1; }
    67% { opacity: 0; }
    100% { opacity: 0; }
}
.loader-text-mask {
    overflow: hidden; width: 0px; margin-right: 0px; display: flex; align-items: center; justify-content: flex-start;
    transition: width 0.6s cubic-bezier(0.33, 1, 0.68, 1), margin-right 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.loader-text-mask.reveal { margin-right: 18px; }
.loader-text { display: flex; align-items: center; white-space: nowrap; }
.loader-text img { height: 44px; width: auto; display: block; filter: brightness(0) invert(1); }

/* --- PAGE TRANSITION OVERLAY --- */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    background: var(--gold);
    z-index: 1000001;
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    transform-origin: left center;
    pointer-events: none;
    will-change: transform, opacity;
}

.page-transition-entry-pending .page-transition-overlay-static {
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
}

.page-transitioning .custom-cursor,
.page-transitioning .skip-link {
    opacity: 0 !important;
}

/* --- SCROLL WRAPPER --- */
#scroll-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    cursor: none !important;
}

/* --- Vidéo de fond --- */
.bg-video-wrapper {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 300px; height: 300px; overflow: hidden; border-radius: 20px; z-index: 0;
}
.bg-video {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100vw; height: 100vh; object-fit: cover;
    filter: grayscale(100%) contrast(1.1); pointer-events: none; opacity: 0;
}

/* --- DESKTOP UI --- */
.super-header {
    position: fixed; top: 15px; right: 40px; display: flex; gap: 1.5rem; z-index: 100;
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; opacity: 0; visibility: hidden; transform: translateY(-10px);
}
.super-header a { transition: color 0.3s ease; }
.super-header a:hover { color: var(--gold); }

.header-logo {
    position: fixed; top: 45px; left: 40px; z-index: 100; opacity: 0; visibility: hidden; transform: translateY(-10px);
}
.header-logo img { height: 35px; }

.header-right-actions {
    position: fixed; top: 52px; right: 40px; z-index: 100;
    display: flex; align-items: center; gap: 18px;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
}
.search-btn {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
    color: #fff; text-decoration: none; transition: color 0.2s;
}
.search-btn:hover { color: var(--gold); }
.search-btn svg { flex-shrink: 0; }
.lang-switcher {
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
}
.lang-switcher .active { color: var(--gold); pointer-events: none; }
.lang-switcher a:hover { color: var(--gold); }

.main-nav {
    position: fixed; top: 35px; left: 50%; transform: translateX(-50%) translateY(-10px);
    height: 54px; background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 40px; box-shadow: none;
    display: flex; justify-content: center; align-items: center; padding: 0 30px; z-index: 100; opacity: 0; visibility: hidden;
}
.main-nav > ul { display: flex; list-style: none; align-items: center; height: 100%; gap: 1.5rem; }
.main-nav > ul > li { position: relative; height: 100%; display: flex; align-items: center; }
.main-nav > ul > li > a { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s ease; padding: 10px 0; }
.main-nav > ul > li:hover > a { color: var(--gold); }

.dropdown {
    position: absolute; top: 100%; left: 50%; transform: translate(-50%, 5px);
    background: var(--bg-color); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; padding: 0.5rem 0; min-width: 260px;
    opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none; display: flex; flex-direction: column;
}
.main-nav > ul > li:hover .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 15px); }
.dropdown a { padding: 0.8rem 1.5rem; font-size: 0.75rem; white-space: nowrap; transition: background 0.2s ease, color 0.2s ease; }
.dropdown a:hover { background: rgba(255, 255, 255, 0.05); color: var(--gold); }

/* --- MOBILE UI --- */
.menu-toggle {
    display: none; flex-direction: column; justify-content: space-between;
    width: 30px; height: 10px; background: transparent; border: none;
    z-index: 110; position: fixed; top: 55px; right: 30px;
}
.menu-toggle span { display: block; width: 100%; height: 2px; background-color: var(--dark-blue); transition: transform 0.4s ease, background-color 0.4s ease; }
.menu-toggle.is-open span { background-color: var(--bg-color); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--dark-blue); color: var(--bg-color); z-index: 105;
    display: flex; flex-direction: column; justify-content: flex-start; padding: 80px 40px 40px 40px;
    clip-path: circle(0% at 100% 0%); transition: clip-path 0.7s cubic-bezier(0.7, 0, 0.2, 1); overflow-y: auto;
}
.mobile-menu.is-open { clip-path: circle(150% at 100% 0%); }
.mobile-links { padding-top: 20px; }
.mobile-item { margin-bottom: 1.2rem; opacity: 0; transform: translateY(20px); }
.mobile-item > a, .mobile-links > a.single-link { display: block; font-size: 2.2rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s ease; }
.mobile-links a.single-link { margin-bottom: 1.2rem; opacity: 0; transform: translateY(20px); }
.mobile-item > a:hover, .mobile-links > a.single-link:hover { color: var(--gold); }
.mobile-sub-links { display: none; flex-direction: column; gap: 1rem; padding-top: 1rem; padding-left: 1.5rem; border-left: 1px solid rgba(11, 12, 51, 0.2); margin-bottom: 0.5rem; }
.mobile-item.is-open .mobile-sub-links { display: flex; }
.mobile-sub-links a { font-size: 1rem; color: rgba(11, 12, 51, 0.6); transition: color 0.3s ease; }
.mobile-sub-links a:hover { color: var(--gold); }
.mobile-secondary { margin-top: auto; padding-bottom: 40px; display: flex; flex-direction: column; gap: 1rem; font-size: 0.9rem; opacity: 0; transform: translateY(20px); text-transform: uppercase; letter-spacing: 0.1em; }
.mobile-lang { margin-top: 1rem; color: var(--gold); }
.mobile-lang a { color: var(--bg-color); }
.mobile-lang a.active { color: var(--gold); pointer-events: none; }

/* --- Canvas 3D --- */
#webgl-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
#webgl-container canvas { pointer-events: none; }

/* --- Conteneur de Texte Section 1 --- */
.content-wrapper {
    position: absolute; top: 55%; left: 8%; transform: translateY(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: flex-start;
    text-align: left; width: 680px; max-width: 90vw;
}

.title-overlap-container {
    position: relative; width: 100%; padding-bottom: 20px;
}

.svg-title-container { width: 100%; overflow: hidden; }
.svg-title-container svg { width: 100%; height: auto; }
.svg-title-container svg path, .svg-title-container svg polygon { opacity: 0; transform: translateY(150px); fill: #FFFFFF; }

.svg-title-yellow-mask {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    clip-path: inset(0 100% 0 0);
}
.svg-title-yellow-mask svg path, .svg-title-yellow-mask svg polygon {
    fill: var(--gold) !important; opacity: 0; transform: translateY(150px);
}

.description-text {
    font-size: 14px; line-height: 1.6; font-weight: 400;
    color: rgba(255,255,255,0.85); max-width: 420px; opacity: 0; transform: translateY(20px);
}

.hero-ctas {
    display: flex; gap: 16px; margin-top: 1.8rem;
    opacity: 0; transform: translateY(20px);
}
.hero-cta {
    position: relative; padding: 14px 32px; font-size: 14px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em; border-radius: 4px;
    overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer;
}
.hero-cta-primary {
    background: var(--gold); color: var(--dark-blue); border: 1px solid var(--gold);
}
.hero-cta-primary:hover {
    background: transparent; color: var(--gold);
}
.hero-cta-secondary {
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3);
}
.hero-cta-secondary:hover {
    border-color: var(--gold); color: var(--gold);
}
.hero-cta::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; background: rgba(216, 180, 82, 0.15);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}
.hero-cta:hover::after {
    width: 300px; height: 300px;
}

/* --- Widget Vidéo --- */
.video-widget {
    position: absolute; bottom: 40px; right: 40px; z-index: 10;
    display: flex; align-items: center; gap: 15px;
    opacity: 0; transform: translateY(20px);
}
.video-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; color: var(--dark-blue); transition: color 0.3s ease; }
.video-poster { width: 240px; height: 135px; border-radius: 8px; position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); }
.video-poster::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../IMG/poster-video.jpg'); background-size: cover; background-position: center; transition: transform 0.4s ease, filter 0.4s ease;
}
.video-widget:hover .video-poster::before { transform: scale(1.05); filter: brightness(0.85); }
.video-widget:hover .video-label { color: var(--gold); }

/* --- SECTION 2 --- */
.section-2 {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    display: flex; align-items: center; justify-content: flex-end;
    padding-right: 15vw; z-index: 2; opacity: 0; pointer-events: none;
}

.s2-content { width: 45vw; max-width: 600px; color: var(--dark-blue); }
.s2-content h2, .s2-content h2 p { font-family: 'Inter', sans-serif; font-weight: 900!important; font-size: 50px; margin-bottom: 2rem; line-height: 1.1; text-transform: uppercase; }
.s2-content p { font-weight: 400; font-size: 14px; line-height: 1.6; margin-bottom: 1.5rem; }
.s2-content p:first-of-type { font-weight: 700; }
.s2-gold { color: var(--gold); }

/* --- CHIFFRES CLÉS --- */
.figures-grid {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr; align-content: center;
    padding-left: 45vw; padding-right: 8vw; z-index: 3;
    opacity: 0; pointer-events: none;
}
.figure-item { margin-bottom: 2.5rem; transform: translateY(40px); opacity: 0; }
.fig-num { font-size: 42px; font-weight: 700; color: var(--dark-blue); display: block; line-height: 1; }
.fig-label { font-size: 12px; text-transform: uppercase; color: var(--gold); font-weight: 700; letter-spacing: 0.05em; margin-top: 6px; display: block; }

/* --- SECTION 3 JUMBOTRON --- */
.section-3 {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    z-index: 4; opacity: 0; pointer-events: none;
}

.jumbotron-wrapper {
    position: relative; width: 150px; height: 150px; border-radius: 20px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: rgba(11, 12, 51, 0.5);
}

.jumbotron-wrapper img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) contrast(1.1); opacity: 0.25;
    pointer-events: none;
}

.jumbotron-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 12, 51, 0.3);
    pointer-events: none;
}

.s3-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; color: var(--dark-blue); padding: 3rem 2.5rem;
    opacity: 0; transform: translateY(30px);
}

.s3-content h2 {
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 50px;
    margin-bottom: 1.2rem; line-height: 1.1; text-transform: uppercase;
}

.s3-gold {
    color: var(--gold);
}

.s3-content p {
    font-weight: 400; font-size: 14px; line-height: 1.7; margin-bottom: 1rem;
    max-width: 520px;
}

.s3-content .s3-link {
    position: relative; display: inline-block; margin-top: 1.2rem; padding: 14px 32px;
    background-color: var(--gold); color: var(--dark-blue); border: 1px solid var(--gold);
    border-radius: 4px; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.s3-content .s3-link:hover {
    background-color: transparent; color: var(--gold);
}

.s3-content .s3-link::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; background: rgba(216, 180, 82, 0.15);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.s3-content .s3-link:hover::after { width: 300px; height: 300px; }

/* --- VIDEO PANELS (independent, absolute in scroll-wrapper) --- */
.video-2-left,
.heritage-left {
    position: absolute; top: 0; left: 0;
    width: 33.34vw; height: 100vh;
    overflow: hidden;
    background: var(--bg-color);
    will-change: width, left, opacity;
    pointer-events: none;
}

.video-2-left { z-index: 10; }
.heritage-left { z-index: 11; }

.video-2-left video,
.heritage-left video {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.08;
}

/* --- SECTION 4 --- */
.section-4 {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    z-index: 5; opacity: 0; pointer-events: none;
}

.section-text-content {
    padding: 4rem 4vw 4rem 6vw;
    max-width: 540px;
    display: flex; flex-direction: column; align-items: flex-start;
}

/* --- HERITAGE INNER (used by index.html) --- */
.heritage-inner {
    width: 100vw; height: 100vh;
    display: grid; grid-template-columns: 1fr 2fr;
    position: relative;
}

.heritage-right {
    display: flex; flex-direction: column; justify-content: center;
    padding: 4rem 10rem 4rem 10rem;
    position: relative;
    overflow: hidden;
    min-width: 66.66vw;
    margin-left: 33.34vw;
}

.heritage-title {
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 50px;
    line-height: 1.05; color: var(--dark-blue); margin-bottom: 1.5rem;
    opacity: 0; transform: translateY(30px); text-transform: uppercase;
}

.heritage-subtitle {
    font-weight: 400; font-size: 14px; line-height: 1.8;
    color: rgba(255,255,255,0.85); margin-bottom: 2.5rem;
    max-width: 480px;
    opacity: 0; transform: translateY(20px);
}

.heritage-img-number {
    position: absolute; bottom: 3rem; left: 3rem;
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 8rem; line-height: 1; color: rgba(255,255,255,0.08);
    opacity: 0 !important;
}

/* --- MASTERS (used by index.html section-5) --- */
.masters-bg-video { display: none; }

.masters-content {
    padding-left: 8vw; max-width: 720px;
    display: flex; flex-direction: column; align-items: flex-start;
}

.masters-title {
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 50px;
    line-height: 1.05; color: #fff; margin-bottom: 1.5rem;
    opacity: 0; transform: translateX(-80px); text-transform: uppercase;
}

.masters-text {
    font-weight: 400; font-size: 14px; line-height: 1.8;
    color: rgba(255,255,255,0.85); margin-bottom: 2.5rem;
    opacity: 0; transform: translateX(-60px);
}

.masters-cta {
    opacity: 0; transform: translateX(-40px);
}

.masters-cta a {
    position: relative; display: inline-block; padding: 14px 32px; font-size: 0.85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em; border-radius: 4px;
    overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--gold); color: var(--dark-blue); border: 1px solid var(--gold);
}

.masters-cta a:hover {
    background: transparent; color: var(--gold);
}

.heritage-brand-grid {
    position: absolute; top: 0; right: 0; width: 33.34vw; height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
    padding: 1.5rem; box-sizing: border-box;
    align-content: center; z-index: 30;
    opacity: 0; pointer-events: none;
}

.heritage-brand-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
    padding: 1.2rem 1rem; border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer; pointer-events: auto;
}

.heritage-brand-card:hover {
    border-color: var(--gold); background: rgba(216, 180, 82, 0.08);
    transform: translateY(-3px);
}

.heritage-brand-img {
    height: 70px; width: auto; max-width: 90%;
    filter: brightness(0) invert(1); opacity: 0.7;
    transition: all 0.3s ease; pointer-events: none;
}

.heritage-brand-card:hover .heritage-brand-img {
    opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(216,180,82,0.4));
}

.heritage-brand-img.no-invert {
    filter: none; opacity: 0.85;
}

.heritage-brand-card:hover .heritage-brand-img.no-invert {
    opacity: 1; filter: drop-shadow(0 0 6px rgba(216,180,82,0.4));
}

.heritage-brand-name {
    font-size: 0.6rem; font-weight: 500; color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: color 0.3s ease; pointer-events: none; text-align: center;
}

.heritage-brand-card:hover .heritage-brand-name {
    color: var(--gold);
}

.heritage-img-number {
    position: absolute; bottom: 3rem; left: 3rem;
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 8rem; line-height: 1; color: rgba(255,255,255,0.08);
    opacity: 0 !important;
}

.s4-title {
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 50px;
    line-height: 1.05; color: #fff; margin-bottom: 1.5rem;
    opacity: 0; transform: translateX(-80px); text-transform: uppercase;
}

.s4-text {
    font-weight: 400; font-size: 14px; line-height: 1.8;
    color: rgba(255,255,255,0.85); margin-bottom: 2.5rem;
    max-width: 480px;
    opacity: 0; transform: translateX(-60px);
}

.s4-cta {
    opacity: 0; transform: translateX(-40px);
}

.s4-cta a {
    position: relative; display: inline-block; padding: 14px 32px; font-size: 0.85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em; border-radius: 4px;
    overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--gold); color: var(--dark-blue); border: 1px solid var(--gold);
}

.s4-cta a:hover {
    background: transparent; color: var(--gold);
}

.gold { color: var(--gold); }

/* --- HERITAGE MARQUEE BANDEAU --- */
.heritage-marquee {
    position: absolute; bottom: 40px; left: 33.33%;
    width: 66.67%; height: 80px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    z-index: 10;
    transform: rotate(-1.5deg);
    transform-origin: left center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
}

.heritage-marquee-track {
    display: flex; align-items: center; gap: 3rem;
    height: 100%; white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.heritage-marquee:hover .heritage-marquee-track {
    animation-play-state: paused;
}

.heritage-marquee .h-logo {
    display: flex; align-items: center; gap: 0.7rem;
    flex-shrink: 0; padding: 0 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.heritage-marquee .h-logo:hover {
    opacity: 0.6;
}

.heritage-marquee .h-logo img {
    width: 56px; height: 40px; object-fit: contain;
}

.heritage-marquee .h-logo span {
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.03em;
    color: var(--bg-color); white-space: nowrap;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- CTA --- */
.heritage-cta-row {
    display: flex; gap: 16px;
    opacity: 0; transform: translateY(15px);
}

.heritage-cta-row a {
    position: relative; padding: 14px 32px; font-size: 0.85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em; border-radius: 4px;
    overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.heritage-cta-row a::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; background: rgba(216, 180, 82, 0.15);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.heritage-cta-row a:hover::after { width: 300px; height: 300px; }

.heritage-cta-primary {
    background: var(--gold); color: var(--dark-blue); border: 1px solid var(--gold);
}

.heritage-cta-primary:hover {
    background: transparent; color: var(--gold);
}

.heritage-cta-secondary {
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3);
}

.heritage-cta-secondary:hover {
    border-color: var(--gold); color: var(--gold);
}

/* --- SECTION 5 --- */
.section-5 {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 6; opacity: 0; pointer-events: none;
    display: flex; align-items: center;
}

.s5-title {
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 50px;
    line-height: 1.05; color: #fff; margin-bottom: 1.5rem;
    opacity: 0; transform: translateX(-80px); text-transform: uppercase;
}

.s5-text {
    font-weight: 400; font-size: 14px; line-height: 1.8;
    color: rgba(255,255,255,0.85); margin-bottom: 2.5rem;
    max-width: 480px;
    opacity: 0; transform: translateX(-60px);
}

.s5-cta {
    opacity: 0; transform: translateX(-40px);
}

.s5-cta a {
    position: relative; display: inline-block; padding: 14px 32px; font-size: 0.85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em; border-radius: 4px;
    overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--gold); color: var(--dark-blue); border: 1px solid var(--gold);
    pointer-events: auto; z-index: 2;
}

.s5-cta a:hover {
    background: transparent; color: var(--gold);
}

/* --- SECTION 6 SUSTAINABILITY --- */
.section-6 {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 7; opacity: 0; pointer-events: none;
    display: flex; align-items: center; justify-content: center;
}

.sustain-inner {
    width: 100vw; height: 100vh;
    display: flex; align-items: center;
    position: relative;
}

.sustain-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 4rem 4rem;
    position: absolute; left: 14vw; top: 0;
    width: 46vw; height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}

.sustain-title {
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 50px;
    line-height: 1.05; color: var(--dark-blue); margin-bottom: 1.5rem;
    opacity: 0; transform: translateX(-60px); text-transform: uppercase;
}

.sustain-text {
    font-weight: 400; font-size: 14px; line-height: 1.8;
    color: rgba(255,255,255,0.85); margin-bottom: 2.5rem;
    max-width: 480px;
    opacity: 0; transform: translateX(-40px);
}

.sustain-cols {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem;
    opacity: 0; transform: translateX(-30px);
}
.sustain-cols p {
    font-family: 'Inter', sans-serif; font-weight: 400; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.85);
}

.sustain-logos {
    display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
    padding: 1.2rem 1.5rem; border-radius: 12px;
    background: #F8F3E7;
    border: 1px solid rgba(216, 180, 82, 0.2);
    opacity: 0; transform: translateX(-20px);
}

.sustain-logo {
    display: flex; align-items: center; justify-content: center;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sustain-logo img {
    height: 40px; width: auto;
    transition: all 0.3s ease;
}

.sustain-logo:hover img {
    transform: scale(1.08);
}

.sustain-logo:hover {
    background: rgba(0, 0, 0, 0.05);
}

.sustain-cta {
    opacity: 0; transform: translateX(-30px);
}

.sustain-cta a {
    position: relative; display: inline-block; padding: 14px 32px; font-size: 0.85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em; border-radius: 4px;
    overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3);
}

.sustain-cta a:hover {
    border-color: var(--gold); color: var(--gold);
}

.sustain-cta-primary {
    background: var(--gold) !important; color: var(--dark-blue) !important; border: 1px solid var(--gold) !important;
}

.sustain-cta-primary:hover {
    background: transparent !important; color: var(--gold) !important;
}

.sustain-cta-secondary {
    background: transparent !important; color: var(--gold) !important; border: 1px solid var(--gold) !important;
    margin-left: 1rem;
}

.sustain-cta-secondary:hover {
    background: var(--gold) !important; color: var(--dark-blue) !important;
}

/* --- SECTION 7 SUSTAINABILITY JUMBOTRON --- */
.section-7 {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 8; opacity: 0; pointer-events: none;
    display: flex; align-items: center; justify-content: center;
}

.purchase-content {
    padding-right: 8vw; width: 55vw;
    display: flex; flex-direction: column; align-items: flex-start;
}

.purchase-jumbotron {
    position: relative; width: 150px; height: 150px;
    border-radius: 20px; overflow: hidden;
    padding: 0; display: flex; align-items: center; justify-content: center;
    background: #0B0C33;
}

.purchase-jumbotron-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
    opacity:0.6;
    pointer-events: none;
}

.purchase-jumbotron-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: transparent;
    pointer-events: none;
}

.purchase-jumbotron-inner {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 2; width: 100vw; height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 4rem 3rem; box-sizing: border-box;
}

.purchase-jumbotron .purchase-title {
    color: #fff; text-align: center; opacity: 0; transform: translateY(30px);
}

.purchase-jumbotron .purchase-text {
    text-align: center; max-width: 600px;
    opacity: 0; transform: translateY(20px);
}

.purchase-jumbotron .purchase-columns {
    justify-content: center;
    opacity: 0; transform: translateY(20px);
}

.purchase-jumbotron-cta {
    display: inline-block; padding: 14px 32px; font-size: 0.85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em; border-radius: 4px;
    background: var(--gold); color: var(--dark-blue); border: 1px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.purchase-jumbotron-cta:hover {
    background: transparent; color: var(--gold);
}

.purchase-title {
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 50px;
    line-height: 1.05; color: #fff; margin-bottom: 1.5rem;
    opacity: 0; transform: translateX(-60px); text-transform: uppercase;
}

.purchase-title .gold { color: var(--gold); }

.purchase-text {
    font-weight: 400; font-size: 14px; line-height: 1.8;
    color: rgba(255,255,255,0.85); margin-bottom: 3rem;
    max-width: 700px;
    opacity: 0; transform: translateX(-40px);
}

.purchase-columns {
    display: flex; gap: 4rem; width: 100%;
    opacity: 0; transform: translateY(30px);
}

.purchase-col {
    flex: 1; display: flex; flex-direction: column; gap: 1.2rem;
}

.purchase-region {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--gold);
}

.purchase-logo-link {
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem 2rem; border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.purchase-logo-link:hover {
    border-color: var(--gold); background: rgba(216, 180, 82, 0.06);
    transform: translateY(-3px);
}

.purchase-logo-placeholder {
    font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    pointer-events: none;
}

.purchase-logo-link:hover .purchase-logo-placeholder {
    color: var(--gold);
}

.purchase-logo-group {
    display: flex; flex-direction: column; gap: 0.8rem;
}

/* --- SECTION 7B PURCHASE OUR MALT --- */
.section-7b {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 8; opacity: 0; pointer-events: none;
    display: flex; align-items: center; justify-content: flex-end;
}

.purchase-malt-content {
    padding-right: 8vw; width: 55vw;
    display: flex; flex-direction: column; align-items: flex-start;
}

.purchase-malt-title {
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 50px;
    line-height: 1.05; color: #fff; margin-bottom: 1.5rem;
    opacity: 0; transform: translateX(-60px); text-transform: uppercase;
}

.purchase-malt-title .gold { color: var(--gold); }

.purchase-malt-text {
    font-weight: 400; font-size: 14px; line-height: 1.8;
    color: rgba(255,255,255,0.85); margin-bottom: 3rem;
    max-width: 700px;
    opacity: 0; transform: translateX(-40px);
}

.purchase-malt-distributors {
    display: flex; gap: 4rem; width: 100%;
    opacity: 0; transform: translateY(30px);
}

.purchase-malt-col {
    flex: 1; display: flex; flex-direction: column; gap: 1.2rem;
}

.purchase-malt-region {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--gold);
}

.purchase-malt-logo-link {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem;
    padding: 1.5rem 2rem; border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.purchase-malt-logo-link:hover {
    border-color: var(--gold); background: rgba(216, 180, 82, 0.06);
    transform: translateY(-3px);
}

.purchase-malt-logo-img {
    height: 90px; width: auto; max-width: 100%;
    filter: brightness(0) invert(1); opacity: 0.7;
    transition: all 0.3s ease; pointer-events: none;
}

.purchase-malt-logo-link:hover .purchase-malt-logo-img {
    opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(216,180,82,0.4));
}

.purchase-malt-logo-placeholder {
    font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em; pointer-events: none;
}

.purchase-malt-logo-name {
    font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: color 0.3s ease; pointer-events: none;
}

.purchase-malt-logo-link:hover .purchase-malt-logo-name {
    color: var(--gold);
}

.purchase-malt-logo-link:hover .purchase-malt-logo-placeholder {
    color: var(--gold);
}

.purchase-malt-logo-group {
    display: flex; flex-direction: column; gap: 0.8rem;
}

.purchase-malt-cta {
    margin-top: 2.5rem;
    opacity: 0; transform: translateY(20px);
}

.purchase-malt-cta a {
    position: relative; display: inline-block; padding: 14px 32px; font-size: 0.85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em; border-radius: 4px;
    overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--gold); color: var(--dark-blue); border: 1px solid var(--gold);
    text-decoration: none;
}

.purchase-malt-cta a:hover {
    background: transparent; color: var(--gold);
}

/* --- SECTION 8 NEWS --- */
.section-8 {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 9; opacity: 0; pointer-events: none;
    display: flex; align-items: center; justify-content: center;
}

.news-totem-deco {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 75vh;
    width: auto;
    opacity: 0.05;
    pointer-events: none;
}

.news-inner {
    width: 75vw; max-width: 1100px;
    display: flex; flex-direction: column;
}

.news-header {
    margin-bottom: 2.5rem;
    opacity: 0; transform: translateX(40px);
}

.news-title {
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 50px;
    line-height: 1.05; color: #fff; margin-bottom: 1rem;
    text-transform: uppercase;
}

.news-title .gold { color: var(--gold); }

.news-subtitle {
    font-weight: 400; font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,0.6); max-width: 550px;
}

.news-list {
    display: flex; flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.news-item {
    display: flex; align-items: center; gap: 2.5rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0; transform: translateX(40px);
    position: relative;
}

.news-item:hover {
    padding-left: 1.5rem;
    border-bottom-color: var(--gold);
}

.news-date {
    flex: 0 0 110px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.5);
}

.news-item-title {
    flex: 1;
    font-weight: 400; font-size: 1.05rem; line-height: 1.5;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
}

.news-item:hover .news-item-title { color: #fff; }

.news-item-tag {
    flex: 0 0 auto;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--gold);
    opacity: 0.7;
    padding: 4px 12px; border: 1px solid rgba(216, 180, 82, 0.25); border-radius: 3px;
    transition: all 0.3s ease;
}

.news-item:hover .news-item-tag { opacity: 1; }

.news-arrow {
    flex: 0 0 auto;
    font-size: 1.1rem; color: var(--gold);
    opacity: 0; transform: translateX(-8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-item:hover .news-arrow {
    opacity: 1; transform: translateX(0);
}

.news-item-img {
    position: fixed; top: 0; left: 0;
    width: 280px; height: 180px;
    border-radius: 8px;
    background-size: cover; background-position: center;
    pointer-events: none;
    opacity: 0;
    z-index: 999998;
    filter: grayscale(30%) contrast(1.05);
}

.news-all-cta {
    display: inline-block; margin-top: 2rem;
    font-size: 0.85rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--gold);
    transition: color 0.3s ease;
    opacity: 0; transform: translateX(40px);
}

.news-all-cta:hover { color: #fff; }

/* ==========================================
   PRE-FOOTER: Unleash the Power of Malt Reveal
========================================== */
.pre-footer {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: visible;
    z-index: 10; opacity: 0; visibility: hidden; pointer-events: none;
}

.pre-footer-inner {
    width: 90%;
    height:100vh;
    padding: 0;
    display: flex; flex-direction: column;
    gap: 0;
    justify-content: end ;
}

.pf-line {
    width: 100%;
}


.pf-word {
    position: relative;
    width: 100%;
}

.pf-svg {
    width: 100%;
    height: auto;
    display: block;
}

.pf-svg-outline { display: none; }

.pf-svg-fill {
    clip-path: inset(0 100% 0 0);
}


/* ==========================================
   FOOTER
========================================== */
.site-footer {
    background: var(--bg-color);
    color: #fff;
    padding: 6rem 6vw 0;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.footer-col {
    display: flex; flex-direction: column; gap: 0.75rem;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.8rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 16px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.footer-col a {
    font-size: 0.82rem; color: rgba(255,255,255,0.45);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.footer-col a:hover { color: #fff; transform: translateX(3px); }

.footer-logo {
    width: 140px;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.footer-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.35);
    max-width: 280px;
}

.footer-email {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45) !important;
    transition: color 0.3s ease !important;
    margin-bottom: 0.5rem;
}
.footer-email:hover { color: var(--gold) !important; }

.footer-social-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    margin-top: 0.5rem;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5) !important;
    transition: all 0.3s ease;
}
.footer-social-link:hover {
    color: var(--gold) !important;
    transform: translateY(-2px) !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 0;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    transition: color 0.3s ease;
    letter-spacing: 0.03em;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ==========================================
   CONTENT PAGES (body.page-content)
   Header visible immediately, normal scroll.
========================================== */
.page-content {
    overflow: visible;
    height: auto;
}

.page-content .super-header,
.page-content .header-logo,
.page-content .header-right-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-content .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.page-content .site-footer {
    opacity: 1;
    visibility: visible;
}

.page-content main#main-content {
    width: 100%;
    display: block;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 900px) {
    .custom-cursor { display: none !important; }

    .super-header, .header-right-actions, .main-nav { display: none !important; }
    .menu-toggle { display: flex; }
    .header-logo { top: 40px; left: 20px; }

    /* === MOBILE: RESET ALL SECTIONS FOR NORMAL SCROLL === */
    #scroll-wrapper {
        height: auto !important;
        position: relative !important;
        display: flex;
        flex-direction: column;
        overflow: visible !important;
    }

    /* Hero */
    .bg-video-wrapper {
        position: absolute !important; top: 0 !important; left: 0 !important;
        width: 100% !important; height: 100vh !important;
        transform: none !important; border-radius: 0 !important;
        z-index: 0;
    }
    #webgl-container {
        position: absolute !important; top: 0; left: 0;
        width: 100% !important; height: 100vh !important;
        z-index: 1; pointer-events: none;
    }
    .content-wrapper {
        position: relative !important; top: auto !important; left: auto !important;
        width: 90vw !important; max-width: none !important;
        padding: 120px 1.5rem 2rem 1.5rem; min-height: 100vh;
        display: flex; flex-direction: column; justify-content: center;
        opacity: 1 !important; transform: none !important;
        z-index: 2;
    }
    .svg-title-container { opacity: 1 !important; }
    .svg-title-yellow-mask { display: none; }
    .description-text { font-size: 0.85rem; max-width: 90%; opacity: 1 !important; transform: none !important; }
    .hero-ctas { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0.8rem; opacity: 1 !important; transform: none !important; }
    .hero-cta { flex: 1 1 auto; text-align: center; white-space: nowrap; }

    /* Video widget dans le hero */
    .video-widget {
        position: relative !important; bottom: auto !important; right: auto !important; left: auto !important;
        flex-direction: column; justify-content: center; align-items: stretch;
        height: auto !important; padding: 0 1.5rem; gap: 0; margin-top: 1.5rem;
        opacity: 1 !important; transform: none !important;
    }
    .video-label { display: none !important; }
    .video-poster { width: 100% !important; height: auto !important; aspect-ratio: 16/9; border-radius: 8px; }

    /* === FORCE ALL SECTIONS VISIBLE + RELATIVE === */
    .section-2, .section-3, .section-4, .section-5, .section-6, .section-7, .section-8,
    .section-9, .figures-grid {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        z-index: auto !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    /* === FORCE ALL INNER ELEMENTS VISIBLE === */
    .s2-content, .s2-content h2, .s2-content h2 p, .s2-content p,
    .figure-item,
    .s3-content, .s3-content h2, .s3-content p,
    .jumbotron-wrapper,
    .heritage-title, .heritage-subtitle, .heritage-cols, .heritage-cta-row,
    .s4-title, .s4-text, .s4-cta,
    .masters-title, .masters-text, .masters-cta,
    .s5-title, .s5-text, .s5-cta,
    .sustain-title, .sustain-text, .sustain-cta,
    .purchase-title, .purchase-text, .purchase-columns,
    .news-header, .news-item, .news-all-cta,
    .pf-svg-fill {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        clip-path: none !important;
    }

    /* --- SECTION 2 --- */
    .section-2 { display: flex; justify-content: center; align-items: center; padding: 4rem 1.5rem; }
    .s2-content { width: 100%; max-width: none; text-align: center; }
    .s2-content h2, .s2-content h2 p { font-size: 2.2rem; margin-bottom: 1.2rem; }
    .s2-content p { font-size: 1rem; margin-bottom: 1rem; }

    /* --- FIGURES GRID --- */
    .figures-grid { display: grid; grid-template-columns: 1fr 1fr; padding: 4rem 1.5rem; gap: 1.5rem; }
    .figure-item { margin-bottom: 0; }
    .fig-num { font-size: 1.8rem; }
    .fig-label { font-size: 0.65rem; }

    /* --- SECTION 3 JUMBOTRON --- */
    .section-3 { display: flex; align-items: center; justify-content: center; padding: 3rem 0 3rem 0; }
    .jumbotron-wrapper { width: 90vw !important; height: auto !important; min-height: auto; border-radius: 16px !important; }
    .s3-content { padding: 1.5rem; }
    .s3-content h2 { font-size: 1.8rem; margin-bottom: 0.8rem; line-height: 1.2; }
    .s3-content p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 0.8rem; }

    /* --- VIDEO PANELS: hide on mobile --- */
    .video-2-left, .heritage-left { display: none !important; }

    /* --- SECTION 4 MALT EXPERTISE --- */
    .section-4 { padding: 4rem 1.5rem; }
    .section-text-content { padding: 0!important; max-width: 100%!important; width: 100%; }
    .s4-title { font-size: 2.2rem; margin-bottom: 1rem; }
    .s4-text { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .s4-cta a { width: 100%; text-align: center; }

    /* --- SECTION 5 MALT SOLUTIONS (V2) --- */
    .section-5 { padding: 4rem 1.5rem; }
    .s5-title { font-size: 2.2rem; margin-bottom: 0.8rem; }
    .s5-text { font-size: 0.95rem; margin-bottom: 1.2rem; }
    .s5-cta a { width: 100%; text-align: center; }

    /* --- OLD index.html HERITAGE/MASTERS MOBILE --- */
    .heritage-inner { grid-template-columns: 1fr; }
    .heritage-right { padding: 2rem 1.5rem; min-width: auto; width: 100%; margin-left: 0; }
    .heritage-title { font-size: 2.2rem; margin-bottom: 1rem; }
    .heritage-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .heritage-cols { grid-template-columns: 1fr; gap: 1rem; }
    .heritage-cols p { font-size: 0.95rem; }
    .heritage-img-number { display: none; }
    .heritage-cta-row { flex-direction: row; flex-wrap: wrap; gap: 10px; justify-content: flex-start; }
    .heritage-cta-row a {
        flex: 0 1 auto; text-align: center; white-space: nowrap;
        position: relative; padding: 14px 32px; font-size: 0.85rem; font-weight: 500;
        text-transform: uppercase; letter-spacing: 0.12em; border-radius: 4px;
        overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: auto;
    }
    .heritage-cta-primary { background: var(--gold); color: var(--dark-blue); border: 1px solid var(--gold); }
    .heritage-cta-primary:hover { background: transparent; color: var(--gold); }
    .heritage-cta-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
    .heritage-cta-secondary:hover { border-color: var(--gold); color: var(--gold); }
    .masters-bg-video {
        display: block !important;
        position: absolute !important; top: 0; left: 0;
        width: 100% !important; height: 100% !important;
        object-fit: cover; opacity: 0.15;
        filter: grayscale(100%) contrast(1.1);
        z-index: 0; pointer-events: none;
    }
    .masters-content { padding: 2rem 0; max-width: 100vw; width: 100%; position: relative; z-index: 1; }
    .masters-title { font-size: 2.2rem; margin-bottom: 0.8rem; }
    .masters-text { font-size: 0.95rem; margin-bottom: 1.2rem; }
    .masters-cta a { width: 100%; text-align: center; }

    /* --- SECTION 6 SUSTAINABILITY --- */
    .section-6 { padding: 4rem 1.5rem; }
    .sustain-inner { flex-direction: column; width: 100% !important; height: auto !important; min-height: auto !important; }
    .sustain-left { padding: 2rem 0; min-width: auto !important; width: 100% !important; }
    .sustain-title { font-size: 2.2rem; margin-bottom: 1rem; }
    .sustain-text { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .sustain-cta a { width: 100%; text-align: center; }
    .section-6 .hscroll-intro{
        width:100%!important;
        min-width: auto;
        padding: 0px;
    }
    .section-6 .hscroll-track{
        display: flex;
        flex-wrap: wrap;
        padding:0px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        height:auto;
        gap:1.5rem;
    }
    .section-6 .hscroll-card {
        transform: none!important;
        width: calc(50% - 0.75rem);
    }
    .section-6 .hscroll-title,
    .section-6 .hscroll-text,
    .section-6 .hscroll-cols,
    .section-6 .hscroll-cta{
        opacity:1;
        transform: none!important;
    }

    /* --- SECTION 7 PURCHASE --- */
    .section-7 {padding: 4rem 1.5rem;height: 100vh!important;}
    .purchase-content { padding: 0; max-width: 100%; width: 100%; height: 100%; }
    .purchase-title { font-size: 2.2rem; margin-bottom: 1rem; }
    .purchase-text { font-size: 0.95rem; margin-bottom: 2rem; max-width: 100%; }
    .purchase-columns { flex-direction: column; gap: 2rem; }
    .purchase-region { font-size: 0.7rem; }
    .purchase-logo-link { padding: 1.2rem 1.5rem; }
    .purchase-logo-group { flex-direction: column; gap: 0.6rem; }

    /* --- SECTION 7b PURCHASE --- */
    .section-7b{
        position:inherit;
        opacity:1;
        height: auto;
        pointer-events: all;
        padding: 4rem 1.5rem;
    }
    .section-7b .purchase-malt-content{
        width: 100%;
        padding: 0px;
    }
    .section-7b .purchase-malt-title,
    .section-7b .purchase-malt-text,
    .section-7b .purchase-malt-distributors,
    .section-7b .purchase-malt-cta{
        opacity: 1;
        transform: none;
    }
    .section-7b .purchase-malt-distributors{
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .section-7b .purchase-malt-logo-link{
        height: 100%;
    }

    /* --- SECTION 8 NEWS --- */
    .section-8 { padding: 4rem 1.5rem; justify-content: flex-start; }
    .news-inner { width: 100%; padding: 0; }
    .news-header { margin-bottom: 2rem; }
    .news-title { font-size: 2.2rem; }
    .news-subtitle { font-size: 0.95rem; }
    .news-item {
        display: grid; grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.3rem 1rem; padding: 1.2rem 0; align-items: center;
    }
    .news-date { grid-column: 1; grid-row: 1; }
    .news-item-tag { grid-column: 1; grid-row: 2; }
    .news-item-title { grid-column: 2; grid-row: 1 / 3; font-size: 0.95rem; align-self: center; }
    .news-arrow { grid-column: 3; grid-row: 1 / 3; }
    .news-item-img { display: none !important; }
    .news-all-cta { margin-top: 1.5rem; }

    /* --- PRE-FOOTER --- */
    .pre-footer { min-height: auto; visibility: visible !important; }
    .pre-footer-inner { padding: 3rem 1.5rem; height:auto;}

    /* --- FOOTER --- */
    .site-footer { opacity: 1 !important; visibility: visible !important; padding: 3rem 1.5rem 0; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; padding-bottom: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-desc { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem 0; }
    .footer-legal { gap: 1.2rem; }

    /* Force section 5 background blue on mobile */
    .section-5 {
        background-color: #0B0C33 !important;
        background: #0B0C33 !important;
    }
}

@media (max-width: 600px) {

    /* --- SECTION 6 SUSTAINABILITY --- */
    .section-6 .hscroll-card {
        width:100%;
    }

    /* --- SECTION 7b PURCHASE --- */
    .section-7b .purchase-malt-distributors {
        flex-direction: column;
    }
}

@media (max-width: 450px) {

    /* --- SECTION 6 SUSTAINABILITY --- */
    .section-6 .hscroll-cols{
        flex-direction: column;
    }
}

/* === V2 OVERRIDES === */
/* Video panels start off-screen (width:0, GSAP expands width from left) */
.video-2-left,
.heritage-left {
    width: 0;
    opacity: 1;
}

.heritage-left {
    clip-path: inset(0 0 0 0);
}

.video-2-left video,
.heritage-left video {
    /* Video always fills 100vw×100vh so it's not squished during width animation */
    width: 100vw;
    min-width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(80%) contrast(1.05);
}

/* Section 4 & 5: text on the LEFT side, above video panels */
.section-4,
.section-5 {
    justify-content: flex-start;
    z-index: 12 !important;
}

.section-4 .section-text-content,
.section-5 .section-text-content {
    max-width: 680px;
    padding: 4rem 4vw 4rem 8vw;
}

/* =============================================
   SECTION 6: Horizontal scroll Heritage Brands
   ============================================= */
.section-6 {
    overflow: hidden;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 11;
}

.section-6.active,
.section-6[style*="pointer-events: auto"] {
    pointer-events: auto;
}

.section-6 .hscroll-card {
    cursor: pointer;
}

.section-7  { z-index: 12 !important; }
.section-7b { z-index: 13 !important; }
.section-8  { z-index: 14 !important; }
.section-9  { z-index: 15 !important; }

.hscroll-track {
    display: flex;
    align-items: center;
    gap: 6vw;
    height: 100vh;
    width: max-content;
    padding: 0 30vw 0 14vw;
    will-change: transform;
}

/* --- Intro panel (left side) --- */
.hscroll-intro {
    flex-shrink: 0;
    width: 34vw;
    min-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 6vw;
}

.hscroll-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0; transform: translateX(-60px);
}

.hscroll-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    max-width: 500px;
    opacity: 0; transform: translateX(-40px);
}

.hscroll-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0; transform: translateX(-30px);
}

.hscroll-cols p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.hscroll-cta {
    opacity: 0; transform: translateX(-30px);
}

.hscroll-cta a {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 4px;
    background: var(--gold);
    color: var(--dark-blue);
    border: 1px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hscroll-cta a:hover {
    background: transparent;
    color: var(--gold);
}

/* --- Brand cards: full-bleed image, blue tint, no border-radius --- */
.hscroll-card {
    flex-shrink: 0;
    width: 260px;
    height: 400px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hscroll-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    border: 1px solid rgba(216,180,82,0.25);
}

/* Full-bleed background image — jumbotron-style filter */
.hscroll-card-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: filter 0.5s ease;
}

/* Blue overlay via pseudo-element */
.hscroll-card-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(11, 12, 51, 0.5);
    transition: background 0.5s ease;
}

.hscroll-card:hover .hscroll-card-img {
    filter: grayscale(30%) contrast(1.05);
}

.hscroll-card:hover .hscroll-card-img::after {
    background: rgba(180, 150, 50, 0.15);
}

/* Card content overlaid on the image */
.hscroll-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 2rem 1.8rem;
}

/* Logo: centered horizontally and vertically at top of card */
.hscroll-card-logo {
    height: 60px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    align-self: center;
    flex: 1;
    display: block;
    margin: auto 0;
    transition: opacity 0.3s ease;
}

.hscroll-card:hover .hscroll-card-logo {
    opacity: 1;
}

/* Text group at bottom */
.hscroll-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hscroll-card-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.hscroll-card-desc {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* --- Fixed 'See all' button bottom-right --- */
.hscroll-see-all {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 20;
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 4px;
    text-decoration: none;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: auto;
    cursor: pointer;
}

.hscroll-see-all:hover {
    background: var(--gold);
    color: var(--dark-blue);
}

/* Hide old brand grid */
.heritage-brand-grid { display: none !important; }

/* --- Staggered vertical positions (destructured look) --- */
.hscroll-card-1 { transform: translateY(-30px); }
.hscroll-card-2 { transform: translateY(40px); }
.hscroll-card-3 { transform: translateY(-15px); }
.hscroll-card-4 { transform: translateY(55px); }
.hscroll-card-5 { transform: translateY(-40px); }
.hscroll-card-6 { transform: translateY(25px); }
.hscroll-card-7 { transform: translateY(-20px); }
