:root {
    --green-950: #011C13;
    --green-900: #023725;
    --green-700: #1d5c46;
    --cream: #fff7dc;
    --ivory: #fffdf0;
    --gold: #d6cf8d;
    --wine: #852335;
    --orange: #e5421c;
    --ink: #023725;
    --grey-800: #343434;
    --grey-500: #7e7e7e;
    --white: #ffffff;
    --font-sans: "Inter", Arial, sans-serif;
    --font-serif: "Newsreader", Georgia, serif;
    --shell: 1216px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --shadow: 0 16px 38px rgba(1, 28, 19, .14);
    --cta-overlap: 140px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--green-950);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

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

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

button {
    color: inherit;
    font: inherit;
}

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: -80px;
    padding: 10px 16px;
    color: var(--green-950);
    background: var(--gold);
    border-radius: 6px;
    transition: top .2s;
}

    .skip-link:focus {
        top: 16px;
    }

.back-to-top {
    position: fixed;
    z-index: 40;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(255,247,220,.94);
    border: 0px solid rgba(1,28,19,.14);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(1,28,19,.2);
    transform: translateY(10px);
    transition: opacity .2s, transform .2s, visibility .2s;
    background: var(--orange);
    color: white !important;
    font-size: larger !important;
}

    .back-to-top img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        border-radius: 50%;
    }

    .back-to-top.is-visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-2px);
    }

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

h1, h2, h3, p {
    margin-top: 0;
}

h1, h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -.018em;
    line-height: 1.02;
}

    h1 em, h2 em, h3 em {
        color: var(--wine);
        font-weight: 400;
    }

.eyebrow {
    margin-bottom: 18px;
    color: var(--wine);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .165em;
    line-height: 1.35;
    text-transform: uppercase;
}

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

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s, box-shadow .2s;
}

    .button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,.18);
    }

.button-red {
    color: white;
    background: var(--orange);
}

.button-light {
    color: var(--green-950);
    background: var(--cream);
}

.site-header {
    position: absolute;
    z-index: 30;
    inset: 0 0 auto;
    height: 96px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
}

.header-menu {
    display: contents;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 22px;
}

.brand-mark {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--green-950);
    background: var(--gold);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 44px;
    font-size: 15px;
    font-weight: 600;
}

    .main-nav a {
        position: relative;
        padding: 12px 0;
    }

        .main-nav a::after {
            position: absolute;
            content: "";
            left: 0;
            right: 100%;
            bottom: 7px;
            height: 1px;
            background: var(--gold);
            transition: right .2s;
        }

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

.language {
    justify-self: end;
    display: flex;
    gap: 4px;
    padding: 6px;
    background: rgba(255,255,255,.1);
    border-radius: 999px;
}

    .language a {
        display: grid;
        width: 30px;
        height: 28px;
        place-items: center;
        padding: 0;
        color: white;
        background: transparent;
        border: 0;
        border-radius: 999px;
        font-size: 11px;
        cursor: pointer;
    }

    .language a:focus-visible {
        outline: 2px solid var(--gold);
        outline-offset: 2px;
    }

    .language .active {
        color: var(--green-950);
        background: white;
    }

.menu-toggle {
    display: none;
}

.hero {
    min-height: 720px;
    padding: 174px 0 80px;
    color: white;
    background: var(--green-900);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 488px;
    gap: 96px;
    align-items: center;
}

.hero-copy {
    max-width: 610px;
}

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

.hero h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: clamp(58px, 5.5vw, 80px);
}

    .hero h1 em {
        display: block;
        color: var(--gold);
    }

.hero-lead {
    max-width: 700px;
    color: rgba(255,255,255,.74);
    font-size: 17px;
}

.store-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 35px;
    margin-bottom: 28px;
}

.store-badge {
    position: relative;
    display: flex;
    min-width: 100px;
    height: 44px;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    color: white;
    border: 0px solid rgba(255,255,255,.65);
    border-radius: 8px;
    font-size: 18px;
    line-height: 1;
}

    .store-badge span {
        display: flex;
        flex-direction: column;
        font-size: 13px;
        font-weight: 600;
    }

    .store-badge small {
        margin-bottom: 3px;
        font-size: 7px;
        font-weight: 400;
    }

.store-row-on-dark .store-badge > img {
    
}

.store-row-on-clean .store-badge > img {
    filter: brightness(100) invert(1);
}


.store-badge[aria-disabled="true"] {
    cursor: not-allowed;
}

    .store-badge[aria-disabled="true"] > img {
        opacity: .78;
    }

.store-badge .store-countdown {
    position: absolute;
    z-index: 2;
    top: calc(100% + 5px);
    left: 50%;
    display: block;
    min-width: max-content;
    padding: 5px 8px;
    color: var(--cream);
    background: var(--green-900);
    border: 1px solid rgba(255,247,220,.28);
    border-radius: 999px;
    box-shadow: 0 5px 14px rgba(1,28,19,.13);
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .035em;
    line-height: 1;
    white-space: nowrap;
}

.store-row-on-dark .store-countdown {
    color: var(--green-950);
    background: var(--cream);
    border-color: rgba(1,28,19,.12);
}

.store-badge.is-released .store-countdown {
    color: white;
    background: var(--orange);
}

.sommelier-card {
    min-height: 430px;
    padding: 28px;
    color: var(--ink);
    background: #e7dfa6;
    border: 1px solid var(--gold);
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,.2);
    transform: rotate(.6deg);
}

.assistant-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(1,28,19,.14);
}

.assistant-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--gold);
    background: var(--green-900);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 22px;
}

.assistant-row div {
    display: flex;
    flex-direction: column;
}

.assistant-row strong {
    font-size: 14px;
}

.assistant-row small {
    color: #59645d;
    font-size: 11px;
}

.chat-bubble {
    margin: 0;
    padding: 14px 16px;
    background: white;
    border-radius: 0px 25px 25px 25px;
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.2;
}

.chat-demo-content {
    display: flex;
    flex-direction: column;
}

.chat-messages {
    display: flex;
    height: 160px;
    flex-direction: column;
    gap: 9px;
    margin-top: 16px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.chat-message {
    max-width: 88%;
    flex: 0 0 auto;
    animation: chat-message-in .25s ease both;
}

.chat-message-user {
    align-self: flex-end;
    color: white;
    background: var(--green-900);
    border-radius: 22px 0 22px 22px;
    font-family: var(--font-sans);
    font-size: 13px;
}

.chat-typing {
    display: flex;
    width: max-content;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 0 20px 20px 20px;
}

.chat-typing i {
    width: 6px;
    height: 6px;
    background: var(--green-700);
    border-radius: 50%;
    animation: chat-typing-dot .8s ease-in-out infinite alternate;
}

.chat-typing i:nth-child(2) { animation-delay: .15s; }
.chat-typing i:nth-child(3) { animation-delay: .3s; }

.chat-options {
    display: flex;
    margin-top: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

    .chat-options span {
        padding: 8px 12px;
        border: 1px solid rgba(1,28,19,.25);
        border-radius: 999px;
        font-size: 11px;
        transition: color .2s, background .2s, border-color .2s;
    }

        .chat-options span.is-selected {
            color: white;
            background: var(--green-700);
            border-color: var(--green-700);
        }

.chat-input {
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 5px 7px 5px 16px;
    color: #8a8a78;
    background: rgba(255,255,255,.65);
    border-radius: 999px;
    font-size: 12px;
}

    .chat-input b {
        display: grid;
        width: 34px;
        height: 34px;
        place-items: center;
        color: white;
        background: var(--orange);
        border-radius: 50%;
    }

@keyframes chat-message-in {
    from { opacity: 0; transform: translateY(7px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes chat-typing-dot {
    from { opacity: .3; transform: translateY(1px); }
    to { opacity: 1; transform: translateY(-2px); }
}

.section-light {
    padding: 80px 0 88px;
    background: var(--ivory);
}

.consumer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: stretch;
}

.figma-crop {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: #d8c9aa;
    background-repeat: no-repeat;
    margin: 0;
    align-self: stretch;
}

    .figma-crop > img {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.crop-consumer {
    width: 100%;
    height: 100%;
    min-height: 384px;
    margin: 0;
}

.floating-note {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: row;
    padding: 13px 18px;
    color: var(--ink);
    background: var(--cream);
    border-radius: 14px;
    box-shadow: var(--shadow);
    font-size: 11px;
}

    .floating-note b {
        font-size: 13px;
    }

    .floating-note span {
        color: #62665f;
    }

    .floating-note img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
        margin-right: 10px !important;
        background: #fff;
        padding: 0px;
        box-shadow: 0 4px 12px rgba(0,0,0,.15);
    }

.note-content {
    display: flex;
    flex-direction: column;
}

    .note-content b {
        margin-bottom: 2px;
    }

    .note-content span {
        color: #666;
    }

.note-one {
    top: 20px;
    right: -10px;
}

.note-two {
    bottom: 16px;
    left: 16px;
}

.consumer-copy h2, .section-heading h2 {
    margin-bottom: 24px;
    font-size: clamp(48px, 5vw, 64px);
}

.consumer-copy > p:not(.eyebrow) {
    max-width: 560px;
    font-size: 17px;
}

.consumer-copy blockquote {
    margin: 28px 0;
    padding-left: 20px;
    border-left: 2px solid var(--wine);
    font-family: var(--font-serif);
    font-size: 19px;
    font-style: italic;
}

.pill-row {
    display: flex;
    gap: 10px;
}

    .pill-row span {
        padding: 7px 18px;
        border: 1px solid var(--ink);
        border-radius: 999px;
        font-size: 12px;
    }

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 56px;
}

    .benefit-grid article {
        min-height: 190px;
        padding: 28px;
        background: white;
        border: 1px solid rgba(1,28,19,.08);
        border-radius: var(--radius-sm);
    }

        .benefit-grid article span {
            color: var(--wine);
            font-family: var(--font-serif);
            font-style: italic;
        }

    .benefit-grid h3 {
        margin: 8px 0 10px;
        font-family: var(--font-serif);
        font-size: 27px;
        line-height: 1.08;
    }

    .benefit-grid p {
        margin-bottom: 0;
        color: #525852;
        font-size: 14px;
    }

.commercial-network-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: stretch;
}

.commercial-network-visual {
    position: relative;
    min-width: 0;
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    background: #d8c9aa;
}

    .commercial-network-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.commercial-network-image-badges {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0;
    display: grid;
    width: min(360px, calc(100% - 24px));
    gap: 8px;
    transform: translateY(-50%);
}

    .commercial-network-image-badges article {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
        align-items: center;
        min-width: 0;
        padding: 12px 18px;
        color: var(--ink);
        background: var(--ivory);
        border: 1px solid rgba(1,28,19,.09);
        border-radius: var(--radius-md) 0 0 var(--radius-md);
        box-shadow: 0 8px 18px rgba(1,28,19,.12);
    }

    .commercial-network-image-badges svg {
        width: 46px;
        height: 46px;
        padding: 10px;
        color: white;
        background: var(--wine);
        border-radius: 50%;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .commercial-network-image-badges strong,
    .commercial-network-image-badges span {
        display: block;
    }

    .commercial-network-image-badges strong {
        font-size: 14px;
        line-height: 1.2;
    }

    .commercial-network-image-badges span {
        margin-top: 3px;
        color: #525852;
        font-size: 11px;
        line-height: 1.35;
    }

.commercial-network-copy {
    align-self: center;
}

    .commercial-network-copy h2 {
        margin-bottom: 24px;
        font-size: clamp(48px, 5vw, 64px);
    }

    .commercial-network-copy > p:not(.eyebrow) {
        max-width: 600px;
        font-size: 17px;
    }

    .commercial-network-copy blockquote {
        margin: 28px 0 0;
        padding-left: 20px;
        border-left: 2px solid var(--wine);
        font-family: var(--font-serif);
        font-size: 19px;
        font-style: italic;
    }

.commercial-network-types {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 52px;
}

.commercial-network-type {
    min-width: 0;
    padding: 22px;
    background: rgba(255,255,255,.54);
    border: 1px solid rgba(1,28,19,.1);
    border-radius: var(--radius-sm);
}

    .commercial-network-type svg,
    .commercial-network-step svg,
    .commercial-network-value > svg,
    .commercial-network-note svg {
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .commercial-network-type svg {
        width: 42px;
        height: 42px;
        padding: 9px;
        color: var(--green-900);
        background: rgba(214,207,141,.24);
        border-radius: 50%;
    }

    .commercial-network-type h3 {
        margin: 15px 0 8px;
        font-family: var(--font-serif);
        font-size: 22px;
        line-height: 1.08;
    }

    .commercial-network-type p {
        margin: 0;
        color: #525852;
        font-size: 13px;
        line-height: 1.5;
    }

.commercial-network-how {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
    gap: 28px;
    margin-top: 20px;
    padding: 30px;
    background: rgba(255,255,255,.38);
    border: 1px solid rgba(1,28,19,.1);
    border-radius: var(--radius-md);
}

.commercial-network-flow {
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr) auto minmax(110px, 1fr) auto minmax(110px, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 24px;
}

.commercial-network-step {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-width: 0;
    text-align: center;
}

    .commercial-network-step span {
        display: grid;
        width: 58px;
        height: 58px;
        place-items: center;
        color: var(--green-900);
        background: rgba(214,207,141,.24);
        border: 1px solid rgba(1,28,19,.08);
        border-radius: 50%;
    }

    .commercial-network-step svg {
        width: 29px;
        height: 29px;
    }

    .commercial-network-step h4 {
        margin: 0 0 6px;
        font-size: 13px;
        line-height: 1.3;
    }

    .commercial-network-step p {
        margin: 0;
        color: #525852;
        font-size: 12px;
        line-height: 1.45;
    }

    .commercial-network-flow > i {
        align-self: center;
        color: var(--green-700);
        font-size: 22px;
        font-style: normal;
    }

.commercial-network-value {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding-left: 28px;
    border-left: 1px solid rgba(1,28,19,.12);
}

    .commercial-network-value > svg {
        width: 62px;
        height: 62px;
        padding: 14px;
        color: var(--gold);
        background: var(--green-900);
        border-radius: 50%;
    }

    .commercial-network-value h3 {
        margin: 0 0 10px;
        font-family: var(--font-serif);
        font-size: 25px;
        line-height: 1.08;
    }

    .commercial-network-value p {
        margin: 0 0 20px;
        color: #525852;
        font-size: 14px;
    }

.commercial-network-cta {
    color: white;
    background: var(--wine);
    text-align: center !important;
}

    .producer-story .commercial-network-cta,
    .ai-confidence-copy .commercial-network-cta {
        margin-top: 24px;
    }

    .commercial-network-cta:focus-visible {
        outline: 3px solid var(--wine);
        outline-offset: 3px;
        text-align: center !important;
    }

.commercial-network-note {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin: 20px 0 0;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

    .commercial-network-note svg {
        flex: 0 0 22px;
        width: 22px;
        height: 22px;
        color: var(--green-700);
    }

.ai-confidence-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: stretch;
}

.ai-confidence-visual {
    position: relative;
    min-width: 0;
    min-height: 560px;
    margin: 0;
}

.ai-confidence-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

    .ai-confidence-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.ai-confidence-badges {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 20px;
    display: grid;
    width: min(260px, calc(100% - 40px));
    gap: 10px;
    transform: translateY(-50%);
}

    .ai-confidence-badges article {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        padding: 14px 16px;
        color: var(--ink);
        background: rgba(255,247,220,.96);
        border: 1px solid rgba(1,28,19,.08);
        border-radius: var(--radius-md);
        box-shadow: 0 10px 24px rgba(1,28,19,.12);
    }

    .ai-confidence-badges svg,
    .ai-confidence-principles svg,
    .ai-confidence-flow-steps svg,
    .ai-confidence-eu > svg,
    .ai-confidence-risk-note svg {
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .ai-confidence-badges svg {
        width: 42px;
        height: 42px;
        padding: 9px;
        color: var(--gold);
        background: var(--green-900);
        border-radius: 50%;
    }

    .ai-confidence-badges strong,
    .ai-confidence-badges span {
        display: block;
    }

    .ai-confidence-badges strong {
        font-size: 13px;
        line-height: 1.25;
    }

    .ai-confidence-badges span {
        margin-top: 3px;
        color: #525852;
        font-size: 11px;
        line-height: 1.35;
    }

.ai-confidence-copy {
    align-self: center;
}

    .ai-confidence-copy h2 {
        margin-bottom: 24px;
        font-size: clamp(48px, 5vw, 64px);
    }

    .ai-confidence-copy > p:not(.eyebrow) {
        max-width: 590px;
        font-size: 17px;
    }

    .ai-confidence-copy blockquote {
        margin: 28px 0 0;
        padding: 18px 20px;
        border: 1px solid rgba(133,35,53,.16);
        border-left: 2px solid var(--wine);
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-family: var(--font-serif);
        font-size: 19px;
        font-style: italic;
    }

.ai-confidence-principles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 56px;
}

    .ai-confidence-principles article {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 16px;
        min-width: 0;
        padding: 24px;
        background: rgba(255,255,255,.62);
        border: 1px solid rgba(1,28,19,.1);
        border-radius: var(--radius-md);
    }

    .ai-confidence-principles svg {
        width: 52px;
        height: 52px;
        padding: 13px;
        color: var(--green-900);
        background: rgba(214,207,141,.24);
        border-radius: 50%;
    }

    .ai-confidence-principles h3,
    .ai-confidence-eu h3 {
        margin: 0 0 8px;
        font-family: var(--font-serif);
        font-size: 23px;
        line-height: 1.08;
    }

    .ai-confidence-principles p,
    .ai-confidence-flow > p:last-child,
    .ai-confidence-eu p {
        margin-bottom: 0;
        color: #525852;
        font-size: 14px;
    }

.ai-confidence-details {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, .8fr);
    gap: 20px;
    margin-top: 20px;
    padding: 28px;
    background: rgba(255,255,255,.38);
    border: 1px solid rgba(1,28,19,.1);
    border-radius: var(--radius-md);
}

.ai-confidence-flow-steps {
    display: grid;
    grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr) auto minmax(90px, 1fr) auto minmax(90px, 1fr);
    gap: 12px;
    align-items: center;
    margin: 22px 0;
}

    .ai-confidence-flow-steps > div {
        display: grid;
        justify-items: center;
        gap: 9px;
        min-width: 0;
        text-align: center;
    }

    .ai-confidence-flow-steps span {
        display: grid;
        width: 54px;
        height: 54px;
        place-items: center;
        color: var(--green-900);
        background: rgba(214,207,141,.24);
        border: 1px solid rgba(1,28,19,.08);
        border-radius: 50%;
    }

    .ai-confidence-flow-steps svg {
        width: 28px;
        height: 28px;
    }

    .ai-confidence-flow-steps strong {
        font-size: 12px;
        line-height: 1.3;
    }

    .ai-confidence-flow-steps > i {
        color: var(--green-700);
        font-size: 22px;
        font-style: normal;
    }

.ai-confidence-eu {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px;
    background: var(--cream);
    border: 1px solid rgba(1,28,19,.1);
    border-radius: var(--radius-md);
}

    .ai-confidence-eu > svg {
        width: 64px;
        height: 64px;
        padding: 15px;
        color: var(--gold);
        background: var(--green-900);
        border-radius: 50%;
    }

.ai-confidence-risk-note {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin: 20px 0 0;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

    .ai-confidence-risk-note svg {
        flex: 0 0 22px;
        width: 22px;
        height: 22px;
        color: var(--green-700);
    }

.journey {
    padding: 84px 0 92px;
    color: white;
    background: #011C13;
}

.center-heading {
    max-width: 760px;
    text-align: center;
}

    .center-heading h2 {
        margin-bottom: 18px;
        color: var(--cream);
        font-size: clamp(48px, 5vw, 64px);
    }

        .center-heading h2 em {
            color: var(--gold);
        }

    .center-heading > p:last-child {
        color: rgba(255,255,255,.68);
    }

.journey-flow {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
    align-items: start;
    gap: 10px;
    margin-top: 62px;
    text-align: center;
}

    .journey-flow > i {
        margin-top: 120px;
        color: rgba(214,207,141,.55);
        font-size: 28px;
        font-style: normal;
    }

    .journey-flow article {
        color: rgba(255,255,255,.68);
    }

        .journey-flow article > b {
            display: block;
            margin-top: 18px;
            color: var(--gold);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .15em;
            font-style: normal;
            font-family: var(--font-sans);
        }

.journey-center > b {
    color: #852335 !important;
    font-size: 16px !important;
}

.journey-flow h3 {
    margin: 5px 0 8px;
    color: white;
    font-family: var(--font-serif);
    font-size: 21px;
}

.journey-flow p {
    font-size: 16px;
    line-height: 1.5;
}

.journey-icon {
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    margin: auto;
    color: var(--gold);
    border: 1px solid rgba(246,241,225,.22);
    border-radius: 50%;
    font-size: 30px;
    background: var(--green-900)
}

.journey-logo {
    position: relative;
    display: grid;
    width: 124px;
    height: 124px;
    place-items: center;
    margin: 0 auto;
    background: var(--gold);
    border-radius: 50%;
}

    .journey-logo::before {
        content: "";
        position: absolute;
        top: -10px;
        right: -10px;
        bottom: -10px;
        left: -10px;
        border: 2px dotted rgba(214, 207, 141, .55); /* dourado translúcido */
        border-radius: 50%;
        pointer-events: none;
    }

.journey-logo-image {
    display: block;
    width: 124px;
    height: 124px;
    object-fit: contain;
    border-radius: 50%;
}

.section-white {
    padding: 80px 0;
    background: white;
}

.split-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

    .split-heading > div {
        max-width: 760px;
    }

        .split-heading > div > p:last-child {
            max-width: 700px;
        }

.producer-story {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    min-height: 384px;
    margin-top: 56px;
    overflow: hidden;
    color: white;
    background: var(--green-950);
    border-radius: var(--radius-lg);
}

.crop-producer {
    min-height: 384px;
    background-size: 1440px 5614px;
    background-position: -111px -2976px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

    .crop-producer span {
        position: absolute;
        z-index: 2;
        top: 340px;
        left: 24px;
        padding: 8px 14px;
        color: var(--green-900);
        background: var(--cream);
        border-radius: 999px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

.producer-story > div {
    padding: 56px 48px 36px;
}

.producer-story h3 {
    margin-bottom: 24px;
    font-family: var(--font-serif);
    font-size: 43px;
    font-weight: 400;
    line-height: 1.05;
}

    .producer-story h3 em {
        color: var(--orange);
    }

.producer-story > div > p {
    color: rgba(255,255,255,.8);
}

.producer-story dl {
    display: flex;
    gap: 34px;
    margin: 26px 0 0;
}

    .producer-story dl div {
        display: flex;
        flex-direction: column;
    }

.producer-story dt {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 38px;
    line-height: 1;
}

.producer-story dd {
    text-align: center;
    margin: 10px 0 0;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.producer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

    .producer-features article {
        min-height: 218px;
        padding: 32px;
        border-right: 1px solid var(--gold);
        border-bottom: 1px solid var(--gold);
    }

        .producer-features article:nth-child(3n) {
            border-right: 0;
        }

        .producer-features article:nth-child(n+4) {
            border-bottom: 0;
        }

        .producer-features article > span {
            display: grid;
            width: 44px;
            height: 44px;
            place-items: center;
            color: var(--gold);
            background: var(--green-700);
            border-radius: 12px;
        }

    .producer-features h3 {
        margin: 14px 0 10px;
        font-family: var(--font-serif);
        font-size: 24px;
        text-align: center;
    }

    .producer-features p {
        margin: 0;
        font-size: 14px;
        text-align: center;
    }

.producer-icon {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    margin: auto;
    color: var(--gold);
    border: 1px solid rgba(246,241,225,.22);
    border-radius: 50%;
    font-size: 30px;
    background: var(--green-900)
}

.producer-work-icon {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    margin: auto;
    color: var(--gold);
    border: 1px solid rgba(246,241,225,.22);
    border-radius: 80%;
    font-size: 30px;
    background: var(--cream)
}

.faq-section {
    padding: 80px 0 calc(80px + var(--cta-overlap));
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: 384px 1fr;
    gap: 32px;
}

    .faq-grid h2 {
        margin-bottom: 20px;
        font-size: 60px;
    }

.faq-topics {
    display: grid;
    gap: 8px;
    margin-top: 38px;
}

    .faq-topics button {
        padding: 11px 20px;
        text-align: left;
        background: transparent;
        border: 0;
        border-radius: 8px;
        cursor: pointer;
    }

    .faq-topics .active {
        color: var(--cream);
        background: var(--green-900);
    }

.accordion h3 {
    margin: 2px 0 25px;
    font-family: var(--font-serif);
    font-size: 26px;
}

.accordion article {
    margin-bottom: 14px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(1,32,24,.08);
    border-radius: 14px;
}

    .accordion article button {
        display: flex;
        width: 100%;
        height: 60px;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        text-align: left;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

        .accordion article button span {
            display: grid;
            width: 32px;
            height: 32px;
            place-items: center;
            background: var(--cream);
            border-radius: 50%;
            font-size: 18px;
            transition: transform .2s;
        }

    .accordion article > div {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows .25s;
    }

        .accordion article > div p {
            min-height: 0;
            margin: 0;
            overflow: hidden;
            padding-inline: 20px;
            color: #505751;
            font-size: 14px;
        }

    .accordion article.open > div {
        grid-template-rows: 1fr;
    }

        .accordion article.open > div p {
            padding-bottom: 20px;
        }

    .accordion article.open button span {
        transform: rotate(45deg);
    }

.final-cta {
    position: relative;
    z-index: 1;
    min-height: 560px;
    color: white;
    background: var(--green-900);
    overflow: visible;
}

.final-grid {
    display: grid;
    min-height: 560px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

    .final-grid > div:first-child {
        max-width: 650px;
        padding: 70px 0;
    }

    .final-grid h2 {
        margin-bottom: 22px;
        color: var(--cream);
        font-size: 60px;
    }

        .final-grid h2 em {
            color: var(--gold);
        }

    .final-grid > div:first-child > p:not(.eyebrow) {
        max-width: 520px;
        color: rgba(255,255,255,.75);
    }

    .final-grid .button {
        margin-top: 16px;
    }

.cta-art {
    align-self: end;
    height: 560px;
    overflow: visible;
    background-size: 1440px 5614px;
    background-position: -673px -4560px;
    background-color: transparent;
}

    .cta-art > img {
        left: 50%;
        right: auto;
        width: auto;
        height: calc(100% + var(--cta-overlap));
        max-width: none;
        transform: translateX(-50%);
        object-fit: contain;
        object-position: bottom center;
    }

.legal-page {
    position: relative;
    padding-top: 96px;
    color: var(--grey-800);
    background: white;
}

.legal-page::before {
    position: absolute;
    inset: 0 0 auto;
    height: 96px;
    background: var(--green-900);
    content: "";
}

.legal-back {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
}

.legal-introduction .eyebrow {
    margin-bottom: 12px;
    color: var(--wine);
}

.legal-introduction h1 {
    margin-bottom: 12px;
    font-size: clamp(42px, 5vw, 64px);
}

.legal-introduction__tagline {
    max-width: 690px;
    margin-bottom: 18px;
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.25;
}

.legal-introduction__updated {
    margin: 0;
    color: var(--grey-500);
    font-size: 14px;
}

.legal-content {
    padding-block: 72px 96px;
}

.legal-introduction {
    margin-bottom: 72px;
}

.legal-introduction__summary {
    margin: 42px 0 0;
    color: var(--green-950);
    font-family: var(--font-serif);
    font-size: clamp(25px, 2.6vw, 36px);
    line-height: 1.3;
}

.legal-sections section {
    padding: 34px 0;
    border-top: 1px solid rgba(2,55,37,.14);
}

.legal-sections h2 {
    margin-bottom: 18px;
    color: var(--green-950);
    font-size: clamp(26px, 2.8vw, 34px);
}

.legal-sections p,
.legal-sections li {
    line-height: 1.75;
}

.legal-sections ul {
    display: grid;
    gap: 8px;
    padding-left: 24px;
    margin: 18px 0 0;
}

.legal-sections a {
    color: var(--wine);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer {
    padding: 64px 0 22px;
    color: #d2d2d2;
    background-color: #011C13;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 64px;
}

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

    .footer-grid h2 {
        margin: 0 0 8px;
        color: var(--grey-500);
        font-family: var(--font-sans);
        font-size: 11px;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .footer-grid a {
        font-size: 14px;
    }

.footer-contact-link {
    align-self: flex-start;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: 14px;
    line-height: inherit;
    cursor: pointer;
}

.footer-brand em {
    display: block;
    margin: 5px 0;
    color: var(--gold);
    font-family: var(--font-serif);
}

.footer-brand p {
    font-size: 12px;
}

.responsibility {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 12px;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

    .responsibility p {
        margin: 0;
        color: var(--grey-500);
    }

    .responsibility strong {
        color: #c6c6c6;
    }

.age {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--green-950);
    background: var(--gold);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
}

.copyright {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    color: var(--grey-500);
    font-size: 14px;
}

@media (max-width: 1000px) {
    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 20px;
    }

    .main-nav {
        gap: 22px;
    }

    .hero-grid {
        grid-template-columns: 1fr 420px;
        gap: 44px;
    }

    .journey-flow {
        grid-template-columns: repeat(5, 1fr);
    }

        .journey-flow > i {
            display: none;
        }

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

        .producer-features article, .producer-features article:nth-child(3n), .producer-features article:nth-child(n+4) {
            border-right: 1px solid var(--gold);
            border-bottom: 1px solid var(--gold);
        }

            .producer-features article:nth-child(2n) {
                border-right: 0;
            }

    .producer-features article:nth-last-child(-n+2) {
                border-bottom: 0;
            }

    .commercial-network-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .commercial-network-visual {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .commercial-network-types {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .commercial-network-how {
        grid-template-columns: 1fr;
    }

    .commercial-network-value {
        padding: 24px 0 0;
        border-top: 1px solid rgba(1,28,19,.12);
        border-left: 0;
    }

    .ai-confidence-grid {
        gap: 36px;
    }

    .ai-confidence-visual {
        min-height: 500px;
    }

    .ai-confidence-principles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ai-confidence-details {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 760px) {
    :root {
        --cta-overlap: 0px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }

        .back-to-top img {
            width: 44px;
            height: 44px;
            object-fit: contain;
            border-radius: 50%;
        }

    .shell {
        width: min(calc(100% - 40px), 560px);
    }

    .site-header {
        position: absolute;
        height: 72px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .brand {
        font-size: 17px;
    }

    .site-header .brand img {
        width: 220px;
        height: auto;
    }

    .brand-mark {
        width: 28px;
        height: 28px;
        font-size: 17px;
    }

    .header-menu {
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        display: none;
        padding: 16px;
        color: var(--green-950);
        background: var(--cream);
        border-radius: 12px;
        box-shadow: var(--shadow);
    }

        .header-menu.is-open {
            display: block;
        }

    .site-header .language {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 8px;
        padding: 12px 0 0;
        background: transparent;
        border-top: 1px solid rgba(2,55,37,.14);
        border-radius: 0;
    }

        .site-header .language a {
            width: 36px;
            height: 36px;
            color: var(--green-950);
        }

        .site-header .language .active {
            color: white;
            background: var(--green-900);
        }

    .menu-toggle {
        display: grid;
        width: 42px;
        height: 42px;
        place-content: center;
        gap: 7px;
        padding: 0;
        background: rgba(255,255,255,.1);
        border: 0;
        border-radius: 50%;
    }

        .menu-toggle span:not(.sr-only) {
            display: block;
            width: 19px;
            height: 1px;
            background: white;
        }

    .main-nav {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        color: inherit;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

        .main-nav a {
            padding: 12px;
        }

    .hero {
        min-height: 840px;
        padding: 120px 0 46px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero h1 {
        font-size: 47px;
    }

    .hero-lead {
        font-size: 15px;
    }

    .store-row {
        gap: 9px;
        margin-bottom: 26px;
    }

    .store-badge {
        min-width: 0;
        flex: 1;
        height: 40px;
        padding-inline: 9px;
        font-size: 14px;
    }

        .store-badge .store-countdown {
            padding: 4px 6px;
            font-size: 9px;
        }

    .sommelier-card {
        min-height: 340px;
        padding: 20px;
    }

    .chat-bubble {
        font-size: 15px;
    }

    .chat-messages {
        height: 140px;
    }

    .chat-input {
        height: 50px;
        margin-top: 10px;
    }

    .section-light, .section-white, .faq-section {
        padding: 56px 0;
    }

    .consumer-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .crop-consumer {
        height: 330px;
        background-size: 1024px 3992px;
        background-position: -80px -570px;
    }

    .floating-note {
        transform: scale(.84);
    }

    .note-one {
        right: -28px;
    }

    .consumer-copy h2, .section-heading h2 {
        font-size: 42px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .benefit-grid article {
            min-height: 0;
        }

    .commercial-network-grid {
        gap: 36px;
    }

    .commercial-network-image-badges {
        width: 59%;
        gap: 5px;
    }

        .commercial-network-image-badges article {
            grid-template-columns: 31px minmax(0, 1fr);
            gap: 8px;
            padding: 7px 8px;
            border-radius: var(--radius-sm) 0 0 var(--radius-sm);
            box-shadow: 0 4px 10px rgba(1,28,19,.1);
        }

        .commercial-network-image-badges svg {
            width: 31px;
            height: 31px;
            padding: 7px;
        }

        .commercial-network-image-badges strong {
            font-size: 9px;
            line-height: 1.15;
        }

        .commercial-network-image-badges span {
            margin-top: 2px;
            font-size: 7px;
            line-height: 1.25;
        }

    .commercial-network-copy h2 {
        font-size: 42px;
    }

    .commercial-network-types {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .commercial-network-type {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 14px;
        padding: 18px;
    }

        .commercial-network-type h3 {
            align-self: end;
            margin: 0 0 4px;
        }

        .commercial-network-type p {
            grid-column: 2;
        }

    .commercial-network-how {
        padding: 22px;
    }

    .commercial-network-flow {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .commercial-network-step {
        grid-template-columns: 54px minmax(0, 1fr);
        justify-items: start;
        align-items: center;
        text-align: left;
    }

        .commercial-network-step span {
            width: 54px;
            height: 54px;
        }

        .commercial-network-flow > i {
            justify-self: start;
            margin-left: 19px;
            transform: rotate(90deg);
        }

    .commercial-network-value {
        grid-template-columns: 1fr;
        padding-top: 22px;
    }

        .commercial-network-value > svg {
            width: 52px;
            height: 52px;
            padding: 12px;
        }

    .commercial-network-cta {
        width: 100%;
        text-align: center!important;
    }

    .commercial-network-note {
        align-items: flex-start;
        text-align: left;
    }

    .ai-confidence-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .ai-confidence-visual {
        min-height: 0;
    }

    .ai-confidence-image {
        position: relative;
        height: 330px;
    }

    .ai-confidence-badges {
        position: static;
        width: 100%;
        margin-top: 16px;
        transform: none;
    }

        .ai-confidence-badges article {
            grid-template-columns: 38px minmax(0, 1fr);
            padding: 12px 14px;
            box-shadow: none;
        }

        .ai-confidence-badges svg {
            width: 38px;
            height: 38px;
        }

    .ai-confidence-copy h2 {
        font-size: 42px;
    }

    .ai-confidence-principles {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

        .ai-confidence-principles article {
            padding: 22px;
        }

    .ai-confidence-details {
        padding: 22px;
    }

    .ai-confidence-flow-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }

        .ai-confidence-flow-steps > i {
            justify-self: center;
            transform: rotate(90deg);
        }

    .ai-confidence-eu {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 18px;
    }

        .ai-confidence-eu > svg {
            width: 52px;
            height: 52px;
            padding: 12px;
        }

    .ai-confidence-risk-note {
        align-items: flex-start;
        text-align: left;
    }

    .journey {
        padding: 58px 0;
    }

    .center-heading h2 {
        font-size: 39px;
    }

    .journey-flow {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 44px;
    }

    .journey-logo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .journey-logo-image {
        width: 100px;
        height: 100px;
    }

    .journey-flow article {
        max-width: 250px;
        margin: auto;
    }

    .split-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .producer-story {
        grid-template-columns: 1fr;
    }

    .crop-producer {
        min-height: 280px;
        background-size: 1040px 4055px;
        background-position: -80px -2150px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

        .crop-producer span {
            top: auto;
            bottom: 20px;
            left: 20px;
        }

    .producer-story > div {
        padding: 32px 24px;
    }

    .producer-story h3 {
        font-size: 36px;
    }

    .producer-story dl {
        gap: 17px;
    }

    .producer-story dt {
        font-size: 29px;
    }

    .producer-features {
        grid-template-columns: 1fr;
    }

        .producer-features article, .producer-features article:nth-child(2n), .producer-features article:nth-last-child(-n+2) {
            min-height: 0;
            border-right: 0;
            border-bottom: 1px solid var(--gold);
        }

            .producer-features article:last-child {
                border-bottom: 0;
            }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

        .faq-grid h2 {
            font-size: 44px;
        }

    .accordion h3 {
        font-size: 23px;
    }

    .accordion article button {
        height: auto;
        min-height: 60px;
        gap: 12px;
    }

    .faq-section {
        padding-bottom: 56px;
    }

    .final-cta {
        overflow: hidden;
    }

    .final-grid {
        min-height: 720px;
        grid-template-columns: 1fr;
    }

        .final-grid > div:first-child {
            padding: 56px 0 0;
        }

        .final-grid h2 {
            font-size: 43px;
        }

    .cta-art {
        height: 380px;
        overflow: hidden;
        background-size: 980px 3821px;
        background-position: -458px -3104px;
    }

        .cta-art > img {
            left: 0;
            right: 0;
            width: 100%;
            height: 100%;
            max-width: 100%;
            transform: none;
            object-fit: contain;
        }

    .site-footer {
        padding-top: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .responsibility {
        align-items: flex-start;
    }

    .copyright {
        gap: 14px;
        flex-direction: column;
    }

    .legal-page {
        padding-top: 72px;
    }

    .legal-page::before {
        height: 72px;
    }

    .legal-back {
        margin-bottom: 26px;
    }

    .legal-content {
        padding-block: 48px 64px;
    }

    .legal-introduction {
        margin-bottom: 46px;
    }

    .legal-sections section {
        padding: 28px 0;
    }
}

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