:root {
    --primary-bg: #F0F0E8;
    --accent-green: #A8B8A0;
    --accent-terracotta: #D3AA95;
    --accent-slate: #8A969B;
    --text-main: #333333;
    --text-muted: #666666;
    --max-width: 1280px;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: var(--accent-slate);
    font-weight: 700;
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; }
h2 { font-size: 2.5rem; margin-top: 4rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--accent-green); padding-bottom: 10px; }
h3 { font-size: 1.8rem; margin-top: 2rem; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 { color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }

.btn-custom {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-slate);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom:hover {
    background-color: var(--accent-green);
    transform: scale(0.98);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    box-shadow: 10px 10px 0px var(--accent-terracotta);
}

.staggered-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.staggered-layout.reverse {
    flex-direction: row-reverse;
}

.stat-strip {
    background: var(--accent-slate);
    color: #fff;
    padding: 60px 0;
    margin: 40px 0;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h4 { font-size: 3rem; margin: 0; }

.footer {
    background: #222;
    color: #ccc;
    padding: 80px 0 40px;
}

.header {
    background: var(--primary-bg);
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border: 1px solid var(--accent-slate);
    z-index: 9999;
    display: none;
}

.timeline {
    border-left: 2px solid var(--accent-green);
    padding-left: 30px;
    margin: 40px 0;
}

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

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

.disclaimer-box {
    border: 2px solid var(--accent-terracotta);
    padding: 30px;
    margin: 40px 0;
    background: rgba(211, 170, 149, 0.1);
}

.glossary-rail {
    background: #fff;
    padding: 20px;
    border-left: 4px solid var(--accent-slate);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .staggered-layout { flex-direction: column; }
    h1 { font-size: 2.5rem; }
    .container { padding: 0 20px; }
}