/* 
   Color Palette: pine-copper
   Primary: #1A3325
   Secondary: #253F30
   Accent: #A06830
   Tint/Light: #F0F8F2
   Dark Background dominant: #121E16
*/

:root {
    --color-primary: #1A3325;
    --color-secondary: #253F30;
    --color-accent: #A06830;
    --bg-tint: #F0F8F2;
    --bg-dark: #121E16;
    --text-light: #F0F8F2;
    --text-muted: #A3B8AB;
    --font-editorial: 'Georgia', serif;
    --font-sans: 'Helvetica Neue', Arial, sans-serif;
}

/* Global Reset & Dark Mode Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.dark-mode-body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .section-container {
        padding: 80px 24px;
    }
}

/* Typography - Bold Editorial Style */
h1, h2, h3, h4 {
    font-family: var(--font-editorial);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-light);
}

h1 {
    font-size: clamp(36px, 7vw, 76px);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 12px;
}

p {
    font-size: clamp(15px, 2.5vw, 18px);
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Header & Hamburger Rules (Strict Template) */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-secondary);
    border-bottom: 1px solid rgba(240, 248, 242, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    font-family: var(--font-editorial);
    color: var(--text-light);
}

.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    transition: 0.3s;
    background-color: var(--text-light);
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.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(--color-secondary);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    font-size: 18px;
    display: block;
    text-transform: uppercase;
}

@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);
    }
}

/* Pill Style Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px; /* Pill Style */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--text-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07); /* Subtle Shadow */
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* HERO GRID OVERLAP LAYOUT */
.hero-overlap-section {
    background-color: var(--color-secondary);
    position: relative;
    padding: 48px 16px;
    overflow: hidden;
}

.hero-overlap-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    position: relative;
}

.hero-main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 36px; /* Pill Style Card */
}

.hero-content-card {
    background-color: var(--color-primary);
    padding: 32px;
    border-radius: 36px; /* Pill Style Card */
    box-shadow: 0 2px 12px rgba(0,0,0,0.07); /* Subtle Shadow */
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 999px; /* Pill Style Tag */
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    .hero-overlap-section {
        padding: 100px 24px;
    }
    
    .hero-overlap-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 0;
    }

    .hero-image-wrapper {
        z-index: 1;
    }

    .hero-main-img {
        height: 550px;
    }

    .hero-content-card {
        margin-left: -60px; /* Overlap effect */
        z-index: 2;
        padding: 56px;
    }
}

/* SECTION HEADERS */
.section-header-center {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 48px auto;
}

.section-header-left {
    max-width: 750px;
    margin-bottom: 48px;
}

.section-subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 12px;
}

.section-main-title {
    margin-bottom: 16px;
}

/* BENEFITS TIMELINE */
.timeline-section {
    background-color: var(--bg-dark);
}

.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 32px;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-secondary);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-marker {
    position: absolute;
    left: -32px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    border: 3px solid var(--bg-dark);
}

.timeline-content {
    background-color: var(--color-secondary);
    padding: 24px 32px;
    border-radius: 28px; /* Pill style */
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.timeline-title {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.timeline-desc {
    margin-bottom: 0;
}

/* TWO COLUMN SPLIT SECTION */
.two-column-split-section {
    background-color: var(--color-primary);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .split-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.split-side-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 36px; /* Pill style */
}

.custom-feature-list {
    list-style: none;
    padding-top: 16px;
}

.custom-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--text-light);
}

.custom-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 18px;
}

/* ACCORDION FAQ SECTION */
.accordion-faq-section {
    background-color: var(--bg-dark);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-secondary);
    margin-bottom: 16px;
    border-radius: 28px; /* Pill style */
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.faq-question {
    padding: 20px 28px;
    font-weight: bold;
    font-family: var(--font-editorial);
    font-size: 18px;
    cursor: pointer;
    outline: none;
    color: var(--text-light);
}

.faq-answer {
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    margin-bottom: 0;
}

/* QUOTE HIGHLIGHT */
.quote-highlight-section {
    background-color: var(--color-accent);
    padding: 64px 16px;
    text-align: center;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
}

.editorial-blockquote .quote-text {
    font-family: var(--font-editorial);
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.3;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.editorial-blockquote .quote-author {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-tint);
    font-weight: bold;
}

/* GALLERY GRID */
.gallery-section {
    background-color: var(--color-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px; /* Pill style */
    height: 300px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 51, 37, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay p {
    color: var(--text-light);
    font-family: var(--font-editorial);
    font-size: 20px;
    margin-bottom: 0;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.placeholder-item {
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.placeholder-content h3 {
    margin-bottom: 8px;
    color: var(--color-accent);
}

/* INTERNAL PAGES HERO */
.internal-hero-section {
    background-color: var(--color-secondary);
    padding: 80px 16px;
    text-align: center;
}

.internal-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 16px;
}

.internal-title {
    margin-bottom: 16px;
}

.internal-lead {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
}

/* PROGRAM ACCORDION (5 BLOCKS) */
.program-accordion-section {
    background-color: var(--bg-dark);
}

.accordion-5blocks-container {
    max-width: 900px;
    margin: 0 auto;
}

.program-details {
    background-color: var(--color-secondary);
    margin-bottom: 20px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.program-summary {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    outline: none;
}

.block-num {
    font-family: var(--font-editorial);
    font-size: 24px;
    font-weight: bold;
    color: var(--color-accent);
}

.block-title {
    font-family: var(--font-editorial);
    font-size: 20px;
    font-weight: bold;
    color: var(--text-light);
}

.program-content-body {
    padding: 0 32px 32px 76px;
}

/* STATS SECTION */
.stats-section {
    background-color: var(--color-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background-color: var(--color-secondary);
    padding: 40px 24px;
    border-radius: 36px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.stat-number {
    font-family: var(--font-editorial);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    color: var(--color-accent);
    display: block;
    margin-bottom: 12px;
}

.stat-label {
    margin-bottom: 0;
}

/* PROGRAM CTA */
.program-cta-section {
    background-color: var(--bg-dark);
    text-align: center;
}

.cta-box-centered {
    max-width: 800px;
    margin: 0 auto;
}

.cta-btns-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* MISSION SPLIT SECTION */
.mission-split-section {
    background-color: var(--bg-dark);
}

.values-list-box {
    margin-top: 32px;
}

.value-item {
    margin-bottom: 24px;
}

.value-title {
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.value-desc {
    margin-bottom: 0;
}

/* MANIFESTO */
.manifesto-section {
    background-color: var(--color-primary);
    text-align: center;
}

.manifesto-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-badge {
    color: var(--color-accent);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 16px;
}

.manifesto-title {
    margin-bottom: 20px;
}

.manifesto-text {
    font-family: var(--font-editorial);
    font-size: 22px;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-light);
}

/* CONTACT SECTION */
.contact-main-section {
    background-color: var(--bg-dark);
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .contact-split-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.contact-block-title {
    margin-bottom: 8px;
}

.contact-block-subtitle {
    margin-bottom: 32px;
}

/* FORM FIELDS Styling */
.custom-educational-form .form-group {
    margin-bottom: 24px;
}

.custom-educational-form label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.custom-educational-form input,
.custom-educational-form textarea {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--color-secondary);
    border: 1px solid rgba(240, 248, 242, 0.15);
    border-radius: 50px; /* Pill style */
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.custom-educational-form textarea {
    border-radius: 28px; /* Slightly less round for larger box */
}

.custom-educational-form input:focus,
.custom-educational-form textarea:focus {
    border-color: var(--color-accent);
}

.form-submit-btn {
    width: 100%;
}

/* CONTACT INFO CARD RIGHT */
.contact-info-block {
    display: flex;
    flex-direction: column;
}

.info-card-wrapper {
    background-color: var(--color-secondary);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.info-card-title {
    margin-bottom: 8px;
}

.info-card-text {
    margin-bottom: 32px;
}

.info-detail-item {
    margin-bottom: 24px;
}

.detail-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: bold;
}

.detail-value {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
}

.detail-value a {
    color: var(--text-light);
}

.detail-value a:hover {
    color: var(--color-accent);
}

/* LEGAL PAGES */
.legal-page-main {
    background-color: var(--bg-dark);
    padding: 60px 16px;
}

.legal-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-last-update {
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content-wrapper h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.legal-content-wrapper ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

.legal-content-wrapper li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* THANK YOU PAGE */
.thank-page-main {
    background-color: var(--bg-dark);
    padding: 100px 16px;
    text-align: center;
}

.thank-content-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-secondary);
    padding: 56px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.success-icon-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--text-light);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.thank-lead {
    font-size: 18px;
}

.thank-next-steps {
    text-align: left;
    margin-top: 32px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(240, 248, 242, 0.1);
}

.thank-next-steps h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.steps-list {
    list-style: decimal;
    margin-left: 20px;
}

.steps-list li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.thank-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* FOOTER STYLING with Protection from Translators */
.site-footer {
    background-color: #253F30 !important; /* Secondary Pine color locked */
    color: #F0F8F2 !important; /* Tint color locked */
    border-top: 1px solid rgba(240, 248, 242, 0.1);
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 40px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    font-family: var(--font-editorial);
    color: #F0F8F2 !important;
    display: block;
    margin-bottom: 16px;
}

.footer-description {
    color: #A3B8AB !important; /* Muted color locked */
    font-size: 14px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
}

.footer-heading {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #A06830 !important; /* Accent copper locked */
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #A3B8AB !important;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #A06830 !important;
}

.footer-contact-info {
    font-size: 14px;
    color: #A3B8AB !important;
    margin-bottom: 12px;
}

.footer-link-tel, .footer-link-email {
    color: #F0F8F2 !important;
    font-weight: bold;
}

.footer-link-tel:hover, .footer-link-email:hover {
    color: #A06830 !important;
}

.footer-bottom {
    background-color: #1A3325 !important; /* Primary pine locked */
    padding: 24px 16px;
    text-align: center;
    border-top: 1px solid rgba(240, 248, 242, 0.05);
}

.footer-bottom p {
    font-size: 12px;
    color: #A3B8AB !important;
    margin-bottom: 0;
}

/* 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);
    border-top: 2px solid var(--color-accent);
}

#cookie-banner.hidden { 
    transform: translateY(110%); 
}

#cookie-banner p { 
    margin: 0; 
    flex: 1; 
    min-width: 200px; 
    font-size: 14px;
    color: var(--text-light);
}

#cookie-banner p a {
    color: var(--color-accent);
    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; /* Pill style */
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--text-light);
}

.cookie-btn-accept:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

.cookie-btn-decline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

@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; 
    }
}