:root {
    --slate-grey: #708090;
    --soft-slate: #f4f4f2;
    --olive-deep: #556b2f;
    --terracotta: #cd5c5c;
    --warm-cream: #fffdd0;
    --text-dark: #2c3e50;
    --section-gap: 100px;
}

body {
    font-family: 'Merriweather Sans', sans-serif;
    background-color: var(--soft-slate);
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--olive-deep);
    margin-bottom: 1.5rem;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; border-bottom: 1px solid var(--slate-grey); padding-bottom: 15px; }
h3 { font-size: 1.8rem; }

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

section {
    padding: var(--section-gap) 0;
}

.hero-full {
    height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-overlay {
    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-content h1 { color: var(--warm-cream); }

.card-pillar {
    background: var(--warm-cream);
    padding: 40px;
    border: 1px solid rgba(112, 128, 144, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.btn-soft {
    display: inline-block;
    padding: 15px 35px;
    background: var(--olive-deep);
    color: var(--warm-cream);
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-soft:hover {
    background: var(--text-dark);
}

.img-cinematic {
    width: 100%;
    height: auto;
    box-shadow: 20px 20px 0px var(--slate-grey);
    filter: sepia(10%);
}

.bg-slate { background-color: var(--slate-grey); color: white; }
.bg-cream { background-color: var(--warm-cream); }

.glossary-rail {
    border-left: 2px solid var(--terracotta);
    padding-left: 30px;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.matrix-table td, .matrix-table th {
    padding: 20px;
    border: 1px solid var(--slate-grey);
}

.stat-strip {
    background: var(--olive-deep);
    color: white;
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    box-shadow: 0 0 40px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.footer-info {
    font-size: 0.9rem;
    color: #666;
}

nav {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--terracotta);
}

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

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

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-full { height: 60vh; }
    .container { padding: 0 20px; }
}