/* Palette Name: Earthy Vitality */
:root {
    --primary-color: #4A5D23; /* Olive Green */
    --secondary-color: #E9C46A; /* Saffron */
    --accent-color: #F4A261; /* Sandy Brown */
    --dark-color: #3E2723; /* Dark Brown */
    --light-color: #F9F6F0; /* Off White */
    --text-color: #2C2C2C;
    --white: #FFFFFF;
    
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Typography */
h1, h2, h3, h4 {
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin-bottom: 1rem; font-size: clamp(1rem, 1.5vw, 1.125rem); }

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-color);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Navigation */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

/* Burger Menu */
.menu-checkbox {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 10px; /* Strict requirement */
    }
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    
    #menu-toggle:checked ~ .mobile-nav {
        display: block;
    }
    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }
    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section (Clip Path) */
.hero-clip {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    background-color: var(--dark-color);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(62, 39, 35, 0.9), rgba(62, 39, 35, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-box {
    max-width: 600px;
    color: var(--white);
}

.hero-text-box h1 {
    color: var(--white);
}

.badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-actions .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero-actions .btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-color);
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .intro-grid { grid-template-columns: 1.5fr 1fr; }
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-weight: 600;
    color: var(--dark-color);
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .pillars-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}

.pillar-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.pillar-icon svg {
    width: 30px;
    height: 30px;
}

/* Split Feature */
.split-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .split-wrapper { grid-template-columns: 1fr 1fr; }
}

.split-image {
    position: relative;
}

.split-image img {
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    z-index: 1;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Masonry Testimonials */
.masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .masonry-grid { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
}

.masonry-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: serif;
}

.author {
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 15px;
}

/* Page Header */
.page-header {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-desc {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: var(--secondary-color);
}

@media (min-width: 768px) {
    .timeline-container::before { left: 50%; transform: translateX(-50%); }
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 60px;
}

@media (min-width: 768px) {
    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 40px;
    }
    .timeline-item:nth-child(even) {
        margin-left: auto;
        padding-left: 40px;
        padding-right: 0;
    }
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

@media (min-width: 768px) {
    .timeline-dot {
        left: auto;
        right: -20px;
    }
    .timeline-item:nth-child(even) .timeline-dot {
        right: auto;
        left: -20px;
    }
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-img {
    border-radius: 10px;
    margin-top: 15px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: var(--dark-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-content {
    padding: 0 20px 20px;
    color: var(--text-color);
}

/* Parallax Banner */
.parallax-banner {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(62, 39, 35, 0.7);
}

.relative-z {
    position: relative;
    z-index: 2;
}

.text-white { color: var(--white) !important; }

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 5px solid var(--accent-color);
}

.value-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-color);
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}

.value-box h3 {
    position: relative;
    z-index: 2;
}

/* Manifesto */
.manifesto-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-box h2 {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr 1.5fr; }
}

.info-item {
    margin-bottom: 20px;
}

.contact-form-container {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Legal Content */
.legal-content h2 {
    margin-top: 30px;
    font-size: 1.5rem;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Footer (Hardcoded colors for protection) */
.site-footer {
    background-color: #3E2723 !important;
    color: #FFFFFF !important;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-logo {
    color: #E9C46A !important;
    margin-bottom: 15px;
    display: inline-block;
}

.site-footer h4 {
    color: #E9C46A !important;
    margin-bottom: 20px;
}

.site-footer p, .site-footer li, .site-footer a {
    color: #F9F6F0 !important;
    opacity: 0.8;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer a:hover {
    opacity: 1;
    color: #E9C46A !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* 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(--dark-color);
    color: var(--white);
    transform: translateY(0); transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
#cookie-banner a { color: var(--secondary-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: bold;
}
.cookie-btn-accept { background-color: var(--primary-color); color: var(--white); }
.cookie-btn-decline { background-color: transparent; color: var(--white); border: 1px solid var(--white); }

@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; }
}