/* ============================================
   Prime Cultivations - Premium Cannabis Brand
   Color Palette: Dark/Gold/Emerald Luxury
   ============================================ */

:root {
    /* Core Colors */
    --black: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #181818;
    --dark: #0f0f0f;
    --dark-accent: #141a14;

    /* Gold Palette */
    --gold: #c9a84c;
    --gold-light: #d4b85e;
    --gold-dark: #a8893d;
    --gold-muted: rgba(201, 168, 76, 0.15);

    /* Emerald */
    --emerald: #1a3a2a;
    --emerald-light: #2a5a3a;

    /* Text Colors */
    --text-primary: #f5f0e8;
    --text-secondary: #a09a8e;
    --text-muted: #6a645c;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.4s ease;
    --transition-slow: 0.8s ease;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.age-verified {
    animation: pageReveal 0.6s ease-out;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 2px;
}

*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
    padding: 24px;
}

.age-gate.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-gate-content {
    text-align: center;
    padding: 60px 40px;
    max-width: 440px;
    width: 100%;
}

.age-gate-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.age-gate-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 32px;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
}

.age-gate-question {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 36px;
    font-weight: 300;
}

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

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

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

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-gold:hover::before {
    width: 300px;
    height: 300px;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4), 0 0 40px rgba(201, 168, 76, 0.2);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-gold:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-outline:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-brand:hover {
    color: var(--gold-light);
}

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-base);
}

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

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

.nav-cta {
    color: var(--gold) !important;
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 8px 20px !important;
}

.nav-cta:hover {
    background: rgba(201, 168, 76, 0.1);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(26, 58, 42, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(26, 58, 42, 0.3) 0%, transparent 45%),
        radial-gradient(circle at 40% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 35%);
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.1) 40%,
        rgba(10, 10, 10, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
}

.hero-pre-title {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 28px;
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.5);
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.7);
}

.hero-divider::before {
    left: -10px;
}

.hero-divider::after {
    right: -10px;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 55ch;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Hero fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }
.fade-in:nth-child(5) { animation-delay: 1.0s; }
.fade-in:nth-child(6) { animation-delay: 1.2s; }

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

/* ============================================
   Sections - Shared
   ============================================ */

.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background: var(--black);
}

.section-accent {
    background: var(--black-light);
    position: relative;
}

.section-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.2);
}

.section-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
    position: relative;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}

.gold-divider::before {
    left: -8px;
}

.gold-divider::after {
    right: -8px;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   About Section
   ============================================ */

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

.about-lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 65ch;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    max-width: 65ch;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.feature-label {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    line-height: 1.4;
}

.feature-highlight {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: var(--gold-muted);
}

.feature-highlight .feature-label {
    color: var(--gold);
    font-weight: 500;
}

.feature-sublabel {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   Product Section
   ============================================ */

.product-philosophy {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.product-philosophy h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.product-philosophy p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

.product-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.product-card {
    padding: 36px 28px;
    border: 1px solid rgba(245, 240, 232, 0.06);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: var(--gold-muted);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(201, 168, 76, 0.1);
}

.product-card p {
    margin-top: auto;
}

.product-card-icon {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.product-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Product Launch Badge */
.product-launch {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.launch-badge {
    display: inline-block;
    padding: 24px 56px;
    border: 2px solid var(--gold);
    margin-bottom: 24px;
    position: relative;
    background: rgba(201, 168, 76, 0.03);
    box-shadow:
        0 0 24px rgba(201, 168, 76, 0.2),
        inset 0 0 32px rgba(201, 168, 76, 0.05);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow:
            0 0 24px rgba(201, 168, 76, 0.2),
            inset 0 0 32px rgba(201, 168, 76, 0.05);
    }
    50% {
        box-shadow:
            0 0 40px rgba(201, 168, 76, 0.4),
            inset 0 0 48px rgba(201, 168, 76, 0.08);
    }
}

.launch-badge::before,
.launch-badge::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.8);
}

.launch-badge::before {
    top: -4px;
    left: -4px;
}

.launch-badge::after {
    bottom: -4px;
    right: -4px;
}

.launch-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.launch-date {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.launch-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 540px;
    margin: 0 auto 28px;
}

/* ============================================
   Retailers / Wholesale Section
   ============================================ */

.retailers-intro {
    max-width: 700px;
    margin: 0 auto 56px;
    text-align: center;
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 64px;
}

.retailer-benefit {
    padding: 36px;
    border-left: 2px solid var(--gold);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-base);
    height: 100%;
}

.retailer-benefit:hover {
    background: rgba(201, 168, 76, 0.05);
    border-left-color: var(--gold-light);
    transform: translateX(4px);
}

.retailer-benefit h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.retailer-benefit p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.retailers-cta {
    text-align: center;
}

.retailers-cta > p:first-child {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.retailers-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   Team Section
   ============================================ */

.team-intro {
    max-width: 700px;
    margin: 0 auto 56px;
    text-align: center;
}

.team-intro p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    padding: 48px 32px;
    border: 1px solid rgba(245, 240, 232, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.03);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.team-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    background: rgba(201, 168, 76, 0.05);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2), inset 0 0 20px rgba(201, 168, 76, 0.05);
    transition: all var(--transition-base);
}

.team-card:hover .team-avatar {
    box-shadow: 0 0 32px rgba(201, 168, 76, 0.4), inset 0 0 24px rgba(201, 168, 76, 0.1);
    transform: scale(1.05);
}

.team-bio {
    margin-top: auto;
}

.team-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-item a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    word-break: break-word;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    word-break: break-word;
}

.contact-follow {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.social-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary) !important;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--gold) !important;
}

.social-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

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

.footer {
    padding: 60px 0 40px;
    background: var(--black);
    border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--text-secondary);
}

.footer-divider {
    height: 1px;
    background: rgba(245, 240, 232, 0.06);
    margin-bottom: 28px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-portal {
    order: 2;
}

.footer-portal a {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

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

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        gap: 48px;
    }

    .product-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .retailers-grid {
        gap: 24px;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 6rem);
    }

    .section-title {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    /* Mobile menu overlay */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 300px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .nav-links.open::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 28px;
        border-left: 1px solid rgba(201, 168, 76, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 12px 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all var(--transition-base);
        display: block;
    }

    .nav-links.open a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.open li:nth-child(1) a { transition-delay: 0.05s; }
    .nav-links.open li:nth-child(2) a { transition-delay: 0.1s; }
    .nav-links.open li:nth-child(3) a { transition-delay: 0.15s; }
    .nav-links.open li:nth-child(4) a { transition-delay: 0.2s; }
    .nav-links.open li:nth-child(5) a { transition-delay: 0.25s; }

    .nav-cta {
        padding: 14px 28px !important;
        text-align: center;
        display: block;
        margin-top: 8px;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature {
        flex: 1;
        min-width: 140px;
    }

    /* Product */
    .product-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Retailers */
    .retailers-grid {
        grid-template-columns: 1fr;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-portal {
        order: unset;
    }

    .footer-copyright {
        order: unset;
        width: auto;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-pre-title {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 32px;
    }

    .about-features {
        flex-direction: column;
    }

    .feature {
        min-width: unset;
    }

    .feature-number {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .about-lead {
        font-size: 1.05rem;
    }

    .age-gate-content {
        padding: 40px 24px;
    }

    .age-gate-brand {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .age-gate-buttons {
        width: 100%;
    }

    .age-gate-buttons .btn {
        flex: 1;
        min-width: 120px;
    }

    .launch-badge {
        padding: 20px 40px;
    }

    .launch-date {
        font-size: 1.8rem;
    }

    .product-card {
        padding: 32px 24px;
    }

    .product-card h4 {
        font-size: 1.05rem;
    }

    .retailer-benefit {
        padding: 28px 24px;
    }

    .retailer-benefit h4 {
        font-size: 1.1rem;
    }

    .team-card {
        padding: 40px 24px;
    }

    .team-card h4 {
        font-size: 1.15rem;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.3rem;
    }

    .nav-links {
        padding: 100px 32px 40px;
    }

    .product-philosophy h3 {
        font-size: 1.4rem;
    }

    .retailers-cta > p:first-child {
        font-size: 1.15rem;
    }

    .contact-item h4 {
        font-size: 0.95rem;
    }

    .footer-top {
        gap: 32px;
    }
}

/* ============================================
   Utility: Selection Color
   ============================================ */

::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--text-primary);
}

/* ============================================
   Utility: Scrollbar
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 168, 76, 0.5);
}

/* ============================================
   Accessibility: Reduced Motion
   ============================================ */

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