/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --navy: #023E77;
    --navy-light: #0356a8;
    --text-dark: #1a1a1a;
    --text-medium: #555;
    --text-light: #888;
    --bg-light: #f8f9fa;
    --border: #e8e8e8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: white;
    overflow-x: hidden;
}

/* Selection styling */
::selection {
    background: rgba(2, 62, 119, 0.15);
    color: var(--text-dark);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--navy);
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    padding: 140px 40px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 56px 52px 48px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 12px 48px rgba(2, 62, 119, 0.08);
    animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-label::before,
.hero-label::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--navy);
    opacity: 0.4;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 0;
    letter-spacing: -1.5px;
}

.hero-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--navy-light));
    margin: 24px auto;
    border-radius: 2px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-medium);
    font-weight: 400;
    max-width: 420px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: var(--navy);
    color: white;
    border: 2px solid var(--navy);
}

.hero-btn.primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 62, 119, 0.25);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.hero-btn.secondary:hover {
    border-color: var(--text-dark);
    background: rgba(0, 0, 0, 0.02);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-medium);
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--text-medium), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--navy);
    animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* About Section */
.about {
    padding: 120px 40px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-heading {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.body-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.body-text.large {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 2px;
}

.feature-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image:hover .feature-img {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(2, 62, 119, 0.15);
}

/* Stats Section */
.stats {
    padding: 80px 40px;
    background: var(--bg-light);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(2, 62, 119, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -1px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-medium);
}

/* Bottles Section */
.bottles {
    padding: 120px 40px;
}

.bottles-header {
    max-width: 600px;
    margin: 0 auto 80px;
    text-align: center;
}

.bottles-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.bottle-item {
    text-align: center;
    transition: transform 0.4s ease;
}

.bottle-item:hover {
    transform: translateY(-10px);
}

.bottle-image-wrapper {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(2, 62, 119, 0.03) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.bottle-item:hover .bottle-image-wrapper {
    box-shadow: 0 20px 50px rgba(2, 62, 119, 0.12);
    background: linear-gradient(180deg, #fff 0%, rgba(2, 62, 119, 0.06) 100%);
}

.bottle-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.bottle-item:hover .bottle-img {
    transform: scale(1.08) translateY(-5px);
}

.bottle-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.bottle-item:hover .bottle-name {
    color: var(--navy);
}

.bottle-desc {
    font-size: 12px;
    color: var(--text-medium);
    font-style: italic;
}

/* Source Section */
.source {
    padding: 120px 40px;
    background: var(--bg-light);
}

.source-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.source-item {
    position: relative;
    transition: transform 0.4s ease;
}

.source-item:hover {
    transform: translateY(-5px);
}

.source-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.source-item:hover .source-img {
    box-shadow: 0 20px 60px rgba(2, 62, 119, 0.15);
}

.source-text {
    text-align: center;
}

.source-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.source-desc {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Memberships Section */
.memberships {
    padding: 120px 40px;
}

.memberships-header {
    max-width: 600px;
    margin: 0 auto 80px;
    text-align: center;
}

.membership-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.membership-card {
    border: 1px solid var(--border);
    padding: 48px 32px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    background: white;
}

.membership-card:hover {
    border-color: var(--navy);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(2, 62, 119, 0.1);
}

.membership-card.featured {
    border-color: var(--navy);
    border-width: 2px;
    background: linear-gradient(180deg, rgba(2, 62, 119, 0.02) 0%, white 100%);
    box-shadow: 0 10px 40px rgba(2, 62, 119, 0.08);
}

.membership-card.featured:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 60px rgba(2, 62, 119, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: linear-gradient(135deg, var(--navy) 0%, #0356a8 100%);
    color: white;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(2, 62, 119, 0.3);
}

.membership-header {
    margin-bottom: 32px;
}

.membership-name {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.membership-desc {
    font-size: 13px;
    color: var(--text-medium);
}

.membership-price {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.price-label {
    font-size: 11px;
    color: var(--text-medium);
    letter-spacing: 0.5px;
}

.membership-features {
    list-style: none;
    margin-bottom: 40px;
}

.membership-features li {
    font-size: 13px;
    color: var(--text-medium);
    padding: 14px 0;
    padding-left: 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: color 0.3s ease;
}

.membership-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--navy);
    border-radius: 50%;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.membership-card:hover .membership-features li::before {
    opacity: 1;
}

.membership-features li:first-child {
    padding-top: 0;
}

.membership-features li:first-child::before {
    top: 7px;
    transform: none;
}

.membership-btn {
    width: 100%;
    padding: 16px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--text-dark);
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.membership-btn:hover {
    background: var(--text-dark);
    color: white;
}

.membership-btn.primary {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.membership-btn.primary:hover {
    background: #012d5a;
    border-color: #012d5a;
}

/* Shopify Buy Button overrides */
[id^="product-component-"] {
    width: 100%;
}

[id^="product-component-"] iframe {
    width: 100% !important;
    max-width: 100% !important;
}

.shopify-buy-frame {
    width: 100% !important;
    max-width: 100% !important;
}

.shopify-buy__product {
    max-width: 100% !important;
}

/* Why Section */
.why {
    padding: 140px 40px;
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(2, 62, 119, 0.04) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(2, 62, 119, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Contact Section */
.contact {
    padding: 120px 40px;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-details {
    margin-top: 40px;
}

.contact-link {
    font-size: 18px;
    color: var(--navy);
    text-decoration: none;
    padding: 16px 32px;
    border: 2px solid var(--navy);
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(2, 62, 119, 0.2);
}

/* Footer */
.footer {
    padding: 80px 40px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bottles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .source-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-content {
        padding: 48px 36px 40px;
        margin: 0 20px;
    }

    .hero-text {
        font-size: 15px;
    }

    .section-heading {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .nav-content {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        padding: 110px 16px 80px;
    }

    .hero-content {
        padding: 36px 24px 32px;
        margin: 0;
        border-radius: 20px;
    }

    .hero-label {
        font-size: 10px;
    }

    .hero-label::before,
    .hero-label::after {
        width: 12px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-divider {
        width: 40px;
        height: 2px;
        margin: 20px auto;
    }

    .hero-text {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        padding: 14px 24px;
        width: 100%;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 24px;
    }

    .scroll-line {
        height: 30px;
    }

    .bottles-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bottle-image-wrapper {
        height: 320px;
    }

    .about,
    .memberships,
    .why,
    .contact,
    .bottles,
    .source {
        padding: 80px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
