/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hidden {
    display: none !important;
}

/* Premium Brand Colors */
:root {
    --primary-gold: #d4af37;
    --secondary-gold: #b8860b;
    --accent-gold: #ffd700;
    --dark-black: #000000;
    --charcoal: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #666666;
    --light-gray: #cccccc;
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-darker: rgba(0, 0, 0, 0.85);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.5rem, 6vw, 4rem); }
h3 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.4rem, 3vw, 1.8rem); }

p {
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-gray);
}

/* Age Verification Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate-content {
    background: var(--charcoal);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.age-gate-logo {
    margin-bottom: 2rem;
}

.age-gate-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.age-gate-logo h1 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin: 0;
}

.age-gate-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.age-gate-text p {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.age-verification {
    margin: 2rem 0;
}

.age-verification label {
    display: block;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.age-verification input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--dark-gray);
    border-radius: 8px;
    background: var(--dark-black);
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.age-verification input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.btn-enter, .btn-leave {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-enter {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--dark-black);
}

.btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-leave {
    background: transparent;
    color: var(--light-gray);
    border: 2px solid var(--dark-gray);
}

.btn-leave:hover {
    border-color: var(--light-gray);
    color: var(--white);
}

.age-gate-disclaimer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-gray);
}

.age-gate-disclaimer p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.4;
    margin: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Video Section */
.hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--light-gray);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-premium {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--dark-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
}

.scroll-arrow {
    color: var(--primary-gold);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Products Section */
.products-section {
    background: var(--dark-black);
    padding: 8rem 0;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
    min-height: 80vh;
}

.product-showcase.reverse {
    grid-template-columns: 1fr 1fr;
}

.product-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 20px;
}

.product-bottle {
    max-width: 80%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    transition: transform 0.5s ease;
}

.product-showcase:hover .product-bottle {
    transform: scale(1.05) rotateY(5deg);
}

.product-info {
    padding: 2rem;
}

.product-content {
    max-width: 500px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.product-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--dark-gray);
}

.spec-label {
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Story Section */
.story-section {
    background: var(--charcoal);
}

.story-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.story-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-darker);
    z-index: 2;
}

.story-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.story-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-gold);
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.story-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--light-gray);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.story-details {
    padding: 8rem 0;
    background: var(--dark-black);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.story-card {
    background: var(--charcoal);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--dark-gray);
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.story-card-image {
    height: 250px;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-card-image img {
    transform: scale(1.1);
}

.story-card-content {
    padding: 2rem;
}

.story-card-content h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.story-card-content p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Professional Section */
.professional-section {
    background: var(--charcoal);
    padding: 8rem 0;
}

.professional-hero {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 900;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.professional-benefits {
    margin-bottom: 8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--dark-black);
    border: 2px solid var(--dark-gray);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.benefit-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.benefit-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Serving Section */
.serving-section {
    background: var(--dark-black);
    padding: 6rem 0;
    border-top: 1px solid var(--dark-gray);
}

.serving-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 4rem;
}

.serving-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
}

.serving-category {
    background: var(--charcoal);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid var(--dark-gray);
}

.serving-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-gold);
}

.serving-bottle {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.serving-header h4 {
    color: var(--white);
    font-size: 1.8rem;
}

.serving-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.serving-method {
    background: var(--dark-black);
    border: 1px solid var(--dark-gray);
    border-radius: 10px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.serving-method:hover {
    border-color: var(--primary-gold);
}

.serving-method h5 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.serving-method p {
    color: var(--light-gray);
    margin: 0;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    background: var(--dark-black);
    padding: 8rem 0;
}

.contact-hero {
    text-align: center;
    margin-bottom: 6rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 900;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-showcase {
    background: var(--charcoal);
    padding: 6rem 0;
    border-radius: 20px;
    margin: 0 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--dark-black);
    border: 2px solid var(--dark-gray);
    border-radius: 15px;
    padding: 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.social-platform:hover::before {
    left: 100%;
}

.social-platform:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.social-visual {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--dark-black);
}

.social-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.social-content p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.social-follow {
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--charcoal);
    border-top: 1px solid var(--dark-gray);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--light-gray);
    font-style: italic;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.8);
        padding: 2rem 0;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .product-showcase,
    .product-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .serving-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .social-platform {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .product-image-container {
        height: 400px;
    }

    .benefit-card,
    .serving-category {
        padding: 2rem;
    }

    .age-gate-content {
        padding: 2rem;
        margin: 1rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .social-showcase {
        margin: 0 1rem;
        padding: 4rem 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .product-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .benefits-grid,
    .serving-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card,
    .serving-category {
        padding: 1.5rem;
    }

    .social-platform {
        padding: 1.5rem;
    }
}