:root {
    --deep-forest: #243b2d;
    --moss-green: #486c4b;
    --sunlit-gold: #d2b676;
    --owl-brown: #7a5a30;
    --cream: #f7f1e5;
    --stone: #c6c0b0;
    --text-dark: #2e2a26;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Quicksand', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    font-size: 17px;
    line-height: 1.75;
}

a {
    color: var(--moss-green);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.site-header {
    background: radial-gradient(circle at top left, rgba(72, 108, 75, 0.85), rgba(36, 59, 45, 0.95)), url('https://images.unsplash.com/photo-1526481280695-3c46937c6b8c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
}

.brand-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(210, 182, 118, 0.8);
    background: rgba(247, 241, 229, 0.15);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Marcellus', serif;
    letter-spacing: 0.08em;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.75rem;
    opacity: 0.8;
}

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

.nav-links a {
    color: rgba(247, 241, 229, 0.9);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-toggle {
    display: none;
    background: rgba(210, 182, 118, 0.15);
    color: #fff;
    border: 1px solid rgba(210, 182, 118, 0.4);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.hero {
    padding: 5rem 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 720px;
}

.hero h1 {
    font-family: 'Marcellus', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
}

.hero p {
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
}

.cta {
    display: inline-block;
    background: var(--sunlit-gold);
    color: var(--deep-forest);
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover,
.cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.section {
    padding: 4.5rem 2.5rem;
    background: var(--cream);
}

.section.alt {
    background: linear-gradient(120deg, rgba(72, 108, 75, 0.07), rgba(210, 182, 118, 0.12));
}

.section-inner {
    max-width: 1080px;
    margin: 0 auto;
}

h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
}

h3 {
    font-family: 'Marcellus', serif;
    color: var(--moss-green);
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(36, 59, 45, 0.15);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 12px 24px rgba(36, 59, 45, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 16px 26px rgba(36, 59, 45, 0.12);
}

.pillars {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact {
    text-align: center;
}

.contact-details {
    list-style: none;
    margin: 2rem auto 0;
    padding: 0;
    max-width: 420px;
    display: grid;
    gap: 1rem;
}

.contact-details .label {
    font-weight: 600;
    color: var(--moss-green);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
}

.site-footer {
    background: var(--deep-forest);
    color: rgba(247, 241, 229, 0.8);
    padding: 1.5rem 2.5rem;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.site-footer a {
    color: rgba(210, 182, 118, 0.9);
}

.policy-page {
    background: var(--cream);
}

.policy-header {
    background: linear-gradient(135deg, rgba(36, 59, 45, 0.9), rgba(72, 108, 75, 0.85));
    min-height: 320px;
}

.policy-nav {
    padding: 1rem 2.5rem;
}

.policy-nav .brand-tagline {
    color: rgba(247, 241, 229, 0.8);
}

.back-link {
    color: rgba(247, 241, 229, 0.85);
    font-weight: 600;
}

.back-link:hover,
.back-link:focus {
    text-decoration: underline;
}

.policy-hero {
    padding: 3rem 2.5rem 4rem;
    text-align: center;
    color: rgba(247, 241, 229, 0.95);
}

.policy-hero h1 {
    font-family: 'Marcellus', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.policy-content {
    max-width: 800px;
    margin: -80px auto 0;
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 18px 40px rgba(36, 59, 45, 0.12);
}

.policy-content section + section {
    margin-top: 2rem;
}

.policy-content h2 {
    font-size: 1.5rem;
}

@media (max-width: 860px) {
    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        background: rgba(36, 59, 45, 0.9);
        border-radius: 8px;
        padding: 1rem 1.5rem;
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        padding: 4rem 1.5rem 3rem;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }

    .policy-nav {
        padding: 1rem 1.5rem;
    }

    .policy-hero {
        padding: 2.5rem 1.5rem 3rem;
    }

    .policy-content {
        margin: -60px 1rem 0;
        padding: 2.5rem 1.5rem;
    }
}
