/*
  Theme: Bold Editorial
  Palette: Editorial Impact (#4B1461, #B22B5B, #D4AC0D)
  Border Style: Rounded
  Shadow Style: Dramatic
  Color Mode: Light
*/

:root {
    --color-primary: #B22B5B; /* Bold Magenta */
    --color-secondary: #4B1461; /* Deep Purple */
    --color-accent: #D4AC0D; /* Striking Gold */
    --color-text: #1C1C1C;
    --color-background: #FDFEFE;
    --color-light-gray: #f4f4f4;
    --color-white: #ffffff;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
    --border-radius-card: 16px;
    --border-radius-btn: 8px;
    --shadow-dramatic: 0 24px 64px rgba(0, 0, 0, 0.18);
    --shadow-dramatic-hover: 0 32px 80px rgba(0, 0, 0, 0.25);
}

/* Global Styles */
body {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    color: var(--color-secondary);
}

.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header & Navigation */
.site-header {
    position: relative;
    padding: 15px 10px;
    background-color: var(--color-background);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 14px;
}

.logo {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: bold;
    z-index: 100;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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-secondary);
    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;
    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: 73px;
    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);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-light-gray);
    text-align: center;
}

.mobile-nav a {
    font-size: 18px;
    color: var(--color-secondary);
    font-weight: 600;
    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); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: bold;
    border-radius: var(--border-radius-btn);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #9e254f;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-dramatic-hover);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.btn-secondary:hover {
    background-color: #3a104c;
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Hero Section: Grid Overlap */
.hero-section-overlap {
    padding: 60px 0;
    overflow: hidden;
}

.hero-overlap-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 30px;
}

.hero-overlap-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-overlap-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    object-fit: cover;
}

.hero-overlap-content {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    position: relative;
    z-index: 2;
}

.hero-title-editorial {
    font-size: clamp(30px, 9vw, 60px);
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-overlap-image {
        width: 100%;
    }

    .hero-overlap-content {
        width: calc(100% - 80px);
    }
}

@media (min-width: 992px) {
    .hero-overlap-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 0;
    }
    .hero-overlap-content {
        transform: translateX(-100px);
    }
}

/* Section Titles */
.section-title, .section-title-center {
    font-size: clamp(32px, 6vw, 56px);
    margin-bottom: 24px;
}
.section-title-center { text-align: center; }
.section-intro {
    font-size: clamp(18px, 2.2vw, 22px);
    max-width: 700px;
    margin: 0 auto 48px auto;
    text-align: center;
    color: #555;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--color-accent);
    top: 0;
    bottom: 0;
    left: 24px;
}
.timeline-item {
    padding: 20px 0 20px 70px;
    position: relative;
}
.timeline-icon {
    position: absolute;
    left: 0;
    top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 1;
    border: 3px solid var(--color-background);
}
.timeline-content h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(30px, 5vw, 48px);
    color: var(--color-white);
    margin-bottom: 16px;
}
.cta-banner p {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
}
.cta-banner .btn-secondary {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}
.cta-banner .btn-secondary:hover {
    background-color: #bfa00b;
}

/* Quote Highlight */
.section-quote-highlight {
    background-color: var(--color-light-gray);
}
.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.quote-mark {
    font-size: 120px;
    font-family: var(--font-heading);
    color: var(--color-accent);
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 1;
    z-index: 0;
}
.quote-text {
    font-size: clamp(24px, 4vw, 36px);
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.quote-author {
    font-weight: bold;
    color: var(--color-primary);
    font-size: 18px;
}

/* Icon Features */
.features-grid-icons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.feature-item-icon {
    text-align: center;
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item-icon:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic-hover);
}
.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.feature-item-icon h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
@media (min-width: 576px) {
    .features-grid-icons { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .features-grid-icons { grid-template-columns: repeat(3, 1fr); }
}

/* Stats Bar */
.stats-bar {
    background-color: var(--color-accent);
    padding: 40px 0;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    color: var(--color-secondary);
}
.stat-number {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 16px;
    font-weight: 600;
}
@media (min-width: 768px) {
    .stats-container { grid-template-columns: repeat(4, 1fr); }
}

/* Image-Content Split */
.content-image-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.content-image {
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
}
@media (min-width: 992px) {
    .content-image-split { grid-template-columns: 1fr 1fr; }
}

/* Inner Page Hero */
.section-hero-inner {
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
    padding: 80px 0;
}
.page-title {
    font-size: clamp(36px, 7vw, 64px);
    color: var(--color-white);
}
.page-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    max-width: 750px;
    margin: 16px auto 0;
    opacity: 0.9;
}

/* Program: Numbered Sections */
.numbered-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 80px;
    align-items: flex-start;
}
.numbered-section-number {
    font-size: clamp(80px, 18vw, 150px);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 0.8;
    opacity: 0.5;
}
.numbered-section-title {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
}
.numbered-section-image {
    border-radius: var(--border-radius-card);
    margin-top: 24px;
    box-shadow: var(--shadow-dramatic);
}
@media (min-width: 768px) {
    .numbered-section {
        grid-template-columns: 150px 1fr;
        gap: 40px;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.faq-item {
    border: 2px solid var(--color-light-gray);
    padding: 24px;
    border-radius: var(--border-radius-card);
}
.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-primary);
}
@media (min-width: 768px) {
    .faq-grid { grid-template-columns: 1fr 1fr; }
}

/* Mission: Vertical Storytelling */
.storytelling-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}
.storytelling-image {
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
}
@media (min-width: 992px) {
    .storytelling-block { grid-template-columns: 1fr 1fr; }
    .storytelling-block.reverse .storytelling-image-wrapper { order: -1; }
}
.section-manifesto {
    background: var(--color-light-gray);
    text-align: center;
}
.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.6;
    font-style: italic;
    color: var(--color-secondary);
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}
.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: calc(100% - 26px);
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-btn);
    font-size: 16px;
    font-family: var(--font-body);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(178, 43, 91, 0.2);
}
.btn-full { width: 100%; }
.contact-info-wrapper {
    background: var(--color-light-gray);
    padding: 30px;
    border-radius: var(--border-radius-card);
}
.contact-detail-item { margin-bottom: 24px; }
.contact-detail-item h3 { font-size: 20px; color: var(--color-primary); margin-bottom: 4px; }
.contact-detail-item p { margin: 0; }
@media (min-width: 992px) {
    .contact-layout { grid-template-columns: 60% 40%; }
}

/* Legal & Thank You Pages */
.legal-content { max-width: 800px; }
.legal-content h2 { margin-top: 40px; }
.thank-you-section { text-align: center; }
.thank-you-content { max-width: 700px; }
.thank-you-actions { margin: 40px 0; }
.action-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* Footer */
.site-footer {
    background-color: #1a1a1a !important;
    color: #ccc !important;
    padding: 60px 0 0;
    font-size: 15px;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.site-footer a { color: var(--color-white) !important; }
.site-footer .logo { color: var(--color-white) !important; }
.site-footer h3 { font-size: 18px; color: var(--color-white) !important; margin-bottom: 16px; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin-bottom: 10px; }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
}
.footer-bottom p { margin: 0; font-size: 14px; }
@media (min-width: 576px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .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;
    transform: translateY(0); transition: transform 0.4s ease;
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 15px; }
#cookie-banner 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: 8px 16px;
    border: none;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept { background-color: var(--color-accent); color: var(--color-secondary); }
.cookie-btn-decline { background-color: transparent; color: var(--color-white); border: 1px solid 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; }
}