@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-main: #07090f;
    --bg-secondary: #10141d;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #e2e8f0;
    --glass-bg: rgba(16, 20, 29, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

button {
    font: inherit;
}

.container {
    width: min(1200px, 100% - 3rem);
    margin-inline: auto;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.25rem;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.brand-mark {
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 0.15em;
}

.brand-sub {
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-nav a {
    position: relative;
    padding-block: 0.25rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease, left 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero {
    position: relative;
    padding-block: 8rem 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(7, 9, 15, 0.4), rgba(7, 9, 15, 0.95)), url("../images/_0110008.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 400;
}

.hero-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 35rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
}

.btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.meta-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-bottle {
    width: 320px;
    height: 550px;
    border-radius: 4px;
    background-image: url("../images/DSC03433 copy.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    position: relative;
}

.hero-badge {
    position: absolute;
    right: -2rem;
    bottom: 2rem;
    padding: 1.25rem;
    background: rgba(20, 25, 35, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.hero-badge strong {
    display: block;
    margin-top: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
}

/* General Sections */
.section {
    padding-block: 8rem;
    position: relative;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 40rem;
    margin-inline: auto;
    font-weight: 300;
}

/* Products Layout */
.products {
    background: var(--bg-secondary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.product-card {
    padding: 3rem;
    background: var(--bg-main);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.15);
}

.product-media {
    height: 400px;
    margin-bottom: 2rem;
    background-position: center;
    background-size: cover;
    filter: brightness(0.9);
    transition: filter 0.4s ease;
}

.product-card:hover .product-media {
    filter: brightness(1.1);
}

.product-500ml {
    background-image: url("../images/DSC03077 copy.jpg");
}

.product-750ml {
    background-image: url("../images/DSC03162 copy.jpg");
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.product-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.product-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.product-list li {
    display: flex;
    align-items: center;
}

.product-list li::before {
    content: "—";
    color: rgba(255,255,255,0.4);
    margin-right: 1rem;
}

/* Story Layout */
.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.story-media {
    position: relative;
}

.story-image-main {
    height: 500px;
    background-image: url("../images/DSC03560 copy.jpg");
    background-position: center;
    background-size: cover;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.story-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    max-width: 300px;
}

.card-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

/* Benefits */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Sustainability */
.sustainability {
    background: var(--bg-secondary);
}

.sustainability-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.sustainability h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.sustainability p {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.sustainability-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    padding: 1.5rem;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.sustainability-image {
    height: 600px;
    background-image: url("../images/DSC03278 copy.jpg");
    background-position: center;
    background-size: cover;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* Contact */
.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form {
    padding: 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
}

.field {
    margin-bottom: 1.5rem;
}

.field label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.full-width {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-muted);
    font-weight: 300;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    padding: 1.5rem;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-value {
    color: #ffffff;
}

/* Footer */
.site-footer {
    padding-block: 4rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-secondary);
    text-align: center;
}

.footer-inner {
    max-width: 600px;
    margin-inline: auto;
}

.footer-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner, .story-inner, .sustainability-inner, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-media {
        order: -1;
    }

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

@media (max-width: 768px) {
    .section {
        padding-block: 5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .main-nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
    }
    .nav-toggle span {
        width: 100%;
        height: 2px;
        background: #fff;
        margin-bottom: 4px;
    }
}
