/* Earthy Wellness Palette */
:root {
    --primary-color: #B85C38; /* Terracotta */
    --secondary-color: #5E8C61; /* Sage Green */
    --accent-color: #E0C097; /* Warm Beige */
    --text-dark: #2D2D2D; /* Charcoal */
    --text-light: #F7F7F7; /* Off-White */
    --background-light: #FFF8F0;
    --border-color: #ddd;
}

/* --- GLOBAL STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navigation ul {
    display: none;
}

.hidden-toggle {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav li a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
}

.mobile-nav li a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

#menu-toggle:checked ~ .mobile-nav {
    display: block;
}

#menu-toggle:checked ~ .hamburger .line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
#menu-toggle:checked ~ .hamburger .line:nth-child(2) {
    opacity: 0;
}
#menu-toggle:checked ~ .hamburger .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--text-dark) !important;
    color: var(--text-light) !important;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.site-footer h3, .site-footer p, .site-footer a {
    color: var(--text-light) !important;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color) !important;
}

.footer-links ul li, .footer-legal ul li {
    margin-bottom: 8px;
}

.footer-links a:hover, .footer-legal a:hover, .footer-contact a:hover {
    text-decoration: underline;
    color: var(--accent-color) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #a14e2e;
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- PILLARS SECTION --- */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.pillar-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: center;
}

/* --- SPLIT SECTION --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.split-image {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* --- TESTIMONIALS --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.testimonial-card {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card footer {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- CTA SECTION --- */
.cta-section {
    background-color: var(--accent-color);
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* --- PROGRAM PAGE: TIMELINE --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #fff;
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* --- PROGRAM PAGE: FAQ --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    color: var(--secondary-color);
}

/* --- MISSION PAGE --- */
.page-header-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--text-light);
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-header-section h1, .page-header-section p {
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.value-card {
    border: 1px solid var(--accent-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.manifesto-section {
    background-color: var(--text-dark);
    color: var(--text-light);
}
.manifesto-section h2, .manifesto-section p {
    color: var(--text-light);
}
.manifesto-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
}
.manifesto-content p {
    margin-bottom: 1.5rem;
}

/* --- CONTACT PAGE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.info-block {
    margin-bottom: 20px;
}
.info-block h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.contact-form {
    max-width: 800px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* --- LEGAL & THANK YOU PAGES --- */
.legal-page .container, .thank-you-section .container {
    max-width: 800px;
}
.legal-page h2 { margin-top: 30px; }
.legal-page ul { list-style: disc; padding-left: 20px; }

.next-steps {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}
.back-to-home {
    display: inline-block;
    margin-top: 20px;
}

/* --- COOKIE BANNER --- */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    background-color: var(--text-dark);
    color: var(--text-light);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
#cookie-banner a { color: var(--accent-color); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}
.cookie-btn-accept { background-color: var(--secondary-color); color: #fff; }
.cookie-btn-decline { background-color: #555; color: #fff; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
    .timeline::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 10px; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-item::after { left: 10px; }
}

@media (min-width: 768px) {
    .section { padding: 80px 0; }
    .navigation ul {
        display: flex;
        gap: 25px;
    }
    .hamburger, .mobile-nav {
        display: none;
    }
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .two-col {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}