:root {
    --wine: #6b1c2a;
    --wine-deep: #2a0d12;
    --wine-mid: #4a1520;
    --gold: #c4a35a;
    --gold-bright: #e0c47a;
    --cream: #f4efe4;
    --paper: #ebe3d4;
    --ink: #1a1412;
    --muted: #6e6258;
    --line: rgba(196, 163, 90, 0.35);
    --header-h: 5rem;
}

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

html {
    scroll-behavior: smooth;
}

.js body {
    animation: pageIn 0.9s ease both;
}

@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    color: var(--ink);
    background: #14080a;
    line-height: 1.7;
    font-size: 1.05rem;
}

#webgl {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    height: 2px;
    width: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    pointer-events: none;
}

.site-header,
.hero,
.page-hero,
.section,
.site-footer {
    position: relative;
    z-index: 1;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
.logo,
.eyebrow,
.nav {
    font-family: "Cormorant Garamond", serif;
}

.container {
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(42, 13, 18, 0.55);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.site-header.is-scrolled {
    background: rgba(20, 8, 10, 0.92);
    border-bottom-color: var(--line);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
    transition: min-height 0.4s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: 3.7rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--cream);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: 3.9rem;
    max-width: 12.5rem;
    border-radius: 0;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border: 0;
    transition: height 0.4s ease, max-width 0.4s ease;
}

.site-header.is-scrolled .logo img {
    height: 2.85rem;
    max-width: 9.5rem;
    padding: 0.12rem 0.28rem;
}

.logo-text {
    font-family: "Cormorant Garamond", serif;
}

.logo-mark {
    color: var(--gold);
    font-size: 1.1rem;
}

.nav {
    display: flex;
    gap: 1.15rem;
}

.nav a {
    text-decoration: none;
    color: var(--paper);
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.4rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a:hover,
.nav a.active {
    color: var(--gold-bright);
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 2.6rem;
    height: 2.4rem;
    cursor: pointer;
}

.hero {
    min-height: calc(100vh - var(--header-h));
    background:
        radial-gradient(ellipse at 50% 40%, rgba(42, 13, 18, 0.18), rgba(20, 8, 10, 0.55) 70%);
    color: var(--cream);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 4rem 1.25rem 6rem;
    overflow: hidden;
}

.reduced-motion .hero,
html:not(.has-webgl) .hero {
    background:
        linear-gradient(180deg, rgba(42, 13, 18, 0.55), rgba(42, 13, 18, 0.82)),
        url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1800&q=80")
            center/cover no-repeat;
}

.scroll-hint {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    color: var(--gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.68rem;
}

.scroll-hint span {
    width: 1px;
    height: 2.4rem;
    background: linear-gradient(var(--gold), transparent);
    animation: drip 1.8s ease-in-out infinite;
}

@keyframes drip {
    0%, 100% { transform: scaleY(0.45); opacity: 0.35; }
    50% { transform: scaleY(1); opacity: 1; }
}

.hero-inner {
    max-width: 46rem;
    will-change: transform, opacity;
}

.hero-inner .eyebrow {
    animation: fadeUp 0.9s ease both;
}

.hero-inner p {
    animation: fadeUp 1s 0.45s ease both;
}

.hero-inner .btn {
    animation: fadeUp 0.9s 0.6s ease both;
}

.word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-right: 0.28em;
}

.word span {
    display: inline-block;
    animation: wordUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes wordUp {
    from { transform: translateY(110%); }
    to { transform: none; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

.eyebrow {
    color: var(--gold);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin: 0 0 1rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero p {
    font-size: 1.15rem;
    color: var(--paper);
    margin: 0 0 2rem;
}

body[data-scene="home"] .hero {
    min-height: 100vh;
    padding: 5rem 1.25rem 7rem;
}

body[data-scene="home"] .hero-inner {
    max-width: 58rem;
}

body[data-scene="home"] .hero h1 {
    font-size: clamp(3.4rem, 9vw, 7.2rem);
    letter-spacing: 0.02em;
    margin-bottom: 1.3rem;
}

body[data-scene="home"] .hero p {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    max-width: 42rem;
    margin-inline: auto;
}

body[data-scene="home"] .container {
    width: min(1280px, calc(100% - 2.5rem));
}

body[data-scene="home"] .section {
    padding: 7rem 0;
}

body[data-scene="home"] .product-stage {
    min-height: 34rem;
}

body[data-scene="home"] .product-stage img {
    max-height: 31rem;
}

body[data-scene="home"] .product-stage.is-logo img {
    max-height: 18rem;
    max-width: 18rem;
}

body[data-scene="home"] .product h3 {
    font-size: 1.85rem;
}

body[data-scene="home"] .home-about {
    max-width: 52rem;
    margin: 0;
    font-size: 1.12rem;
}

.btn {
    display: inline-block;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--cream);
    padding: 0.8rem 1.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-family: "Source Sans 3", sans-serif;
    cursor: pointer;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: color 0.35s ease, border-color 0.35s ease, transform 0.25s ease;
}

.section-dark .studio-form .btn,
.page-contact .studio-form .btn {
    background: transparent;
    color: var(--cream);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(101%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.btn:hover {
    color: var(--wine-deep);
}

.btn:hover::before {
    transform: none;
}

.btn-dark {
    border-color: var(--wine);
    color: var(--wine-deep);
}

.btn-dark::before {
    background: var(--wine);
}

.btn-dark:hover {
    color: var(--cream);
}

.section {
    padding: 5.5rem 0;
    background: rgba(244, 239, 228, 0.94);
}

.section-dark {
    background: rgba(42, 13, 18, 0.78);
    color: var(--cream);
}

.section-paper {
    background: rgba(235, 227, 212, 0.94);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.split img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
    border: 1px solid var(--line);
    clip-path: inset(18% 18% 18% 18%);
    transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s ease;
}

.reveal.is-in .split img {
    clip-path: inset(0);
}

.split:hover img {
    transform: scale(1.04);
}

h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 1.1rem;
}

.lede {
    font-size: 1.2rem;
    color: var(--muted);
}

.section-dark .lede {
    color: #d9cfc3;
}

.gold-rule {
    width: 4rem;
    height: 1px;
    background: var(--gold);
    border: 0;
    margin: 0 0 1.4rem;
}

.reveal .gold-rule {
    width: 0;
    transition: width 1.1s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in .gold-rule {
    width: 4rem;
}

.values-grid,
.steps,
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product {
    text-align: center;
}

.product-stage {
    background: #070707;
    border: 1px solid var(--line);
    min-height: 28rem;
    display: grid;
    place-items: center;
    padding: 1.4rem 1rem;
    margin-bottom: 1.15rem;
    overflow: hidden;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.15s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s ease, border-color 0.4s ease;
    transition-delay: calc(var(--i, 0) * 0.12s), 0s, 0s;
}

.reveal.is-in .product-stage {
    clip-path: inset(0);
}

.product:hover .product-stage {
    transform: scale(1.015);
    border-color: var(--gold);
}

.product-stage.is-light {
    background: #f7f3ea;
}

.product-stage img {
    max-height: 25rem;
    width: auto;
    object-fit: contain;
    will-change: transform;
}

.product-stage.is-logo img {
    width: auto;
    max-width: 16rem;
    max-height: 16rem;
    background: transparent;
}

.product h3 {
    margin: 0 0 0.35rem;
    font-size: 1.55rem;
    color: var(--wine);
}

.section-dark .product h3 {
    color: var(--gold-bright);
}

.product .spec {
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin: 0 0 0.7rem;
}

.product-feature {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.product-feature .product-stage {
    margin-bottom: 0;
}

.notes {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.note {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.note h4 {
    font-family: "Cormorant Garamond", serif;
    margin: 0 0 0.3rem;
    font-size: 1.25rem;
    color: var(--wine);
    font-weight: 600;
}

.note p {
    margin: 0;
}

.markets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.card {
    background: #fffdf8;
    border: 1px solid var(--line);
    padding: 1.7rem 1.5rem;
}

.section-dark .card {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
}

.card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--wine);
}

.section-dark .card h3 {
    color: var(--gold-bright);
}

.page-hero {
    background: radial-gradient(ellipse at 50% 30%, rgba(42, 13, 18, 0.2), rgba(20, 8, 10, 0.58) 72%);
    color: var(--cream);
    padding: 6.5rem 0 5rem;
    text-align: center;
    overflow: hidden;
}

.reduced-motion .page-hero,
html:not(.has-webgl) .page-hero {
    background:
        linear-gradient(180deg, rgba(42, 13, 18, 0.72), rgba(42, 13, 18, 0.78)),
        var(--hero-image) center/cover no-repeat;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin: 0;
    font-weight: 500;
}

.prose {
    max-width: 46rem;
    margin: 0 auto;
}

.prose p {
    margin: 0 0 1.2rem;
}

.values-list {
    display: grid;
    gap: 1.25rem;
}

.value-row {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
}

.value-row h3 {
    margin: 0;
    color: var(--wine);
    font-size: 1.5rem;
}

.contact-grid address {
    font-style: normal;
    margin: 0 0 1rem;
    line-height: 1.7;
}

.contact-hero {
    position: relative;
    z-index: 1;
    min-height: 78vh;
    display: grid;
    place-items: end start;
    padding: 8rem 0 4.5rem;
    overflow: hidden;
    color: var(--cream);
}

.contact-watermark {
    position: absolute;
    left: -4vw;
    bottom: -1.2rem;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(5rem, 22vw, 16rem);
    line-height: 0.75;
    letter-spacing: -0.04em;
    color: rgba(232, 213, 163, 0.08);
    pointer-events: none;
    white-space: nowrap;
}

.contact-hero-inner {
    position: relative;
    max-width: 40rem;
}

.contact-hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 500;
    line-height: 1.08;
    margin: 0 0 1.1rem;
}

.contact-hero .lede {
    color: #d9cfc3;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

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

.studio-grid.form-only {
    grid-template-columns: 1fr;
    max-width: 42rem;
}

.contact-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.contact-direct {
    margin-top: 1.6rem;
    font-size: 1.15rem;
    line-height: 1.9;
}

.contact-direct a {
    color: var(--gold-bright);
    text-decoration: none;
}

.section:not(.section-dark) .contact-direct a {
    color: var(--wine);
}

.channel {
    display: flex;
    flex-direction: column;
    min-height: 18rem;
    padding: 1.6rem 1.5rem 1.4rem;
    text-decoration: none;
    background: #fffdf8;
    border: 1px solid var(--line);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, background 0.35s ease;
}

.channel:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: #fff;
}

.channel-index {
    font-family: "Cormorant Garamond", serif;
    color: var(--gold);
    letter-spacing: 0.16em;
    font-size: 0.85rem;
}

.channel h2 {
    margin: 1.4rem 0 0.7rem;
    font-size: 2.1rem;
}

.channel p {
    color: var(--muted);
    flex: 1;
    margin: 0 0 1.4rem;
}

.channel-go {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wine);
    border-top: 1px solid var(--line);
    padding-top: 0.9rem;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: stretch;
}

.studio-form {
    background: rgba(255, 253, 248, 0.06);
    border: 1px solid var(--line);
    padding: 2rem 1.7rem 1.7rem;
}

.section-dark .studio-form h2,
.page-contact .studio-form h2 {
    color: var(--cream);
}

.section-dark .studio-form label,
.page-contact .studio-form label {
    color: var(--gold-bright);
}

.section-dark .studio-form input,
.section-dark .studio-form textarea,
.page-contact .studio-form input,
.page-contact .studio-form textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(196, 163, 90, 0.45);
    border-radius: 0;
    color: var(--cream);
    padding: 0.55rem 0 0.7rem;
    margin-bottom: 1.15rem;
}

.section-dark .studio-form input::placeholder,
.section-dark .studio-form textarea::placeholder,
.page-contact .studio-form input::placeholder,
.page-contact .studio-form textarea::placeholder {
    color: rgba(244, 239, 228, 0.4);
}

.section-dark .studio-form input:focus,
.section-dark .studio-form textarea:focus,
.page-contact .studio-form input:focus,
.page-contact .studio-form textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row p {
    margin: 0;
}

.section-dark .form-note,
.page-contact .form-note {
    color: #d9cfc3;
    margin-top: 0.9rem;
}

.studio-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-frame {
    flex: 1;
    min-height: 22rem;
    border: 1px solid var(--line);
    overflow: hidden;
    filter: grayscale(0.35) contrast(1.05);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 22rem;
    border: 0;
    display: block;
}

.studio-map address {
    font-style: normal;
    color: var(--paper);
    font-size: 0.98rem;
}

label {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.4rem;
}

input,
textarea {
    width: 100%;
    font: inherit;
    padding: 0.75rem 0.85rem;
    border: 1px solid #d7cdb8;
    background: #fffdf8;
    margin-bottom: 1rem;
}

textarea {
    min-height: 9rem;
    resize: vertical;
}

.hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.site-footer {
    background: rgba(20, 8, 10, 0.88);
    color: var(--paper);
    padding: 2.6rem 0;
    border-top: 1px solid var(--line);
}

.reveal {
    opacity: 0;
    transform: translateY(48px);
    filter: blur(4px);
    transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), filter 0.95s ease;
}

.reveal.is-in {
    opacity: 1;
    transform: none;
    filter: none;
}

.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--d, 0s);
}

.reveal-item.is-in {
    opacity: 1;
    transform: none;
}

.reveal.is-in .product {
    animation: rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--i, 0) * 0.14s);
}

.reveal.is-in .channel {
    animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-in .channel:nth-child(2) { animation-delay: 0.12s; }
.reveal.is-in .channel:nth-child(3) { animation-delay: 0.22s; }

.reveal.is-in .card,
.reveal.is-in .value-row {
    animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-in .card:nth-child(2),
.reveal.is-in .value-row:nth-child(2) { animation-delay: 0.12s; }
.reveal.is-in .card:nth-child(3),
.reveal.is-in .value-row:nth-child(3) { animation-delay: 0.22s; }
.reveal.is-in .value-row:nth-child(4) { animation-delay: 0.32s; }
.reveal.is-in .value-row:nth-child(5) { animation-delay: 0.42s; }

@keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}

.card,
.value-row {
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.card:hover,
.value-row:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
    .js body,
    .hero-inner .eyebrow,
    .hero-inner p,
    .hero-inner .btn,
    .word span {
        animation: none !important;
    }

    .reveal,
    .reveal-item {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .product-stage,
    .split img,
    .gold-rule {
        clip-path: none;
        width: 4rem;
        transition: none;
    }

    .scroll-hint span,
    .card,
    .value-row,
    .btn {
        animation: none;
        transition: none;
    }
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    align-items: center;
    font-size: 0.95rem;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-brand img {
    display: block;
    height: 4.4rem;
    width: auto;
    max-width: 13rem;
    object-fit: contain;
    background: transparent;
}

.footer-meta {
    text-align: center;
    flex: 1;
}

.footer-meta address {
    font-style: normal;
    margin: 0 0 0.3rem;
    color: var(--paper);
}

.footer-meta p {
    margin: 0;
    color: #b7aa9c;
    font-size: 0.88rem;
}

.footer-inner a {
    color: var(--gold);
    text-decoration: none;
}

@media (max-width: 860px) {
    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .nav {
        display: none;
        position: absolute;
        inset: var(--header-h) 0 auto;
        background: var(--wine-deep);
        flex-direction: column;
        padding: 1.2rem 1.5rem 1.6rem;
        gap: 1rem;
        border-bottom: 1px solid var(--line);
    }

    .nav.open {
        display: flex;
    }

    .split,
    .values-grid,
    .steps,
    .cards,
    .markets,
    .product-grid,
    .product-feature,
    .contact-grid,
    .channel-grid,
    .studio-grid,
    .contact-split,
    .form-row,
    .value-row,
    .footer-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .footer-inner {
        text-align: center;
        justify-items: center;
        gap: 1.1rem;
    }

    .footer-brand img {
        height: 4rem;
        margin-inline: auto;
    }

    .split img {
        height: 18rem;
    }
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(42, 13, 18, 0.35), rgba(10, 4, 6, 0.92) 70%);
    backdrop-filter: blur(18px);
}

.age-locked {
    overflow: hidden;
}

.age-gate-card {
    width: min(32rem, 100%);
    text-align: center;
    background: rgba(244, 239, 228, 0.96);
    border: 1px solid var(--line);
    padding: 2.4rem 1.8rem 2rem;
    color: var(--ink);
}

.age-gate-card img {
    width: min(14rem, 100%);
    height: auto;
    margin: 0 auto 1rem;
    border-radius: 0;
    object-fit: contain;
    background: transparent;
    padding: 0;
}

.age-gate-card h2 {
    margin-bottom: 0.7rem;
}

.age-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.age-gate .btn {
    color: var(--wine-deep);
}

.age-gate .btn::before {
    background: var(--gold);
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    animation: waPulse 2.4s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 1.7rem;
    height: 1.7rem;
}

.whatsapp-float:hover {
    transform: scale(1.06);
    color: #fff;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}
