/* ============================================
   ASKSOMM — Global Styles
   Aesthetic: Refined luxury wine editorial
   Palette: Deep burgundy, warm cream, gold
   ============================================ */

:root {
    --burgundy: #5C1A1A;
    --burgundy-deep: #3D0E0E;
    --burgundy-light: #8B3232;
    --cream: #F5EFE0;
    --cream-dark: #EBE0C8;
    --gold: #C4A35A;
    --gold-light: #D4B878;
    --charcoal: #1A1410;
    --text-main: #2A1F18;
    --text-muted: #6B5144;
    --white: #FDFAF4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text-main);
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(245, 239, 224, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 163, 90, 0.2);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--burgundy);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--burgundy);
}

.nav-cta {
    background: var(--burgundy) !important;
    color: var(--cream) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    transition: background 0.2s ease !important;
}

.nav-cta:hover {
    background: var(--burgundy-deep) !important;
    color: var(--cream) !important;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.circle-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92, 26, 26, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.vine {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(196, 163, 90, 0.15), transparent);
    animation: vineSway 8s ease-in-out infinite;
}

.vine-1 {
    height: 400px;
    left: 8%;
    top: 10%;
    animation-delay: 0s;
}

.vine-2 {
    height: 300px;
    right: 12%;
    top: 30%;
    animation-delay: -3s;
}

@keyframes vineSway {
    0%, 100% { transform: rotate(-2deg); opacity: 0.5; }
    50% { transform: rotate(2deg); opacity: 1; }
}

.hero-content {
    animation: fadeUp 1s ease forwards;
}

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

.eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--burgundy-deep);
    margin-bottom: 1.5rem;
}

h1 em {
    font-style: italic;
    color: var(--burgundy);
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-block;
    background: var(--burgundy);
    color: var(--cream);
    text-decoration: none;
    padding: 0.9rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(92, 26, 26, 0.25);
}

.btn-ghost {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(107, 81, 68, 0.3);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.btn-ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.alexa-prompt {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

.alexa-ring {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #00CAFF;
    box-shadow: 0 0 12px rgba(0, 202, 255, 0.4);
    animation: alexaPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes alexaPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 202, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 202, 255, 0.7); }
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 1s ease 0.3s both;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(245,239,224,0.4));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(196, 163, 90, 0.3);
    border-radius: 4px;
    padding: 3rem;
    max-width: 360px;
    width: 100%;
    box-shadow: 
        0 4px 6px rgba(92, 26, 26, 0.05),
        0 20px 60px rgba(92, 26, 26, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.glass-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.glass-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.glass-wine {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--burgundy-deep);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.glass-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    background: var(--burgundy-deep);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.how-it-works h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 4rem;
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.step {
    padding: 2rem;
    border: 1px solid rgba(196, 163, 90, 0.15);
    border-radius: 2px;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(196, 163, 90, 0.3);
    transform: translateY(-4px);
}

.step-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, rgba(196,163,90,0.3), rgba(196,163,90,0.6), rgba(196,163,90,0.3));
    align-self: center;
    margin: 0 -1px;
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(196, 163, 90, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(245, 239, 224, 0.6);
    font-weight: 300;
}

.step-content p em {
    color: var(--gold-light);
    font-style: italic;
}

/* ============================================
   PAIRINGS
   ============================================ */

.pairings {
    padding: 8rem 2rem;
    background: var(--cream-dark);
    position: relative;
}

.pairings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196,163,90,0.4), transparent);
}

.pairings h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--burgundy-deep);
    line-height: 1.1;
    margin-bottom: 4rem;
}

.pairing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(196, 163, 90, 0.2);
    border: 1px solid rgba(196, 163, 90, 0.2);
}

.pairing-card {
    background: var(--cream-dark);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.25s ease;
    cursor: default;
}

.pairing-card:hover {
    background: var(--burgundy);
}

.pairing-card:hover .pairing-food,
.pairing-card:hover .pairing-arrow,
.pairing-card:hover .pairing-wine {
    color: var(--cream);
}

.pairing-food {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.pairing-arrow {
    font-size: 1rem;
    color: var(--gold);
    transition: color 0.25s ease;
}

.pairing-wine {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--burgundy-deep);
    line-height: 1.2;
    transition: color 0.25s ease;
}

/* ============================================
   GET THE SKILL
   ============================================ */

.get-skill {
    padding: 8rem 2rem;
    background: var(--cream);
    position: relative;
}

.skill-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--burgundy-deep);
    border-radius: 4px;
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
}

.skill-card::after {
    content: '🍷';
    position: absolute;
    bottom: -20px;
    right: 3rem;
    font-size: 12rem;
    opacity: 0.05;
    pointer-events: none;
}

.skill-card-left .section-label.light {
    color: var(--gold);
}

.skill-card-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.skill-card-left p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(245, 239, 224, 0.65);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.enable-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.enable-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(245, 239, 224, 0.7);
    line-height: 1.5;
}

.enable-step em {
    color: var(--gold-light);
    font-style: italic;
}

.enable-step strong {
    color: var(--cream);
    font-weight: 600;
}

.enable-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Waitlist Box */
.waitlist-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 2px;
    padding: 2.5rem;
    height: fit-content;
    align-self: center;
}

.waitlist-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.waitlist-form {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
}

.waitlist-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(196, 163, 90, 0.25);
    border-right: none;
    border-radius: 2px 0 0 2px;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.waitlist-form input::placeholder {
    color: rgba(245, 239, 224, 0.35);
}

.waitlist-form input:focus {
    border-color: rgba(196, 163, 90, 0.5);
}

.waitlist-form button {
    padding: 0.85rem 1.5rem;
    background: var(--gold);
    color: var(--burgundy-deep);
    border: none;
    border-radius: 0 2px 2px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.waitlist-form button:hover {
    background: var(--gold-light);
}

.waitlist-note {
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    min-height: 1.2rem;
    font-style: italic;
}

.waitlist-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(196, 163, 90, 0.15);
    padding-top: 1.5rem;
}

.wf-item {
    font-size: 0.8rem;
    color: rgba(245, 239, 224, 0.5);
    font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--charcoal);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196,163,90,0.3), transparent);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(245, 239, 224, 0.4);
    margin-bottom: 2rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 239, 224, 0.4);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(245, 239, 224, 0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
        text-align: center;
    }

    .eyebrow {
        justify-content: center;
    }

    .hero-sub {
        margin: 0 auto 2.5rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .alexa-prompt {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step-divider {
        width: 1px;
        height: 40px;
        margin: 0 auto;
        background: linear-gradient(to bottom, rgba(196,163,90,0.3), rgba(196,163,90,0.6), rgba(196,163,90,0.3));
    }

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

    .skill-card {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }
}

@media (max-width: 600px) {
    .pairing-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 3rem;
    }
}
