:root {
    --primary: #2E4057;
    --accent-gold: #8C7851;
    --accent-sage: #A4C3B2;
    --accent-rose: #D0B8A8;
    --bg-cream: #F3E8E3;
    --text-dark: #1a1a1a;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.8;
    overflow-x: hidden;
}

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

h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 2rem; }
h2 { font-size: 2.5rem; margin-top: 3rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.1rem;
}

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

section {
    padding: 100px 0;
}

.hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-img {
    width: 100%;
    max-width: 800px;
    height: 500px;
    object-fit: cover;
    display: block;
    margin: 40px auto 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.card {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.btn-read {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: opacity 0.3s;
}

.btn-read:hover { opacity: 0.9; }

.compliance-box {
    background: var(--white);
    border-left: 4px solid var(--accent-gold);
    padding: 20px;
    margin: 40px 0;
    font-style: italic;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer h3 { color: var(--accent-rose); }

.footer a {
    color: var(--bg-cream);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

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

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    display: none;
    z-index: 2000;
    text-align: center;
}

.cookie-btns button, .cookie-btns a {
    margin: 0 10px;
    padding: 8px 20px;
    cursor: pointer;
    border: none;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
}

.faq-item {
    background: var(--white);
    margin-bottom: 10px;
    padding: 20px;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

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

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

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

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

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .nav-wrap { flex-direction: column; padding: 10px 0; }
    header { height: auto; position: relative; }
    nav a { margin: 5px 10px; font-size: 0.9rem; }
}