:root {
    --primary-green: #1B3022;
    --accent-terracotta: #C05746;
    --muted-gold: #B89B5E;
    --soft-beige: #F9F7F2;
    --text-dark: #2C2C2C;
    --text-light: #5A5A5A;
    --white: #FFFFFF;
    --grid-unit: 8px;
    --container-width: 1280px;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--soft-beige);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: calc(var(--grid-unit) * 3);
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; }
h3 { font-size: 1.75rem; line-height: 1.3; }

p { margin-bottom: calc(var(--grid-unit) * 2); font-size: 1.1rem; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 calc(var(--grid-unit) * 4);
}

section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-terracotta);
}

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

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Footer */
footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Lora', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
    color: var(--white);
    text-decoration: none;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 25px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
    border-left: 5px solid var(--primary-green);
}

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

/* Specific Section Styles */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(27, 48, 34, 0.4);
}

.hero-content {
    position: relative;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 { color: var(--white); }

.two-col {
    display: flex;
    gap: 60px;
    align-items: center;
}

.two-col > div { flex: 1; }

.img-frame {
    position: relative;
    border: 1px solid var(--muted-gold);
    padding: 15px;
}

.img-frame img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
}

.insight-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid #EAEAEA;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.glossary-rail {
    background: var(--primary-green);
    color: var(--white);
    padding: 30px;
    border-left: 4px solid var(--muted-gold);
}

.timeline {
    border-left: 2px solid var(--muted-gold);
    padding-left: 30px;
    margin-left: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent-terracotta);
    border-radius: 50%;
}

.stat-strip {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 { color: var(--muted-gold); margin-bottom: 5px; }

.botanical-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.botanical-card img { width: 100%; height: 250px; object-fit: cover; }
.botanical-info { padding: 25px; border: 1px solid #EEE; flex-grow: 1; }

.accordion-item {
    border-bottom: 1px solid #DDD;
    padding: 20px 0;
}

.accordion-header {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.accordion-content {
    display: none;
    padding-top: 15px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #CCC;
    background: var(--white);
    font-family: inherit;
}

.disclaimer-box {
    background: #F0F0F0;
    padding: 20px;
    border-left: 4px solid var(--accent-terracotta);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

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

@media (max-width: 992px) {
    .two-col { flex-direction: column; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .cookie-content { flex-direction: column; gap: 20px; text-align: center; }
}