/*
  Theme: Bold Editorial
  Color Palette Name: Graphite & Copper
  - Primary: #E67E22 (Copper Orange)
  - Dark BG: #121212
  - Light BG: #1C1C1C
  - Text: #EAEAEA
  - Muted Text: #999999
*/

:root {
    --primary-color: #E67E22;
    --dark-bg: #121212;
    --light-bg: #1C1C1C;
    --text-color: #EAEAEA;
    --muted-text-color: #999999;
    --border-color: #333333;
    --font-family-sans: 'Helvetica Neue', 'Arial', sans-serif;
}

/* --- Base & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-sans);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(48px, 9vw, 60px);
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(32px, 6vw, 56px);
}

h3 {
    font-size: clamp(20px, 4vw, 28px);
}

p {
    margin-bottom: 1rem;
    max-width: 65ch;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout & Helpers --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.section-dark {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 40px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 0; /* Sharp edges */
    box-shadow: none; /* Flat design */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--dark-bg);
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-color);
    z-index: 100;
}

.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;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.desktop-nav a {
    color: var(--text-color);
    font-weight: bold;
    font-size: 16px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 68px; /* Header height + border */
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--light-bg);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    color: var(--text-color);
    font-size: 18px;
    display: block;
    width: 100%;
}

@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); }
}

/* --- Hero Section (Grid Overlap) --- */
.hero-section-overlap {
    padding: 60px 0;
    overflow: hidden;
}

.hero-grid-overlap {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 30px;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-overlap {
    background-color: var(--dark-bg);
    padding: 40px;
    position: relative;
    border: 1px solid var(--border-color);
}
.hero-subtitle { color: var(--muted-text-color); }

@media (min-width: 992px) {
    .hero-grid-overlap {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content-overlap {
        margin-left: -80px;
        z-index: 2;
    }
}

/* --- Timeline Section --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 15px;
}

.timeline-item {
    padding: 10px 40px 30px 60px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 15px;
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-color);
    background-color: var(--dark-bg);
    border-radius: 0; /* Sharp */
    z-index: 1;
}

.timeline-content h3 { color: var(--primary-color); }

/* --- Stats Section --- */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 30px;
}

.stat-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--muted-text-color);
    margin: 0;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Split Layout --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .split-layout { grid-template-columns: 1fr 1fr; }
    .split-layout .split-image { order: 1; }
    .split-layout .split-content { order: 2; }
}

/* --- FAQ Section --- */
.faq-container { max-width: 800px; }
.accordion-item { border-bottom: 1px solid var(--border-color); }
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}
.accordion-header::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.accordion-header[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-content p { padding: 0 0 20px; color: var(--muted-text-color); }

/* --- Program Page: Numbered Sections --- */
.page-header { padding: 60px 0; }
.numbered-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}
.numbered-section-number {
    font-size: clamp(80px, 15vw, 150px);
    font-weight: 900;
    color: var(--border-color);
    line-height: 1;
}
.numbered-section-content h2 { border-top: 2px solid var(--primary-color); padding-top: 15px; }

@media (min-width: 768px) {
    .numbered-section { flex-direction: row; gap: 40px; align-items: flex-start; }
    .numbered-section.reverse { flex-direction: row-reverse; }
    .numbered-section-number { flex-shrink: 0; }
}

.full-width-image { width: 100%; height: 400px; object-fit: cover; }
.cta-block { max-width: 700px; margin: 0 auto; }

/* --- Mission Page: Mission Timeline --- */
.mission-timeline { max-width: 800px; margin: 40px auto; }
.mission-timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    border-left: 2px solid var(--primary-color);
    padding-left: 30px;
}
.mission-timeline-year {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    min-width: 80px;
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
.value-card { border: 1px solid var(--border-color); padding: 30px; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Contact Page --- */
.contact-info-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.contact-info-card { padding: 20px; border: 1px solid var(--border-color); }
.contact-form-container { max-width: 800px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { margin-bottom: 8px; font-weight: bold; }
.form-group input, .form-group textarea {
    padding: 12px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 16px;
    border-radius: 0; /* Sharp */
}
.form-btn { width: 100%; }
@media (min-width: 768px) {
    .contact-info-top-grid { grid-template-columns: repeat(3, 1fr); }
    .form-btn { width: auto; align-self: flex-start; }
}

/* --- Policy & Thank You Pages --- */
.policy-container, .thank-you-container { max-width: 800px; }
.policy-container h2 { margin-top: 30px; }
.policy-container ul { padding-left: 20px; margin-bottom: 1rem; }
.next-steps { margin-top: 60px; border-top: 1px solid var(--border-color); padding-top: 40px; }
.next-steps-links { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-top: 20px; }

/* --- Footer --- */
.site-footer {
    background-color: var(--light-bg) !important;
    padding: 60px 0 0;
    color: var(--muted-text-color) !important;
    border-top: 1px solid var(--border-color);
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.footer-logo { color: var(--text-color); }
.footer-links h3, .footer-contact h3 { color: var(--text-color); margin-bottom: 15px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a, .footer-contact a { color: var(--muted-text-color); }
.footer-links a:hover, .footer-contact a:hover { color: var(--primary-color); }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}
.footer-bottom p {width: 100%; max-width: 100%;}
@media (min-width: 768px) {
    .footer-container { grid-template-columns: repeat(3, 1fr); }
}

/* --- 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-bg);
    border-top: 1px solid var(--border-color);
    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: 14px; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--dark-bg);
    cursor: pointer;
    border-radius: 0;
    font-weight: bold;
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--primary-color);
}
@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; }
}