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

:root {
    --bg-primary: #FAFAFA;
    --bg-secondary: #F5F5F5;
    --bg-card: #F7F3F0;
    --text-primary: #2C2C2C;
    --text-secondary: #5a5550;
    --text-muted: #7a7570;
    --accent-primary: #A8B5A0;
    --accent-secondary: #E8A598;
    --accent-tertiary: #4A5D23;
    --border: #e0ddd8;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 100px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
}

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

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* IMPROVED TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
}

h1 { 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h3 { 
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

h4 { 
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-weight: 400;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-secondary);
}

.small {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--accent-tertiary);
}

/* IMPROVED LAYOUT GRID */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

section {
    padding: var(--spacing-3xl) 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    section { 
        padding: var(--spacing-2xl) 0; 
    }
}

/* GLASSMORPHISM COMPONENTS */
.glass {
    background: rgba(247, 243, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(224, 221, 216, 0.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.glass-card {
    background: rgba(247, 243, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 221, 216, 0.2);
    border-radius: var(--radius-lg);
}

/* IMPROVED NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--spacing-md) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 181, 160, 0.1);
    transition: all 0.3s ease;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    letter-spacing: -0.02em;
}

.nav-logo::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent-tertiary);
    border-radius: 50%;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: var(--spacing-xs) 0;
    transition: all 0.3s ease;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
}

/* ENHANCED HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--spacing-3xl) + var(--spacing-lg)) var(--spacing-lg) var(--spacing-2xl);
    position: relative;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.9) 0%, rgba(250, 250, 250, 1) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M10 10c0-5 5-5 5 0s-5 5-5 0z' fill='none' stroke='%23A8B5A0' stroke-width='0.5' opacity='0.1'/%3E%3Cpath d='M30 20c0-3 3-3 3 0s-3 3-3 0z' fill='none' stroke='%23A8B5A0' stroke-width='0.5' opacity='0.1'/%3E%3Cpath d='M50 15c0-4 4-4 4 0s-4 4-4 0z' fill='none' stroke='%23A8B5A0' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: rgba(247, 243, 240, 0.8);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
    animation: fadeIn 0.8s ease-out;
    font-weight: 500;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    max-width: 900px;
    animation: fadeIn 1s ease-out 0.2s both;
    letter-spacing: -0.03em;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-primary);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    animation: fadeIn 1s ease-out 0.4s both;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    animation: fadeIn 1s ease-out 0.6s both;
}

.btn {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    background: var(--accent-tertiary);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.hero-video {
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
    animation: fadeIn 1s ease-out 0.8s both;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SECTION COMMON STYLES */
.section-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-primary);
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    font-weight: 400;
}

/* IMPROVED COOKIE BANNER */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(250, 250, 250, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(168, 181, 160, 0.2);
    font-family: var(--font-sans);
    box-shadow: var(--shadow-md);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
    min-width: 250px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.85rem;
}

/* UNIQUE DESIGN ELEMENTS */
.organic-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

.organic-shape-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    border-radius: 50% 30% 70% 40%;
    top: 20%;
    left: 10%;
}

.organic-shape-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70%;
    bottom: 30%;
    right: 15%;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .nav {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 250, 250, 0.95);
        backdrop-filter: blur(20px);
        padding: var(--spacing-md) var(--spacing-lg);
        gap: var(--spacing-md);
        border-bottom: 1px solid rgba(168, 181, 160, 0.1);
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: calc(var(--spacing-2xl) + var(--spacing-lg)) var(--spacing-md) var(--spacing-xl);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-actions .btn {
        flex: 1;
        max-width: 120px;
    }
}