/**
 * Cumbé — premium visual layer
 * Loaded after the page-level styles so the existing information architecture
 * and brand palette stay intact while the presentation is elevated.
 */

:root {
    --premium-navy: #003B5C;
    --premium-navy-deep: #003B5C;
    --premium-navy-ink: #003B5C;
    --premium-coral: #FF8D6D;
    --premium-coral-deep: #003B5C;
    --premium-blush: #FFE5DC;
    --premium-cream: #FFFFFF;
    --premium-sky: #8BD5EE;
    --premium-medium-blue: #5693C1;
    --premium-white: #FFFFFF;
    --premium-line: rgba(255, 255, 255, 0.22);
    --premium-shadow: 0 32px 80px rgba(0, 59, 92, 0.2);
    --premium-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--premium-cream);
    color: var(--premium-navy);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::selection,
body *::selection {
    background: var(--premium-coral);
    color: var(--premium-navy);
}

body > header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 500;
    padding: 0;
    background: linear-gradient(180deg, rgba(0, 59, 92, 0.5), transparent);
    transition: background 400ms ease, box-shadow 400ms ease, backdrop-filter 400ms ease;
}

body > header .container {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 104px;
    padding: 20px clamp(20px, 4vw, 64px);
    align-items: center;
}

body > header .logo {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-width: 118px;
}

body > header .logo img {
    width: 122px;
    height: 66px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 59, 92, 0.15));
}

.header-right {
    flex-direction: row-reverse;
    align-items: center;
    gap: 14px;
}

.hamburger {
    position: relative;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(0, 59, 92, 0.18);
    box-shadow: 0 10px 30px rgba(0, 59, 92, 0.12);
    backdrop-filter: blur(12px);
    transition: transform 300ms var(--premium-ease), background 300ms ease, border-color 300ms ease;
}

.hamburger:hover {
    transform: rotate(6deg) scale(1.04);
    background: var(--premium-coral);
    border-color: var(--premium-coral);
}

.hamburger:hover span,
body:not(.page-home) > header .hamburger:hover span,
.page-home > header.is-scrolled .hamburger:hover span {
    background: var(--premium-navy);
}

.hamburger span {
    width: 19px;
    height: 1px;
    background: var(--premium-white);
    transition: width 250ms ease;
}

.hamburger span:nth-child(2) {
    width: 13px;
}

.hamburger:hover span:nth-child(2) {
    width: 19px;
}

.social {
    gap: 4px;
    padding: 0;
    background: transparent;
}

.social a {
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--premium-sky);
    border-radius: 50%;
    color: var(--premium-navy);
    background: var(--premium-sky);
    transition: color 250ms ease, background 250ms ease, transform 250ms var(--premium-ease);
}

.social a:hover {
    color: var(--premium-navy);
    border-color: var(--premium-coral);
    background: var(--premium-coral);
    transform: translateY(-2px);
}

.main-menu {
    right: 0;
    visibility: hidden;
    opacity: 0;
    background:
        radial-gradient(circle at 78% 22%, rgba(139, 213, 238, 0.18), transparent 26%),
        radial-gradient(circle at 18% 82%, rgba(255, 141, 109, 0.2), transparent 30%),
        var(--premium-navy-ink);
    transform: translateX(100%);
    transition: transform 700ms var(--premium-ease), opacity 350ms ease, visibility 0s linear 700ms;
}

.main-menu::before {
    content: "CUMBÉ";
    position: absolute;
    right: -0.04em;
    bottom: -0.18em;
    color: rgba(255, 255, 255, 0.035);
    font: 400 clamp(7rem, 22vw, 22rem) / 1 'Ogg', Georgia, serif;
    letter-spacing: -0.06em;
    pointer-events: none;
}

.main-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
}

.main-menu ul {
    position: relative;
    z-index: 1;
    counter-reset: menu;
}

.main-menu li {
    counter-increment: menu;
    margin: 8px 0;
    overflow: hidden;
}

.main-menu li::before {
    content: "0" counter(menu);
    display: inline-block;
    width: 32px;
    color: var(--premium-coral);
    font: 600 10px / 1 'Inconsolata', monospace;
    letter-spacing: 0.12em;
    vertical-align: middle;
}

.main-menu a {
    display: inline-block;
    color: var(--premium-white);
    font: 400 clamp(2rem, 5vw, 4.75rem) / 1.1 'Ogg', Georgia, serif;
    letter-spacing: -0.025em;
    text-transform: none;
    transition: color 250ms ease, transform 350ms var(--premium-ease);
}

.main-menu a:hover {
    color: var(--premium-coral);
    transform: translateX(10px);
}

.main-menu a[aria-current="page"] {
    color: var(--premium-coral);
}

.close-menu {
    top: 34px;
    right: clamp(24px, 4vw, 64px);
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transition: transform 350ms var(--premium-ease), background 250ms ease;
}

.close-menu:hover {
    background: var(--premium-coral);
    transform: rotate(90deg);
}

.close-menu:hover::before,
.close-menu:hover::after {
    background: var(--premium-navy);
}

.close-menu::before,
.close-menu::after {
    left: 15px;
    top: 26px;
    width: 24px;
    height: 1px;
}

/* Home — first viewport */
.hero.hero--home {
    min-height: 100svh;
    height: auto;
    padding: 104px clamp(20px, 4vw, 64px) 28px;
    isolation: isolate;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 46%, rgba(139, 213, 238, 0.2), transparent 27%),
        radial-gradient(circle at 15% 92%, rgba(255, 141, 109, 0.18), transparent 30%),
        linear-gradient(118deg, var(--premium-navy), var(--premium-navy) 68%, var(--premium-medium-blue));
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.09;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 4px),
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.16) 0 0.6px, transparent 0.8px);
    background-size: auto, 5px 5px;
    mix-blend-mode: soft-light;
}

.hero-orbit {
    position: absolute;
    top: 50%;
    right: clamp(-180px, -8vw, -40px);
    z-index: -1;
    width: min(66vw, 850px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform: translateY(-48%);
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: inherit;
}

.hero-orbit::after {
    inset: 31%;
    border-color: rgba(255, 141, 109, 0.3);
}

.hero-shell {
    width: min(100%, 1440px);
    min-height: calc(100svh - 132px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(24px, 5vw, 90px);
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 660px;
    padding: 48px 0 72px;
    color: var(--premium-white);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 24px;
    color: var(--premium-sky);
    font: 600 0.72rem / 1.4 'Inconsolata', monospace;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.hero-copy h1 {
    max-width: 720px;
    margin: 0;
    color: var(--premium-white);
    font: 400 clamp(3.55rem, 7vw, 7.7rem) / 0.89 'Ogg', Georgia, serif;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.hero-copy h1 em {
    display: block;
    color: var(--premium-coral);
    font-weight: 400;
}

.hero-lede {
    max-width: 540px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    font-weight: 300;
    line-height: 1.75;
}

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

.hero-cta {
    display: inline-flex;
    min-height: 54px;
    padding: 0 26px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--premium-white);
    font: 700 0.72rem / 1 'Source Sans Pro', sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 300ms ease, background 300ms ease, border-color 300ms ease, transform 300ms var(--premium-ease);
}

.hero-cta--primary {
    color: var(--premium-navy);
    border-color: var(--premium-coral);
    background: var(--premium-coral);
}

.hero-cta:hover {
    color: var(--premium-navy);
    border-color: var(--premium-white);
    background: var(--premium-white);
    transform: translateY(-3px);
}

.hero-notes {
    display: flex;
    gap: clamp(18px, 3vw, 38px);
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--premium-line);
}

.hero-note {
    display: grid;
    gap: 4px;
}

.hero-note strong {
    color: var(--premium-white);
    font: 400 1.08rem / 1 'Ogg', Georgia, serif;
}

.hero-note span {
    color: rgba(255, 255, 255, 0.68);
    font: 600 0.62rem / 1.4 'Inconsolata', monospace;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    align-self: stretch;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(44px, 6vh, 78px) 0 clamp(58px, 8vh, 104px);
}

.hero-visual::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: clamp(42px, 6vh, 76px);
    z-index: 1;
    width: min(30vw, 410px);
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 59, 92, 0.38);
    filter: blur(16px);
    transform: translateX(-50%);
}

.hero-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(35vw, 520px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--premium-blush), var(--premium-coral) 64%);
    box-shadow: 0 0 100px rgba(255, 141, 109, 0.2);
    transform: translate(-50%, -49%);
}

.hero-bottle {
    position: relative;
    z-index: 2;
    width: auto;
    height: clamp(560px, 72svh, 790px);
    max-width: min(37vw, 540px);
    max-height: calc(100svh - 190px);
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 32px 26px rgba(0, 59, 92, 0.34));
    transform: translateY(0);
    animation: bottle-arrive 1100ms 120ms var(--premium-ease) both;
}

.hero-seal {
    position: absolute;
    right: 6%;
    top: 25%;
    z-index: 3;
    width: 116px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--premium-sky);
    border-radius: 50%;
    color: var(--premium-white);
    background: var(--premium-navy);
    text-align: center;
    transform: rotate(7deg);
}

.hero-seal::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: inherit;
}

.hero-seal span {
    font: 600 0.55rem / 1 'Inconsolata', monospace;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-seal strong {
    font: 400 1.12rem / 1 'Ogg', Georgia, serif;
}

.hero-scroll {
    position: absolute;
    left: clamp(20px, 4vw, 64px);
    bottom: 28px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.62);
    font: 600 0.58rem / 1 'Inconsolata', monospace;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-scroll::after {
    content: "";
    width: 54px;
    height: 1px;
    background: var(--premium-coral);
    transform-origin: left;
    animation: scroll-pulse 1800ms ease-in-out infinite;
}

@keyframes bottle-arrive {
    from { opacity: 0; transform: translateY(48px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scroll-pulse {
    0%, 100% { transform: scaleX(0.42); opacity: 0.5; }
    50% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 980px) {
    .hero.hero--home {
        padding-inline: 24px;
    }

    .hero-shell {
        grid-template-columns: 1fr 0.82fr;
        gap: 0;
    }

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

    .hero-bottle {
        height: clamp(500px, 66svh, 680px);
        max-width: min(42vw, 470px);
        max-height: calc(100svh - 180px);
    }

    .hero-seal {
        right: -8px;
        width: 92px;
    }
}

@media (max-width: 720px) {
    body > header .container {
        min-height: 82px;
        padding: 10px 16px;
    }

    body > header .logo img {
        width: 96px;
        height: 56px;
    }

    .social {
        display: none;
    }

    .hamburger {
        width: 48px;
        height: 48px;
    }

    .hero.hero--home {
        min-height: 100svh;
        padding: 92px 20px 26px;
        align-items: stretch;
    }

    .hero-shell {
        min-height: calc(100svh - 118px);
        grid-template-columns: 1fr;
        grid-template-rows: auto 43vh;
        align-items: start;
    }

    .hero-copy {
        padding: 38px 0 0;
    }

    .eyebrow {
        margin-bottom: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(3.25rem, 15vw, 5.15rem);
    }

    .hero-lede {
        margin-top: 20px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-cta {
        min-height: 48px;
        padding-inline: 18px;
        font-size: 0.65rem;
    }

    .hero-notes {
        display: none;
    }

    .hero-visual {
        min-height: 0;
        margin-top: 8px;
        padding: 18px 0 28px;
    }

    .hero-aura {
        top: 52%;
        width: min(68vw, 360px);
    }

    .hero-bottle {
        width: auto;
        height: min(39svh, 390px);
        max-width: 72vw;
        max-height: 100%;
        transform: translateY(0);
    }

    .hero-visual::after {
        bottom: 18px;
        width: min(56vw, 280px);
        height: 18px;
    }

    .hero-seal {
        top: 8%;
        right: 2%;
        width: 72px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-orbit {
        top: 75%;
        right: -40vw;
        width: 108vw;
    }

    .main-menu {
        justify-content: flex-start;
        padding-inline: 28px;
    }

    .main-menu a {
        font-size: clamp(2.15rem, 11vw, 3.4rem);
    }
}

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

/* --------------------------------------------------------------------------
   Shared editorial system
   -------------------------------------------------------------------------- */

body.menu-open,
body.age-gate-active {
    overflow: hidden;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 20000;
    padding: 12px 18px;
    color: var(--premium-white);
    background: var(--premium-navy-ink);
    font: 700 0.75rem/1 'Source Sans Pro', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

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

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

:where(a, button, input, textarea, select, [role="button"]):focus-visible {
    outline: 3px solid var(--premium-navy);
    outline-offset: 4px;
}

:where(.main-menu, .hero, .newsletter, .process-section, .recipe-section, .info-section, .related-section, .contact-info, .thank-you)
    :where(a, button, input, textarea, select, [role="button"]):focus-visible {
    outline-color: var(--premium-sky);
}

.page-home > header:not(.is-scrolled)
    :where(a, button, input, textarea, select, [role="button"]):focus-visible {
    outline-color: var(--premium-white);
}

.container {
    width: min(100% - 40px, 1320px);
    max-width: 1320px;
    margin-inline: auto;
}

body:not(.page-home) {
    background: var(--premium-cream);
}

body:not(.page-home) > header,
.page-home > header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(0, 59, 92, 0.1);
    box-shadow: 0 12px 40px rgba(0, 59, 92, 0.05);
    backdrop-filter: blur(18px);
}

.page-home > header:not(.is-scrolled) .logo img {
    filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(0, 59, 92, 0.18));
}

body:not(.page-home) > header .social a,
.page-home > header.is-scrolled .social a {
    color: var(--premium-navy);
    border-color: var(--premium-sky);
    background: var(--premium-sky);
}

body:not(.page-home) > header .hamburger,
.page-home > header.is-scrolled .hamburger {
    border-color: rgba(0, 59, 92, 0.3);
    background: rgba(255, 255, 255, 0.6);
}

body:not(.page-home) > header .hamburger span,
.page-home > header.is-scrolled .hamburger span {
    background: var(--premium-navy);
}

.btn,
.btn-coral,
.btn-navy,
.btn-pink,
.btn-outline {
    min-height: 52px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: none;
    font: 700 0.7rem/1 'Source Sans Pro', sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 300ms var(--premium-ease);
}

.btn-coral,
.btn--primary {
    color: var(--premium-navy) !important;
    background: var(--premium-coral) !important;
}

.btn-navy,
.btn--dark {
    color: var(--premium-white) !important;
    background: var(--premium-navy) !important;
}

.btn-pink {
    color: var(--premium-navy) !important;
    background: var(--premium-blush) !important;
}

.btn-outline,
.btn--outline {
    color: var(--premium-navy) !important;
    border-color: var(--premium-navy) !important;
    background: transparent !important;
}

:where(.btn, .btn-coral, .btn-navy, .btn-pink, .btn-outline):hover {
    transform: translateY(-3px);
}

.btn-coral:hover,
.btn--primary:hover,
.btn-navy:hover,
.btn--dark:hover {
    color: var(--premium-white) !important;
    background: var(--premium-navy) !important;
}

.btn-outline:hover,
.btn--outline:hover {
    color: var(--premium-white) !important;
    background: var(--premium-navy) !important;
}

.page-header {
    position: relative;
    min-height: 570px;
    padding: 190px 24px 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    color: var(--premium-white);
    background:
        radial-gradient(circle at 18% 78%, rgba(255, 141, 109, 0.2), transparent 27%),
        radial-gradient(circle at 80% 22%, rgba(139, 213, 238, 0.14), transparent 25%),
        var(--premium-navy);
}

.page-header::before {
    content: "CUMBÉ / COLOMBIE";
    position: absolute;
    top: 148px;
    z-index: -1;
    color: var(--premium-sky);
    font: 600 0.65rem/1 'Inconsolata', monospace;
    letter-spacing: 0.26em;
}

.page-header::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -47vw;
    width: min(90vw, 1050px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow:
        0 0 0 82px rgba(255, 255, 255, 0.025),
        0 0 0 164px rgba(255, 255, 255, 0.018);
}

.page-header h1 {
    margin: 0;
    color: var(--premium-white);
    font: 400 clamp(4.6rem, 10vw, 9.5rem)/0.88 'Ogg', Georgia, serif;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.page-header p {
    max-width: 630px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 300;
    line-height: 1.65;
}

.page-culture .page-header::before { content: "HÉRITAGE / 01"; }
.page-cocktails .page-header::before { content: "MIXOLOGIE / 02"; }
.page-boutique .page-header::before { content: "LA COLLECTION / 03"; }
.page-contact .page-header::before { content: "PARLONS-NOUS / 04"; }
.page-legal .page-header::before { content: "INFORMATIONS / 05"; }
.page-credits .page-header::before { content: "LA MAISON / 06"; }

.has-premium-js .reveal-item {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 780ms var(--premium-ease) var(--reveal-delay, 0ms), transform 780ms var(--premium-ease) var(--reveal-delay, 0ms);
}

.has-premium-js .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Home mosaic */
.page-home .boxes {
    min-height: 0;
    background: var(--premium-cream);
}

.page-home .boxes-item {
    min-height: clamp(540px, 65vw, 760px);
    overflow: hidden;
}

.page-home .box-top-left {
    align-items: flex-start;
    padding: clamp(64px, 8vw, 130px);
    background: var(--premium-blush);
}

.page-home .box-top-left::before {
    content: "01 / L'ÂME";
    margin-bottom: clamp(60px, 10vw, 150px);
    color: var(--premium-coral-deep);
    font: 700 0.65rem/1 'Inconsolata', monospace;
    letter-spacing: 0.2em;
}

.page-home .box-top-left h2 {
    max-width: 610px;
    margin-bottom: 28px;
    color: var(--premium-navy);
    font: 400 clamp(3rem, 5.4vw, 6rem)/0.97 'Ogg', Georgia, serif;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.page-home .box-top-left p {
    max-width: 560px;
    margin-bottom: 38px;
    color: rgba(0, 59, 92, 0.76);
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-home .box-top-right {
    position: relative;
    padding: 0;
    background-position: center;
}

.page-home .box-top-right::before,
.page-home .box-bottom-left::before,
.page-home .box-bottom-right::before {
    position: absolute;
    top: 34px;
    left: 36px;
    z-index: 3;
    color: var(--premium-white);
    font: 700 0.62rem/1 'Inconsolata', monospace;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-home .box-top-right::before { content: "02 / Le terroir"; }
.page-home .box-bottom-left::before { content: "03 / Les cocktails"; }
.page-home .box-bottom-right::before {
    content: "04 / La bouteille";
    color: var(--premium-navy);
}

.page-home .box-top-right::after,
.page-home .box-bottom-left::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 59, 92, 0.36), transparent 45%, rgba(0, 59, 92, 0.18));
}

.page-home .boxes figure,
.page-home .boxes figure a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-home .boxes figure img {
    transition: transform 1100ms var(--premium-ease), filter 600ms ease;
}

.page-home .boxes-item:hover figure img {
    transform: scale(1.035);
}

.page-home .box-bottom-left > .btn,
.page-home .box-bottom-right > .btn {
    z-index: 4;
    bottom: 34px !important;
    left: 36px !important;
    right: auto !important;
    top: auto !important;
}

.page-home .box-bottom-right {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.8), transparent 34%),
        var(--premium-coral);
}

.page-home .box-bottom-right figure img {
    padding: 9% 13% 0;
    object-fit: contain;
    filter: drop-shadow(0 35px 30px rgba(0, 59, 92, 0.24));
}

.page-home .box-bottom-right .btn-outline {
    display: none;
}

/* Newsletter and footer */
.newsletter {
    min-height: 700px;
    padding: clamp(100px, 13vw, 180px) 24px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 18% 92%, rgba(255, 141, 109, 0.2), transparent 23%),
        radial-gradient(circle at 88% 10%, rgba(139, 213, 238, 0.14), transparent 24%),
        var(--premium-navy-ink);
}

.newsletter::before {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.newsletter-content {
    max-width: 700px;
}

.newsletter .icon img {
    width: 68px;
    filter: brightness(0) invert(1);
}

.newsletter h2 {
    margin-bottom: 16px;
    color: var(--premium-white);
    font: 400 clamp(3.6rem, 7vw, 6.5rem)/0.95 'Ogg', Georgia, serif;
    letter-spacing: -0.045em;
}

.newsletter h3 {
    max-width: 500px;
    margin: 0 auto 42px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter .form {
    max-width: 560px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: none;
}

.newsletter input[type="email"] {
    padding: 18px 4px;
    color: var(--premium-white);
    background: transparent;
}

.newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter input[type="submit"] {
    padding-inline: 24px;
    color: var(--premium-navy);
    background: var(--premium-coral);
}

.newsletter input[type="submit"]:hover {
    color: var(--premium-white);
    background: var(--premium-navy);
}

.newsletter-social a:hover {
    color: var(--premium-navy);
}

.footer-warning {
    padding: 17px 24px;
    color: var(--premium-white);
    background: var(--premium-navy);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body > footer,
footer.footer {
    padding: 48px 24px;
    color: var(--premium-navy);
    background: var(--premium-coral);
}

body > footer .container,
footer.footer .container {
    min-height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: inherit;
    font: 600 0.64rem/1.5 'Inconsolata', monospace;
    letter-spacing: 0.12em;
}

body > footer a,
footer.footer a {
    color: var(--premium-navy);
}

body > footer a:hover,
footer.footer a:hover {
    color: var(--premium-navy);
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

/* Age verification */
.modal-home {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 24px;
    background:
        radial-gradient(circle at 18% 88%, rgba(255, 141, 109, 0.22), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(139, 213, 238, 0.16), transparent 25%),
        var(--premium-navy-ink);
}

.modal-home.hidden {
    display: none;
}

.modal-home.is-leaving {
    opacity: 0;
    transition: opacity 420ms ease;
}

.modal-home-container {
    position: relative;
    max-width: 760px;
    width: min(100%, 760px);
    padding: clamp(48px, 7vw, 84px);
    overflow: hidden;
    border: 0;
    background: var(--premium-cream);
    box-shadow: var(--premium-shadow);
    text-align: center;
}

.modal-home-container::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 8px;
    background: linear-gradient(90deg, var(--premium-coral) 0 54%, var(--premium-sky) 54% 76%, var(--premium-navy) 76%);
}

.modal-home-container h2 {
    max-width: 580px;
    margin: 0 auto 22px;
    color: var(--premium-navy);
    font: 400 clamp(2rem, 4.8vw, 3.8rem)/1.05 'Ogg', Georgia, serif;
    letter-spacing: -0.035em;
    text-transform: none;
}

.age-gate-logo {
    width: 112px;
    height: auto;
    margin-bottom: 34px;
}

.age-gate-kicker {
    margin: 0 0 18px;
    color: var(--premium-coral-deep);
    font: 700 0.62rem/1 'Inconsolata', monospace;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.age-gate-copy {
    max-width: 510px;
    margin: 0 auto 28px;
    color: rgba(0, 59, 92, 0.68);
    line-height: 1.7;
}

.modal-home-container .decoration {
    width: 72px;
    height: 1px;
    margin: 28px auto;
    background: var(--premium-coral);
}

.modal-home-container .decoration svg {
    display: none;
}

.modal-home-container .buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-no,
.btn-yes {
    min-width: 210px;
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--premium-navy);
    color: var(--premium-navy);
    background: transparent;
    font: 700 0.65rem/1 'Source Sans Pro', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn-yes {
    border-color: var(--premium-coral);
    background: var(--premium-coral);
}

.btn-no:hover,
.btn-yes:hover {
    color: var(--premium-white);
    background: var(--premium-navy);
    border-color: var(--premium-navy);
}

.age-gate-legal {
    max-width: 480px;
    margin: 28px auto 0;
    color: rgba(0, 59, 92, 0.72);
    font-size: 0.72rem;
    line-height: 1.5;
}

/* Cookie consent overrides the legacy injected style. */
.cookie-overlay {
    z-index: 19000 !important;
    background: rgba(0, 59, 92, 0.82) !important;
    backdrop-filter: blur(10px);
}

.cookie-popup {
    z-index: 19001 !important;
    max-width: 620px !important;
    padding: 52px !important;
    border: 0 !important;
    border-top: 7px solid var(--premium-coral) !important;
    background: var(--premium-cream) !important;
    box-shadow: var(--premium-shadow) !important;
}

.cookie-popup h2 {
    color: var(--premium-navy) !important;
    font: 400 2.25rem/1.05 'Ogg', Georgia, serif !important;
}

.cookie-popup .decoration {
    width: 72px !important;
    height: 1px !important;
    margin: 0 auto 25px !important;
    background: var(--premium-coral) !important;
}

.cookie-popup p,
.cookie-btn,
.cookie-link {
    font-family: 'Source Sans Pro', sans-serif !important;
}

.cookie-popup p {
    color: rgba(0, 59, 92, 0.68) !important;
}

.cookie-btn-accept {
    color: var(--premium-navy) !important;
    background: var(--premium-coral) !important;
}

.cookie-btn-accept:hover {
    color: var(--premium-white) !important;
    background: var(--premium-navy) !important;
}

/* --------------------------------------------------------------------------
   Story page
   -------------------------------------------------------------------------- */

.content-section {
    padding: clamp(90px, 11vw, 160px) 0;
    background: var(--premium-cream);
}

.content-section:nth-of-type(even) {
    background: var(--premium-blush);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(56px, 9vw, 140px);
    align-items: center;
}

.content-grid.reverse {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.content-grid.reverse .content-image { order: 2; }
.content-grid.reverse .content-text { order: 1; }

.content-image {
    position: relative;
}

.content-image::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    z-index: 0;
    border: 1px solid rgba(0, 59, 92, 0.18);
}

.content-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.content-text h2 {
    max-width: 620px;
    margin-bottom: 30px;
    color: var(--premium-navy);
    font: 400 clamp(3.25rem, 5.5vw, 6rem)/0.97 'Ogg', Georgia, serif;
    letter-spacing: -0.045em;
}

.content-text p {
    max-width: 620px;
    color: rgba(0, 59, 92, 0.72);
    font-size: 1.03rem;
    line-height: 1.85;
}

.process-section {
    padding: clamp(100px, 12vw, 170px) 0;
    color: var(--premium-white);
    background:
        radial-gradient(circle at 84% 14%, rgba(139, 213, 238, 0.13), transparent 28%),
        var(--premium-navy-ink);
}

.process-section h2 {
    margin-bottom: clamp(58px, 7vw, 92px);
    color: var(--premium-white);
    font: 400 clamp(3.4rem, 6vw, 6.4rem)/0.98 'Ogg', Georgia, serif;
    letter-spacing: -0.045em;
    text-align: left;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 64px);
}

.process-step {
    padding: 34px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    text-align: left;
}

.process-number {
    margin-bottom: 46px;
    color: var(--premium-coral);
    font: 400 clamp(4rem, 7vw, 7.5rem)/0.75 'Ogg', Georgia, serif;
}

.process-step h3 {
    margin-bottom: 18px;
    color: var(--premium-white);
    font: 400 1.65rem/1.1 'Ogg', Georgia, serif;
}

.process-step p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
}

.cta-section {
    padding: clamp(90px, 11vw, 150px) 24px;
    text-align: center;
    background: var(--premium-coral);
}

.cta-section h2 {
    margin-bottom: 28px;
    color: var(--premium-navy);
    font: 400 clamp(3rem, 6vw, 6rem)/0.95 'Ogg', Georgia, serif;
    letter-spacing: -0.045em;
}

/* --------------------------------------------------------------------------
   Cocktails
   -------------------------------------------------------------------------- */

.cocktails-section {
    padding: clamp(90px, 10vw, 145px) 0;
    background: var(--premium-cream);
}

.cocktails-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 38px);
}

.cocktail-card {
    padding: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none !important;
}

.cocktail-card__image {
    aspect-ratio: 2 / 3;
    overflow: hidden;
}

.cocktail-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--premium-ease), filter 500ms ease;
}

.cocktail-card:hover .cocktail-card__image img {
    transform: scale(1.04);
}

.cocktail-card__name {
    margin: 22px 0 0;
    color: var(--premium-navy);
    font: 400 clamp(1.6rem, 2.4vw, 2.35rem)/1.1 'Ogg', Georgia, serif;
}

.cocktail-card__meta {
    margin-top: 8px;
    color: rgba(0, 59, 92, 0.72);
    font: 600 0.62rem/1 'Inconsolata', monospace;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.recipe-section {
    padding: clamp(100px, 12vw, 180px) 0;
    color: var(--premium-white);
    background: var(--premium-navy);
}

.recipe-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
    gap: clamp(56px, 9vw, 140px);
    align-items: center;
}

.recipe-content h2 {
    margin-bottom: 28px;
    color: var(--premium-white);
    font: 400 clamp(4rem, 7vw, 7rem)/0.9 'Ogg', Georgia, serif;
    letter-spacing: -0.05em;
}

.recipe-content h3 {
    margin: 34px 0 14px;
    color: var(--premium-coral);
    font: 700 0.67rem/1 'Inconsolata', monospace;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.recipe-content p,
.recipe-content li {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

.recipe-content ul {
    padding-left: 1.1em;
}

.recipe-image img {
    width: 100%;
    min-height: 680px;
    object-fit: cover;
    border-radius: 0 !important;
}

.classic-section {
    padding: clamp(90px, 10vw, 140px) 24px;
    text-align: center;
    background: var(--premium-blush);
}

.classic-section h2 {
    color: var(--premium-navy);
    font: 400 clamp(3.4rem, 6vw, 6rem)/0.95 'Ogg', Georgia, serif;
}

.classic-section p {
    max-width: 700px;
    margin: 26px auto 34px;
    color: rgba(0, 59, 92, 0.7);
    font-size: 1.04rem;
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Boutique and product
   -------------------------------------------------------------------------- */

.products-section {
    padding: clamp(90px, 10vw, 150px) 0;
    background: var(--premium-cream);
}

.products-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(26px, 4vw, 58px);
}

.product-card {
    position: relative;
    padding: clamp(28px, 4vw, 54px);
    border: 1px solid rgba(0, 59, 92, 0.12);
    border-radius: 0;
    background: var(--premium-blush);
    box-shadow: none !important;
}

.product-card:nth-child(2) {
    background: rgba(139, 213, 238, 0.28);
}

.product-card__image {
    height: 520px;
    margin-bottom: 32px;
    display: grid;
    place-items: center;
    background: transparent;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    padding: 3%;
    object-fit: contain;
    filter: drop-shadow(0 28px 24px rgba(0, 59, 92, 0.2));
    transition: transform 700ms var(--premium-ease);
}

.product-card:hover .product-card__image img {
    transform: translateY(-7px) scale(1.012);
}

.product-card__badge {
    top: 22px;
    right: 22px;
    z-index: 2;
    padding: 9px 12px;
    color: var(--premium-navy);
    background: var(--premium-sky);
    font: 700 0.58rem/1 'Inconsolata', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-card__title {
    margin: 0 0 9px;
    color: var(--premium-navy);
    font: 400 clamp(2rem, 3.5vw, 3.25rem)/1 'Ogg', Georgia, serif;
}

.product-card__specs,
.product-card__price-liter {
    color: rgba(0, 59, 92, 0.72);
    font: 600 0.65rem/1.5 'Inconsolata', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-card__price {
    margin: 24px 0 2px;
    color: var(--premium-navy);
    font: 400 1.65rem/1 'Ogg', Georgia, serif;
}

.product-card .btn {
    width: 100%;
    margin-top: 28px;
}

.product-card .pregnancy-warning {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 59, 92, 0.14);
}

.pregnancy-warning,
.pregnancy-warning span,
.pregnancy-text {
    color: var(--premium-navy);
}

.info-section {
    padding: clamp(80px, 9vw, 120px) 0;
    color: var(--premium-white);
    background: var(--premium-navy);
}

.info-section h2 {
    margin-bottom: 54px;
    color: var(--premium-white);
    font: 400 clamp(2.8rem, 5vw, 5rem)/1 'Ogg', Georgia, serif;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.info-item {
    padding: 14px 34px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    text-align: left;
}

.info-item:first-child { border-left: 0; }

.info-index {
    display: block;
    margin-bottom: 24px;
    color: var(--premium-coral);
    font: 600 0.62rem/1 'Inconsolata', monospace;
    letter-spacing: 0.14em;
}

.info-item strong {
    color: var(--premium-white);
    font: 400 1.4rem/1.15 'Ogg', Georgia, serif;
}

.info-item p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.58);
}

.product-section {
    padding: 160px 0 clamp(90px, 10vw, 150px);
    background: var(--premium-cream);
}

.product-container {
    width: min(100% - 40px, 1320px);
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 132px;
    min-height: 720px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.9), transparent 34%),
        var(--premium-blush);
}

.product-gallery::before {
    content: "CUMBÉ";
    position: absolute;
    bottom: -0.1em;
    left: -0.03em;
    color: rgba(0, 59, 92, 0.045);
    font: 400 clamp(7rem, 15vw, 13rem)/0.8 'Ogg', Georgia, serif;
    letter-spacing: -0.07em;
}

.product-gallery img {
    position: relative;
    z-index: 1;
    width: min(68%, 430px);
    max-height: 650px;
    object-fit: contain;
    filter: drop-shadow(0 34px 28px rgba(0, 59, 92, 0.22));
}

.product-info {
    padding-top: 35px;
}

.product-title {
    margin: 0 0 8px;
    color: var(--premium-navy);
    font: 400 clamp(3.7rem, 6vw, 6.4rem)/0.9 'Ogg', Georgia, serif;
    letter-spacing: -0.055em;
}

.product-subtitle {
    margin-bottom: 34px;
    color: var(--premium-coral-deep);
    font: 700 0.66rem/1 'Inconsolata', monospace;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-description {
    color: rgba(0, 59, 92, 0.7);
    font-size: 1.04rem;
    line-height: 1.8;
}

.product-specs {
    margin: 40px 0;
    border-top: 1px solid rgba(0, 59, 92, 0.18);
}

.spec-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 59, 92, 0.13);
}

.spec-label {
    color: rgba(0, 59, 92, 0.72);
    font: 600 0.64rem/1 'Inconsolata', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.spec-value { color: var(--premium-navy); }

.product-price {
    margin-bottom: 28px;
    padding: 0;
    background: transparent;
}

.price-main {
    color: var(--premium-navy);
    font: 400 2.4rem/1 'Ogg', Georgia, serif;
}

.price-unit,
.price-ttc {
    color: rgba(0, 59, 92, 0.72);
}

.quantity-row {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 12px;
}

.quantity-selector {
    border-color: rgba(0, 59, 92, 0.25);
    border-radius: 0;
}

.qty-btn,
.qty-input {
    color: var(--premium-navy);
}

.add-to-cart {
    min-height: 58px;
    border: 0;
    color: var(--premium-navy);
    background: var(--premium-coral);
    font: 700 0.7rem/1 'Source Sans Pro', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.add-to-cart:hover {
    color: var(--premium-white);
    background: var(--premium-navy);
}

.pregnancy-warning,
.delivery-badge {
    border-radius: 0;
}

.related-section {
    padding: clamp(90px, 10vw, 145px) 0;
    background: var(--premium-navy);
}

.related-title {
    margin-bottom: 58px;
    color: var(--premium-white);
    font: 400 clamp(3rem, 5vw, 5rem)/1 'Ogg', Georgia, serif;
    text-align: left;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 42px);
}

.related-item {
    padding: 0 0 20px;
    color: var(--premium-white);
    background: transparent;
}

.related-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 22px;
    background: var(--premium-blush);
}

.related-item:first-child img {
    padding: 7%;
    object-fit: contain;
}

.related-item h3 {
    color: var(--premium-white);
    font: 400 1.55rem/1.1 'Ogg', Georgia, serif;
}

.related-item .price {
    color: var(--premium-coral);
    font: 600 0.64rem/1 'Inconsolata', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Contact, legal and credits
   -------------------------------------------------------------------------- */

.contact-section {
    padding: clamp(90px, 10vw, 150px) 0;
    background: var(--premium-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 0;
    align-items: stretch;
    box-shadow: 0 30px 80px rgba(0, 59, 92, 0.1);
}

.contact-info,
.contact-form {
    padding: clamp(40px, 6vw, 76px);
}

.contact-info {
    color: var(--premium-white);
    background: var(--premium-navy);
}

.contact-form {
    background: var(--premium-white);
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 40px;
    font: 400 clamp(2.5rem, 4vw, 4rem)/1 'Ogg', Georgia, serif;
}

.contact-info h2,
.contact-info h3,
.contact-info a,
.contact-info p {
    color: var(--premium-white);
}

.contact-block {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-block h3 {
    margin-bottom: 9px;
    color: var(--premium-coral);
    font: 700 0.62rem/1 'Inconsolata', monospace;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 18px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: var(--premium-navy);
    font: 700 0.62rem/1 'Inconsolata', monospace;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(0, 59, 92, 0.28);
    border-radius: 0;
    color: var(--premium-navy);
    background: transparent;
    font: 400 1rem/1.5 'Source Sans Pro', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--premium-navy);
}

.form-privacy {
    color: rgba(0, 59, 92, 0.72);
}

.form-privacy a,
.credit-item a,
.legal-section a {
    color: var(--premium-navy);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.form-privacy a:hover,
.credit-item a:hover,
.legal-section a:hover {
    color: var(--premium-navy);
    text-decoration-thickness: 2px;
}

.legal-nav {
    position: sticky;
    top: 103px;
    z-index: 20;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 59, 92, 0.1);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.legal-nav a {
    color: var(--premium-navy);
    font: 700 0.62rem/1 'Inconsolata', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-content,
.credits-content {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(80px, 10vw, 140px) 24px;
}

.legal-section,
.credits-section {
    margin: 0;
    padding: 54px 0;
    border-bottom: 1px solid rgba(0, 59, 92, 0.14);
}

.legal-section h2,
.credits-section h2 {
    color: var(--premium-navy);
    font: 400 clamp(2.4rem, 4.5vw, 4.4rem)/1.02 'Ogg', Georgia, serif;
    letter-spacing: -0.035em;
}

.legal-section h3 {
    margin-top: 42px;
    color: var(--premium-navy);
    font-family: 'Ogg', Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.65rem, 2.5vw, 2.4rem);
}

.legal-section p,
.legal-section li,
.credits-section p {
    color: rgba(0, 59, 92, 0.68);
    line-height: 1.8;
}

.legal-warning strong {
    color: var(--premium-navy);
}

.credit-item {
    padding: 22px 0;
}

.credit-item h3 {
    color: var(--premium-coral-deep);
    font: 700 0.68rem/1 'Inconsolata', monospace;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.thank-you {
    padding: 70px;
    color: var(--premium-white);
    background: var(--premium-navy);
}

.thank-you p { color: rgba(255, 255, 255, 0.76); }

/* Feedback */
.premium-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 21000;
    max-width: min(420px, calc(100vw - 48px));
    padding: 18px 22px;
    color: var(--premium-white);
    background: var(--premium-navy);
    box-shadow: 0 18px 44px rgba(0, 59, 92, 0.24);
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 280ms ease, transform 280ms var(--premium-ease);
}

.premium-toast--error {
    color: var(--premium-navy);
    background: var(--premium-coral);
}
.premium-toast.is-visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   Responsive refinement
   -------------------------------------------------------------------------- */

@media (max-width: 1040px) {
    .page-header { min-height: 500px; }
    .cocktails-grid { grid-template-columns: repeat(2, 1fr); row-gap: 54px; }
    .content-grid,
    .content-grid.reverse,
    .recipe-grid,
    .product-container {
        gap: 54px;
    }
    .product-card__image { height: 430px; }
    .product-gallery { min-height: 620px; }
}

@media (max-width: 820px) {
    .page-header {
        min-height: 450px;
        padding-top: 140px;
    }
    .page-header::before { top: 120px; }
    .page-header h1 { font-size: clamp(4rem, 14vw, 6.5rem); }

    .page-home .boxes { grid-template-columns: 1fr; }
    .page-home .boxes-item { min-height: 620px; }
    .page-home .box-top-left { padding: 70px 30px; }
    .page-home .box-top-left::before { margin-bottom: 80px; }

    .content-grid,
    .content-grid.reverse,
    .recipe-grid,
    .product-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .content-grid.reverse .content-image,
    .content-grid.reverse .content-text { order: initial; }

    .content-image img,
    .recipe-image img { min-height: 520px; }

    .process-grid,
    .info-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        display: grid;
        grid-template-columns: 110px 1fr;
        column-gap: 26px;
    }

    .process-number { grid-row: span 2; margin-bottom: 0; }
    .process-step h3 { align-self: end; }

    .products-grid { grid-template-columns: 1fr; max-width: 620px; }
    .product-card__image { height: 520px; }

    .info-item {
        padding: 30px 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }
    .info-item:first-child { border-top: 0; }

    .product-gallery {
        position: relative;
        top: auto;
        min-height: 640px;
    }

    .contact-info,
    .contact-form { padding: 50px 34px; }

    .legal-nav { top: 81px; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 32px, 1320px); }
    .page-header { min-height: 410px; padding-inline: 18px; }
    .page-header h1 { font-size: clamp(3.4rem, 17vw, 5rem); }

    .page-home .boxes-item { min-height: 520px; }
    .page-home .box-top-left h2 { font-size: 3.1rem; }

    .newsletter { min-height: 620px; padding-inline: 18px; }
    .newsletter h2 { font-size: 3.5rem; }
    .newsletter .form { flex-direction: column; border-bottom: 0; }
    .newsletter input[type="email"] { border-bottom: 1px solid rgba(255, 255, 255, 0.35); text-align: center; }
    .newsletter input[type="submit"] { min-height: 50px; }
    .newsletter-footer { flex-direction: column; gap: 24px; }

    .modal-home { padding: 12px; }
    .modal-home-container { padding: 46px 22px 34px; }
    .modal-home-container .buttons { flex-direction: column; }
    .btn-no, .btn-yes { width: 100%; min-width: 0; }

    .cookie-popup { padding: 38px 24px !important; }

    .cocktails-grid { grid-template-columns: 1fr; gap: 48px; }
    .cocktail-card__image { aspect-ratio: 4 / 5; }

    .content-image img,
    .recipe-image img { min-height: 420px; }

    .process-step { grid-template-columns: 80px 1fr; }
    .process-number { font-size: 4.4rem; }

    .product-card { padding: 28px 20px; }
    .product-card__image { height: 400px; }
    .product-gallery { min-height: 520px; }
    .product-gallery img { width: 78%; max-height: 500px; }
    .product-title { font-size: 3.7rem; }
    .quantity-row { grid-template-columns: 1fr; }

    .contact-info,
    .contact-form { padding: 42px 22px; }
    .thank-you { padding: 50px 26px; }

    body > footer .container { flex-direction: column; }
    body > footer .container > span { display: none; }
}
