:root {
    --charcoal: #36454F;
    --forest-green: #228B22;
    --warm-beige: #F5F5DC;
    --soft-gold: #D4AF37;
    --off-white: #F8F8F8;
    --dark-grey: #555555;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--off-white);
    color: var(--charcoal);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 { font-size: 3.5rem; color: var(--charcoal); }
h2 { font-size: 2.5rem; color: var(--forest-green); }
h3 { font-size: 1.75rem; color: var(--charcoal); }

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 100px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

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

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

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--forest-green);
    border-bottom: 2px solid var(--forest-green);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(54, 69, 79, 0.6), rgba(54, 69, 79, 0.6)), url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 60px;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 { color: #fff; }

/* Blocks */
.bg-beige { background-color: var(--warm-beige); }

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

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

.card {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-bottom-color: var(--soft-gold);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--forest-green);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #1a6b1a;
    color: var(--soft-gold);
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: #fff;
    padding: 80px 0 40px;
}

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

.footer-brand h2 { color: var(--soft-gold); margin-bottom: 20px; }
.footer-links h3 { color: #fff; font-size: 1.2rem; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links a { color: #ccc; text-decoration: none; display: block; margin-bottom: 10px; transition: var(--transition); }
.footer-links a:hover { color: var(--soft-gold); }

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

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.cookie-btns {
    display: flex;
    gap: 15px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* Specific elements */
.stat-strip {
    background: var(--forest-green);
    color: #fff;
    padding: 40px 0;
    margin: 40px 0;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 2px solid var(--soft-gold);
}

.myth-fact {
    background: #fff;
    border-left: 5px solid var(--forest-green);
    padding: 30px;
    margin-bottom: 30px;
}

.myth { color: #d9534f; font-weight: bold; }
.fact { color: var(--forest-green); font-weight: bold; }

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    .hero { height: 60vh; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}