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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 2px;
}

.logo p {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #34495e;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.hero-image {
    text-align: center;
}

.bottle-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.landscape-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.story-intro {
    font-size: 20px;
    color: #5d6d7e;
    margin-bottom: 40px;
    font-style: italic;
}

.story-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.detail p {
    color: #5d6d7e;
    line-height: 1.6;
}

/* Product Section */
.product-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.product-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-tagline {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 40px;
    font-style: italic;
}

.product-specs {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.spec {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

.spec:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #2c3e50;
}

.spec-value {
    color: #5d6d7e;
}

.value-proposition h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-proposition p {
    color: #5d6d7e;
    line-height: 1.7;
}

.bottle-showcase {
    text-align: center;
}

.product-bottle {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.1));
    margin-bottom: 20px;
}

.bottle-details p {
    color: #5d6d7e;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-content > p {
    font-size: 18px;
    margin-bottom: 60px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-detail p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.newsletter h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.email-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
}

.subscribe-btn {
    background: #2c3e50;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: #34495e;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-links p {
    opacity: 0.7;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .story-content,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
