:root {
    --primary-color: #2F3E46;
    --accent-sage: #84A98C;
    --accent-terracotta: #A44A3F;
    --accent-gold: #D4AF37;
    --bg-light: #F4F4F2;
    --text-main: #2F3E46;
    --text-muted: #526760;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.8;
    margin: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    color: var(--primary-color);
    font-weight: 700;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.2rem; border-bottom: 2px solid var(--accent-sage); display: inline-block; padding-bottom: 10px; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }

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

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

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

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-terracotta);
    transition: width 0.3s;
}

.nav-link:hover::after { width: 100%; }

/* Hero Section */
.hero-section {
    height: 80vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(47, 62, 70, 0.5);
}

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

.hero-content h1 { color: var(--white); text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }

/* Glossary Rail */
.glossary-rail {
    border-left: 1px solid var(--accent-sage);
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.glossary-term {
    font-weight: bold;
    color: var(--accent-terracotta);
    display: block;
    margin-top: 15px;
}

/* Cards */
.pillar-card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 10px 10px 0px var(--accent-sage);
    transition: transform 0.3s ease;
    height: 100%;
}

.pillar-card:hover { transform: translateY(-10px); }

.pillar-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Zigzag Layout */
.zigzag-row { display: flex; align-items: center; margin-bottom: 80px; }
.zigzag-row:nth-child(even) { flex-direction: row-reverse; }
.zigzag-img { width: 100%; height: 400px; object-fit: cover; border-radius: 4px; }

/* Stat Strip */
.stat-strip {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    overflow-x: auto;
    white-space: nowrap;
}

.stat-item {
    display: inline-block;
    padding: 0 50px;
    text-align: center;
}

.stat-val { font-family: var(--font-serif); font-size: 2rem; color: var(--accent-gold); }

/* Checklist */
.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-css {
    width: 20px; height: 20px;
    border: 2px solid var(--accent-sage);
    margin-right: 15px;
    position: relative;
}

.checkbox-css::after {
    content: '✓';
    position: absolute;
    top: -5px; left: 2px;
    color: var(--accent-terracotta);
    font-weight: bold;
}

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

footer a { color: var(--accent-sage); }
footer h3 { color: var(--white); border-bottom: 1px solid var(--accent-gold); padding-bottom: 10px; }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--accent-gold);
}

.btn-klento {
    background: var(--accent-terracotta);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-klento:hover { background: var(--primary-color); color: var(--accent-gold); }

.discovery-card {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.discovery-card::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 100px; height: 100px;
    background: var(--accent-sage);
    opacity: 0.1;
    border-radius: 50%;
}

.form-control {
    border-radius: 0;
    border: 1px solid var(--primary-color);
    padding: 15px;
}

.disclaimer-box {
    background: #eee;
    padding: 20px;
    border-left: 5px solid var(--accent-terracotta);
    margin: 20px 0;
    font-size: 0.9rem;
}