/* Graphite-Copper Palette: #1A1A1A, #F5F5F5, #B87333, #E0E0E0, #222222 */

:root {
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-headings: 'Georgia', serif;

    --color-dark-bg: #1A1A1A;
    --color-light-bg: #F5F5F5;
    --color-primary: #B87333; /* Copper */
    --color-secondary: #9C1C66; /* Magenta for highlights */
    --color-text-light: #E0E0E0;
    --color-text-dark: #222222;
    --color-border: #444444;

    --border-radius-main: 12px;
    --border-radius-btn: 8px;
}

/* --- Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.7;
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.75em;
    line-height: 1.2;
}

h1 { font-size: clamp(48px, 9vw, 90px); }
h2 { font-size: clamp(32px, 6vw, 56px); }
h3 { font-size: clamp(24px, 4vw, 32px); }
h4 { font-size: clamp(20px, 3.5vw, 24px); }

p {
    margin-top: 0;
    margin-bottom: 1.5em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding-left: 20px;
    margin-bottom: 1.5em;
}

/* --- Layout & Sections --- */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.dark-section {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
}

.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 {
    color: #ffffff;
}

.dark-section a {
    color: var(--color-primary);
}
.dark-section .btn-primary {color: #fff;}
.dark-section a:hover {
    color: #ffffff;
}

.light-section {
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
}

.text-center {
    text-align: center;
}

.section-title {
    margin-bottom: 16px;
}

.section-intro {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    opacity: 0.9;
}


/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    z-index: 100;
    font-family: var(--font-headings);
    color: #ffffff;
}

.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: #ffffff;
    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;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 99;
    background-color: var(--color-dark-bg);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    font-size: 20px;
    font-weight: bold;
}

/* --- Hero Section (Split Color) --- */
.hero-split-color {
    display: flex;
    min-height: 80vh;
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
}

.hero-content-area {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-image-area {
    width: 50%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: var(--border-radius-btn);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #a0642b;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}


/* --- Timeline Section --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-primary);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 3px solid var(--color-light-bg);
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p {
    margin-bottom: 0;
}

/* --- Features Grid Section --- */
.features-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(1, 1fr);
}

.feature-item {
    text-align: center;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-main);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-item h4 {
    margin-bottom: 8px;
}
.feature-item p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* --- Quote Highlight Section --- */
.quote-highlight-section {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 80px 0;
}

.quote-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 100px;
    font-family: var(--font-headings);
    line-height: 1;
    opacity: 0.3;
}

.quote-text {
    font-size: clamp(24px, 4vw, 36px);
    font-style: italic;
    font-family: var(--font-headings);
    margin-bottom: 24px;
}

.quote-author {
    font-weight: bold;
    font-style: normal;
}

/* --- Testimonials Section --- */
.testimonials-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.testimonial-card {
    padding: 24px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-main);
    background-color: #ffffff;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background-color: #ccc;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: bold;
    margin: 0;
}

.testimonial-rating {
    color: var(--color-primary);
}

.testimonial-body {
    margin: 0;
    font-style: italic;
}

/* --- Checklist Section --- */
.checklist-container {
    display: grid;
    gap: 24px 48px;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    margin-bottom: 12px;
}

.checkmark {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 20px;
}

/* --- Program Page: Accordion --- */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #ccc;
    border-radius: var(--border-radius-main);
    margin-bottom: 16px;
    background-color: #ffffff;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-title {
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    position: relative;
}

.accordion-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.accordion-item[open] > .accordion-title::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 20px 20px;
    border-top: 1px solid #ccc;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* --- Mission Page: Storytelling --- */
.storytelling-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.storytelling-block:last-child {
    margin-bottom: 0;
}

.storytelling-image img {
    border-radius: var(--border-radius-main);
}

.storytelling-title {
    color: var(--color-primary);
}

.values-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(1, 1fr);
}
.value-card {
    padding: 32px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-main);
}
.value-card h3 {
    color: var(--color-primary);
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info h3, .contact-form-wrapper h3 {
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 24px;
}
.contact-item h4 {
    margin-bottom: 4px;
    color: var(--color-primary);
}
.contact-item p {
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-btn);
    font-size: 16px;
    font-family: var(--font-primary);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: 2px solid var(--color-primary);
    border-color: transparent;
}

.form-btn {
    width: 100%;
}

/* --- Page Header (for inner pages) --- */
.page-header {
    padding: 80px 0;
}

.page-header h1 {
    font-size: clamp(40px, 7vw, 72px);
    margin-bottom: 16px;
}
.page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
}

/* --- Legal & Thank You Pages --- */
.legal-content, .thank-you-section {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h1, .legal-content h2 {
    margin-bottom: 24px;
}
.thank-you-icon {
    font-size: 64px;
}
.thank-you-actions {
    margin-top: 48px;
    border-top: 1px solid #ddd;
    padding-top: 32px;
}
.action-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

/* --- Footer --- */
.site-footer {
    padding-top: 60px;
    font-size: 15px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}
.footer-heading {
    color: #ffffff;
    margin-bottom: 16px;
}
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav li {
    margin-bottom: 10px;
}
.footer-nav a {
    color: var(--color-text-light) !important;
    opacity: 0.8;
}
.footer-nav a:hover {
    opacity: 1;
    color: var(--color-primary) !important;
}
.footer-column p {
    margin-bottom: 10px;
    opacity: 0.8;
}
.footer-column p a {
    color: var(--color-text-light) !important;
}
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-dark-bg) !important;
}
.footer-bottom p {
    margin: 0;
    color: var(--color-text-light) !important;
    opacity: 0.6;
}

/* --- 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-dark-bg);
    color: var(--color-text-light);
    border-top: 1px solid var(--color-border);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; }
#cookie-banner a { color: var(--color-primary); 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: 1px solid var(--color-primary);
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
.cookie-btn-accept {
    background-color: var(--color-primary);
    color: #fff;
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-primary);
}

/* --- Media Queries (Mobile-First) --- */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger, .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-split-color { flex-direction: column; }
    .hero-content-area, .hero-image-area { width: 100%; }
    .hero-content-area { text-align: center; }
}

@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; }
}

@media (min-width: 576px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-wrapper { grid-template-columns: repeat(2, 1fr); }
    .checklist-container { grid-template-columns: repeat(2, 1fr); }
    .storytelling-block { grid-template-columns: 1fr 1fr; }
    .storytelling-block.reverse .storytelling-text { order: 2; }
    .storytelling-block.reverse .storytelling-image { order: 1; }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-wrapper { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 40% 1fr; }
    .footer-container { grid-template-columns: 2fr 1fr 1fr 1fr; }
}