@font-face {
    font-family: "Estedad";
    src: url("/Fonts/Estedad-Variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

::selection {
    background-color: #D3AF37;
    color: #ffffff;
}
:root {
    --bg: #080808;
    --panel: #0d0d0d;
    --panel-2: #121212;
    --text: #f5f1e8;
    --muted: rgba(245,241,232,.62);
    --line: rgba(255,255,255,.12);
    --gold: #d3af37;
    --gold-dark: #a98b2b;
    --green: #61745f;
    --header-h: 76px;
    --shell: min(1440px, calc(100vw - 64px));
    --font-site: "Estedad", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    font-family: var(--font-site) !important;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

    body.menu-open {
        overflow: hidden;
    }

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

button {
    font: inherit;
}

img, video {
    display: block;
    width: 100%;
}

[hidden] {
    display: none !important;
}

.site-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    z-index: 10000;
    background: var(--gold);
}

.site-header {
    position: fixed;
    top: 16px;
    right: 20px;
    left: 20px;
    z-index: 9000;
    min-height: var(--header-h);
    padding: 0 14px 0 10px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(8,8,8,.32);
    backdrop-filter: blur(16px);
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

    .site-header.is-scrolled {
        background: rgba(8,8,8,.9);
        border-color: rgba(255,255,255,.08);
    }

    .site-header.is-hidden {
        transform: translateY(-120%);
    }

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-logo {
    width: 132px;
    height: 44px;
    object-fit: contain;
}

.brand-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,.22);
}

.partner-lockup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
}

    .partner-lockup img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

    .desktop-nav a {
        position: relative;
        font-size: 13px;
        font-weight: 800;
        color: rgba(255,255,255,.72);
    }

        .desktop-nav a::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -7px;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width .25s ease;
        }

        .desktop-nav a:hover,
        .desktop-nav a.is-current {
            color: #fff;
        }

            .desktop-nav a:hover::after,
            .desktop-nav a.is-current::after {
                width: 100%;
            }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 900;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

    .menu-toggle span {
        position: absolute;
        left: 50%;
        width: 20px;
        height: 1px;
        background: currentColor;
        transform: translateX(-50%);
    }

        .menu-toggle span:first-child {
            top: 19px;
        }

        .menu-toggle span:last-child {
            top: 27px;
        }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9500;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background: #080808;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

body.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .12em;
}

    .mobile-menu-head button {
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: transparent;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
    }

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: auto 0;
}

    .mobile-menu nav a {
        width: fit-content;
        font-size: clamp(34px, 10vw, 64px);
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -.04em;
    }

.mobile-menu-foot {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .14em;
}

.section-label,
.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

    [data-reveal].is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.hero-cinema {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #080808;
}

.hero-media,
.hero-media video,
.hero-overlay {
    position: absolute;
    inset: 0;
}

    .hero-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



.hero-copy {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    padding: 150px max(28px, 6vw) 118px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 980px;
}

    .hero-copy h1 {
        margin: 18px 0 22px;
        font-size: clamp(64px, 9.5vw, 154px);
        line-height: .86;
        letter-spacing: -.065em;
        font-weight: 900;
    }

    .hero-copy p {
        margin: 0;
        color: rgba(255,255,255,.74);
        font-size: clamp(16px, 1.4vw, 22px);
        line-height: 1.8;
    }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.button-solid {
    background: #fff;
    color: #111;
}

.button-line {
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(0,0,0,.08);
    color: #fff;
    backdrop-filter: blur(8px);
}

.hero-index {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 28px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    display: flex;
    gap: 18px;
    color: rgba(255,255,255,.45);
    font-size: 9px;
    letter-spacing: .16em;
}

.hero-scroll {
    position: absolute;
    z-index: 2;
    bottom: 32px;
    right: 6vw;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.7);
    font-size: 9px;
    letter-spacing: .17em;
}

    .hero-scroll i {
        display: block;
        width: 68px;
        height: 1px;
        background: rgba(255,255,255,.4);
        position: relative;
        overflow: hidden;
    }

        .hero-scroll i::after {
            content: "";
            position: absolute;
            inset: 0;
            background: #fff;
            transform: translateX(100%);
            animation: scrollLine 2s ease-in-out infinite;
        }

@keyframes scrollLine {
    0% {
        transform: translateX(100%);
    }

    50%,100% {
        transform: translateX(-100%);
    }
}

.manifesto {
    padding: 150px 0 120px;
    overflow: hidden;
    background: #080808;
}

.manifesto-copy {
    width: var(--shell);
    margin: 0 auto 100px;
}

    .manifesto-copy p {
        max-width: 1160px;
        margin: 18px 0 0;
        font-size: clamp(34px, 5.2vw, 82px);
        line-height: 1.18;
        letter-spacing: -.045em;
        font-weight: 800;
    }

.word-stream {
    display: flex;
    width: max-content;
    color: rgba(255,255,255,.13);
    font-size: clamp(66px, 10vw, 160px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.05em;
    white-space: nowrap;
    animation: stream 26s linear infinite;
}

    .word-stream div {
        padding-left: .3em;
    }

@keyframes stream {
    to {
        transform: translateX(50%);
    }
}

.mix-gallery-section {
    position: relative;
    padding: 80px 0 130px;
    background: #080808;
    overflow: hidden;
}

.mix-gallery-head {
    width: var(--shell);
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
}

    .mix-gallery-head h2 {
        margin: 12px 0 0;
        font-size: clamp(48px, 6.6vw, 106px);
        line-height: .92;
        letter-spacing: -.06em;
    }

    .mix-gallery-head p {
        max-width: 430px;
        margin: 0;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.9;
    }

.mix-gallery-viewport {
    position: relative;
    min-height: 920px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    overflow: hidden;
}

.mix-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 24px;
    will-change: transform;
}

.mix-track-a {
    transform: translate3d(6vw,0,0);
}

.mix-track-b {
    align-self: flex-end;
    transform: translate3d(-16vw,0,0);
}

.mix-frame {
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    background: #111;
    border-radius: 2px;
}

.mix-frame-wide {
    width: min(58vw, 780px);
    aspect-ratio: 16/9;
}

.mix-frame-tall {
    width: min(30vw, 410px);
    aspect-ratio: 4/5;
}

.mix-frame-square {
    width: min(37vw, 520px);
    aspect-ratio: 1/1;
}

.mix-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.78) contrast(1.04);
    transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.mix-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.68) 100%);
    pointer-events: none;
}

.mix-frame:hover img {
    transform: scale(1.035);
    filter: saturate(.95) contrast(1.04);
}

.mix-frame figcaption {
    position: absolute;
    z-index: 2;
    right: 18px;
    left: 18px;
    bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #fff;
}

    .mix-frame figcaption span {
        font-size: 10px;
        letter-spacing: .14em;
    }

    .mix-frame figcaption strong {
        font-size: clamp(17px, 1.8vw, 28px);
        letter-spacing: .02em;
    }

.mix-gallery-foot {
    width: var(--shell);
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.46);
    font-size: 10px;
    letter-spacing: .16em;
}

    .mix-gallery-foot i {
        flex: 1;
        height: 1px;
        background: var(--line);
    }

.supply-story {
    padding: 150px max(20px, 4vw);
    background: #0a0a0a;
}

.supply-story-head {
    width: var(--shell);
    margin: 0 auto 70px;
}

    .supply-story-head h2 {
        margin: 12px 0 0;
        font-size: clamp(50px, 7vw, 110px);
        line-height: .92;
        letter-spacing: -.06em;
    }

.supply-chapter {
    width: var(--shell);
    margin: 0 auto 110px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: clamp(24px, 6vw, 100px);
    align-items: end;
}

    .supply-chapter:nth-of-type(even) {
        grid-template-columns: .75fr 1.25fr;
    }

        .supply-chapter:nth-of-type(even) .supply-image {
            order: 2;
        }

.supply-image {
    position: relative;
    overflow: hidden;
    min-height: 68vh;
    background: #111;
}

    .supply-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(.76);
    }

    .supply-image::after {
        content: "";
        position: absolute;
        inset: 0;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    }

.supply-caption {
    padding-bottom: 28px;
}

    .supply-caption span {
        color: var(--gold);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .18em;
    }

    .supply-caption h3 {
        margin: 16px 0 18px;
        font-size: clamp(44px, 5vw, 78px);
        line-height: .92;
        letter-spacing: -.055em;
    }

    .supply-caption p {
        max-width: 490px;
        margin: 0;
        color: var(--muted);
        font-size: clamp(15px, 1.25vw, 19px);
        line-height: 1.95;
    }

.supply-stats {
    width: var(--shell);
    margin: 20px auto 0;
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--line);
}

    .supply-stats div {
        padding: 0 26px;
        border-left: 1px solid var(--line);
    }

        .supply-stats div:last-child {
            border-left: 0;
        }

    .supply-stats strong {
        display: block;
        font-size: clamp(58px, 7vw, 110px);
        line-height: .88;
        letter-spacing: -.06em;
        color: var(--gold);
    }

    .supply-stats span {
        display: block;
        margin-top: 14px;
        color: var(--muted);
        font-size: 14px;
    }

.story-narrative {
    padding: 160px max(20px, 4vw);
    background: #f1eee7;
    color: #111;
}

.story-title {
    width: var(--shell);
    margin: 0 auto 120px;
}

    .story-title .section-label {
        color: #7f6820;
    }

    .story-title h2 {
        max-width: 1180px;
        margin: 18px 0 0;
        font-size: clamp(48px, 7.3vw, 118px);
        line-height: .98;
        letter-spacing: -.065em;
    }

.story-chapter {
    width: var(--shell);
    margin: 0 auto 150px;
    display: grid;
    grid-template-columns: 90px .75fr 1.25fr;
    gap: clamp(24px, 5vw, 90px);
    align-items: center;
}

.story-chapter-two {
    grid-template-columns: 90px 1.25fr .75fr;
}

.story-number {
    align-self: start;
    color: rgba(17,17,17,.28);
    font-size: 12px;
    letter-spacing: .18em;
}

.story-text small {
    color: #7f6820;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
}

.story-text h3 {
    margin: 16px 0 20px;
    font-size: clamp(38px, 4.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.story-text p {
    margin: 0;
    color: rgba(17,17,17,.65);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 2.05;
}

.story-image {
    min-height: 68vh;
    overflow: hidden;
    background: #ddd;
}

    .story-image img,
    .story-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(.78);
    }

.story-link {
    display: inline-flex;
    margin-top: 28px;
    padding-bottom: 6px;
    border-bottom: 1px solid #111;
    font-weight: 900;
}

.reasons-section {
    padding: 150px max(20px, 4vw);
    background: #0a0a0a;
}

.reasons-head {
    width: var(--shell);
    margin: 0 auto 60px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

    .reasons-head h2 {
        margin: 10px 0 0;
        font-size: clamp(50px, 7vw, 110px);
        line-height: .9;
        letter-spacing: -.06em;
    }

.reasons-list {
    width: var(--shell);
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

    .reasons-list article {
        display: grid;
        grid-template-columns: 70px 180px 1fr 1fr;
        gap: 28px;
        align-items: center;
        padding: 30px 0;
        border-bottom: 1px solid var(--line);
    }

        .reasons-list article > span {
            color: rgba(255,255,255,.32);
            font-size: 11px;
            letter-spacing: .14em;
        }

        .reasons-list article small {
            color: var(--gold);
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .reasons-list article h3 {
            margin: 0;
            font-size: clamp(24px, 2.5vw, 38px);
            letter-spacing: -.035em;
        }

        .reasons-list article p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
        }

.products-section {
    padding: 150px max(20px, 4vw);
    background: #0d0d0d;
}

.products-heading {
    width: var(--shell);
    margin: 0 auto 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: end;
}

    .products-heading h2 {
        margin: 12px 0 0;
        font-size: clamp(48px, 6.4vw, 100px);
        line-height: .92;
        letter-spacing: -.06em;
    }

    .products-heading > p {
        max-width: 470px;
        margin: 0;
        color: var(--muted);
        line-height: 1.9;
    }

.product-tabs {
    width: var(--shell);
    margin: 0 auto 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tab {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

    .tab.active {
        background: #fff;
        color: #111;
        border-color: #fff;
    }

.product-list {
    width: var(--shell);
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.product-accordion {
    --accent: #a98b2b;
    border-bottom: 1px solid var(--line);
}

    .product-accordion.region-brazil {
        --accent: #b89022;
    }

    .product-accordion.region-ethiopia {
        --accent: #9a6236;
    }

    .product-accordion.region-uganda {
        --accent: #007470;
    }

    .product-accordion.region-colombia {
        --accent: #bb6d2d;
    }

    .product-accordion.region-indonesia {
        --accent: #6d4a3b;
    }

    .product-accordion.region-vietnam {
        --accent: #8d3b2e;
    }

    .product-accordion.region-india {
        --accent: #8b6d34;
    }

.product-summary {
    width: 100%;
    min-height: 92px;
    padding: 0;
    display: grid;
    grid-template-columns: 58px 66px minmax(220px,1fr) 160px 140px 42px;
    align-items: center;
    gap: 18px;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: right;
    cursor: pointer;
}

.product-index {
    color: rgba(255,255,255,.34);
    font-size: 11px;
}

.product-region-code {
    color: var(--accent);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.product-summary-title {
    display: grid;
    gap: 4px;
}

    .product-summary-title small {
        color: rgba(255,255,255,.34);
        font-size: 9px;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .product-summary-title strong {
        font-size: clamp(18px, 1.8vw, 28px);
        font-weight: 800;
        letter-spacing: -.025em;
    }

.product-summary-origin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.66);
    font-size: 13px;
}

    .product-summary-origin img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
    }

.product-summary-grade {
    color: rgba(255,255,255,.6);
    font-size: 12px;
}

.product-expand-icon {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

    .product-expand-icon::before,
    .product-expand-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 1px;
        background: #fff;
        transform: translate(-50%,-50%);
    }

    .product-expand-icon::after {
        transform: translate(-50%,-50%) rotate(90deg);
        transition: transform .25s ease;
    }

.product-accordion.is-expanded .product-expand-icon::after {
    transform: translate(-50%,-50%) rotate(0);
}

.product-expand-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .42s cubic-bezier(.2,.7,.2,1);
}

.product-accordion.is-expanded .product-expand-panel {
    grid-template-rows: 1fr;
}

.product-expand-inner {
    min-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: .8fr 1.6fr auto;
    gap: 28px;
    align-items: end;
    padding: 0 0 0;
}

.product-accordion.is-expanded .product-expand-inner {
    padding: 8px 0 30px;
}

.product-notes-block {
    padding-left: 26px;
}

    .product-notes-block span {
        color: var(--accent);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .13em;
    }

    .product-notes-block p {
        margin: 12px 0 0;
        color: #fff;
        font-size: clamp(22px, 2.5vw, 38px);
        line-height: 1.35;
    }

.product-spec-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin: 0;
}

    .product-spec-grid div {
        padding: 11px 12px;
        border: 1px solid var(--line);
    }

    .product-spec-grid .wide {
        grid-column: 1 / -1;
    }

    .product-spec-grid dt {
        color: rgba(255,255,255,.42);
        font-size: 10px;
        margin-bottom: 5px;
    }

    .product-spec-grid dd {
        margin: 0;
        color: rgba(255,255,255,.84);
        font-size: 12px;
        line-height: 1.6;
        font-weight: 800;
    }

.product-select-btn {
    min-height: 44px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.product-accordion.is-selected .product-select-btn {
    background: #fff;
    color: #111;
}

.dark-footer {
    padding: 150px max(20px, 4vw) 28px;
    background: #050505;
}

.footer-statement {
    width: var(--shell);
    margin: 0 auto 100px;
}

    .footer-statement > span {
        color: var(--gold);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .16em;
    }

    .footer-statement h2 {
        margin: 18px 0 28px;
        font-size: clamp(56px, 8.5vw, 138px);
        line-height: .88;
        letter-spacing: -.065em;
    }

    .footer-statement a {
        display: inline-flex;
        padding-bottom: 7px;
        border-bottom: 1px solid rgba(255,255,255,.5);
        font-weight: 900;
    }

.footer-grid {
    width: var(--shell);
    margin: 0 auto;
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1.3fr repeat(3,1fr);
    gap: 34px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.footer-brand img {
    width: 170px;
    height: auto;
}

.footer-brand p {
    margin: 18px 0 8px;
    color: var(--muted);
}

.footer-brand strong {
    color: var(--gold);
    font-size: 12px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-grid small {
    margin-bottom: 8px;
    color: rgba(255,255,255,.35);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    font-size: 14px;
}

.footer-bottom {
    width: var(--shell);
    margin: 0 auto;
    padding-top: 22px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    color: rgba(255,255,255,.38);
    font-size: 11px;
}

.product-whatsapp-bar {
    position: fixed;
    /* right: 16px; */
    left: 0px;
    bottom: 16px;
    z-index: 9200;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 40px;
    border: 1px solid var(--line);
    background: rgba(8, 8, 8, .94);
    backdrop-filter: blur(14px);
}

    .product-whatsapp-bar.is-visible {
        display: flex;
    }

    .product-whatsapp-bar small {
        display: block;
        color: var(--muted);
    }

    .product-whatsapp-bar strong {
        display: block;
    }

    .product-whatsapp-bar button,
    .product-whatsapp-bar a {
        min-height: 40px;
        padding: 0 14px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: transparent;
        color: #fff;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
    }

    .product-whatsapp-bar a {
        background: var(--gold);
        color: #111;
        border-color: var(--gold);
        font-weight: 900;
    }

.scroll-top-btn {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 9100;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(8,8,8,.82);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    cursor: pointer;
}

    .scroll-top-btn.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-contact {
        display: none;
    }

    .mix-gallery-viewport {
        min-height: 760px;
    }

    .supply-chapter,
    .supply-chapter:nth-of-type(even),
    .story-chapter,
    .story-chapter-two {
        grid-template-columns: 1fr;
    }

        .supply-chapter:nth-of-type(even) .supply-image {
            order: 0;
        }

    .story-number {
        display: none;
    }

    .story-chapter-two .story-image {
        order: 2;
    }

    .story-image,
    .supply-image {
        min-height: 54vh;
    }

    .reasons-list article {
        grid-template-columns: 56px 150px 1fr;
    }

        .reasons-list article p {
            grid-column: 3;
        }

    .product-summary {
        grid-template-columns: 48px 54px minmax(180px,1fr) 130px 110px 38px;
        gap: 12px;
    }

    .product-expand-inner {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .product-notes-block {
        padding-left: 0;
    }

    .product-select-btn {
        width: fit-content;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

        .footer-grid > div:last-child {
            grid-column: 2 / -1;
        }
}

@media (max-width: 780px) {
    :root {
        --shell: calc(100vw - 32px);
        --header-h: 64px;
    }

    .site-header {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 0 10px;
        gap: 10px;
    }

    .brand-logo {
        width: 112px;
    }

    .partner-lockup span,
    .brand-divider {
        display: none;
    }

    .hero-copy {
        padding: 130px 20px 100px;
    }

        .hero-copy h1 {
            font-size: clamp(56px, 19vw, 92px);
        }

    .hero-index {
        display: none;
    }

    .hero-scroll {
        right: 20px;
        bottom: 22px;
    }

    .manifesto {
        padding: 110px 0 90px;
    }

    .manifesto-copy {
        margin-bottom: 70px;
    }

        .manifesto-copy p {
            font-size: clamp(30px, 10vw, 54px);
        }

    .mix-gallery-section {
        padding: 50px 0 100px;
    }

    .mix-gallery-head {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

        .mix-gallery-head h2 {
            font-size: clamp(44px, 14vw, 74px);
        }

    .mix-gallery-viewport {
        min-height: auto;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 16px 18px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

        .mix-gallery-viewport::-webkit-scrollbar {
            display: none;
        }

    .mix-track {
        width: max-content;
        transform: none !important;
        gap: 16px;
    }

    .mix-track-b {
        align-self: auto;
    }

    .mix-frame-wide,
    .mix-frame-tall,
    .mix-frame-square {
        width: 78vw;
        aspect-ratio: 4/5;
        scroll-snap-align: center;
    }

    .mix-gallery-foot {
        margin-top: 26px;
    }

    .supply-story,
    .story-narrative,
    .reasons-section,
    .products-section,
    .dark-footer {
        padding-right: 16px;
        padding-left: 16px;
    }

    .supply-story-head h2,
    .story-title h2,
    .reasons-head h2,
    .products-heading h2 {
        font-size: clamp(44px, 13vw, 76px);
    }

    .supply-chapter {
        margin-bottom: 80px;
    }

    .supply-image,
    .story-image {
        min-height: 58vh;
    }

    .supply-stats {
        grid-template-columns: 1fr;
    }

        .supply-stats div {
            padding: 24px 0;
            border-left: 0;
            border-bottom: 1px solid var(--line);
        }

            .supply-stats div:last-child {
                border-bottom: 0;
            }

    .story-title {
        margin-bottom: 80px;
    }

    .story-chapter {
        margin-bottom: 100px;
    }

    .story-text h3 {
        font-size: clamp(34px, 10vw, 54px);
    }

    .reasons-head {
        display: block;
    }

    .reasons-list article {
        grid-template-columns: 44px 1fr;
        gap: 10px 18px;
        padding: 24px 0;
    }

        .reasons-list article small {
            grid-column: 2;
        }

        .reasons-list article h3 {
            grid-column: 2;
        }

        .reasons-list article p {
            grid-column: 2;
        }

    .products-heading {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

        .product-tabs::-webkit-scrollbar {
            display: none;
        }

    .tab {
        flex: 0 0 auto;
    }

    .product-summary {
        min-height: 104px;
        grid-template-columns: 42px 48px 1fr 34px;
        gap: 10px;
    }

    .product-summary-origin,
    .product-summary-grade {
        display: none;
    }

    .product-summary-title strong {
        font-size: 18px;
    }

    .product-expand-inner {
        gap: 20px;
    }

    .product-spec-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-statement h2 {
        font-size: clamp(54px, 16vw, 86px);
    }

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

        .footer-grid > div:last-child {
            grid-column: auto;
        }

    .footer-bottom {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .mix-track {
        transform: none !important;
    }
}

/* =========================================================
   v32 — richer editorial storytelling
   ========================================================= */
.mix-gallery-head p {
    max-width: 580px;
}

.mix-frame figcaption {
    align-items: flex-end;
}

    .mix-frame figcaption span {
        color: rgba(255,255,255,.78);
    }

    .mix-frame figcaption strong {
        letter-spacing: .08em;
    }

.supply-story-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: end;
}

.supply-head-copy {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.95;
}

.supply-image-stack {
    display: grid;
    grid-template-rows: 1fr .62fr;
    gap: 18px;
    min-height: 74vh;
}

    .supply-image-stack > img,
    .supply-image-stack .supply-subimage {
        min-height: 0;
    }

    .supply-image-stack > img,
    .supply-subimage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.supply-subimage {
    position: relative;
    overflow: hidden;
    background: #111;
}

    .supply-subimage::after {
        content: "";
        position: absolute;
        inset: 0;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    }

.supply-caption p + p {
    margin-top: 16px;
}

.story-narrative {
    background: #090909;
    color: #fff;
}

.story-title .section-label {
    color: var(--gold);
}

.story-text small {
    color: var(--gold);
}

.story-title h2,
.story-text h3,
.story-link {
    color: #fff;
}

.story-text p {
    color: rgba(255,255,255,.68);
}

    .story-text p + p {
        margin-top: 16px;
    }

.story-image {
    background: #111;
}

    .story-image img,
    .story-image video {
        filter: saturate(.86) contrast(1.04);
    }

.story-link {
    border-bottom-color: rgba(255,255,255,.62);
}

.story-number {
    color: rgba(255,255,255,.22);
}

@media (max-width: 1120px) {
    .supply-story-head {
        grid-template-columns: 1fr;
    }

    .supply-image-stack {
        min-height: 64vh;
    }
}

@media (max-width: 780px) {
    .supply-story-head {
        display: block;
    }

    .supply-head-copy {
        margin-top: 22px;
    }

    .supply-image-stack {
        grid-template-rows: 1fr 1fr;
        min-height: 58vh;
        gap: 12px;
    }
}

/* =========================================================
   v33 — sticky visual storytelling for journey and supply
   ========================================================= */
.journey-story-section,
.supply-scroll-section {
    background: #080808;
    color: #fff;
    padding: 130px max(20px, 4vw);
}

.journey-story-head,
.supply-scroll-head {
    width: var(--shell);
    margin: 0 auto 56px;
}

    .journey-story-head h2,
    .supply-scroll-head h2 {
        margin: 12px 0 0;
        font-size: clamp(46px, 7vw, 106px);
        line-height: .92;
        letter-spacing: -.06em;
    }

    .journey-story-head p,
    .supply-scroll-head p {
        max-width: 620px;
        margin: 18px 0 0;
        color: rgba(255,255,255,.68);
        font-size: 16px;
        line-height: 1.9;
    }

.journey-story-shell,
.supply-scroll-shell {
    width: var(--shell);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(24px, 5vw, 74px);
    align-items: start;
}

.journey-story-media,
.supply-scroll-visual {
    position: sticky;
    top: 110px;
}

.journey-media-stack,
.supply-visual-stack {
    position: relative;
    height: min(78vh, 860px);
    border-radius: 28px;
    overflow: hidden;
    background: #111;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.journey-media-item,
.supply-visual-frame {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity .55s ease, transform .7s ease;
}

    .journey-media-item.is-active,
    .supply-visual-frame.is-active {
        opacity: 1;
        transform: scale(1);
    }

    .journey-media-item img,
    .supply-visual-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.journey-media-stack::after,
.supply-visual-stack::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.62) 100%);
    pointer-events: none;
}

.journey-media-status,
.supply-visual-status {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

    .journey-media-status i,
    .supply-visual-status i {
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,.16);
    }

.journey-story-steps,
.supply-scroll-steps {
    display: grid;
    gap: 22px;
}

.journey-story-step,
.supply-story-step {
    min-height: 42vh;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-content: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    opacity: .42;
    transition: opacity .35s ease, transform .35s ease;
}

    .journey-story-step.is-active,
    .supply-story-step.is-active {
        opacity: 1;
        transform: translateY(-2px);
    }

.journey-step-no,
.supply-step-no {
    font-size: clamp(28px, 4vw, 44px);
    line-height: .88;
    font-weight: 900;
    color: rgba(255,255,255,.28);
}

.journey-story-step.is-active .journey-step-no,
.supply-story-step.is-active .supply-step-no {
    color: var(--gold);
}

.journey-step-copy small,
.supply-step-copy small {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.journey-step-copy h3,
.supply-step-copy h3 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.1vw, 44px);
    line-height: .96;
    letter-spacing: -.04em;
}

.journey-step-copy p,
.supply-step-copy p {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 15px;
    line-height: 1.9;
}

.origin-pills-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.origin-pill {
    position: absolute;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(12,12,12,.72);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(16px) scale(.92);
    transition: opacity .45s ease, transform .45s ease;
}

.supply-visual-frame.is-active .origin-pill {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pill-br {
    top: 15%;
    right: 12%;
    transition-delay: .04s;
}

.pill-et {
    top: 28%;
    left: 13%;
    transition-delay: .12s;
}

.pill-ug {
    top: 46%;
    right: 18%;
    transition-delay: .2s;
}

.pill-co {
    top: 61%;
    left: 20%;
    transition-delay: .28s;
}

.pill-id {
    bottom: 21%;
    right: 26%;
    transition-delay: .36s;
}

.pill-vn {
    bottom: 14%;
    left: 12%;
    transition-delay: .44s;
}

.pill-in {
    top: 11%;
    left: 34%;
    transition-delay: .52s;
}

@media (max-width: 1120px) {
    .journey-story-shell,
    .supply-scroll-shell {
        grid-template-columns: 1fr;
    }

    .journey-story-media,
    .supply-scroll-visual {
        position: relative;
        top: auto;
    }

    .journey-media-stack,
    .supply-visual-stack {
        height: min(68vh, 680px);
    }

    .journey-story-step,
    .supply-story-step {
        min-height: 28vh;
    }
}

@media (max-width: 780px) {
    .journey-story-section,
    .supply-scroll-section {
        padding: 90px 16px;
    }

    .journey-story-head,
    .supply-scroll-head,
    .journey-story-shell,
    .supply-scroll-shell {
        width: 100%;
    }

    .journey-media-stack,
    .supply-visual-stack {
        height: 56vh;
        border-radius: 22px;
    }

    .journey-story-steps,
    .supply-scroll-steps {
        gap: 8px;
    }

    .journey-story-step,
    .supply-story-step {
        min-height: auto;
        padding: 20px 0;
        opacity: 1;
    }
}

/* =========================================================
   v34 — spiral origin prelude before manifesto
   ========================================================= */
.origin-spiral-section {
    position: relative;
    padding: 120px max(20px, 4vw) 70px;
    background: #080808;
    color: #fff;
    overflow: hidden;
}

.origin-spiral-shell {
    width: var(--shell);
    margin: 0 auto;
}

.origin-spiral-intro {
    max-width: 760px;
    margin-bottom: 54px;
}

    .origin-spiral-intro h2 {
        margin: 12px 0 0;
        font-size: clamp(46px, 7vw, 104px);
        line-height: .92;
        letter-spacing: -.06em;
    }

    .origin-spiral-intro p {
        margin: 18px 0 0;
        max-width: 620px;
        color: rgba(255,255,255,.68);
        font-size: 16px;
        line-height: 1.9;
    }

.origin-spiral-layout {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: clamp(24px, 5vw, 74px);
    align-items: start;
}

.origin-spiral-visual {
    position: sticky;
    top: 110px;
}

.origin-spiral-dots {
    position: absolute;
    inset: -26px auto auto -24px;
    width: min(26vw, 300px);
    aspect-ratio: 1 / 1;
    pointer-events: none;
    opacity: .95;
    z-index: 3;
}

    .origin-spiral-dots::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,.22) 0 1.1px, transparent 1.3px), radial-gradient(circle at 50% 50%, transparent 0 22%, rgba(255,255,255,.18) 22.1% 22.8%, transparent 23%), radial-gradient(circle at 50% 50%, transparent 0 35%, rgba(255,255,255,.15) 35.1% 35.8%, transparent 36%), radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(255,255,255,.12) 48.1% 48.8%, transparent 49%), radial-gradient(circle at 50% 50%, transparent 0 61%, rgba(255,255,255,.10) 61.1% 61.8%, transparent 62%);
        border-radius: 50%;
        mask: radial-gradient(circle at 50% 50%, transparent 0 8%, #000 8.2% 100%);
        transform: rotate(-18deg);
    }

    .origin-spiral-dots span {
        position: absolute;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 0 6px rgba(211,175,55,.08);
    }

        .origin-spiral-dots span:nth-child(1) {
            top: 8%;
            left: 44%;
        }

        .origin-spiral-dots span:nth-child(2) {
            top: 18%;
            right: 14%;
        }

        .origin-spiral-dots span:nth-child(3) {
            top: 40%;
            right: 4%;
        }

        .origin-spiral-dots span:nth-child(4) {
            bottom: 28%;
            right: 16%;
        }

        .origin-spiral-dots span:nth-child(5) {
            bottom: 12%;
            left: 38%;
        }

        .origin-spiral-dots span:nth-child(6) {
            bottom: 28%;
            left: 8%;
        }

        .origin-spiral-dots span:nth-child(7) {
            top: 32%;
            left: 6%;
        }

.origin-sack-stage {
    position: relative;
    margin: 0;
    height: min(76vh, 860px);
    border-radius: 28px;
    overflow: hidden;
    background: #111;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

    .origin-sack-stage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .origin-sack-stage::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.34) 100%);
        pointer-events: none;
    }

.origin-sack-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.origin-tag {
    position: absolute;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(10,10,10,.72);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(18px) scale(.92);
    transition: opacity .45s ease, transform .45s ease, background .35s ease;
}

    .origin-tag.is-active {
        opacity: 1;
        transform: translateY(0) scale(1);
        background: rgba(211,175,55,.18);
    }

.tag-br {
    top: 18%;
    right: 14%;
}

.tag-et {
    top: 32%;
    left: 10%;
}

.tag-ug {
    top: 48%;
    right: 18%;
}

.tag-co {
    bottom: 24%;
    left: 22%;
}

.tag-id {
    bottom: 14%;
    right: 28%;
}

.tag-vn {
    bottom: 11%;
    left: 11%;
}

.tag-in {
    top: 10%;
    left: 36%;
}

.origin-spiral-status {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

    .origin-spiral-status i {
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,.16);
    }

.origin-spiral-steps {
    display: grid;
    gap: 18px;
}

.origin-spiral-step {
    min-height: 34vh;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-content: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    opacity: .42;
    transition: opacity .35s ease, transform .35s ease;
}

    .origin-spiral-step.is-active {
        opacity: 1;
        transform: translateY(-2px);
    }

.origin-step-no {
    font-size: clamp(28px, 4vw, 44px);
    line-height: .88;
    font-weight: 900;
    color: rgba(255,255,255,.26);
}

.origin-spiral-step.is-active .origin-step-no {
    color: var(--gold);
}

.origin-step-copy small {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.origin-step-copy h3 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3vw, 44px);
    line-height: .96;
    letter-spacing: -.04em;
}

.origin-step-copy p {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 15px;
    line-height: 1.9;
}

@media (max-width: 1120px) {
    .origin-spiral-layout {
        grid-template-columns: 1fr;
    }

    .origin-spiral-visual {
        position: relative;
        top: auto;
    }

    .origin-sack-stage {
        height: min(68vh, 700px);
    }

    .origin-spiral-step {
        min-height: 26vh;
    }
}

@media (max-width: 780px) {
    .origin-spiral-section {
        padding: 90px 16px 55px;
    }

    .origin-spiral-shell,
    .origin-spiral-intro {
        width: 100%;
    }

    .origin-spiral-dots {
        width: 180px;
        inset: -10px auto auto -6px;
    }

    .origin-sack-stage {
        height: 56vh;
        border-radius: 22px;
    }

    .origin-spiral-step {
        min-height: auto;
        opacity: 1;
        padding: 20px 0;
    }
}

/* =========================================================
   v35 — single sack transition with dotted trail
   ========================================================= */
.origin-bag-section {
    position: relative;
    padding: 110px max(20px, 4vw) 70px;
    background: #080808;
    color: #fff;
    overflow: hidden;
}

.origin-bag-shell {
    width: var(--shell);
    margin: 0 auto;
}

.origin-bag-trace {
    position: relative;
    height: 260px;
    margin: -30px 0 22px;
    opacity: .92;
}

    .origin-bag-trace svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .origin-bag-trace path {
        fill: none;
        stroke: rgba(255,255,255,.22);
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-dasharray: 2 14;
    }

.trace-dot,
.trace-foot {
    position: absolute;
    color: var(--gold);
}

.trace-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 7px rgba(211,175,55,.08);
}

.dot-1 {
    top: 16px;
    left: 8%;
}

.dot-2 {
    top: 118px;
    left: 28%;
}

.dot-3 {
    top: 74px;
    left: 53%;
}

.dot-4 {
    top: 190px;
    right: 9%;
}

.trace-foot {
    width: 18px;
    height: 18px;
    font-size: 18px;
    line-height: 1;
    opacity: .55;
    filter: blur(.1px);
}

.foot-1 {
    top: 48px;
    left: 17%;
}

.foot-2 {
    top: 112px;
    left: 40%;
}

.foot-3 {
    top: 146px;
    right: 18%;
}

.origin-bag-intro {
    max-width: 760px;
    margin-bottom: 48px;
}

    .origin-bag-intro h2 {
        margin: 12px 0 0;
        font-size: clamp(46px, 7vw, 102px);
        line-height: .92;
        letter-spacing: -.06em;
    }

    .origin-bag-intro p {
        max-width: 620px;
        margin: 18px 0 0;
        color: rgba(255,255,255,.68);
        font-size: 16px;
        line-height: 1.9;
    }

.origin-bag-layout {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: clamp(24px, 5vw, 74px);
    align-items: start;
}

.origin-bag-visual {
    position: sticky;
    top: 110px;
}

.origin-bag-stage {
    position: relative;
    margin: 0;
    height: min(76vh, 860px);
    border-radius: 28px;
    overflow: hidden;
    background: #111;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

    .origin-bag-stage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .origin-bag-stage::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.32) 100%);
        pointer-events: none;
    }

.origin-bag-badges {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.origin-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: min(66%, 320px);
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 18px 24px 20px;
    border-radius: 26px;
    background: rgba(9,9,9,.68);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    transform: translate(-50%, -50%) scale(.92);
    opacity: 0;
    transition: opacity .5s ease, transform .5s ease;
    text-align: center;
}

    .origin-badge.is-active {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

.origin-badge-flag {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
}

.origin-badge-name {
    font-size: clamp(20px, 2.1vw, 28px);
    font-weight: 900;
    letter-spacing: .12em;
}

.origin-badge small {
    color: rgba(255,255,255,.74);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.origin-bag-status {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

    .origin-bag-status i {
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,.16);
    }

.origin-bag-steps {
    display: grid;
    gap: 18px;
}

.origin-bag-step {
    min-height: 34vh;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-content: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    opacity: .42;
    transition: opacity .35s ease, transform .35s ease;
}

    .origin-bag-step.is-active {
        opacity: 1;
        transform: translateY(-2px);
    }

        .origin-bag-step.is-active .origin-step-no {
            color: var(--gold);
        }

@media (max-width: 1120px) {
    .origin-bag-layout {
        grid-template-columns: 1fr;
    }

    .origin-bag-visual {
        position: relative;
        top: auto;
    }

    .origin-bag-stage {
        height: min(68vh, 700px);
    }

    .origin-bag-step {
        min-height: 26vh;
    }
}

@media (max-width: 780px) {
    .origin-bag-section {
        padding: 90px 16px 55px;
    }

    .origin-bag-shell,
    .origin-bag-intro {
        width: 100%;
    }

    .origin-bag-trace {
        height: 180px;
        margin-top: -10px;
    }

    .origin-bag-stage {
        height: 56vh;
        border-radius: 22px;
    }

    .origin-badge {
        min-width: 72%;
        padding: 14px 16px 16px;
    }

    .origin-bag-step {
        min-height: auto;
        opacity: 1;
        padding: 20px 0;
    }
}

/* =========================================================
   v36 — scroll-linked origin film and full-screen supply cinema
   ========================================================= */
.origin-scroll-film {
    position: relative;
    height: 720vh;
    background: #080808;
    color: #fff;
}

.origin-film-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 680px;
    overflow: hidden;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.origin-film-trail {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.origin-film-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

    .origin-film-path path {
        fill: none;
        stroke: rgba(255,255,255,.38);
        stroke-width: 4;
        stroke-linecap: round;
        stroke-dasharray: 10 18;
        filter: drop-shadow(0 0 8px rgba(255,255,255,.06));
    }

.film-foot {
    position: absolute;
    width: 15px;
    height: 24px;
    border-radius: 55% 45% 52% 48%;
    background: rgba(211,175,55,.75);
    box-shadow: 8px 9px 0 -3px rgba(211,175,55,.52);
    opacity: 0;
    transform: rotate(var(--foot-rotate, 0deg)) scale(.7);
    transition: opacity .22s ease, transform .22s ease;
}

    .film-foot.is-visible {
        opacity: .9;
        transform: rotate(var(--foot-rotate, 0deg)) scale(1);
    }

.film-foot-1 {
    top: 16%;
    left: 12%;
    --foot-rotate: 24deg;
}

.film-foot-2 {
    top: 31%;
    left: 29%;
    --foot-rotate: -10deg;
}

.film-foot-3 {
    top: 53%;
    left: 39%;
    --foot-rotate: 22deg;
}

.film-foot-4 {
    top: 70%;
    left: 64%;
    --foot-rotate: -18deg;
}

.film-foot-5 {
    top: 82%;
    right: 9%;
    --foot-rotate: 30deg;
}

.origin-film-copy {
    position: absolute;
    top: clamp(88px, 12vh, 130px);
    right: max(20px, 5vw);
    z-index: 3;
    max-width: 620px;
    pointer-events: none;
}

    .origin-film-copy h2 {
        margin: 12px 0 0;
        font-size: clamp(42px, 6.8vw, 104px);
        line-height: .9;
        letter-spacing: -.06em;
    }

















.origin-film-index {
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.8);
    font-size: 12px;
    letter-spacing: .14em;
}

    .origin-film-index i {
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,.26);
    }

.origin-film-caption {
    position: absolute;
    left: max(20px, 5vw);
    bottom: clamp(34px, 7vh, 76px);
    z-index: 3;
    max-width: 360px;
    pointer-events: none;
}

    .origin-film-caption span {
        display: block;
        color: var(--gold);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .16em;
    }

    .origin-film-caption p {
        margin: 10px 0 0;
        color: rgba(255,255,255,.72);
        font-size: 15px;
        letter-spacing: .06em;
    }

.supply-cinema-section {
    position: relative;
    height: 500vh;
    background: #060606;
    color: #fff;
}

.supply-cinema-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
}

.supply-cinema-media,
.supply-cinema-frame,
.supply-cinema-shade {
    position: absolute;
    inset: 0;
}

.supply-cinema-frame {
    margin: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity .58s ease, transform 1.1s cubic-bezier(.2,.72,.2,1);
}

    .supply-cinema-frame.is-active {
        opacity: 1;
        transform: scale(1);
    }

    .supply-cinema-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(.72) contrast(1.06) brightness(.76);
    }

.supply-cinema-shade {
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.08) 38%, rgba(0,0,0,.68) 100%), linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.13) 56%, rgba(0,0,0,.34) 100%);
}

.supply-cinema-header {
    position: absolute;
    z-index: 3;
    top: clamp(82px, 11vh, 120px);
    right: max(20px, 5vw);
    left: max(20px, 5vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.supply-cinema-progress {
    min-width: min(36vw, 420px);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.74);
    font-size: 12px;
    letter-spacing: .14em;
}

    .supply-cinema-progress i {
        position: relative;
        flex: 1;
        height: 2px;
        background: rgba(255,255,255,.2);
        overflow: hidden;
    }

    .supply-cinema-progress b {
        position: absolute;
        inset: 0 auto 0 0;
        width: 25%;
        background: var(--gold);
        transform-origin: left center;
    }

.supply-cinema-copy-stack {
    position: absolute;
    z-index: 3;
    right: max(20px, 7vw);
    left: max(20px, 7vw);
    bottom: clamp(70px, 12vh, 130px);
    min-height: 310px;
}

.supply-cinema-copy {
    position: absolute;
    inset: 0;
    max-width: 940px;
    display: grid;
    align-content: end;
    opacity: 0;
    transform: translateY(58px);
    transition: opacity .52s ease, transform .62s cubic-bezier(.2,.72,.2,1);
}

    .supply-cinema-copy.is-active {
        opacity: 1;
        transform: translateY(0);
    }

    .supply-cinema-copy small {
        color: var(--gold);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .18em;
    }

    .supply-cinema-copy h2 {
        margin: 14px 0 18px;
        font-size: clamp(46px, 7.2vw, 112px);
        line-height: .9;
        letter-spacing: -.06em;
    }

    .supply-cinema-copy p {
        max-width: 660px;
        margin: 0;
        color: rgba(255,255,255,.75);
        font-size: clamp(15px, 1.35vw, 20px);
        line-height: 1.9;
    }

.supply-cinema-route {
    position: absolute;
    z-index: 3;
    right: max(20px, 5vw);
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 13px;
}

    .supply-cinema-route span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,.28);
        transition: transform .3s ease, background .3s ease;
    }

        .supply-cinema-route span.is-active {
            background: var(--gold);
            transform: scale(1.65);
        }

/* Light scroll motion across remaining editorial images */
.story-image,
.journey-media-stack {
    overflow: hidden;
}

    .story-image img,
    .story-image video,
    .journey-media-item img {
        will-change: transform;
    }

@media (max-width: 780px) {
    .origin-scroll-film {
        height: 590vh;
    }

    .origin-film-sticky,
    .supply-cinema-sticky {
        min-height: 620px;
    }

    .origin-film-copy {
        top: 94px;
        right: 16px;
        left: 16px;
    }

        .origin-film-copy h2 {
            font-size: clamp(42px, 13vw, 70px);
        }







    .origin-film-caption {
        left: 16px;
        bottom: 26px;
    }

    .supply-cinema-section {
        height: 440vh;
    }

    .supply-cinema-header {
        top: 88px;
        right: 16px;
        left: 16px;
        align-items: flex-start;
        flex-direction: column;
    }

    .supply-cinema-progress {
        min-width: 100%;
    }

    .supply-cinema-copy-stack {
        right: 16px;
        left: 16px;
        bottom: 70px;
        min-height: 330px;
    }

    .supply-cinema-copy h2 {
        font-size: clamp(42px, 13vw, 72px);
    }

    .supply-cinema-route {
        right: 16px;
    }
}

/* =========================================================
   v37 — ABOUT zoom lens narrative
   ========================================================= */
.about-zoom-section {
    position: relative;
    height: 390vh;
    background: #070707;
    color: #fff;
}

.about-zoom-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.about-zoom-background,
.about-bg-frame,
.about-lens-frame,
.about-zoom-lens {
    position: absolute;
    inset: 0;
}

.about-bg-frame,
.about-lens-frame {
    margin: 0;
    opacity: 0;
    transition: opacity .65s ease;
}

    .about-bg-frame.is-active,
    .about-lens-frame.is-active {
        opacity: 1;
    }

    .about-bg-frame img,
    .about-lens-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-zoom-background {
    z-index: -3;
    overflow: hidden;
    background: #111;
}

.about-bg-frame img {
    filter: blur(18px) brightness(.36) saturate(.65);
    transform: scale(1.18);
}

.about-zoom-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.26), rgba(0,0,0,.58)), radial-gradient(circle at center, transparent 0 28%, rgba(0,0,0,.58) 78%);
}

.about-zoom-word {
    position: absolute;
    top: 50%;
    left: -7vw;
    z-index: -1;
    transform: translate3d(0,-50%,0);
    color: rgba(255,255,255,.055);
    font-size: clamp(120px, 21vw, 360px);
    line-height: .78;
    letter-spacing: -.08em;
    font-weight: 950;
    white-space: nowrap;
    pointer-events: none;
    will-change: transform;
}

.about-zoom-lens {
    z-index: 1;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 42vw;
    height: 54vh;
    transform: translate(-50%,-50%);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 38px 100px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.13);
    will-change: width, height, transform, border-radius;
}

.about-lens-frame img {
    transform: scale(1.12);
    will-change: transform;
}

.about-lens-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.36));
    pointer-events: none;
}

.about-zoom-header {
    position: absolute;
    top: 104px;
    right: max(24px, 4vw);
    left: max(24px, 4vw);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.about-zoom-progress,
.why-rail-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: min(340px, 34vw);
    color: rgba(255,255,255,.72);
    font-size: 12px;
    letter-spacing: .14em;
}

    .about-zoom-progress i,
    .why-rail-progress i {
        position: relative;
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,.18);
        overflow: hidden;
    }

    .about-zoom-progress b,
    .why-rail-progress b {
        position: absolute;
        inset: 0 auto 0 0;
        width: 0;
        background: var(--gold);
    }

.about-zoom-copy-stack {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.about-zoom-copy {
    position: absolute;
    bottom: 7vh;
    width: min(560px, 42vw);
    opacity: 0;
    transform: translate3d(0,52px,0);
    transition: opacity .45s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}

    .about-zoom-copy.copy-start {
        right: max(24px, 5vw);
    }

    .about-zoom-copy.copy-end {
        left: max(24px, 5vw);
        text-align: left;
    }

    .about-zoom-copy.is-active {
        opacity: 1;
        transform: translate3d(0,0,0);
    }

    .about-zoom-copy small {
        color: var(--gold);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .18em;
    }

    .about-zoom-copy h2 {
        margin: 14px 0 16px;
        font-size: clamp(42px, 5.2vw, 82px);
        line-height: .96;
        letter-spacing: -.055em;
    }

    .about-zoom-copy p {
        margin: 0;
        color: rgba(255,255,255,.76);
        font-size: clamp(15px, 1.2vw, 19px);
        line-height: 1.95;
    }

.about-zoom-link {
    display: inline-flex;
    margin-top: 24px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,.62);
    pointer-events: auto;
    font-weight: 900;
}

/* =========================================================
   v37 — WHY horizontal rail
   ========================================================= */
.why-rail-section {
    position: relative;
    height: 820vh;
    background: #0a0a0a;
    color: #fff;
}

.why-rail-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
}

.why-rail-header {
    position: absolute;
    top: 92px;
    right: max(24px, 4vw);
    left: max(24px, 4vw);
    z-index: 5;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

    .why-rail-header h2 {
        margin: 10px 0 0;
        font-size: clamp(44px, 5.8vw, 92px);
        line-height: .92;
        letter-spacing: -.06em;
    }

.why-rail-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.why-rail-track {
    height: 100%;
    display: flex;
    direction: ltr;
    will-change: transform;
}

.why-panel {
    position: relative;
    flex: 0 0 100vw;
    height: 100%;
    direction: rtl;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: end;
    gap: clamp(30px, 6vw, 100px);
    padding: 230px max(24px, 6vw) 7vh;
    overflow: hidden;
}

    .why-panel:nth-child(even) {
        grid-template-columns: 1.22fr .78fr;
    }

        .why-panel:nth-child(even) .why-panel-image {
            order: -1;
        }

    .why-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 30%, rgba(211,175,55,.08), transparent 36%), linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
        z-index: -2;
    }

.why-panel-copy {
    align-self: center;
    max-width: 580px;
}

    .why-panel-copy > span {
        display: block;
        color: rgba(255,255,255,.08);
        font-size: clamp(120px, 19vw, 320px);
        line-height: .72;
        font-weight: 950;
        letter-spacing: -.08em;
    }

    .why-panel-copy small {
        display: block;
        margin-top: -12px;
        color: var(--gold);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .18em;
    }

    .why-panel-copy h3 {
        margin: 14px 0 16px;
        font-size: clamp(46px, 6vw, 96px);
        line-height: .9;
        letter-spacing: -.06em;
    }

    .why-panel-copy p {
        max-width: 500px;
        margin: 0;
        color: rgba(255,255,255,.68);
        font-size: clamp(15px, 1.25vw, 19px);
        line-height: 1.9;
    }

.why-panel-image {
    position: relative;
    height: min(66vh, 720px);
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #111;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

    .why-panel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.15);
        will-change: transform;
    }

    .why-panel-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 46%, rgba(0,0,0,.36));
    }

@media (max-width: 980px) {
    .about-zoom-section {
        height: auto;
        padding: 110px 16px;
    }

    .about-zoom-sticky {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .about-zoom-background,
    .about-zoom-word,
    .about-zoom-progress {
        display: none;
    }

    .about-zoom-header {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        margin-bottom: 36px;
    }

    .about-zoom-lens {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 58vh;
        transform: none !important;
        border-radius: 22px;
    }

    .about-lens-frame {
        display: none;
    }

        .about-lens-frame:first-child {
            display: block;
            opacity: 1;
        }

    .about-zoom-copy-stack {
        position: relative;
        inset: auto;
        display: grid;
        gap: 54px;
        margin-top: 42px;
    }

    .about-zoom-copy,
    .about-zoom-copy.copy-start,
    .about-zoom-copy.copy-end {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        width: 100%;
        opacity: 1;
        transform: none;
        text-align: right;
    }

    .why-rail-section {
        height: auto;
        padding: 110px 0 80px;
    }

    .why-rail-sticky {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .why-rail-header {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        padding: 0 16px;
        display: block;
        margin-bottom: 42px;
    }

    .why-rail-progress {
        display: none;
    }

    .why-rail-viewport {
        position: relative;
        inset: auto;
        overflow: visible;
    }

    .why-rail-track {
        display: grid;
        transform: none !important;
    }

    .why-panel,
    .why-panel:nth-child(even) {
        min-height: 86vh;
        height: auto;
        grid-template-columns: 1fr;
        padding: 60px 16px;
        gap: 26px;
        border-top: 1px solid rgba(255,255,255,.08);
    }

        .why-panel:nth-child(even) .why-panel-image {
            order: 0;
        }

    .why-panel-image {
        height: 54vh;
        border-radius: 22px;
    }

    .why-panel-copy > span {
        font-size: clamp(100px, 30vw, 180px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-zoom-section,
    .why-rail-section {
        height: auto;
    }

    .about-zoom-sticky,
    .why-rail-sticky {
        position: relative;
        height: auto;
    }

    .why-rail-track {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-zoom-section,
    .why-rail-section {
        height: auto;
        padding: 110px 20px;
    }

    .about-zoom-sticky,
    .why-rail-sticky {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .about-zoom-background,
    .about-zoom-word,
    .about-zoom-progress {
        display: none;
    }

    .about-zoom-header,
    .why-rail-header {
        position: relative;
        inset: auto;
        display: block;
        margin-bottom: 40px;
    }

    .about-zoom-lens {
        position: relative;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: 60vh !important;
        transform: none !important;
    }

    .about-lens-frame {
        display: none;
    }

        .about-lens-frame:first-child {
            display: block;
            opacity: 1;
        }

    .about-zoom-copy-stack {
        position: relative;
        inset: auto;
        display: grid;
        gap: 54px;
        margin-top: 42px;
    }

    .about-zoom-copy,
    .about-zoom-copy.copy-start,
    .about-zoom-copy.copy-end {
        position: relative;
        inset: auto;
        width: 100%;
        opacity: 1;
        transform: none !important;
        text-align: right;
    }

    .why-rail-progress {
        display: none;
    }

    .why-rail-viewport {
        position: relative;
        inset: auto;
        overflow: visible;
    }

    .why-rail-track {
        display: grid;
        transform: none !important;
    }

    .why-panel,
    .why-panel:nth-child(even) {
        min-height: 86vh;
        height: auto;
        grid-template-columns: 1fr;
        padding: 60px 0;
        border-top: 1px solid rgba(255,255,255,.08);
    }

        .why-panel:nth-child(even) .why-panel-image {
            order: 0;
        }
}

/* =========================================================
   v38 — calm scroll-driven product explorer
   ========================================================= */
.products-explorer-section {
    position: relative;
    padding: 150px max(20px, 4vw) 120px;
    background: #070707;
    color: #fff;
    overflow: clip;
}

.products-explorer-head {
    width: var(--shell);
    margin: 0 auto 44px;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 470px);
    gap: 36px;
    align-items: end;
}

    .products-explorer-head h2 {
        grid-column: 1;
        margin: 12px 0 0;
        font-size: clamp(48px, 6.7vw, 106px);
        line-height: .92;
        letter-spacing: -.06em;
    }

    .products-explorer-head > p {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: end;
        margin: 0;
        color: rgba(255,255,255,.62);
        font-size: 15px;
        line-height: 1.95;
    }

.product-explorer-tabs {
    margin-bottom: 42px;
}

.product-explorer-layout {
    width: var(--shell);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: start;
    direction: ltr;
}

.product-feature-sticky,
.product-scroll-list {
    direction: rtl;
}

.product-feature-sticky {
    position: sticky;
    top: 96px;
}

.product-feature-card {
    --product-accent: #d3af37;
    position: relative;
    min-height: min(78vh, 820px);
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 20px;
    padding: clamp(22px, 3vw, 36px);
    border-radius: 30px;
    overflow: hidden;
    isolation: isolate;
    background: #111;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.product-feature-bg,
.product-feature-overlay {
    position: absolute;
    inset: 0;
}

    .product-feature-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.03);
        filter: saturate(.72) contrast(1.04);
    }

.product-feature-overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.24) 0%, rgba(0,0,0,.08) 32%, rgba(0,0,0,.82) 72%, rgba(0,0,0,.95) 100%), linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.08) 64%);
}

.product-feature-card::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--product-accent);
    transform-origin: top;
    transform: scaleY(.34);
    transition: transform .55s cubic-bezier(.2,.7,.2,1), background .35s ease;
}

.product-feature-card.is-updating::after {
    transform: scaleY(1);
}

.product-feature-topline,
.product-feature-copy,
.product-feature-specs,
.product-feature-actions {
    position: relative;
    z-index: 3;
}

.product-feature-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

    .product-feature-topline span:last-child {
        color: var(--product-accent);
        font-size: clamp(30px, 4vw, 58px);
        line-height: .8;
        letter-spacing: -.04em;
    }

.product-feature-copy {
    align-self: end;
    max-width: 720px;
}

.product-feature-origin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255,255,255,.74);
    font-size: 13px;
}

    .product-feature-origin img {
        width: 34px;
        height: 34px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0 0 0 1px rgba(255,255,255,.18);
    }

.product-feature-copy > small {
    display: block;
    color: var(--product-accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.product-feature-copy h3 {
    max-width: 760px;
    margin: 10px 0 14px;
    font-size: clamp(36px, 5.2vw, 78px);
    line-height: .94;
    letter-spacing: -.055em;
}

.product-feature-copy > p {
    max-width: 600px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.5;
}

.product-feature-specs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
}

    .product-feature-specs div {
        min-width: 0;
        padding: 12px 10px;
        background: rgba(7,7,7,.72);
        backdrop-filter: blur(12px);
    }

    .product-feature-specs dt {
        margin-bottom: 5px;
        color: rgba(255,255,255,.42);
        font-size: 9px;
    }

    .product-feature-specs dd {
        margin: 0;
        overflow: hidden;
        color: rgba(255,255,255,.9);
        font-size: 11px;
        line-height: 1.55;
        font-weight: 800;
        text-overflow: ellipsis;
    }

.product-feature-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.product-feature-select {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    background: var(--product-accent);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

    .product-feature-select:hover {
        transform: translateY(-2px);
    }

.product-feature-card.is-selected .product-feature-select {
    background: #fff;
    color: #111;
}

.product-feature-progress {
    flex: 1;
    height: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.16);
}

    .product-feature-progress i {
        display: block;
        width: 0;
        height: 100%;
        background: var(--product-accent);
        transition: width .45s cubic-bezier(.2,.7,.2,1), background .35s ease;
    }

.product-feature-card.is-updating .product-feature-bg img {
    animation: productFeatureImage .72s cubic-bezier(.2,.7,.2,1);
}

.product-feature-card.is-updating .product-feature-copy,
.product-feature-card.is-updating .product-feature-specs {
    animation: productFeatureCopy .58s cubic-bezier(.2,.7,.2,1);
}

@keyframes productFeatureImage {
    0% {
        opacity: .48;
        transform: scale(1.12) translateX(-1.5%);
    }

    100% {
        opacity: 1;
        transform: scale(1.03) translateX(0);
    }
}

@keyframes productFeatureCopy {
    0% {
        opacity: .18;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-scroll-list {
    padding-bottom: 32vh;
    border-top: 1px solid rgba(255,255,255,.12);
}

.product-scroll-item {
    --accent: #a98b2b;
    position: relative;
    min-height: clamp(145px, 19vh, 205px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    opacity: .42;
    transition: opacity .35s ease, background .35s ease, transform .35s ease;
}

    .product-scroll-item.region-brazil {
        --accent: #b89022;
    }

    .product-scroll-item.region-ethiopia {
        --accent: #9a6236;
    }

    .product-scroll-item.region-uganda {
        --accent: #007470;
    }

    .product-scroll-item.region-colombia {
        --accent: #bb6d2d;
    }

    .product-scroll-item.region-indonesia {
        --accent: #6d4a3b;
    }

    .product-scroll-item.region-vietnam {
        --accent: #8d3b2e;
    }

    .product-scroll-item.region-india {
        --accent: #8b6d34;
    }

    .product-scroll-item::before {
        content: "";
        position: absolute;
        right: 0;
        top: 18%;
        bottom: 18%;
        width: 3px;
        border-radius: 99px;
        background: var(--accent);
        transform: scaleY(0);
        transition: transform .4s cubic-bezier(.2,.7,.2,1);
    }

    .product-scroll-item.is-active {
        opacity: 1;
        transform: translateX(-8px);
        background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--accent) 10%, transparent) 100%);
    }

        .product-scroll-item.is-active::before {
            transform: scaleY(1);
        }

.product-scroll-trigger {
    min-width: 0;
    width: 100%;
    height: 100%;
    padding: 20px 20px 20px 0;
    display: grid;
    grid-template-columns: 48px 56px minmax(0, 1fr) minmax(100px, auto) 28px;
    align-items: center;
    gap: 14px;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: right;
    cursor: pointer;
}

.product-scroll-index {
    color: rgba(255,255,255,.32);
    font-size: 11px;
}

.product-scroll-code {
    color: var(--accent);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.product-scroll-name {
    min-width: 0;
    gap: 2px;
}

    .product-scroll-name small {
        overflow: hidden;
        color: rgba(255,255,255,.38);
        font-size: 9px;
        letter-spacing: .12em;
        text-transform: uppercase;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-scroll-name strong {
        overflow: hidden;
        font-size: clamp(18px, 1.7vw, 27px);
        line-height: 1.25;
        letter-spacing: -.03em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.product-scroll-meta {
    color: rgba(255,255,255,.58);
    font-size: 12px;
    white-space: nowrap;
}

.product-scroll-arrow {
    color: rgba(255,255,255,.34);
    font-size: 17px;
    transition: transform .3s ease, color .3s ease;
}

.product-scroll-item.is-active .product-scroll-arrow {
    color: var(--accent);
    transform: translate(-3px, 3px);
}

.product-row-select {
    min-height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: transparent;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    cursor: pointer;
}

.product-scroll-item.is-selected .product-row-select {
    border-color: #fff;
    background: #fff;
    color: #111;
}

.product-mobile-detail {
    display: none;
}

@media (max-width: 1180px) {
    .product-explorer-layout {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
        gap: 30px;
    }

    .product-feature-specs {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-scroll-trigger {
        grid-template-columns: 42px 48px minmax(0, 1fr) 24px;
    }

    .product-scroll-meta {
        display: none;
    }
}

@media (max-width: 920px) {
    .products-explorer-head {
        grid-template-columns: 1fr;
    }

        .products-explorer-head > p {
            grid-column: 1;
            grid-row: auto;
        }

    .product-explorer-layout {
        grid-template-columns: 1fr;
        direction: rtl;
    }

    .product-feature-sticky {
        position: sticky;
        top: 74px;
        z-index: 8;
    }

    .product-feature-card {
        min-height: min(68vh, 680px);
    }

    .product-scroll-list {
        padding-bottom: 12vh;
    }

    .product-scroll-item {
        min-height: 132px;
    }
}

@media (max-width: 780px) {
    .products-explorer-section {
        padding: 100px 16px 80px;
    }

    .products-explorer-head,
    .product-explorer-tabs,
    .product-explorer-layout {
        width: 100%;
    }

    .product-explorer-tabs {
        margin-bottom: 24px;
    }

    .product-feature-sticky {
        position: relative;
        top: auto;
    }

    .product-feature-card {
        min-height: 66vh;
        padding: 20px;
        border-radius: 24px;
    }

    .product-feature-copy h3 {
        font-size: clamp(34px, 10vw, 56px);
    }

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

        .product-feature-specs div:nth-child(n /**/ +5) {
            display: none;
        }

    .product-scroll-list {
        padding-bottom: 0;
    }

    .product-scroll-item {
        min-height: auto;
        grid-template-columns: 1fr auto;
        opacity: .62;
        padding: 4px 0;
    }

        .product-scroll-item.is-active {
            opacity: 1;
            transform: none;
        }

    .product-scroll-trigger {
        min-height: 100px;
        grid-template-columns: 36px 42px minmax(0, 1fr) 20px;
        gap: 8px;
        padding-right: 12px;
    }

    .product-scroll-name strong {
        font-size: 17px;
    }

    .product-row-select {
        width: 38px;
        padding: 0;
        justify-content: center;
    }

        .product-row-select span {
            display: none;
        }

    .product-mobile-detail {
        grid-column: 1 / -1;
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        padding: 0 12px;
        opacity: 0;
        transition: grid-template-rows .35s ease, opacity .35s ease, padding .35s ease;
    }

    .product-scroll-item.is-active .product-mobile-detail {
        grid-template-rows: 1fr;
        padding-bottom: 18px;
        opacity: 1;
    }

    .product-mobile-detail p {
        min-height: 0;
        margin: 0 0 10px;
        color: rgba(255,255,255,.78);
        font-size: 15px;
        line-height: 1.7;
    }

    .product-mobile-detail div {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    .product-mobile-detail span {
        padding: 6px 9px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 999px;
        color: rgba(255,255,255,.58);
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-feature-card.is-updating .product-feature-bg img,
    .product-feature-card.is-updating .product-feature-copy,
    .product-feature-card.is-updating .product-feature-specs {
        animation: none;
    }
}

/* =========================================================
   v39 — printed origin flags, smoother spiral, unique imagery
   ========================================================= */
.origin-film-path .origin-film-dots {
    fill: none;
    stroke: rgba(255,255,255,.34);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1 17;
    filter: drop-shadow(0 0 7px rgba(255,255,255,.06));
}

.origin-film-path .origin-film-reveal {
    fill: none;
    stroke: #fff;
    stroke-width: 34;
    stroke-linecap: round;
}


.origin-film-index {
    right: 10%;
    left: 10%;
    bottom: 9%;
    color: rgba(255,255,255,.72);
}

.why-panel-image img,
.product-feature-bg img {
    image-rendering: auto;
}

.product-feature-bg img {
    filter: saturate(.86) contrast(1.05) brightness(.82);
}

@media (max-width: 780px) {
}

/* =========================================================
   v40 — origin film printed directly on burlap
   ========================================================= */
.origin-film-path .origin-film-dots {
    stroke: rgba(255,255,255,.28);
    stroke-width: 2.6;
    stroke-dasharray: 1 14;
    filter: drop-shadow(0 0 5px rgba(255,255,255,.05));
}

.origin-film-path .origin-film-reveal {
    stroke-width: 30;
}

.film-foot {
    width: 18px;
    height: 28px;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: rotate(var(--foot-rotate, 0deg)) scale(.76);
}

    .film-foot::before,
    .film-foot::after {
        content: "";
        position: absolute;
        display: block;
        border-radius: 48% 52% 50% 50%;
        background: rgba(211,175,55,.85);
        box-shadow: 0 0 0 5px rgba(211,175,55,.08);
    }

    .film-foot::before {
        width: 10px;
        height: 18px;
        left: 1px;
        top: 0;
    }

    .film-foot::after {
        width: 8px;
        height: 14px;
        right: 0;
        bottom: 0;
    }

    .film-foot.is-visible {
        opacity: .82;
        transform: rotate(var(--foot-rotate, 0deg)) scale(1);
    }

















@media (max-width: 900px) {
}

/* =========================================================
   v41 — vintage stencil / screen-print sack mark
   ========================================================= */
















.origin-film-caption span {
    color: rgba(211,175,55,.92);
}

@media (max-width: 900px) {
}

/* =========================================================
   v42 — ink bleed + faded industrial export stamp on sack
   ========================================================= */




/* broad ink cloud behind the print */


/* distressed screen-print texture */


/* single-color industrial print feel */






/* slightly more aged sack tone */


/* =========================================================
   v43 — realistic burlap stamp inspired by uploaded reference
   ========================================================= */


































@media (max-width: 900px) {
}

/* =========================================================
   v44 — large centered origin stamp on sack
   ========================================================= */























@media (max-width: 900px) {
}

/* =========================================================
   GOLDFOOD — FOUR-COLOR DESIGN SYSTEM + TYPE SCALE
   Palette:
   1) Ink Black    #080808
   2) Warm Ivory   #F2EDE2
   3) Gold         #D3AF37
   4) Deep Green   #254D3A
   Typeface: Estedad / YBakh fallback
   Paste this block at the END of coffeeExperience.css
   ========================================================= */

:root {
    /* Only four master colors */
    --gf-ink: #080808;
    --gf-ivory: #F2EDE2;
    --gf-gold: #D3AF37;
    --gf-green: #254D3A;
    /* Map the old design variables to the new palette */
    --bg: var(--gf-ink);
    --panel: var(--gf-ink);
    --panel-2: var(--gf-ink);
    --text: var(--gf-ivory);
    --muted: rgba(242, 237, 226, .66);
    --line: rgba(242, 237, 226, .14);
    --gold: var(--gf-gold);
    --gold-dark: var(--gf-gold);
    --green: var(--gf-green);
    /* One consistent typography system */
    --font-site: "Estedad", "YBakh", sans-serif;
    --fs-hero: clamp(64px, 9vw, 135px);
    --fs-section: clamp(46px, 6.3vw, 96px);
    --fs-heading: clamp(28px, 3vw, 46px);
    --fs-body: clamp(15px, 1.08vw, 18px);
    --fs-meta: 11px;
    --fs-button: 13px;
    --lh-title: 1.3;
    --lh-body: 1.92;
}

html {
    color-scheme: dark;
    background: var(--gf-ink) !important;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font-site) !important;
}

body {
    color: var(--gf-ivory) !important;
    background: var(--gf-ink) !important;
    font-size: var(--fs-body);
    font-weight: 450;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* ---------------------------------------------------------
   Unified typography hierarchy
   --------------------------------------------------------- */
.hero-copy h1 {
    font-family: var(--font-site) !important;
    font-size: var(--fs-hero) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -.065em !important;
}

main section h2,
.footer-statement h2,
.mobile-menu nav a,
.origin-film-copy h2,
.supply-cinema-copy h2,
.about-zoom-copy h2,
.about-zoom-header h2,
.why-rail-header h2,
.products-explorer-head h2,
.products-heading h2 {
    font-family: var(--font-site) !important;
    font-size: var(--fs-section) !important;
    font-weight: 850 !important;
    line-height: var(--lh-title) !important;
    letter-spacing: -.045em !important;
}

main section h3,
.product-feature-copy h3,
.product-scroll-name strong,
.why-panel-copy h3,
.journey-step-copy h3,
.supply-step-copy h3 {
    font-family: var(--font-site) !important;
    font-size: var(--fs-heading) !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    letter-spacing: -.035em !important;
}

main section p,
.footer-grid p,
.product-feature-copy > p,
.product-scroll-meta,
.journey-step-copy p,
.supply-step-copy p,
.why-panel-copy p,
.about-zoom-copy p,
.supply-cinema-copy p {
    font-family: var(--font-site) !important;
    font-size: var(--fs-body) !important;
    font-weight: 450 !important;
    line-height: var(--lh-body) !important;
    color: rgba(242, 237, 226, .72) !important;
}

.section-label,
.eyebrow,
main section small,
.product-feature-copy > small,
.product-feature-specs dt,
.product-scroll-name small,
.footer-grid small {
    font-family: var(--font-site) !important;
    font-size: var(--fs-meta) !important;
    font-weight: 750 !important;
    line-height: 1.5 !important;
    letter-spacing: .14em !important;
    color: var(--gf-gold) !important;
}

button,
.button,
.header-contact,
.tab,
.product-feature-select,
.product-row-select,
.product-select-btn {
    font-family: var(--font-site) !important;
    font-size: var(--fs-button) !important;
    font-weight: 750 !important;
}

.desktop-nav a,
.partner-lockup,
.footer-grid a,
.mobile-menu-foot {
    font-family: var(--font-site) !important;
}

/* ---------------------------------------------------------
   Four-color surfaces
   --------------------------------------------------------- */
body,
main,
.hero-cinema,
.manifesto,
.mix-gallery-section,
.journey-story-section,
.supply-story,
.supply-scroll-section,
.supply-cinema-section,
.story-narrative,
.about-zoom-section,
.reasons-section,
.why-rail-section,
.products-section,
.products-explorer-section,
.dark-footer,
.origin-scroll-film,
.origin-spiral-section,
.origin-bag-section {
    background-color: var(--gf-ink) !important;
    color: var(--gf-ivory) !important;
}

.manifesto,
.about-zoom-section,
.products-section,
.products-explorer-section {
    background-image: linear-gradient( 180deg, var(--gf-ink) 0%, rgba(37, 77, 58, .20) 50%, var(--gf-ink) 100% ) !important;
}

.site-header {
    border-color: rgba(242, 237, 226, .12) !important;
    background: rgba(8, 8, 8, .54) !important;
}

    .site-header.is-scrolled {
        background: rgba(8, 8, 8, .92) !important;
        border-color: rgba(242, 237, 226, .12) !important;
    }

.mobile-menu,
.product-whatsapp-bar {
    background: rgba(8, 8, 8, .96) !important;
}

/* Every panel uses black or green — no extra grey/brown UI colors */
.mix-frame,
.journey-media-stack,
.supply-visual-stack,
.supply-image,
.supply-subimage,
.story-image,
.product-feature-card,
.product-feature-specs div,
.product-list,
.product-scroll-list,
.why-panel,
.about-zoom-lens,
.origin-sack-stage,
.origin-bag-stage {
    background-color: var(--gf-ink) !important;
    border-color: rgba(242, 237, 226, .14) !important;
}

.product-feature-specs,
.product-scroll-list,
.reasons-list,
.footer-grid,
.supply-stats,
.story-chapter,
.journey-story-step,
.supply-story-step,
.origin-bag-step,
.origin-spiral-step,
.product-scroll-item {
    border-color: rgba(242, 237, 226, .14) !important;
}

    /* ---------------------------------------------------------
   Color roles
   Gold = labels/progress/highlight
   Green = active/selected/action
   Ivory = text
   Ink = background
   --------------------------------------------------------- */
    .section-label,
    .eyebrow,
    .hero-scroll,
    .product-feature-topline span:last-child,
    .product-feature-copy > small,
    .product-scroll-code,
    .product-scroll-item.is-active .product-scroll-arrow,
    .product-notes-block span,
    .supply-caption span,
    .story-text small,
    .why-panel-copy small,
    .about-zoom-copy small,
    .supply-cinema-copy small,
    .origin-film-caption span {
        color: var(--gf-gold) !important;
    }

        .scroll-progress,
        .word-stream,
        .product-feature-progress i,
        .about-zoom-progress b,
        .why-rail-progress b,
        .supply-cinema-progress b,
        .product-feature-card::after,
        .product-scroll-item::before,
        .hero-scroll i::after {
            background-color: var(--gf-gold) !important;
        }

    /* Remove region-specific rainbow accents */
    .product-accordion,
    .product-scroll-item,
    .product-feature-card,
    .product-accordion.region-brazil,
    .product-accordion.region-ethiopia,
    .product-accordion.region-uganda,
    .product-accordion.region-colombia,
    .product-accordion.region-indonesia,
    .product-accordion.region-vietnam,
    .product-accordion.region-india,
    .product-scroll-item.region-brazil,
    .product-scroll-item.region-ethiopia,
    .product-scroll-item.region-uganda,
    .product-scroll-item.region-colombia,
    .product-scroll-item.region-indonesia,
    .product-scroll-item.region-vietnam,
    .product-scroll-item.region-india {
        --accent: var(--gf-green) !important;
        --product-accent: var(--gf-green) !important;
    }

.tab.active,
.product-feature-select,
.product-select-btn,
.product-whatsapp-bar a {
    background: var(--gf-green) !important;
    border-color: var(--gf-green) !important;
    color: var(--gf-ivory) !important;
}

.button-solid,
.header-contact {
    background: var(--gf-gold) !important;
    color: var(--gf-ink) !important;
}

.button-line,
.tab,
.product-row-select,
.product-whatsapp-bar button,
.scroll-top-btn {
    color: var(--gf-ivory) !important;
    border-color: rgba(242, 237, 226, .20) !important;
    background: rgba(8, 8, 8, .42) !important;
}

.product-feature-card.is-selected .product-feature-select,
.product-scroll-item.is-selected .product-row-select,
.product-accordion.is-selected .product-select-btn {
    background: var(--gf-gold) !important;
    border-color: var(--gf-gold) !important;
    color: var(--gf-ink) !important;
}

/* Text color normalization */


.desktop-nav a,
.product-feature-origin,
.product-scroll-meta,
.footer-grid a,
.footer-brand p,
.hero-copy p {
    color: rgba(242, 237, 226, .72) !important;
}

/* Image overlays use only ink + green */




/* Focus accessibility follows the same palette */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gf-gold) !important;
    outline-offset: 4px;
}

@media (max-width: 780px) {
    :root {
        --fs-hero: clamp(52px, 18vw, 88px);
        --fs-section: clamp(40px, 12vw, 68px);
        --fs-heading: clamp(26px, 8vw, 40px);
        --fs-body: 15px;
    }

    main section h2,
    .footer-statement h2,
    .origin-film-copy h2,
    .supply-cinema-copy h2,
    .about-zoom-copy h2,
    .about-zoom-header h2,
    .why-rail-header h2,
    .products-explorer-head h2,
    .products-heading h2 {
        font-size: var(--fs-section) !important;
    }

    main section p,
    .footer-grid p,
    .product-feature-copy > p,
    .journey-step-copy p,
    .supply-step-copy p,
    .why-panel-copy p,
    .about-zoom-copy p,
    .supply-cinema-copy p {
        font-size: var(--fs-body) !important;
    }
}

/* =========================================================
   v45 — stability, responsive polish, centered stamps,
   and a continuous trail from Origin to Footer
   ========================================================= */

/* ---------- Structural safety ---------- */
html,
body {
    width: 100%;
    max-width: 100%;
}

body {
    position: relative;
}

main {
    position: relative;
    isolation: isolate;
}

    main > section,
    main > footer {
        position: relative;
        z-index: 1;
    }

img,
video,
svg {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* ---------- Origin sack: every stamp same size and exact center ---------- */


























/* Keep sack itself centered and predictable */




/* ---------- Header and navigation fixes ---------- */
.site-header {
    max-width: calc(100vw - 40px);
}

.brand-lockup,
.header-actions,
.desktop-nav {
    min-width: 0;
}

    .desktop-nav a {
        white-space: nowrap;
    }

.mobile-menu {
    min-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
}

/* ---------- Safer responsive text and media ---------- */
.hero-copy,
.journey-story-head,
.products-explorer-head,
.footer-statement {
    min-width: 0;
}

    .hero-copy h1,
    .journey-story-head h2,
    .supply-cinema-copy h2,
    .about-zoom-copy h2,
    .why-rail-header h2,
    .products-explorer-head h2,
    .footer-statement h2 {
        overflow-wrap: anywhere;
        text-wrap: balance;
    }

    .hero-copy p,
    .journey-story-head p,
    .journey-step-copy p,
    .supply-cinema-copy p,
    .about-zoom-copy p,
    .why-panel-copy p,
    .products-explorer-head p {
        text-wrap: pretty;
    }

.journey-media-item img,
.supply-cinema-frame img,
.about-bg-frame img,
.about-lens-frame img,
.why-panel-image img,
.product-feature-bg img {
    object-position: center;
}

/* Product bug fixes */
.product-feature-origin img[src=""] {
    display: none;
}

.product-scroll-name strong {
    font-size: clamp(18px, 1.7vw, 27px) !important;
}

.product-scroll-trigger {
    min-width: 0;
}

.product-whatsapp-bar {
    right: 16px !important;
    left: 16px !important;
    width: auto !important;
    max-width: 720px;
    margin-inline: auto;
    gap: 14px !important;
    padding: 14px 16px !important;
    border-radius: 18px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1180px) {
    :root {
        --shell: min(100% - 40px, 1120px);
    }

    .site-header {
        max-width: calc(100vw - 24px);
        right: 12px;
        left: 12px;
    }



    .journey-story-shell {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
        gap: 34px;
    }

    .journey-media-stack {
        height: min(68vh, 700px);
    }

    .supply-cinema-copy-stack,
    .about-zoom-copy-stack {
        max-width: 100%;
    }

    .why-panel {
        gap: 34px;
        padding-inline: 32px;
    }
}

/* ---------- Mobile/tablet narrative mode ---------- */
@media (max-width: 920px) {
    :root {
        --shell: calc(100vw - 32px);
    }

    .page-footprint-trail {
        opacity: .48;
    }

        .page-footprint-trail svg {
            width: 128%;
            left: -14%;
        }

    .origin-scroll-film {
        height: 600vh;
    }

    .origin-film-sticky,
    .supply-cinema-sticky {
        min-height: 100svh;
    }

    .origin-film-copy {
        top: 90px;
        right: 18px;
        left: 18px;
        max-width: none;
        text-align: center;
    }





    .journey-story-shell {
        display: block;
        width: 100%;
    }

    .journey-story-media {
        position: sticky;
        top: 76px;
        z-index: 8;
        margin-bottom: 16px;
    }

    .journey-media-stack {
        height: min(54svh, 540px);
        border-radius: 22px;
    }

    .journey-story-steps {
        gap: 0;
    }

    .journey-story-step {
        min-height: 52svh;
        padding: 28px 0;
    }

    .supply-cinema-header,
    .about-zoom-header,
    .why-rail-header {
        top: 78px;
    }

    .supply-cinema-copy-stack {
        right: 18px;
        left: 18px;
        bottom: 48px;
        min-height: 300px;
    }

    .supply-cinema-copy {
        width: 100%;
        max-width: 680px;
    }

        .supply-cinema-copy h2 {
            font-size: clamp(36px, 10vw, 64px) !important;
        }

    .product-explorer-layout {
        gap: 24px;
    }

    .product-feature-sticky {
        top: 76px;
    }

    .product-feature-card {
        min-height: min(64svh, 650px);
    }
}

/* ---------- Small mobile ---------- */
@media (max-width: 640px) {
    :root {
        --shell: calc(100vw - 24px);
        --header-h: 60px;
    }

    .site-header {
        top: 8px;
        right: 8px;
        left: 8px;
        max-width: calc(100vw - 16px);
        min-height: 60px;
        padding-inline: 9px;
    }

    .brand-logo {
        width: 102px;
        height: 38px;
    }

    .partner-lockup img {
        width: 28px;
        height: 28px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero-copy {
        min-height: 100svh;
        padding: 116px 16px 88px;
    }

        .hero-copy h1 {
            font-size: clamp(48px, 17vw, 76px) !important;
            line-height: .94 !important;
        }

        .hero-copy p {
            max-width: 30ch;
            font-size: 15px !important;
        }

    .hero-actions {
        width: 100%;
    }

        .hero-actions .button {
            flex: 1 1 160px;
            padding-inline: 14px;
        }

    .hero-scroll {
        right: 16px;
        left: 16px;
        justify-content: flex-start;
    }

    .origin-scroll-film {
        height: 560vh;
    }











    .origin-film-caption {
        right: 16px;
        left: 16px;
        bottom: 20px;
        max-width: none;
        text-align: center;
    }

    .journey-story-section,
    .products-explorer-section {
        padding-right: 12px;
        padding-left: 12px;
    }

    .journey-story-media {
        top: 70px;
    }

    .journey-media-stack {
        height: 47svh;
        border-radius: 18px;
    }

    .journey-story-step {
        min-height: 48svh;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
    }

    .supply-cinema-section {
        height: 440vh;
    }

    .supply-cinema-header {
        right: 14px;
        left: 14px;
        gap: 12px;
    }

    .supply-cinema-progress {
        min-width: 120px;
    }

    .supply-cinema-copy-stack {
        right: 14px;
        left: 14px;
        bottom: 34px;
        min-height: 270px;
    }

    .about-zoom-section,
    .why-rail-section {
        padding-right: 12px;
        padding-left: 12px;
    }

    .about-zoom-lens,
    .why-panel-image {
        height: 48svh;
        border-radius: 18px;
    }

    .why-panel,
    .why-panel:nth-child(even) {
        min-height: auto;
        padding: 48px 0;
    }

    .product-feature-card {
        min-height: 62svh;
        padding: 16px;
        border-radius: 18px;
    }

    .product-feature-specs {
        grid-template-columns: 1fr 1fr;
    }

    .product-scroll-trigger {
        min-height: 92px;
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 14px 10px;
    }

    .product-scroll-code {
        font-size: 22px;
    }

    .product-scroll-name small {
        white-space: normal;
    }

    .product-whatsapp-bar {
        right: 8px !important;
        left: 8px !important;
        bottom: 8px;
        display: none;
        grid-template-columns: 1fr auto;
        padding: 12px !important;
        border-radius: 15px;
    }

        .product-whatsapp-bar.is-visible {
            display: grid;
        }

        .product-whatsapp-bar a {
            grid-column: 1 / -1;
            justify-content: center;
        }

    .dark-footer {
        padding-right: 12px;
        padding-left: 12px;
    }

    .footer-grid {
        gap: 28px;
    }
}

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

/* =========================================================
   FINAL ORIGIN SACK — single source of truth
   All earlier sack/stamp declarations were removed.
   ========================================================= */
.origin-film-sack {
    position: relative;
    z-index: 2;
    width: min(40vw, 580px);
    max-width: calc(100vw - 32px);
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translate3d(0, 16vh, 0) scale(.72) rotate(-3deg);
    opacity: .18;
    will-change: transform, opacity;
    isolation: isolate;
}

    .origin-film-sack::after {
        display: none;
        content: none;
    }

.origin-film-sack-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: saturate(.9) contrast(1.02) brightness(.95) drop-shadow(0 34px 66px rgba(0,0,0,.48));
}

/* Printable area of the actual burlap body, not the black image canvas. */
.origin-film-patch-stack {
    position: absolute;
    z-index: 3;
    inset: 14% 14% 13%;
    display: grid;
    place-items: center;
    overflow: visible;
    pointer-events: none;
}

.origin-film-patch {
    position: relative;
    grid-area: 1 / 1;
    width: min(76%, 310px);
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(.96);
    transform-origin: center;
    transition: opacity .3s ease, transform .38s cubic-bezier(.2,.72,.2,1), visibility .3s ease;
    background: transparent;
    border: 0;
    box-shadow: none;
    filter: none;
    mix-blend-mode: normal;
}

    .origin-film-patch.is-active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .origin-film-patch::before,
    .origin-film-patch::after,
    .origin-film-patch > img,
    .origin-film-patch > strong {
        display: none;
        content: none;
    }

.origin-stamp {
    width: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    direction: ltr;
    unicode-bidi: isolate;
    filter: none;
    mix-blend-mode: normal;
}

    .origin-stamp::before,
    .origin-stamp::after {
        display: none;
        content: none;
    }

/* No enclosing badge or heavy border. */
.origin-stamp-seal {
    position: relative;
    width: 100%;
    display: grid;
    justify-items: center;
    align-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #4d3019;
}

    .origin-stamp-seal::before,
    .origin-stamp-seal::after {
        display: none;
        content: none;
    }

.origin-stamp-name {
    width: 100%;
    margin: 0;
    display: block;
    color: #4d3019;
    font-family: 'Estedad', 'YBakh', sans-serif;
    font-size: clamp(21px, 2.25vw, 34px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: .07em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: visible;
    direction: ltr;
    unicode-bidi: isolate;
}

.origin-stamp-rule {
    width: 72%;
    height: 7px;
    margin: 9px 0 13px;
    display: block;
    background: linear-gradient(to bottom, rgba(77,48,25,.92) 0 2px, transparent 2px 5px, rgba(77,48,25,.42) 5px 6px, transparent 6px 100%);
}

.origin-stamp-flag {
    position: relative;
    width: clamp(92px, 43%, 138px);
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
    border: 3px solid #4d3019;
    border-radius: 50%;
    background: #f2ede2;
    box-shadow: 0 7px 16px rgba(36,20,8,.16);
}

    .origin-stamp-flag::before,
    .origin-stamp-flag::after {
        display: none;
        content: none;
    }

    .origin-stamp-flag img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 50%;
        opacity: 1;
        visibility: visible;
        filter: none;
        mix-blend-mode: normal;
        -webkit-mask: none;
        mask: none;
    }

/* Simple printed caption; no border, no polygon badge. */
.origin-stamp-plaque {
    width: 100%;
    min-height: 54px;
    margin-top: 2px;
    padding: 8px 12px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    color: #4d3019;
    background: rgba(211,175,55,.18);
    border: 0;
    border-radius: 8px;
    clip-path: none;
    box-shadow: none;
    direction: ltr;
    unicode-bidi: isolate;
}

    .origin-stamp-plaque::before,
    .origin-stamp-plaque::after {
        display: none;
        content: none;
    }

    .origin-stamp-plaque strong,
    .origin-stamp-plaque small {
        width: 100%;
        margin: 0;
        display: block;
        color: #4d3019;
        text-align: center;
        white-space: nowrap;
        overflow: visible;
        direction: ltr;
        unicode-bidi: isolate;
    }

    .origin-stamp-plaque strong {
        font-size: clamp(13px, 1.2vw, 17px);
        font-weight: 900;
        line-height: 1.2;
        letter-spacing: .045em;
        text-transform: uppercase;
    }

    .origin-stamp-plaque small {
        margin-top: 3px;
        font-size: clamp(10px, .82vw, 12px);
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: .045em;
        text-transform: uppercase;
    }

@media (max-width: 900px) {
    .origin-film-sack {
        width: min(82vw, 470px);
    }

    .origin-film-patch-stack {
        inset: 14% 13% 13%;
    }

    .origin-film-patch {
        width: min(80%, 280px);
    }

    .origin-stamp-name {
        font-size: clamp(20px, 5.1vw, 29px);
    }

    .origin-stamp-flag {
        width: clamp(84px, 42%, 122px);
    }

    .origin-stamp-plaque {
        min-height: 50px;
        padding: 7px 9px;
    }
}

@media (max-width: 520px) {
    .origin-film-sack {
        width: min(88vw, 410px);
    }

    .origin-film-patch-stack {
        inset: 15% 13% 14%;
    }

    .origin-film-patch {
        width: min(84%, 250px);
    }

    .origin-stamp-name {
        font-size: clamp(18px, 5.8vw, 25px);
        letter-spacing: .055em;
    }

    .origin-stamp-flag {
        width: clamp(76px, 40%, 108px);
        border-width: 2px;
    }

    .origin-stamp-plaque strong {
        font-size: clamp(12px, 3.5vw, 14px);
    }

    .origin-stamp-plaque small {
        font-size: clamp(9px, 2.8vw, 10px);
    }
}


/* =========================================================
   v50 — content architecture, six-scene About GoldFood,
   readable product specifications and reliable filtering
   ========================================================= */

/* The new About GoldFood story contains six equal scroll scenes. */
.supply-cinema-section {
    height: 660vh;
}

.supply-cinema-copy-stack {
    min-height: 340px;
}

.supply-cinema-copy {
    max-width: 1020px;
}

    .supply-cinema-copy h2 {
        max-width: 980px;
        text-wrap: balance;
    }

/* Product tabs are exact origin filters; hidden cards must not occupy layout space. */
.product-scroll-item.is-filter-hidden,
.product-scroll-item[hidden] {
    display: none !important;
}

/* More legible product header and technical specification panel. */
.product-feature-topline {
    align-items: flex-start;
}

.product-feature-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    color: rgba(242, 237, 226, .62);
    font-size: 11px;
    letter-spacing: .16em;
}

    .product-feature-counter b {
        color: var(--gf-ivory);
        font-size: 18px;
        letter-spacing: .04em;
    }

.product-feature-card {
    min-height: min(86vh, 900px);
    grid-template-rows: auto minmax(210px, 1fr) auto auto;
}

.product-feature-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

    .product-feature-specs div {
        min-height: 88px;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        padding: 16px 18px !important;
        border: 1px solid rgba(242, 237, 226, .16) !important;
        border-radius: 14px;
        background: rgba(8, 8, 8, .74) !important;
        backdrop-filter: blur(14px);
    }

    .product-feature-specs dt {
        margin: 0 0 8px !important;
        color: var(--gf-gold) !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
    }

    .product-feature-specs dd {
        margin: 0 !important;
        overflow: visible !important;
        color: var(--gf-ivory) !important;
        font-size: clamp(14px, 1vw, 17px) !important;
        line-height: 1.65 !important;
        font-weight: 750 !important;
        white-space: normal !important;
        text-overflow: clip !important;
    }

.product-feature-actions {
    align-items: center;
}

.product-feature-progress {
    display: block;
    flex: 1;
    height: 2px;
    overflow: hidden;
    background: rgba(242, 237, 226, .16);
}

    .product-feature-progress i {
        display: block;
        width: 0;
        height: 100%;
        background: var(--gf-gold) !important;
        transition: width .45s cubic-bezier(.2,.7,.2,1);
    }

.footer-statement > p {
    max-width: 680px;
    margin: -6px 0 28px;
    color: rgba(242, 237, 226, .7);
    font-size: clamp(15px, 1.15vw, 19px);
    line-height: 1.95;
}

@media (max-width: 920px) {
    .supply-cinema-section {
        height: 620vh;
    }

    .product-feature-card {
        min-height: min(74svh, 760px);
        grid-template-rows: auto minmax(180px, 1fr) auto auto;
    }

    .product-feature-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

        .product-feature-specs div:nth-child(n + 5) {
            display: flex !important;
        }
}

@media (max-width: 640px) {
    .supply-cinema-section {
        height: 600vh;
    }

    .product-feature-card {
        min-height: auto;
    }

    .product-feature-specs div {
        min-height: 82px;
        padding: 14px !important;
    }

    .product-feature-specs dd {
        font-size: 14px !important;
    }

    .product-feature-actions {
        flex-wrap: wrap;
    }

    .product-feature-select {
        width: 100%;
        justify-content: center;
    }

    .product-feature-progress {
        flex-basis: 100%;
    }
}

/* =========================================================
   v51 — aligned image narrative and restored hero copy
   ========================================================= */
.journey-story-step {
    min-height: 46vh;
}

.journey-media-item img,
.supply-cinema-frame img {
    object-position: center center;
}

.journey-media-item[data-journey-media="1"] img,
.journey-media-item[data-journey-media="2"] img {
    object-position: center 42%;
}

.journey-media-item[data-journey-media="3"] img,
.journey-media-item[data-journey-media="4"] img {
    object-position: center 55%;
}

.supply-cinema-frame[data-supply-cinema-frame="0"] img,
.supply-cinema-frame[data-supply-cinema-frame="1"] img {
    object-position: center 40%;
}

.supply-cinema-frame[data-supply-cinema-frame="5"] img {
    object-position: center 52%;
}

@media (max-width: 780px) {
    .journey-story-step {
        min-height: 50svh;
    }
}

/* =========================================================
   v52 — visual story alignment + subtle dotted journey path
   ========================================================= */
.journey-story-section {
    overflow: clip;
}

.journey-story-steps {
    position: relative;
    isolation: isolate;
}

.journey-story-trail {
    position: absolute;
    z-index: 0;
    top: 1.5%;
    right: 0;
    bottom: 1.5%;
    width: 74px;
    pointer-events: none;
    opacity: .78;
}

    .journey-story-trail svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

.journey-trail-base,
.journey-trail-progress {
    fill: none;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
}

.journey-trail-base {
    stroke: rgba(242, 237, 226, .25);
    stroke-width: 3;
    stroke-dasharray: 1 17;
}

.journey-trail-progress {
    stroke: var(--gold);
    stroke-width: 2;
    opacity: .74;
    filter: drop-shadow(0 0 7px rgba(211, 175, 55, .22));
    transition: stroke-dashoffset .65s cubic-bezier(.2, .72, .2, 1);
}

.journey-story-step {
    position: relative;
    z-index: 1;
    padding-right: 4px;
}

.journey-step-no {
    position: relative;
    z-index: 2;
    width: 52px;
    min-width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(242, 237, 226, .13);
    border-radius: 50%;
    background: #080808;
    box-shadow: 0 0 0 8px rgba(8, 8, 8, .78);
    transition: color .35s ease, border-color .35s ease, transform .35s ease, background .35s ease;
}

.journey-story-step.is-active .journey-step-no {
    color: var(--gold);
    border-color: rgba(211, 175, 55, .58);
    background: rgba(37, 77, 58, .88);
    transform: scale(1.06);
}

.journey-media-item img {
    object-position: center;
}

.journey-media-item[data-journey-media="1"] img,
.journey-media-item[data-journey-media="3"] img,
.journey-media-item[data-journey-media="4"] img,
.journey-media-item[data-journey-media="6"] img {
    object-position: center 44%;
}

.supply-cinema-frame img {
    object-position: center;
}

.supply-cinema-frame[data-supply-cinema-frame="0"] img,
.supply-cinema-frame[data-supply-cinema-frame="1"] img {
    object-position: center 42%;
}

@media (max-width: 920px) {
    .journey-story-trail {
        right: 2px;
        width: 60px;
        opacity: .58;
    }

    .journey-story-step {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .journey-step-no {
        width: 46px;
        min-width: 46px;
        height: 46px;
        box-shadow: 0 0 0 6px rgba(8, 8, 8, .82);
    }
}

@media (max-width: 640px) {
    .journey-story-trail {
        right: -3px;
        width: 54px;
        opacity: .48;
    }

    .journey-trail-base {
        stroke-dasharray: 1 20;
    }

    .journey-story-step {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .journey-step-no {
        width: 40px;
        min-width: 40px;
        height: 40px;
        font-size: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .journey-trail-progress {
        transition: none;
    }
}

/* Continue the visual story through all six About GoldFood scenes. */
.supply-cinema-route {
    padding-block: 8px;
}

    .supply-cinema-route::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        right: 50%;
        width: 2px;
        transform: translateX(50%);
        background: repeating-linear-gradient( to bottom, rgba(242, 237, 226, .26) 0 2px, transparent 2px 13px );
    }

    .supply-cinema-route span {
        position: relative;
        box-shadow: 0 0 0 5px rgba(8, 8, 8, .52);
    }

        .supply-cinema-route span.is-active {
            box-shadow: 0 0 0 5px rgba(8, 8, 8, .62), 0 0 18px rgba(211, 175, 55, .42);
        }

@media (max-width: 640px) {
    .supply-cinema-route {
        right: 11px;
        opacity: .72;
    }
}


/* -----------------------------------------------------
   v53 — journey layout cleanup + cohesive story styling
----------------------------------------------------- */
.journey-story-head {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

    .journey-story-head p {
        max-width: 760px;
        margin-inline: auto;
    }

.journey-story-shell {
    display: grid;
    grid-template-columns: minmax(320px, 40%) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.journey-story-media {
    position: sticky;
    top: 108px;
}

.journey-media-stack {
    min-height: clamp(520px, 68vh, 760px);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.journey-media-item img,
.supply-cinema-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.journey-story-steps {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 6px 0 6px 102px;
}

.journey-story-trail {
    position: absolute;
    inset: 0 auto 0 10px;
    width: 72px;
    pointer-events: none;
}

    .journey-story-trail svg {
        width: 72px;
        height: 100%;
        display: block;
    }

.journey-trail-base {
    fill: none;
    stroke: rgba(170, 127, 57, .20);
    stroke-width: 3;
    stroke-dasharray: 2 10;
    stroke-linecap: round;
}

.journey-trail-progress {
    fill: none;
    stroke: linear-gradient(180deg, #D3AF37, #8E6D1F);
    stroke: #d3af37;
    stroke-width: 4;
    stroke-linecap: round;
    filter: drop-shadow(0 0 12px rgba(211, 175, 55, .28));
}

.journey-story-step {
    position: relative;
    padding: 20px 22px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,244,235,.82));
    border: 1px solid rgba(210, 176, 95, .18);
    box-shadow: 0 16px 40px rgba(33, 24, 7, .08);
}

    .journey-story-step.is-active {
        border-color: rgba(211, 175, 55, .42);
        box-shadow: 0 20px 48px rgba(33, 24, 7, .14);
    }

.journey-step-no {
    position: absolute;
    left: -86px;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .08em;
    background: #fffaf0;
    border: 1px solid rgba(211, 175, 55, .34);
    box-shadow: 0 10px 28px rgba(33, 24, 7, .10);
    z-index: 2;
}

.journey-story-step.is-active .journey-step-no {
    background: linear-gradient(135deg, #d3af37, #a98224);
    color: #1c1405;
    border-color: transparent;
}

.journey-step-copy {
    display: grid;
    gap: 6px;
}

    .journey-step-copy small {
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .16em;
        color: #8E6D1F;
    }

    .journey-step-copy h3 {
        margin: 0;
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        line-height: 1.45;
    }

    .journey-step-copy p {
        margin: 0;
        font-size: .98rem;
        line-height: 1.95;
        color: rgba(22, 18, 10, .82);
    }

.products-explorer-head p {
    max-width: 880px;
}

@media (max-width: 1080px) {
    .journey-story-shell {
        grid-template-columns: 1fr;
    }

    .journey-story-media {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .journey-story-steps {
        padding-left: 72px;
        gap: 14px;
    }

    .journey-story-trail {
        left: 4px;
        width: 56px;
    }

        .journey-story-trail svg {
            width: 56px;
        }

    .journey-story-step {
        padding: 16px 16px 16px 18px;
        border-radius: 20px;
    }

    .journey-step-no {
        left: -60px;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: .86rem;
    }

    .journey-step-copy p {
        font-size: .92rem;
        line-height: 1.8;
    }
}


/* -----------------------------------------------------
   v55 — minimal journey list + refreshed about imagery
----------------------------------------------------- */
.journey-story-shell--minimal {
    align-items: start;
}

.journey-story-steps--minimal {
    gap: 22px;
    padding-top: 10px;
}

.journey-story-step--minimal {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 6px 0 6px 2px !important;
    border-radius: 0 !important;
}

    .journey-story-step--minimal .journey-step-copy {
        gap: 4px;
    }

        .journey-story-step--minimal .journey-step-copy small {
            display: block;
            font-size: .73rem;
            line-height: 1.5;
            letter-spacing: .18em;
            color: rgba(211, 175, 55, .92);
        }

        .journey-story-step--minimal .journey-step-copy h3 {
            margin: 0;
            color: #f6edd8;
            font-size: clamp(1.05rem, 1.4vw, 1.28rem);
            line-height: 1.55;
            font-weight: 700;
        }

        .journey-story-step--minimal .journey-step-copy p {
            display: none !important;
        }

    .journey-story-step--minimal .journey-step-no {
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(211, 175, 55, .34);
        color: #f7efd7;
        box-shadow: none;
    }

    .journey-story-step--minimal.is-active .journey-step-no {
        background: linear-gradient(135deg, #d3af37, #a98224);
        color: #1d1505;
    }

.journey-story-steps--minimal::after {
    display: none;
}

.journey-story-steps--minimal .journey-story-step[data-passed=""] .journey-step-copy h3,
.journey-story-step--minimal.is-active .journey-step-copy h3 {
    color: #ffffff;
}

.journey-story-steps--minimal .journey-story-step:not(.is-active) {
    opacity: .88;
}

@media (max-width: 767px) {
    .journey-story-step--minimal {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

        .journey-story-step--minimal .journey-step-copy h3 {
            font-size: 1rem;
            line-height: 1.48;
        }

        .journey-story-step--minimal .journey-step-copy small {
            font-size: .68rem;
            letter-spacing: .14em;
        }
}


/* =========================================================
   v57 — mobile responsive fixes for Coffee Journey + Products
   Desktop layout is intentionally unchanged.
   ========================================================= */

/* Secondary product image used only by the mobile card layout. */
.product-mobile-visual {
    display: none;
}

/* Images injected into each journey step by JS are mobile-only. */
.journey-mobile-media {
    display: none;
}

@media (max-width: 767px) {
    html,
    body {
        max-width: 100%;
        overflow-x: clip;
    }

    /* ---------- Coffee Journey ---------- */
    .journey-story-section {
        padding: 82px 12px 72px !important;
        overflow: hidden !important;
    }

    .journey-story-head {
        width: 100% !important;
        margin-bottom: 28px !important;
        padding-inline: 2px;
        text-align: center;
    }

        .journey-story-head h2 {
            font-size: clamp(34px, 11vw, 52px) !important;
            line-height: 1.02 !important;
            letter-spacing: -.035em !important;
        }

        .journey-story-head p {
            max-width: 34ch !important;
            margin: 14px auto 0 !important;
            font-size: 14px !important;
            line-height: 1.85 !important;
        }

    /* The desktop sticky image is replaced by one image per step on phones. */
    .journey-story-media {
        display: none !important;
    }

    .journey-story-shell,
    .journey-story-shell--minimal {
        width: 100% !important;
        display: block !important;
    }

    .journey-story-steps,
    .journey-story-steps--minimal {
        width: 100% !important;
        display: grid !important;
        gap: 18px !important;
        padding: 0 !important;
    }

    .journey-story-trail {
        display: none !important;
    }

    .journey-story-step,
    .journey-story-step--minimal {
        width: 100% !important;
        min-height: 0 !important;
        display: grid !important;
        grid-template-columns: 44px minmax(0, 1fr) !important;
        gap: 10px 12px !important;
        align-items: center !important;
        align-content: initial !important;
        padding: 0 0 18px !important;
        margin: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        border-bottom: 1px solid rgba(255,255,255,.10) !important;
    }

        .journey-story-step:last-child,
        .journey-story-step--minimal:last-child {
            border-bottom: 0 !important;
        }

    .journey-mobile-media {
        grid-column: 1 / -1;
        display: block;
        width: 100%;
        aspect-ratio: 16 / 10;
        margin: 0 0 4px;
        overflow: hidden;
        border-radius: 16px;
        background: #111;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }

        .journey-mobile-media img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

    .journey-step-no,
    .journey-story-step--minimal .journey-step-no {
        position: static !important;
        inset: auto !important;
        transform: none !important;
        width: 42px !important;
        min-width: 42px !important;
        height: 42px !important;
        border-radius: 13px !important;
        font-size: 16px !important;
        box-shadow: none !important;
    }

    .journey-story-step.is-active .journey-step-no,
    .journey-story-step--minimal.is-active .journey-step-no {
        transform: none !important;
    }

    .journey-step-copy,
    .journey-story-step--minimal .journey-step-copy {
        min-width: 0;
        display: grid;
        gap: 2px !important;
    }

        .journey-step-copy small,
        .journey-story-step--minimal .journey-step-copy small {
            margin: 0 !important;
            font-size: 10px !important;
            line-height: 1.35 !important;
            letter-spacing: .10em !important;
            white-space: normal !important;
            overflow-wrap: anywhere;
        }

        .journey-step-copy h3,
        .journey-story-step--minimal .journey-step-copy h3 {
            margin: 0 !important;
            font-size: clamp(17px, 5vw, 21px) !important;
            line-height: 1.45 !important;
            letter-spacing: 0 !important;
            overflow-wrap: anywhere;
        }

    /* ---------- Product Explorer ---------- */
    .products-explorer-section {
        padding: 82px 12px 72px !important;
        overflow: hidden !important;
    }

    .products-explorer-head {
        width: 100% !important;
        display: block !important;
        margin-bottom: 24px !important;
        text-align: center;
    }

        .products-explorer-head h2 {
            margin-top: 10px !important;
            font-size: clamp(36px, 12vw, 54px) !important;
            line-height: 1 !important;
            letter-spacing: -.035em !important;
        }

        .products-explorer-head > p {
            max-width: 34ch !important;
            margin: 14px auto 0 !important;
            font-size: 14px !important;
            line-height: 1.85 !important;
        }

    .product-explorer-tabs {
        width: calc(100vw - 24px) !important;
        max-width: 100% !important;
        display: flex !important;
        gap: 8px !important;
        margin: 0 0 20px !important;
        padding: 2px 0 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

        .product-explorer-tabs::-webkit-scrollbar {
            display: none;
        }

        .product-explorer-tabs .tab {
            flex: 0 0 auto !important;
            min-width: max-content;
            scroll-snap-align: start;
            white-space: nowrap;
        }

    .product-explorer-layout {
        width: 100% !important;
        display: block !important;
        direction: rtl !important;
    }

    .product-feature-sticky {
        position: relative !important;
        top: auto !important;
        z-index: 1 !important;
        width: 100%;
        margin-bottom: 24px;
    }

    .product-feature-card {
        width: 100% !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column;
        gap: 16px !important;
        padding: 14px !important;
        overflow: hidden !important;
        border-radius: 20px !important;
        background: #0e0e0e !important;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.09) !important;
    }

    .product-feature-bg,
    .product-feature-overlay {
        display: none !important;
    }

    .product-feature-card::after {
        width: 3px !important;
    }

    .product-mobile-visual {
        position: relative;
        z-index: 3;
        order: 1;
        display: block;
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        border-radius: 14px;
        background: #161616;
    }

        .product-mobile-visual img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

    .product-feature-topline {
        order: 0;
        min-width: 0;
        gap: 10px !important;
        padding: 1px 2px;
    }

        .product-feature-topline span:last-child {
            max-width: 45%;
            font-size: 28px !important;
            line-height: 1 !important;
            overflow-wrap: anywhere;
            text-align: left;
        }

    .product-feature-copy {
        order: 2;
        width: 100%;
        max-width: none !important;
        align-self: auto !important;
    }

    .product-feature-origin {
        margin-bottom: 9px !important;
    }

        .product-feature-origin img {
            width: 28px !important;
            height: 28px !important;
        }

    .product-feature-copy > small {
        font-size: 9px !important;
        letter-spacing: .11em !important;
    }

    .product-feature-copy h3 {
        margin: 5px 0 8px !important;
        font-size: clamp(25px, 7.6vw, 34px) !important;
        line-height: 1.18 !important;
        letter-spacing: -.025em !important;
        overflow-wrap: anywhere;
    }

    .product-feature-copy > p {
        margin: 0 !important;
        color: rgba(255,255,255,.78) !important;
        font-size: 13.5px !important;
        line-height: 1.8 !important;
        display: block !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .product-feature-specs {
        order: 3;
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

        .product-feature-specs div,
        .product-feature-specs div:nth-child(n + 5) {
            display: flex !important;
            min-width: 0;
            min-height: 74px !important;
            padding: 11px 10px !important;
            border-radius: 12px !important;
        }

        .product-feature-specs dt {
            margin-bottom: 5px !important;
            font-size: 9.5px !important;
            line-height: 1.4 !important;
        }

        .product-feature-specs dd {
            font-size: 12.5px !important;
            line-height: 1.55 !important;
            overflow-wrap: anywhere !important;
            word-break: normal !important;
        }

    .product-feature-actions {
        order: 4;
        width: 100%;
        gap: 10px !important;
    }

    .product-feature-select {
        min-height: 44px;
        flex: 1;
        justify-content: center;
        padding-inline: 14px !important;
    }

    .product-scroll-list {
        width: 100%;
        padding: 0 !important;
    }

    .product-scroll-item {
        width: 100%;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        background: transparent !important;
    }

    .product-scroll-trigger {
        width: 100% !important;
        min-height: 78px !important;
        display: grid !important;
        grid-template-columns: 38px minmax(0, 1fr) !important;
        gap: 10px !important;
        padding: 12px 8px !important;
        text-align: right !important;
    }

    .product-scroll-code {
        font-size: 20px !important;
    }

    .product-scroll-name {
        min-width: 0;
    }

        .product-scroll-name small {
            display: block;
            font-size: 8.5px !important;
            line-height: 1.4 !important;
            white-space: normal !important;
            overflow: visible !important;
            text-overflow: clip !important;
        }

        .product-scroll-name strong {
            display: block;
            margin-top: 3px;
            font-size: 15px !important;
            line-height: 1.45 !important;
            white-space: normal !important;
            overflow: visible !important;
            text-overflow: clip !important;
            overflow-wrap: anywhere;
        }

    .product-mobile-detail {
        padding-inline: 8px !important;
    }

    .product-scroll-item.is-active .product-mobile-detail {
        padding-bottom: 14px !important;
    }

    .product-mobile-detail p {
        font-size: 13px !important;
        line-height: 1.75 !important;
    }
}

@media (max-width: 390px) {
    .product-feature-specs {
        grid-template-columns: 1fr !important;
    }

        .product-feature-specs div,
        .product-feature-specs div:nth-child(n + 5) {
            min-height: 64px !important;
        }

    .journey-mobile-media,
    .product-mobile-visual {
        aspect-ratio: 4 / 3;
    }
}
.supply-cinema-progress {
    direction: ltr;
}

/* =====================================================
   FOOTER SEO - FULL GRID WIDTH
   ===================================================== */

.footer-seo {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin: 26px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    direction: rtl;
    text-align: right;
    box-sizing: border-box;
}


    /* عنوان */
    .footer-seo h3 {
        width: 100%;
        margin: 0 0 10px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.8;
        text-align: right;
    }


/* متن اولیه و متن کامل */
.footer-seo-intro,
.footer-seo-content p {
    width: 100%;
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    font-weight: 400;
    line-height: 2.05;
    text-align: justify;
    text-align-last: right;
    direction: rtl;
}


/* فقط چند خط اول نمایش داده شود */
.footer-seo-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}


/* =====================================================
   MORE
   ===================================================== */

.footer-seo-more {
    width: 100%;
    margin-top: 7px;
}

    .footer-seo-more summary {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 0;
        list-style: none;
        cursor: pointer;
        color: #d3af37;
        font-size: 11px;
        font-weight: 600;
        text-align: right;
    }

        .footer-seo-more summary::-webkit-details-marker {
            display: none;
        }

        .footer-seo-more summary i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 17px;
            height: 17px;
            border: 1px solid rgba(211, 175, 55, 0.35);
            border-radius: 50%;
            font-size: 12px;
            font-style: normal;
            transition: transform 0.25s ease;
        }

.footer-seo .seo-less-text {
    display: none;
}

.footer-seo-more[open] .seo-more-text {
    display: none;
}

.footer-seo-more[open] .seo-less-text {
    display: inline;
}

.footer-seo-more[open] summary i {
    transform: rotate(45deg);
}


/* =====================================================
   OPEN ARTICLE
   ===================================================== */

.footer-seo-content {
    width: 100%;
    max-width: none;
    padding-top: 15px;
    direction: rtl;
    text-align: right;
}

    .footer-seo-content p {
        width: 100%;
        margin: 0 0 13px;
        text-align: justify;
        text-align-last: right;
    }


/* هنگام باز شدن، متن اولیه هم کامل دیده شود */
.footer-seo:has(.footer-seo-more[open]) .footer-seo-intro {
    display: block;
    overflow: visible;
}


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

@media (max-width: 768px) {

    .footer-seo {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 24px;
        padding-top: 18px;
    }

        .footer-seo h3 {
            font-size: 13px;
            line-height: 1.8;
        }

    .footer-seo-intro,
    .footer-seo-content p {
        width: 100%;
        font-size: 11.5px;
        line-height: 2;
        text-align: right;
    }

    .footer-seo-intro {
        -webkit-line-clamp: 3;
    }
}


/* Small mobile */
@media (max-width: 480px) {

    .footer-seo {
        margin-top: 20px;
        padding-top: 16px;
    }

        .footer-seo h3 {
            font-size: 12.5px;
        }

    .footer-seo-intro,
    .footer-seo-content p {
        font-size: 11px;
        line-height: 1.95;
    }
}
.brand-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

/* =====================================================
   PRODUCT REGION STICKY SELECTOR
   ===================================================== */

/*.product-explorer-tabs {
    position: sticky;
    top: 94px;
    z-index: 100;
    padding: 12px 0;
    margin-bottom: 30px;
    background: rgba(7, 7, 7, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 920px) {

    .product-explorer-tabs {
        top: 78px;
        z-index: 100;
        padding: 10px 0;
        margin-bottom: 20px;
        background: rgba(7, 7, 7, .95);
    }
}
@media (max-width: 767px) {

    .product-explorer-tabs {
        position: sticky !important;
        top: 70px !important;
        z-index: 100 !important;
        width: calc(100vw - 24px) !important;
        margin: 0 0 18px !important;
        padding: 9px 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        background: rgba(7, 7, 7, .96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255,255,255,.08);
        scrollbar-width: none;
    }

        .product-explorer-tabs::-webkit-scrollbar {
            display: none;
        }

        .product-explorer-tabs .tab {
            flex: 0 0 auto !important;
            white-space: nowrap;
        }
}*/

/* Performance: defer layout/paint for sections until they approach the viewport. */
main > section:not(#hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}
img {
    content-visibility: auto;
}
