/* Landing Page V2 -- Immersive Dark Premium */
/* No white sections. Full dark cocktail atmosphere. */

:root {
    --v2-dark: #0a0a0a;
    --v2-dark-warm: #120e0b;
    --v2-dark-card: #161210;
    --v2-dark-section: #0f0c0a;
    --v2-cranberry: #8b2252;
    --v2-cranberry-deep: #5c1639;
    --v2-cranberry-glow: rgba(139,34,82,0.3);
    --v2-gold: #d4a574;
    --v2-gold-bright: #e8c97a;
    --v2-gold-dim: rgba(212,165,116,0.6);
    --v2-text: rgba(255,255,255,0.92);
    --v2-text-dim: rgba(255,255,255,0.55);
    --v2-text-muted: rgba(255,255,255,0.35);
    --v2-border: rgba(255,255,255,0.06);
    --v2-glow: 0 0 80px rgba(212,165,116,0.08);
}

/* Force dark background on body for this page */
.landing-v2-page { background: var(--v2-dark); }
.landing-v2-page .site-header { background: transparent !important; position: absolute; width: 100%; z-index: 100; }
.landing-v2-page .site-footer { background: var(--v2-dark) !important; color: var(--v2-text-dim); }

/* ============================================
   HERO: Full-screen video background
   ============================================ */
.v2-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--v2-dark);
    color: #fff;
}
.v2-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.v2-hero__media video,
.v2-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    will-change: transform;
}
.v2-hero__media video {
    animation: v2HeroBreath 25s ease-in-out infinite alternate;
}
@keyframes v2HeroBreath {
    0% { transform: scale(1.08); }
    100% { transform: scale(1.15); }
}

/* Multi-layer overlay for depth */
.v2-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(10,10,10,0.3) 0%,
            rgba(92,22,57,0.25) 30%,
            rgba(10,10,10,0.15) 50%,
            rgba(10,10,10,0.7) 85%,
            rgba(10,10,10,0.95) 100%
        );
}
/* Vignette effect */
.v2-hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.5) 100%);
}

.v2-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 160px 24px 140px;
    max-width: 780px;
    margin: 0 auto;
    will-change: transform, opacity;
}
.v2-hero__eyebrow {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--v2-gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: v2FadeUp 1.2s 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
.v2-hero__title {
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.0;
    margin: 0 0 32px;
    color: #fff;
    opacity: 0;
    animation: v2FadeUp 1.2s 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
.v2-hero__subtitle {
    font-family: var(--font-body, 'PT Serif', Georgia, serif);
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0 auto 48px;
    max-width: 500px;
    opacity: 0;
    animation: v2FadeUp 1.2s 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
.v2-hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: v2FadeUp 1.2s 1.0s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* Scroll indicator */
.v2-hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: v2FadeUp 1.2s 1.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
.v2-hero__scroll span {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, var(--v2-gold-dim));
    animation: v2Pulse 2.5s ease-in-out infinite;
}
@keyframes v2Pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

/* ============================================
   BUTTONS -- Gold premium
   ============================================ */
.v2-btn {
    display: inline-block;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 48px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}
.v2-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.v2-btn:hover::after { opacity: 1; }

.v2-btn--gold {
    background: var(--v2-gold);
    color: var(--v2-dark);
}
.v2-btn--gold:hover {
    background: var(--v2-gold-bright);
    color: var(--v2-dark);
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(212,165,116,0.4);
    transform: translateY(-2px);
}
.v2-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}
.v2-btn--ghost:hover {
    border-color: var(--v2-gold);
    color: var(--v2-gold);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ============================================
   STORY: dark editorial, no white
   ============================================ */
.v2-story {
    padding: 120px 0;
    background: var(--v2-dark-warm);
    position: relative;
    overflow: hidden;
}
/* Ambient glow */
.v2-story::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--v2-cranberry-glow), transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}
.v2-story__inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.v2-story__quote {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 140px;
    color: var(--v2-cranberry);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}
.v2-story p {
    font-family: var(--font-body, 'PT Serif', Georgia, serif);
    font-size: 1.25rem;
    line-height: 2;
    color: var(--v2-text-dim);
    margin: 0 0 2em;
    font-style: italic;
}
.v2-story p:last-child { margin-bottom: 0; }

/* ============================================
   RECIPE: cinematic dark card
   ============================================ */
.v2-recipe {
    padding: 120px 0;
    background: var(--v2-dark);
    position: relative;
}
/* Subtle top/bottom gradient lines */
.v2-recipe::before,
.v2-recipe::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--v2-gold-dim), transparent);
}
.v2-recipe::before { top: 0; }
.v2-recipe::after { bottom: 0; }

.v2-recipe__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}
.v2-recipe__image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.v2-recipe__image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    transition: transform 8s ease;
    /* Remove white background from product shots */
    mix-blend-mode: lighten;
    background: var(--v2-dark);
}
.v2-recipe__image:hover img {
    transform: scale(1.03);
}
/* Image glow */
.v2-recipe__image::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 60%;
    height: 80px;
    background: radial-gradient(ellipse, rgba(212,165,116,0.12), transparent);
    pointer-events: none;
}

.v2-recipe__eyebrow {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--v2-gold);
    margin-bottom: 16px;
}
.v2-recipe__details h2 {
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 38px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 36px;
    line-height: 1.15;
}
.v2-recipe__ingredients {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.v2-recipe__ingredients li {
    font-family: var(--font-body, 'PT Serif', Georgia, serif);
    font-size: 16px;
    color: var(--v2-text);
    padding: 14px 0;
    border-bottom: 1px solid var(--v2-border);
    position: relative;
    padding-left: 16px;
}
.v2-recipe__ingredients li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--v2-gold);
    border-radius: 50%;
}
.v2-recipe__ingredients li:last-child { border-bottom: none; }

.v2-recipe__instructions {
    font-family: var(--font-body, 'PT Serif', Georgia, serif);
    font-size: 15px;
    color: var(--v2-text-dim);
    line-height: 1.9;
    margin: 0 0 20px;
}
.v2-recipe__garnish {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-gold);
    opacity: 0.6;
}

/* ============================================
   SPIRIT: dark with parallax bottle
   ============================================ */
.v2-spirit {
    padding: 140px 0;
    background: var(--v2-dark-section);
    position: relative;
    overflow: hidden;
}
/* Cranberry ambient glow behind bottle */
.v2-spirit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--v2-cranberry-glow), transparent 70%);
    opacity: 0.25;
    pointer-events: none;
}
.v2-spirit__layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}
.v2-spirit__image {
    text-align: center;
    position: relative;
    z-index: 1;
}
.v2-spirit__image img {
    max-height: 560px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
    will-change: transform;
    transition: transform 0.15s linear;
}
.v2-spirit__eyebrow {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--v2-cranberry-light, #c94c7c);
    margin-bottom: 12px;
}
.v2-spirit__content h2 {
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 40px;
    line-height: 1.2;
}
.v2-spirit__facts {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}
.v2-spirit__fact {
    padding-left: 20px;
    border-left: 2px solid var(--v2-cranberry);
}
.v2-spirit__fact h3 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--v2-text);
    margin: 0 0 6px;
}
.v2-spirit__fact p {
    font-family: var(--font-body, 'PT Serif', Georgia, serif);
    font-size: 15px;
    color: var(--v2-text-dim);
    line-height: 1.7;
    margin: 0;
}
.v2-spirit__scores {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--v2-border);
}
.v2-spirit__score {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.v2-spirit__score-num {
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--v2-gold);
    line-height: 1;
}
.v2-spirit__score-src {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--v2-text-muted);
}

/* ============================================
   CERTIFICATIONS: subtle trust bar
   ============================================ */
.v2-certs {
    background: var(--v2-dark);
    border-top: 1px solid var(--v2-border);
    border-bottom: 1px solid var(--v2-border);
    padding: 20px;
    text-align: center;
}
.v2-certs__row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 36px;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--v2-text-muted);
}
.v2-certs__sep {
    color: rgba(255,255,255,0.1);
}

/* ============================================
   ORDER CTA: cinematic gradient banner
   ============================================ */
.v2-order {
    padding: 120px 0;
    background:
        linear-gradient(135deg,
            var(--v2-dark) 0%,
            var(--v2-cranberry-deep) 40%,
            var(--v2-cranberry) 60%,
            var(--v2-dark-warm) 100%
        );
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
/* Particle-like ambient dots */
.v2-order::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(212,165,116,0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(212,165,116,0.1), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(201,76,124,0.08), transparent),
        radial-gradient(3px 3px at 40% 60%, rgba(212,165,116,0.12), transparent);
    background-size: 200px 200px;
    animation: v2Drift 30s linear infinite;
    pointer-events: none;
}
@keyframes v2Drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -200px); }
}
.v2-order .container {
    position: relative;
    z-index: 1;
}
.v2-order h2 {
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    margin: 0 0 14px;
    color: #fff;
}
.v2-order > .container > p {
    font-family: var(--font-body, 'PT Serif', Georgia, serif);
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 44px;
}
.v2-order .v2-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
}

/* ============================================
   EMAIL CAPTURE
   ============================================ */
.v2-email {
    padding: 80px 0;
    background: var(--v2-dark);
    text-align: center;
    color: #fff;
}
.v2-email h3 {
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px;
}
.v2-email p {
    font-family: var(--font-body, 'PT Serif', Georgia, serif);
    font-size: 15px;
    color: var(--v2-text-dim);
    margin: 0 0 28px;
}
.v2-email .newsletter-widget__input {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: #fff;
}
.v2-email .newsletter-widget__input::placeholder {
    color: var(--v2-text-muted);
}
.v2-email .newsletter-widget__btn {
    background: var(--v2-gold);
    color: var(--v2-dark);
}
.v2-email .newsletter-widget__btn:hover {
    background: var(--v2-gold-bright);
}

/* ============================================
   FAQ -- dark
   ============================================ */
.v2-faq-wrap .faq-section {
    background: var(--v2-dark-warm) !important;
    color: var(--v2-text) !important;
}
.v2-faq-wrap .faq-section .faq-question {
    color: var(--v2-text) !important;
    border-bottom-color: var(--v2-border) !important;
}
.v2-faq-wrap .faq-section .faq-answer {
    color: var(--v2-text-dim) !important;
}
.v2-faq-wrap .faq-section h2 {
    color: #fff !important;
}

/* ============================================
   TRUST FOOTER: dark
   ============================================ */
.v2-trust {
    padding: 48px 0;
    background: var(--v2-dark);
    border-top: 1px solid var(--v2-border);
}
.v2-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.v2-trust__item {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 12px;
    color: var(--v2-text-muted);
    line-height: 1.5;
}
.v2-trust__item strong {
    display: block;
    font-size: 13px;
    color: var(--v2-text-dim);
    margin-bottom: 4px;
}
.v2-trust__item a {
    color: var(--v2-gold);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.v2-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.16,1,0.3,1),
                transform 1.2s cubic-bezier(0.16,1,0.3,1);
    will-change: opacity, transform;
}
.v2-reveal.v2-revealed {
    opacity: 1;
    transform: translateY(0);
}
.v2-reveal--left {
    transform: translateX(-60px) translateY(0);
}
.v2-reveal--left.v2-revealed {
    transform: translateX(0) translateY(0);
}
.v2-reveal--right {
    transform: translateX(60px) translateY(0);
}
.v2-reveal--right.v2-revealed {
    transform: translateX(0) translateY(0);
}
.v2-reveal--scale {
    transform: scale(0.92);
    opacity: 0;
}
.v2-reveal--scale.v2-revealed {
    transform: scale(1);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .v2-reveal { opacity: 1; transform: none; transition: none; }
    .v2-hero__media video { animation: none; transform: none; }
    .v2-hero__eyebrow, .v2-hero__title, .v2-hero__subtitle, .v2-hero__ctas,
    .v2-hero__scroll { opacity: 1; animation: none; }
}

/* ============================================
   BUBBLES: fizzy sparkling effect
   ============================================ */
.v2-bubbles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.v2-bubbles span {
    position: absolute;
    bottom: -20px;
    width: var(--sz, 6px);
    height: var(--sz, 6px);
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), rgba(255,255,255,0.06));
    border-radius: 50%;
    animation: v2Rise var(--dur, 8s) var(--dly, 0s) ease-in infinite;
    opacity: 0;
}
@keyframes v2Rise {
    0%   { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
    10%  { opacity: 0.7; }
    50%  { opacity: 0.4; transform: translateY(-45vh) translateX(var(--drift, 15px)) scale(0.9); }
    100% { opacity: 0; transform: translateY(-95vh) translateX(var(--drift2, -10px)) scale(0.6); }
}

/* Bubbles in story section -- subtle */
.v2-story .v2-bubbles span {
    background: radial-gradient(circle at 30% 30%, rgba(212,165,116,0.2), rgba(212,165,116,0.04));
}

/* Bubbles in order section */
.v2-order .v2-bubbles span {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
}

@media (prefers-reduced-motion: reduce) {
    .v2-bubbles { display: none; }
}

/* ============================================
   HEADER: transparent overlay on dark page
   ============================================ */
.landing-v2-page .site-header .nav-main a,
.landing-v2-page .site-header .nav-main span {
    color: rgba(255,255,255,0.85) !important;
}
.landing-v2-page .site-header .nav-main a:hover {
    color: var(--v2-gold) !important;
}

/* ============================================
   CHECKOUT WIDGET: dark-theme overrides
   ============================================ */
.v2-order #pickup-app {
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .v2-hero { min-height: 90vh; }
    .v2-hero__content { padding: 120px 20px 100px; }
    .v2-hero__scroll { display: none; }

    .v2-story { padding: 72px 0; }
    .v2-story__quote { font-size: 90px; top: -30px; }
    .v2-story p { font-size: 1.1rem; }

    .v2-recipe { padding: 72px 0; }
    .v2-recipe__card { grid-template-columns: 1fr; gap: 36px; }

    .v2-spirit { padding: 72px 0; }
    .v2-spirit__layout { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .v2-spirit__image { order: -1; }
    .v2-spirit__image img { max-height: 340px; }
    .v2-spirit__fact { border-left: none; padding-left: 0; border-top: 2px solid var(--v2-cranberry); padding-top: 16px; }
    .v2-spirit__scores { justify-content: center; }

    .v2-trust__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .v2-order { padding: 72px 0; }
}
