:root {
    --color-bg: #1a1f16;
    --color-bg-soft: #242b1e;
    --color-cream: #f5f0e8;
    --color-cream-muted: #e8e2d9;
    --color-green: #4a7c59;
    --color-green-light: #6b9b7a;
    --color-brown: #8b7355;
    --color-brown-dark: #5c4a3a;
    --color-accent: #c9a962;
    --color-mushroom-cap: #d4a574;
    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Outfit', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Splash screen */
.splash-screen {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    animation: splash-fade-in 1s ease;
}

.splash-logo {
    width: 160px;
    height: auto;
    margin-bottom: 1.5rem;
}

.splash-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.splash-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
}

@keyframes splash-fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    background: rgba(55, 74, 71, 100);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 64px;
    width: 180px;
    transition: opacity 0.2s;
}

.logo:hover .logo-img {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-cream-muted);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-cream);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(74, 124, 89, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201, 169, 98, 0.08) 0%, transparent 40%),
        var(--color-bg);
}

.hero-content {
    text-align: center;
    max-width: 640px;
}

.hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-green-light);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 400;
    color: var(--color-cream);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-cream-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-green);
    color: var(--color-cream);
    border: none;
}

.btn-primary:hover {
    background: var(--color-green-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* Hero decorations - Oyster mushroom images */
.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-mushroom {
    position: absolute;
    object-fit: contain;
    opacity: 0.2;
    filter: brightness(0.95);
}

/* 8 mushrooms, odd organic arrangement */
.hero-mushroom-1 { width: 165px; top: 3%; left: 72%; transform: rotate(42deg); }
.hero-mushroom-2 { width: 155px; top: 82%; right: 22%; left: auto; transform: rotate(-38deg); }
.hero-mushroom-3 { width: 138px; top: 18%; left: 12%; transform: rotate(-52deg); }
.hero-mushroom-4 { width: 172px; top: 68%; left: 68%; transform: rotate(18deg); }
.hero-mushroom-5 { width: 128px; top: 38%; left: 82%; transform: rotate(-65deg); }
.hero-mushroom-6 { width: 148px; top: 58%; right: 72%; left: auto; transform: rotate(58deg); }
.hero-mushroom-7 { width: 158px; top: 12%; left: 45%; transform: rotate(-28deg); }
.hero-mushroom-8 { width: 142px; top: 75%; left: 28%; transform: rotate(72deg); }

/* Sections */
.section {
    padding: 5rem 2rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--color-cream);
    text-align: center;
    margin-bottom: 3rem;
}

/* About */
.about {
    background: var(--color-bg-soft);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--color-cream-muted);
    margin-bottom: 1.25rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Products */
.products {
    padding: 6rem 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--color-bg-soft);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 98, 0.3);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.95rem;
    color: var(--color-cream-muted);
}

/* Contact */
.contact {
    background: var(--color-bg-soft);
}

.contact-content {
    text-align: center;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--color-cream-muted);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer p {
    font-size: 0.9rem;
    color: var(--color-cream-muted);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-bg-soft);
        padding: 2rem;
        gap: 1rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}
