/* #4A2E1A, #6B4530, #A06830, #F8F2EC */
:root {
    --color-primary: #4A2E1A;
    --color-secondary: #6B4530;
    --color-accent: #A06830;
    --bg-tint: #F8F2EC;
    --color-dark: #2B1B10;
    --color-white: #FFFFFF;
    --color-gray: #7D6B5F;
    --font-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Global reset and setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-tint);
    border-bottom: 1px solid rgba(107, 69, 48, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - always on the left */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
    z-index: 100;
}

/* Hamburger - ALWAYS ON THE RIGHT */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none; /* Show only on mobile */
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 999px;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--bg-tint);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(107, 69, 48, 0.1);
}

.mobile-nav li a {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 600;
    display: block;
}

/* Mobile Adaptation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Layout Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .section-container {
        padding: 80px 24px;
    }
}

/* Pill & Soft-Organic Buttons */
.btn-primary, .btn-secondary, .btn-accent {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px; /* pill border-style */
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-tint);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: #ebdcd0;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-accent:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Typography styles */
h1, h2, h3, h4 {
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(24px, 4vw, 38px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 12px; }

.section-subtitle {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--bg-tint);
    color: var(--color-accent);
    border-radius: 999px; /* pill style */
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

/* Hero Floating Card Layout */
.hero-floating {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-card-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.hero-floating-card {
    background-color: var(--color-white);
    padding: 32px 24px;
    border-radius: 36px; /* soft-organic & pill inspired corner */
    max-width: 650px;
    border: 1px solid rgba(107, 69, 48, 0.15);
}

@media (min-width: 768px) {
    .hero-floating-card {
        padding: 48px;
    }
}

.hero-floating-card h1 {
    margin: 16px 0;
}

.hero-floating-card p {
    color: var(--color-gray);
    margin-bottom: 24px;
    font-size: 18px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Asymmetric Benefits Grid */
.benefits-asymm-section {
    background-color: var(--bg-tint);
}

.benefits-asymm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-asymm-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .card-large-1 { grid-column: span 3; }
    .card-large-2 { grid-column: span 3; }
    .card-small { grid-column: span 2; }
}

.benefit-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(107, 69, 48, 0.08);
    position: relative;
}

.card-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.15;
    position: absolute;
    top: 24px;
    right: 24px;
}

.benefit-card h3 {
    margin-top: 16px;
    color: var(--color-primary);
}

.benefit-card p {
    color: var(--color-gray);
}

/* Checklist Block */
.checklist-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .checklist-layout {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.checklist-image {
    width: 100%;
    border-radius: 36px;
    margin-top: 24px;
    height: 300px;
    object-fit: cover;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.checklist-item {
    display: flex;
    gap: 16px;
}

.check-icon {
    font-size: 24px;
    color: var(--color-accent);
    line-height: 1;
    font-weight: bold;
}

.checklist-item h4 {
    margin-bottom: 4px;
    color: var(--color-primary);
}

.checklist-item p {
    color: var(--color-gray);
    font-size: 14px;
}

/* Comparison Table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    background-color: var(--color-white);
    border-radius: 28px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(107, 69, 48, 0.1);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.comparison-table td.negative {
    color: var(--color-gray);
    background-color: rgba(107, 69, 48, 0.02);
}

.comparison-table td.positive {
    color: var(--color-primary);
    font-weight: 600;
    background-color: rgba(160, 104, 48, 0.05);
}

/* CTA Banner */
.cta-banner-section {
    background-color: var(--bg-tint);
}

.cta-banner-card {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 48px 32px;
    border-radius: 36px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-banner-card h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-banner-card p {
    margin-bottom: 24px;
    font-size: 18px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-vertical {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: 28px;
    border-left: 6px solid var(--color-accent);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.stars {
    color: var(--color-accent);
    font-size: 14px;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray);
}

/* Program Page Hero */
.program-hero {
    background-color: var(--bg-tint);
    text-align: center;
}

.program-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Pure CSS Horizontal Tabs */
.tabs-section {
    background-color: var(--color-white);
}

.tabs {
    display: flex;
    flex-direction: column;
}

input[name="tabs"] {
    display: none;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
}

.tabs-nav label {
    padding: 12px 24px;
    background-color: var(--bg-tint);
    color: var(--color-secondary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-panel {
    display: none;
    padding: 32px;
    background-color: var(--bg-tint);
    border-radius: 36px;
}

#t1:checked ~ #p1 { display: block; }
#t2:checked ~ #p2 { display: block; }
#t3:checked ~ #p3 { display: block; }
#t4:checked ~ #p4 { display: block; }

#t1:checked ~ .tabs-nav label[for="t1"],
#t2:checked ~ .tabs-nav label[for="t2"],
#t3:checked ~ .tabs-nav label[for="t3"],
#t4:checked ~ .tabs-nav label[for="t4"] {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Stats Section */
.stats-section {
    background-color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 32px;
    background-color: var(--bg-tint);
    border-radius: 28px;
}

.stat-val {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-accent);
    display: block;
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-tint);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 24px;
}

.faq-item h4 {
    margin-bottom: 12px;
}

/* Program CTA */
.program-cta-card {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 48px;
    border-radius: 36px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.program-cta-card h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.program-cta-card p {
    margin-bottom: 24px;
}

/* Mission Split Section */
.mission-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 70vh;
}

@media (min-width: 992px) {
    .mission-split {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-image-side {
    position: relative;
    min-height: 300px;
}

.split-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-text-side {
    background-color: var(--bg-tint);
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .mission-text-side {
        padding: 80px;
    }
}

.mission-text-side h1 {
    margin-bottom: 24px;
}

.mission-text-side p {
    margin-bottom: 16px;
    color: var(--color-gray);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: 28px;
}

.value-icon {
    font-size: 32px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 16px;
}

/* Manifesto Section */
.manifesto-section {
    background-color: var(--color-white);
}

.manifesto-box {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 48px;
    border-radius: 36px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-box h2 {
    color: var(--color-white);
    margin-bottom: 24px;
}

.manifesto-box p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
}

/* Contact Page Grid */
.contact-section {
    background-color: var(--bg-tint);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 36px;
}

.styled-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input, .form-group textarea {
    padding: 14px;
    border-radius: 50px; /* pill style for inputs */
    border: 1px solid rgba(107, 69, 48, 0.2);
    font-family: var(--font-sans);
    font-size: 16px;
    background-color: var(--bg-tint);
}

.form-group textarea {
    border-radius: 24px; /* adjusted pill for textarea */
    min-height: 150px;
    resize: vertical;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-block-item {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 24px;
}

.info-block-item h4 {
    color: var(--color-accent);
    margin-bottom: 8px;
}

/* Policy Content Layout */
.policy-section {
    background-color: var(--bg-tint);
    padding: 48px 16px;
}

.policy-section .section-container {
    background-color: var(--color-white);
    padding: 48px;
    border-radius: 36px;
    max-width: 800px;
}

.policy-section h1 {
    margin-bottom: 24px;
}

.policy-section h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.policy-section p, .policy-section ul {
    margin-bottom: 16px;
    color: var(--color-gray);
}

.policy-section ul {
    padding-left: 24px;
}

/* Thank You Page */
.thank-section {
    background-color: var(--bg-tint);
    text-align: center;
}

.thank-card {
    background-color: var(--color-white);
    padding: 48px;
    border-radius: 36px;
    max-width: 700px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 64px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 24px;
}

.thank-next-steps {
    margin-top: 40px;
    border-top: 1px solid rgba(107, 69, 48, 0.1);
    padding-top: 32px;
}

.thank-next-steps h3 {
    margin-bottom: 24px;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-link {
    display: block;
    padding: 14px;
    background-color: var(--bg-tint);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Footer Styling with Translation Protection */
.site-footer {
    background-color: #6B4530 !important; /* hardcoded to prevent translator breaks */
    color: #F8F2EC !important; /* hardcoded to prevent translator breaks */
    padding: 64px 16px 24px 16px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.logo-footer {
    font-size: 28px;
    font-weight: bold;
    color: #F8F2EC !important;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    opacity: 0.85;
}

.site-footer h4 {
    color: #A06830 !important;
    margin-bottom: 20px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 12px;
}

.site-footer ul li a {
    color: #F8F2EC !important;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.site-footer ul li a:hover {
    opacity: 1;
}

.footer-tel, .footer-contact a {
    color: #F8F2EC !important;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(248, 242, 236, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* 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;
    transform: translateY(0); transition: transform 0.4s ease;
    background-color: var(--color-primary);
    color: var(--color-white);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--color-white); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn-accept, .cookie-btn-decline {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-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; }
}