/*
 * Design System: bold-editorial
 * Border Style: pill
 * Shadow Style: dramatic
 * Color Mode: dark
 * Color Palette: Charcoal & Amber
 */

:root {
    --color-background: #111111;
    --color-background-secondary: #1C1C1C;
    --color-text: #EAEAEA;
    --color-text-muted: #A0A0A0;
    --color-primary: #F39C12; /* Amber */
    --color-primary-dark: #D35400;
    --color-accent: #FFFFFF;
    
    --font-family-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-family-serif: 'Georgia', 'Times New Roman', serif;
}

/* --- Global Styles & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    font-size: clamp(16px, 1.5vw, 18px);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-responsive {
    width: 100%;
    height: auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-family-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-accent);
}

h1 { font-size: clamp(48px, 9vw, 90px); }
h2 { font-size: clamp(36px, 6vw, 56px); }
h3 { font-size: clamp(24px, 4vw, 32px); }

/* --- Layout & Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.section-dark {
    background-color: var(--color-background-secondary);
}

.cta-content {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 15px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    z-index: 100;
    color: var(--color-accent);
}

.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(--color-accent);
    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: 500;
    color: var(--color-text);
    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-background-secondary);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav li a {
    color: var(--color-text);
    font-size: 18px;
}

@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); }
}

/* --- Buttons & Forms --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 50px; /* pill style */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    margin-top: 10px;
}
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-background);
}
.btn-primary:hover {
    color: var(--color-background);
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.2);
}
.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
    transform: translateY(-3px);
}
.btn-full-width {
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 24px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text-muted);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px; /* pill style */
    border: 1px solid #444;
    background-color: var(--color-background-secondary);
    color: var(--color-text);
    font-size: 16px;
}
.contact-form textarea {
    border-radius: 28px; /* pill style */
    resize: vertical;
}

/* --- Hero Section --- */
.hero-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    padding: 100px 0;
    background: radial-gradient(circle, #2c3e50 0%, #111111 70%);
}
.hero-content-center {
    max-width: 900px;
}
.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--color-text-muted);
    margin: 24px 0 40px;
}

/* --- Page Hero --- */
.page-hero {
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}
.page-title {
    font-size: clamp(40px, 7vw, 72px);
}
.page-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 16px auto 0;
}

/* --- Specific Section Styles --- */
.dramatic-shadow {
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dramatic-shadow:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.65);
}

.pill-border {
    border-radius: 28px; /* pill style */
}

/* Benefits Grid */
.benefits-grid-2x2 {
    display: grid;
    gap: 32px;
}
.benefit-card {
    background-color: var(--color-background-secondary);
    padding: 32px;
    border-radius: 28px; /* pill style */
}
.benefit-card h3 {
    color: var(--color-primary);
    margin-bottom: 16px;
}
@media (min-width: 768px) {
    .benefits-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Stats Bar */
.stats-bar {
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: 40px 0;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: bold;
    font-family: var(--font-family-serif);
    line-height: 1.1;
}
.stat-label {
    font-size: 16px;
    font-weight: 500;
}
@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Two Column Layout */
.two-col-layout {
    display: grid;
    gap: 48px;
    align-items: center;
}
.two-col-image {
    order: 1;
}
.two-col-content {
    order: 2;
}
.custom-list {
    list-style: none;
    padding-left: 0;
    margin-top: 24px;
}
.custom-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}
.custom-list li::before {
    content: '✓';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}
@media (min-width: 992px) {
    .two-col-layout {
        grid-template-columns: 1fr 1fr;
    }
    .two-col-layout.reverse .two-col-image {
        order: 2;
    }
    .two-col-layout.reverse .two-col-content {
        order: 1;
    }
}

/* Numbered Steps */
.numbered-steps-container {
    display: grid;
    gap: 40px;
}
.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.step-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: bold;
    font-family: var(--font-family-serif);
    color: var(--color-primary);
    line-height: 1;
    opacity: 0.5;
}
.step-content h3 {
    margin-bottom: 8px;
}
@media (min-width: 1024px) {
    .numbered-steps-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Expert Block */
.expert-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: var(--color-background-secondary);
    padding: 48px;
    border-radius: 28px; /* pill style */
}
.expert-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #333;
    flex-shrink: 0;
}
.expert-quote blockquote {
    font-size: clamp(20px, 2.2vw, 26px);
    font-style: italic;
    border-left: 4px solid var(--color-primary);
    padding-left: 24px;
    margin: 0 0 24px 0;
}
.expert-quote cite {
    font-style: normal;
    color: var(--color-text-muted);
}
@media (min-width: 768px) {
    .expert-block {
        flex-direction: row;
        align-items: center;
    }
}

/* Program Page: Numbered Sections */
.numbered-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
    align-items: center;
}
.numbered-section-number {
    font-size: clamp(100px, 20vw, 200px);
    font-weight: bold;
    font-family: var(--font-family-serif);
    color: rgba(243, 156, 18, 0.1);
    line-height: 0.8;
}
.numbered-section-content {
    max-width: 750px;
}
.content-image {
    margin-bottom: 24px;
}
@media (min-width: 992px) {
    .numbered-section {
        flex-direction: row;
        text-align: left;
    }
    .numbered-section.reverse {
        flex-direction: row-reverse;
        text-align: right;
    }
}

/* Mission Page: Storytelling */
.story-block {
    display: grid;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}
.story-image {
    order: 1;
}
.story-content {
    order: 2;
}
@media (min-width: 992px) {
    .story-block {
        grid-template-columns: 1fr 1fr;
    }
    .story-block.reverse .story-image {
        order: 2;
    }
    .story-block.reverse .story-content {
        order: 1;
    }
}

/* Contact Page */
.contact-layout {
    display: grid;
    gap: 48px;
}
.contact-info-card {
    background-color: var(--color-background-secondary);
    padding: 32px;
    border-radius: 28px; /* pill style */
}
.contact-info-card h3 {
    margin-bottom: 16px;
}
.contact-details p {
    margin-bottom: 16px;
}
@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 3fr 2fr;
    }
}

/* Legal & Thank You Pages */
.legal-content h1, .legal-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}
.legal-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thank-you-title {
    color: var(--color-primary);
}
.next-steps {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #333;
}
.next-steps-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-background-secondary) !important;
    color: var(--color-text-muted) !important;
    padding: 60px 0 0;
}
.footer-container {
    display: grid;
    gap: 40px;
    padding-bottom: 40px;
}
.site-footer h3 {
    color: var(--color-accent) !important;
    margin-bottom: 16px;
}
.footer-links ul, .footer-legal ul {
    list-style: none;
    padding: 0;
}
.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}
.site-footer a {
    color: var(--color-text-muted) !important;
}
.site-footer a:hover {
    color: var(--color-primary) !important;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* --- 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(--color-background-secondary);
    color: var(--color-text);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    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: 15px; }
#cookie-banner a { text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--color-background);
}
.cookie-btn-decline {
    background-color: #444;
    color: var(--color-text);
}
@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; }
}