/* ===========================
   Mander Wines — Premium Stylesheet
   =========================== */

/* ===========================
   Page Loader
   =========================== */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-logo {
    height: 140px;
    width: auto;
    opacity: 1;
}

/* ===========================
   404 Page
   =========================== */

.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 28px 80px;
    background: var(--cream);
}

.page-404-inner {
    max-width: 480px;
}

.page-404-monogram {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    opacity: 0.7;
}

.page-404 h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 16px;
    font-weight: 400;
}

.page-404 p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

.page-404-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

:root {
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #EDE6D8;
    --navy: #1B3A6B;
    --navy-light: #2C5299;
    --gold: #B8964E;
    --gold-light: #D4B06A;
    --gold-muted: rgba(184, 150, 78, 0.15);
    --charcoal: #3D3225;
    --charcoal-light: #5A4D3E;
    --dark: #2A2520;
    --dark-deep: #1E1B17;
    --white: #FFFFFF;
    --text: #3D3225;
    --text-light: #7A6E60;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
    --font-serif: 'Libre Baskerville', Georgia, serif;

    --nav-height: 110px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease, opacity 0.3s ease; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.12;
    color: var(--charcoal);
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 300;
}

.label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

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

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-block;
    padding: 18px 48px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184, 150, 78, 0.25);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(27, 58, 107, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
}

.btn-full { width: 100%; text-align: center; }

/* ===========================
   Navigation
   =========================== */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: all 0.4s ease;
}

#navbar.scrolled {
    box-shadow: 0 1px 0 rgba(61, 50, 37, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-logo {
    flex: 0 0 auto;
    margin: 0 56px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 80px;
    width: auto;
}

.nav-links a {
    font-family: var(--font-serif);
    font-size: 0.88rem;
    color: var(--charcoal);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--charcoal);
    transition: width 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--charcoal);
}

/* Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 48px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 16px 48px 32px;
    gap: 16px;
    border-top: 1px solid rgba(61, 50, 37, 0.06);
}
.mobile-nav a {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--charcoal);
    padding: 8px 0;
}
.mobile-nav.open { display: flex; }

/* ===========================
   PAGE: HOME — Cinematic
   =========================== */

/* Transparent nav on home */
.nav-transparent {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
}

.nav-transparent .nav-links a {
    color: rgba(255,255,255,0.8);
}
.nav-transparent .nav-links a:hover {
    color: var(--white);
}
.nav-transparent .nav-links a::after {
    background: var(--gold-light);
}
.nav-transparent .nav-logo img {
    filter: brightness(0) invert(1);
}
.nav-transparent .mobile-menu-btn span {
    background: var(--white);
}
.nav-transparent.scrolled {
    background: rgba(30, 27, 23, 0.95) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
}

.cinematic-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cinematic-bg {
    position: absolute;
    inset: 0;
}
.cinematic-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(20, 17, 14, 0.40) 0%,
        rgba(20, 17, 14, 0.65) 100%
    );
}

/* Engraved monogram overlay */
.cinematic-monogram {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8%;
    pointer-events: none;
}

.cinematic-monogram img {
    width: clamp(200px, 22vw, 320px);
    height: auto;
    opacity: 0.12;
    filter: brightness(2) contrast(0.8) grayscale(100%);
    mix-blend-mode: overlay;
    animation: monogramFade 2s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes monogramFade {
    to { opacity: 0.15; }
}

/* M Monogram overlay */
.hero-monogram {
    position: absolute;
    z-index: 1;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
    animation: monogramReveal 1.5s ease forwards;
    animation-delay: 1s;
}

.hero-monogram svg {
    width: clamp(160px, 18vw, 260px);
    height: auto;
    color: rgba(255, 255, 255, 0.10);
}

@keyframes monogramReveal {
    to { opacity: 1; }
}

.cinematic-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 48px;
}

.cinematic-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cinematic-year {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.cinematic-hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 0;
    font-weight: 300;
}

.cinematic-hero h1 em {
    font-style: italic;
    color: var(--white);
}

.cinematic-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
}

.cinematic-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    font-weight: 400;
}

.cinematic-cases {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Bottom detail bar */
.cinematic-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.cinematic-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.cinematic-detail {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.cinematic-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
}

/* Staggered fade-in animations */
.anim-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}
.anim-d1 { animation-delay: 0.3s; }
.anim-d2 { animation-delay: 0.6s; }
.anim-d3 { animation-delay: 0.9s; }
.anim-d4 { animation-delay: 1.1s; }
.anim-d5 { animation-delay: 1.3s; }
.anim-d6 { animation-delay: 1.6s; }
.anim-d7 { animation-delay: 1.9s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   PAGE: THE STORY
   =========================== */

.page-header {
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 0;
}

.story-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-height));
    padding-top: var(--nav-height);
}

.story-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 48px;
    background: var(--cream-light);
}

.story-text-col h2 {
    margin-bottom: 12px;
}

.story-divider {
    width: 56px;
    height: 2px;
    background: var(--gold);
    margin: 28px 0 36px;
}

.story-text-col p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    margin-bottom: 20px;
    max-width: 480px;
}

.story-image-col {
    position: relative;
    overflow: hidden;
}
.story-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.05);
}

/* Story inline roadmap */
.story-roadmap {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(61, 50, 37, 0.08);
}

.story-roadmap-row {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.story-roadmap-timeline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.roadmap-desc-large {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--charcoal);
}

/* Story bottom sections */
.story-details {
    padding: 100px 0;
    background: var(--cream);
}

.story-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-detail-text h3 {
    margin-bottom: 20px;
}

.story-detail-text p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--charcoal-light);
}

.story-detail-image {
    position: relative;
}
.story-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Roadmap strip */
.roadmap {
    padding: 80px 0;
    background: var(--cream-light);
    border-top: 1px solid rgba(61, 50, 37, 0.06);
}

.roadmap-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.roadmap-item {
    text-align: center;
}

.roadmap-year {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--charcoal);
    display: block;
    margin-bottom: 6px;
}

.roadmap-desc {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.roadmap-arrow {
    width: 60px;
    height: 1px;
    background: var(--gold);
    position: relative;
}
.roadmap-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    transform: rotate(45deg);
}

/* ===========================
   PAGE: THE WINE
   =========================== */

.wine-page {
    padding-top: var(--nav-height);
}

.wine-hero {
    text-align: center;
    padding: 80px 0 60px;
    background: var(--cream-light);
}

.wine-hero-logo {
    height: 72px;
    width: auto;
    margin: 0 auto 24px;
    display: block;
}

.wine-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 8px;
}

.wine-hero p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-light);
}

/* Featured wine */
.wine-featured {
    padding: 80px 0 100px;
    background: var(--cream-light);
}

.wine-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.wine-image-wrapper {
    position: relative;
}

.wine-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.wine-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(184, 150, 78, 0.25);
    pointer-events: none;
}

.wine-info h2 {
    margin-bottom: 4px;
}

.wine-appellation {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 28px;
    display: block;
}

.wine-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    margin-bottom: 36px;
}

/* Tasting notes */
.tasting-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
}

.notes-row {
    display: flex;
    gap: 36px;
    margin-bottom: 36px;
}

.note-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.note-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.note-name {
    font-size: 0.82rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* Specs */
.wine-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(61, 50, 37, 0.08);
    border-bottom: 1px solid rgba(61, 50, 37, 0.08);
}

.spec {
    text-align: center;
    padding: 0 12px;
}

.spec:not(:last-child) {
    border-right: 1px solid rgba(61, 50, 37, 0.08);
}

.spec-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.spec-value {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--charcoal);
}

/* Aging section on wine page */
.wine-aging {
    padding: 100px 0;
    background: var(--cream);
}

.wine-aging-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.aging-card {
    background: var(--cream-light);
    border: 1px solid rgba(61, 50, 37, 0.06);
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.aging-card p {
    flex: 1;
}

.aging-year {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.aging-card h3 {
    margin-bottom: 12px;
}

.aging-card p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 16px;
}

.aging-status {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 10px 18px;
    border: 1px solid var(--gold);
    display: block;
    text-align: center;
    margin-top: auto;
}

/* ===========================
   PAGE: CELLAR UPDATES
   =========================== */

.cellar-page {
    padding-top: var(--nav-height);
}

.cellar-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cellar-hero-bg {
    position: absolute;
    inset: 0;
}
.cellar-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.cellar-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(30, 27, 23, 0.80) 0%,
        rgba(30, 27, 23, 0.50) 50%,
        rgba(30, 27, 23, 0.20) 100%
    );
}

.cellar-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cellar-hero-text {
    max-width: 520px;
}

.cellar-hero-text h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.cellar-hero-text h1 em {
    color: var(--gold-light);
}

.cellar-hero-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

/* Cellar cards */
.cellar-cards {
    padding: 100px 0;
    background: var(--cream);
}

.cellar-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cellar-card {
    background: var(--cream-light);
    border: 1px solid rgba(61, 50, 37, 0.06);
    padding: 56px 48px;
    transition: all 0.4s ease;
}

.cellar-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.cellar-card-year {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.cellar-card h3 {
    margin-bottom: 16px;
    font-size: 1.6rem;
}

.cellar-card p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 24px;
}

.cellar-card-meta {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(61, 50, 37, 0.06);
}

.cellar-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-light);
}

.cellar-meta-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gold);
}

/* Cellar tagline */
.cellar-tagline {
    padding: 64px 0;
    text-align: center;
    background: var(--cream-light);
    border-top: 1px solid rgba(61, 50, 37, 0.06);
}

.cellar-tagline p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--charcoal-light);
    max-width: 700px;
    margin: 0 auto 32px;
}

/* ===========================
   PAGE: JOIN THE JOURNEY (v2)
   =========================== */

.journey-hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.journey-bg-v2 {
    position: absolute;
    inset: 0;
}

.journey-bg-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.journey-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 17, 14, 0.55) 0%,
        rgba(20, 17, 14, 0.75) 50%,
        rgba(20, 17, 14, 0.85) 100%
    );
}

.journey-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 140px 48px 80px;
    text-align: center;
    color: var(--white);
}

/* Headline area */
.journey-headline-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 28px;
}

.journey-above-v2 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.journey-hero-v2 h1 {
    color: var(--white);
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.journey-hero-v2 h1 em {
    color: var(--gold-light);
}

.journey-value {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin: 0 auto 56px;
}

/* Form card */
.journey-form-v2 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 48px 40px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.journey-form-v2 h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 28px;
}

.journey-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.journey-field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.journey-field label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.journey-field input {
    width: 100%;
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.20);
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.journey-field input::placeholder {
    color: rgba(255,255,255,0.30);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.journey-field input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
}

.journey-submit {
    grid-column: 1 / -1;
    margin-top: 4px;
}

/* Success state */
.journey-form-v2 .form-success {
    display: none;
    padding: 32px 0;
}

.journey-form-v2 .form-success.show {
    display: block;
}

.journey-form-v2 .form-success p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-light);
}

/* ===========================
   Newsletter Signup
   =========================== */

.newsletter {
    padding: 72px 0;
    background: var(--dark);
}

.newsletter-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-success {
    display: none;
}

.newsletter-success.show {
    display: block;
}

.newsletter-success p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-light);
}

/* ===========================
   Footer Contact
   =========================== */

.footer-contact {
    background: var(--dark);
    padding: 64px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 400;
}

.footer-contact-info p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-details a,
.footer-contact-details span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-details a:hover {
    color: var(--gold-light);
}

.footer-contact-details svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255,255,255,0.25);
    font-size: 0.82rem;
}

.contact-field select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.contact-field select option {
    background: var(--dark);
    color: var(--white);
}

.contact-field select:focus {
    border-color: var(--gold);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--gold);
}

.contact-field textarea {
    min-height: 100px;
}

.contact-success {
    display: none;
}
.contact-success.show {
    display: block;
}
.contact-success p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-light);
}

/* ===========================
   Section Divider
   =========================== */

.section-divider {
    border: none;
    border-top: 1px solid var(--gold);
    width: 120px;
    margin: 60px auto;
}

/* ===========================
   Homepage — Why Mander
   =========================== */

.home-why {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
}

.home-why .label {
    display: block;
    margin-bottom: 16px;
}

.home-why h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 20px;
    color: var(--dark);
}

.home-why h2 em {
    color: var(--gold);
}

.home-why-sub {
    max-width: 640px;
    margin: 0 auto 56px;
    font-size: 1.05rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.home-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.home-pillar {
    padding: 32px 20px;
    border-right: 1px solid var(--gold-muted);
}

.home-pillar:last-child {
    border-right: none;
}

.home-pillar-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.home-pillar-icon--img {
    width: 60px;
    height: 60px;
}

.home-pillar-icon svg,
.home-pillar-icon img {
    width: 100%;
    height: 100%;
}

.home-pillar-icon img {
    mix-blend-mode: multiply;
    object-fit: contain;
}

.home-pillar-icon img[alt="Mander M"] {
    transform: scale(1.05) scaleX(0.9);
}

.home-pillar h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 12px;
    color: var(--dark);
}

.home-pillar p {
    font-size: 0.9rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin: 0;
}

/* ===========================
   Homepage — Story Teaser
   =========================== */

.home-story {
    padding: 100px 0;
    background: var(--cream-light);
}

.home-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.home-story-image {
    overflow: hidden;
    border-radius: 4px;
}

.home-story-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.home-story-text .label {
    display: block;
    margin-bottom: 16px;
}

.home-story-text h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 24px;
    color: var(--dark);
}

.home-story-text h2 em {
    color: var(--gold);
}

.home-story-text p {
    font-size: 1.02rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.home-story-text .btn {
    margin-top: 20px;
}

/* ===========================
   Homepage — Limited Release CTA
   =========================== */

.home-drop {
    padding: 100px 0;
    background: var(--dark-deep);
    text-align: center;
}

.home-drop-inner {
    max-width: 640px;
    margin: 0 auto;
}

.home-drop .label-light {
    display: block;
    margin-bottom: 16px;
}

.home-drop h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: 1px;
}

.home-drop-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin: 0 0 28px;
}

.home-drop-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 36px;
}

.home-drop-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.home-drop .btn-gold {
    margin-top: 8px;
}

/* ===========================
   Footer
   =========================== */

.site-footer {
    background: var(--dark-deep);
    color: rgba(255,255,255,0.5);
    padding: 64px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.35;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.footer-url {
    font-size: 0.78rem;
    color: var(--gold);
    margin-top: 4px;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.footer-social-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
    margin: 0;
    letter-spacing: 0.03em;
    opacity: 0.8;
}
.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}
.footer-social svg { width: 16px; height: 16px; }

/* Footer badges */
.footer-badges {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.badge-vqa svg,
.badge-organic svg {
    width: 52px;
    height: 52px;
}

.footer-bottom {
    text-align: center;
    padding-top: 12px;
}
.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
}
.footer-bottom p + p { margin-top: 4px; }

.footer-contact-link {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold) !important;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
}
.footer-contact-link:hover {
    color: var(--gold-light) !important;
}

.footer-legal-links {
    margin-top: 8px;
}
.footer-legal-links a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s ease;
}
.footer-legal-links a:hover {
    color: var(--gold-light);
}

/* ===========================
   Legal Pages (Privacy / Terms)
   =========================== */

.legal-page {
    padding: calc(var(--nav-height) + 60px) 0 80px;
    background: var(--cream);
}

.legal-page h1 {
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin: 36px 0 12px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 0 0 16px 24px;
    padding: 0;
}

.legal-content li {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 6px;
}

.legal-content strong {
    color: var(--charcoal);
}

/* ===========================
   PAGE: ALLOCATION (Scarcity)
   =========================== */

.alloc-page {
    padding-top: var(--nav-height);
}

.alloc-header {
    padding: 80px 0 40px;
    text-align: center;
    background: var(--cream-light);
}

.alloc-headline {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--charcoal);
    font-weight: 400;
    line-height: 1.15;
}

.alloc-headline em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
}

.alloc-product {
    padding: 60px 0 100px;
    background: var(--cream-light);
}

.alloc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.alloc-image {
    position: relative;
}

.alloc-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.alloc-image::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(184, 150, 78, 0.2);
    pointer-events: none;
}

.alloc-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.alloc-pipe {
    font-weight: 300;
    opacity: 0.4;
    margin: 0 4px;
}

.alloc-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    margin-bottom: 32px;
}

.alloc-cta {
    margin-bottom: 40px;
}

.alloc-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
    padding: 28px 0;
    border-top: 1px solid rgba(61, 50, 37, 0.08);
    border-bottom: 1px solid rgba(61, 50, 37, 0.08);
}

.alloc-spec {
    display: flex;
    align-items: center;
    gap: 12px;
}

.alloc-spec-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--gold);
}

.alloc-spec-icon svg {
    width: 100%;
    height: 100%;
}

.alloc-spec-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
}

.alloc-spec-value {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--charcoal);
    display: block;
}

.alloc-notes {
    margin-bottom: 28px;
}

.alloc-appellation {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ===========================
   Founder Section (Story page)
   =========================== */

.founder-section {
    padding: 120px 0;
    background: var(--cream);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.founder-portrait {
    position: relative;
}

.founder-portrait img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
}

.founder-portrait::after {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.2;
    pointer-events: none;
    max-width: 480px;
}

.founder-bio h2 {
    margin-bottom: 8px;
}

.founder-quote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.5;
    margin-bottom: 24px;
}

.founder-bio p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 16px;
}

/* ===========================
   Age Gate
   =========================== */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.95);
}

.age-gate.hidden {
    display: none;
}

.age-gate-card {
    text-align: center;
    padding: 60px;
    max-width: 500px;
    width: 90%;
    background: #f9f6f1;
    border: 1px solid var(--gold);
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.age-gate-logo {
    height: 70px;
    width: auto;
    margin: 0 auto 16px;
}

.age-gate-line {
    width: 160px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 28px;
}

.age-gate-welcome {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0 0 16px;
    font-weight: 400;
}

.age-gate-prompt {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 32px;
}

.age-gate-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 0;
}

.age-gate-buttons .btn {
    min-width: 140px;
}

.age-gate-disclaimer {
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: #aaa;
    margin: 36px 0 0;
    letter-spacing: 0.5px;
    font-style: italic;
    line-height: 1.6;
}

.btn-deny {
    background: transparent;
    color: #888;
    border: 1px solid #ccc;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-deny:hover {
    color: #555;
    border-color: #999;
}

.age-gate-denied {
    display: none;
}

.age-gate-denied.show {
    display: block;
}

.age-gate-denied p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

/* ===========================
   Animations
   =========================== */

[data-animate] {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-animate="fade-up"] { transform: translateY(36px); }
[data-animate="fade-right"] { transform: translateX(-36px); }
[data-animate="fade-left"] { transform: translateX(36px); }
[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===========================
   Lazy Loading
   =========================== */

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}
img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 900px) {
    :root { --nav-height: 80px; }
    .container { padding: 0 28px; }
    .nav-inner { padding: 0 28px; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; right: 28px; }
    .mobile-nav { padding: 16px 28px 32px; }
    .nav-logo img { height: 60px; }
    .nav-logo { margin: 0; }

    .cinematic-content { padding: 0 28px; }
    .cinematic-bottom-inner { gap: 12px; padding: 0 20px; flex-wrap: wrap; justify-content: center; }
    .cinematic-detail { font-size: 0.6rem; }
    .nav-transparent .mobile-nav { background: rgba(30,27,23,0.95); }
    .nav-transparent .mobile-nav a { color: rgba(255,255,255,0.8); }

    .story-hero { grid-template-columns: 1fr; min-height: auto; }
    .story-text-col { padding: 64px 28px; }
    .story-image-col { height: 50vh; }
    .story-details-grid { grid-template-columns: 1fr; gap: 40px; }

    .wine-featured-grid { grid-template-columns: 1fr; gap: 48px; }
    .wine-image-wrapper img { height: 380px; }
    .wine-specs { grid-template-columns: repeat(2, 1fr); }
    .spec { padding: 12px; }
    .spec:nth-child(2) { border-right: none; }
    .spec:nth-child(1), .spec:nth-child(2) { border-bottom: 1px solid rgba(61,50,37,0.08); }
    .wine-aging-grid { grid-template-columns: 1fr; }

    .cellar-hero-content { padding: 0 28px; }
    .cellar-cards-grid { grid-template-columns: 1fr; }

    .journey-layout { padding: 120px 28px 60px; }
    .journey-form-v2 { padding: 36px 24px; }
    .journey-form-fields { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-social { align-items: center; }
    .footer-nav { align-items: center; }
    .footer-certs { flex-wrap: wrap; }

    .roadmap-inner { flex-wrap: wrap; gap: 24px; }

    .founder-grid { grid-template-columns: 1fr; gap: 48px; }
    .founder-portrait img { max-width: 100%; }
    .founder-portrait::after { display: none; }
    .founder-section { padding: 80px 0; }

    .newsletter-form { flex-direction: column; }
    .footer-contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 28px; }
    .contact-form-row { grid-template-columns: 1fr; }
    .cookie-banner-inner { padding: 20px 28px; }

    .alloc-grid { grid-template-columns: 1fr; gap: 40px; }
    .alloc-image img { height: 380px; }
    .alloc-specs { grid-template-columns: 1fr; }
    .story-roadmap-row { flex-direction: column; gap: 24px; }

    .legal-page { padding: calc(var(--nav-height) + 40px) 0 60px; }
    .legal-content h3 { font-size: 1.1rem; margin: 28px 0 10px; }

    .footer-contact[style] { padding-top: calc(var(--nav-height) + 40px) !important; }

    .home-pillars { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .home-pillar:nth-child(2) { border-right: none; }
    .home-why { padding: 72px 0; }
    .home-why h2 { font-size: 1.9rem; }
    .home-story { padding: 72px 0; }
    .home-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .home-story-image img { height: 380px; }
    .home-story-text h2 { font-size: 1.9rem; }
    .home-drop { padding: 72px 0; }
    .home-drop h2 { font-size: 2.2rem; }
    .home-drop-details { flex-wrap: wrap; justify-content: center; gap: 10px; }
}

/* ===========================
   Success Modal
   =========================== */

.success-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalBgFade 0.3s ease;
}

.success-modal.show {
    display: flex;
}

.success-modal-card {
    background: var(--cream);
    padding: 56px 48px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease;
}

.success-modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.success-modal-card h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 400;
}

.success-modal-card p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
}

.success-modal-signature {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--charcoal);
    margin-top: 20px;
}

.success-modal-close {
    margin-top: 32px;
}

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

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Scroll to Top Button
   =========================== */

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 44px;
    height: 44px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

.scroll-to-top:hover {
    background: var(--gold);
}

/* ===========================
   Cookie Consent Banner
   =========================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: var(--dark-deep);
    border-top: 1px solid var(--gold);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-banner-inner p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-banner-inner p a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-accept {
    padding: 12px 28px !important;
    font-size: 0.7rem !important;
    white-space: nowrap;
}

/* ===========================
   Page Transitions
   =========================== */

body.page-transition-out {
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

/* ===========================
   Lazy Image Fade-in
   =========================== */

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===========================
   Parallax
   =========================== */

.cinematic-bg img,
.cellar-hero-bg img,
.journey-bg-v2 img,
.story-image-col img {
    will-change: transform;
}

/* ===========================
   Social Share Buttons
   =========================== */

.wine-share {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(61, 50, 37, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
}

.wine-share-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
}

.wine-share-links {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(61, 50, 37, 0.15);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    text-decoration: none;
}

.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.share-btn.copied {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===========================
   Exit Intent Popup
   =========================== */

.exit-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exit-modal.show {
    opacity: 1;
}

.exit-modal-card {
    background: var(--cream);
    padding: 56px 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalSlideUp 0.4s ease;
}

.exit-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.exit-modal-close:hover {
    color: var(--charcoal);
}

.exit-modal-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 16px;
    font-weight: 400;
}

.exit-modal-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.exit-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exit-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: var(--white);
    border: 1px solid rgba(61,50,37,0.15);
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s ease;
}

.exit-form input[type="email"]::placeholder {
    color: var(--text-light);
}

.exit-form input[type="email"]:focus {
    border-color: var(--gold);
}

.exit-success {
    display: none;
}

.exit-success.show {
    display: block;
}

.exit-success p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    padding: 20px 0;
}

/* ===========================
   Small Phones (480px and below)
   =========================== */

@media (max-width: 480px) {
    :root { --nav-height: 70px; }
    .container { padding: 0 20px; }
    .nav-inner { padding: 0 20px; }
    .mobile-menu-btn { right: 20px; }
    .mobile-nav { padding: 16px 20px 28px; }
    .nav-logo img { height: 50px; }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.2rem; }

    /* Hero */
    .cinematic-content { padding: 0 20px; }
    .cinematic-year { font-size: 0.7rem; }
    .cinematic-tagline { font-size: 0.85rem; }
    .cinematic-cases { font-size: 0.72rem; }
    .cinematic-bottom-inner { gap: 8px; padding: 0 16px; }
    .cinematic-detail { font-size: 0.55rem; }
    .cinematic-dot { display: none; }
    .cinematic-bottom-inner { flex-direction: column; gap: 4px; }

    /* Buttons */
    .btn { padding: 14px 32px; font-size: 0.72rem; }

    /* Age Gate */
    .age-gate-card { padding: 48px 28px; }
    .age-gate-logo { height: 60px; }
    .age-gate-card h2 { font-size: 1.5rem; }
    .age-gate-card p { font-size: 0.82rem; }
    .age-gate-buttons { flex-direction: column; gap: 12px; }
    .age-gate-buttons .btn { min-width: auto; width: 100%; }
    .btn-deny { width: 100%; }

    /* Story */
    .story-text-col { padding: 48px 20px; }
    .story-image-col { height: 40vh; }
    .founder-section { padding: 60px 0; }
    .founder-bio .founder-quote { font-size: 1.1rem; }

    /* Wine */
    .wine-image-wrapper img { height: 300px; }
    .wine-specs { grid-template-columns: 1fr; }
    .spec { border-right: none !important; border-bottom: 1px solid rgba(61,50,37,0.08); }
    .spec:last-child { border-bottom: none; }

    /* Cellar */
    .cellar-hero-content { padding: 0 20px; }

    /* Journey */
    .journey-layout { padding: 100px 20px 48px; }
    .journey-form-v2 { padding: 28px 20px; }
    .journey-headline h1 { font-size: 2rem; }

    /* Newsletter */
    .newsletter-form input,
    .newsletter-form button { width: 100%; }

    /* Contact */
    .footer-contact-inner { padding: 0 20px; gap: 32px; }
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-field input,
    .contact-field textarea { padding: 12px 14px; font-size: 0.85rem; }

    /* Legal Pages */
    .legal-page { padding: calc(var(--nav-height) + 32px) 0 48px; }
    .legal-content p, .legal-content li { font-size: 0.85rem; }
    .legal-content ul { margin-left: 16px; }

    /* Footer */
    .footer-grid { gap: 20px; }
    .footer-logo { height: 40px; }
    .footer-contact-link { font-size: 0.9rem; }
    .footer-legal-links a { font-size: 0.65rem; }
    .footer-bottom p { font-size: 0.65rem; }

    /* Allocation */
    .alloc-image img { height: 300px; }

    /* Homepage sections */
    .home-pillars { grid-template-columns: 1fr; gap: 24px; }
    .home-pillar { border-right: none; border-bottom: 1px solid var(--gold-muted); padding-bottom: 24px; }
    .home-pillar:last-child { border-bottom: none; }
    .home-why { padding: 56px 0; }
    .home-why h2 { font-size: 1.6rem; }
    .home-why-sub { font-size: 0.92rem; }
    .home-pillar { padding: 24px 16px; }
    .home-story { padding: 56px 0; }
    .home-story-image img { height: 300px; }
    .home-story-text h2 { font-size: 1.6rem; }
    .home-drop { padding: 56px 0; }
    .home-drop h2 { font-size: 1.8rem; }
    .home-drop-desc { font-size: 0.92rem; }
    .home-drop-details { flex-direction: column; gap: 6px; }
    .home-drop-dot { display: none; }

    /* Modal */
    .success-modal-card { padding: 40px 28px; }
    .success-modal-card h2 { font-size: 1.8rem; }
    .success-modal-card p { font-size: 0.85rem; }

    /* Scroll to top */
    .scroll-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }

    /* Exit intent */
    .exit-modal-card { padding: 40px 24px; }
    .exit-modal-card h2 { font-size: 1.6rem; }

    /* Cookie banner */
    .cookie-banner-inner { flex-direction: column; padding: 20px; gap: 16px; text-align: center; }
    .cookie-accept { width: 100%; }
}
