/* 
Color Palette: slate-gold
--color-primary: #1C2B3A;
--color-secondary: #2D3E50;
--color-accent: #C9A227;
--bg-tint: #F5F8FB;
Style: warm-vintage (Serif headings, earthy/slate tones, textured CSS backgrounds, retro-decor, rounded borders, subtle shadows)
*/

:root {
    --color-primary: #1C2B3A;
    --color-secondary: #2D3E50;
    --color-accent: #C9A227;
    --bg-tint: #F5F8FB;
    --color-text-dark: #1E252D;
    --color-text-light: #F5F8FB;
    --color-white: #FFFFFF;
    
    /* Fonts representing warm-vintage design */
    --font-headings: 'Lora', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    /* Rounded border style */
    --border-radius-card: 16px;
    --border-radius-btn: 8px;
    --border-radius-circle: 50%;
    
    /* Subtle shadow style */
    --shadow-subtle: 0 4px 15px rgba(28, 43, 58, 0.06);
    --shadow-hover: 0 8px 24px rgba(28, 43, 58, 0.12);
}

/* Base resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.65;
    color: var(--color-text-dark);
    background-color: var(--bg-tint);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

/* Layout Containers */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

@media (min-width: 768px) {
    .section-container {
        padding: 48px 24px;
    }
}

@media (min-width: 1024px) {
    .section-container {
        padding: 80px 24px;
    }
}

/* Buttons */
.btn-primary, .btn-accent {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: var(--shadow-hover);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-accent:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-hover);
}

/* Header & Hamburger Menu */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(28, 43, 58, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-headings);
    font-size: 26px;
    font-weight: bold;
    color: var(--color-primary);
    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;
    margin: 5px 0;
    background-color: var(--color-primary);
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 16px;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

/* Mobile Navigation */
.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 {
    color: var(--color-text-light);
    font-size: 18px;
    display: block;
}

/* Mobile Adaptability */
@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);
    }
}

/* Vintage Badge */
.vintage-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    margin-bottom: 24px;
    background-color: rgba(201, 162, 39, 0.05);
}

/* HERO SECTION: bold-text-only */
.hero-bold-text {
    background: radial-gradient(circle at top right, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: var(--color-text-light);
    padding: 80px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle retro lines on background */
.hero-bold-text::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    pointer-events: none;
}

.hero-text-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-main-title {
    font-size: clamp(34px, 6vw, 64px);
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.6;
    color: rgba(245, 248, 251, 0.85);
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .hero-bold-text {
        padding: 120px 24px;
    }
}

/* Section Header Center */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--color-secondary);
}

/* SECTION 1: benefits-5asymm */
.benefits-asymm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-asymm-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .card-large {
        grid-column: span 3;
    }
    
    .card-small {
        grid-column: span 2;
    }
}

.benefit-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(28, 43, 58, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-card h3 {
    font-size: 22px;
    margin: 16px 0;
}

.card-badge {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
}

/* SECTION 2: numbered-steps */
.steps-section {
    background-color: var(--color-white);
    padding: 48px 0;
}

.steps-horizontal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .steps-horizontal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-horizontal-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-item {
    position: relative;
    padding-top: 24px;
}

.step-number {
    font-family: var(--font-headings);
    font-size: 54px;
    color: rgba(201, 162, 39, 0.2);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.step-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-text {
    font-size: 15px;
    color: var(--color-secondary);
}

/* SECTION 3: quote-highlight */
.quote-section {
    background-color: var(--bg-tint);
    padding: 80px 16px;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-family: var(--font-headings);
    font-size: 120px;
    color: var(--color-accent);
    line-height: 1;
    display: block;
    height: 40px;
    margin-bottom: 24px;
}

.quote-text {
    font-family: var(--font-headings);
    font-size: clamp(20px, 3vw, 30px);
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-secondary);
}

/* SECTION 4: cta-banner */
.cta-banner-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text-light);
    padding: 80px 16px;
    text-align: center;
}

.cta-banner-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-container h2 {
    color: var(--color-white);
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.cta-banner-container p {
    font-size: 18px;
    color: rgba(245, 248, 251, 0.85);
    margin-bottom: 32px;
}

/* SECTION 5: gallery-grid */
.gallery-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .gallery-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .item-featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-subtle);
}

.item-featured {
    height: 100%;
    min-height: 350px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(28,43,58,0.8) 0%, transparent 100%);
    color: var(--color-white);
    font-family: var(--font-headings);
    font-size: 20px;
}

.item-placeholder-1 {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.item-placeholder-2 {
    background-color: var(--color-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.placeholder-content h4 {
    color: inherit;
    font-size: 20px;
    margin-bottom: 8px;
}

.placeholder-content p {
    font-size: 14px;
    margin-bottom: 0;
}

/* PROGRAM PAGE */
.page-intro-section {
    background-color: var(--color-white);
    padding: 60px 16px;
    text-align: center;
}

.page-title {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--color-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Grid Two Columns */
.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-two-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

.methodology-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
}

/* Numbered Sections Program */
.numbered-sections-area {
    background-color: var(--color-white);
    padding: 48px 0;
}

.numbered-section-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(28, 43, 58, 0.08);
}

@media (min-width: 768px) {
    .numbered-section-item {
        flex-direction: row;
    }
}

.num-indicator {
    font-family: var(--font-headings);
    font-size: 72px;
    color: var(--color-accent);
    font-weight: 700;
    line-height: 1;
    min-width: 100px;
}

.num-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.module-bullets {
    list-style-type: square;
    padding-left: 20px;
    margin-top: 16px;
}

.module-bullets li {
    margin-bottom: 8px;
}

/* Stats Program */
.stats-section {
    background-color: var(--bg-tint);
}

.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-white);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    text-align: center;
    border-top: 4px solid var(--color-accent);
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 54px;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 16px;
    display: block;
}

/* FAQ Block */
.faq-section {
    background-color: var(--color-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-tint);
    border-radius: var(--border-radius-card);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-primary);
    user-select: none;
    outline: none;
}

.faq-content {
    padding: 20px 24px 20px 24px;
    border-top: 1px solid rgba(28, 43, 58, 0.05);
    margin-top: 10px;
}

/* MISSION PAGE: Split Layout */
.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .split-grid {
        grid-template-columns: 45% 55%;
    }
}

.split-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
}

.values-title {
    margin: 32px 0 16px 0;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 24px;
}

.values-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Manifesto Block */
.manifesto-section {
    background-color: var(--color-white);
    padding: 80px 16px;
    text-align: center;
}

.manifesto-container {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-container h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    margin-bottom: 24px;
}

.manifesto-container p {
    font-size: 18px;
    line-height: 1.8;
}

.manifesto-signature {
    font-family: var(--font-headings);
    font-size: 16px;
    font-style: italic;
    color: var(--color-accent);
    margin-top: 32px;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 60% 40%;
    }
}

.custom-form {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    margin-top: 24px;
    border: 1px solid rgba(28, 43, 58, 0.04);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(28, 43, 58, 0.15);
    border-radius: var(--border-radius-btn);
    font-family: var(--font-body);
    font-size: 15px;
    background-color: var(--bg-tint);
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
    outline: none;
    background-color: var(--color-white);
}

.info-card {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    margin-bottom: 20px;
    border: 1px solid rgba(28, 43, 58, 0.04);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.info-badge-card {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.info-badge-card h4 {
    color: var(--color-accent);
    margin-bottom: 12px;
}

/* LEGAL PAGES */
.legal-page {
    background-color: var(--color-white);
    padding: 48px 0;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 32px;
}

.legal-section-block {
    margin-bottom: 40px;
}

.legal-section-block h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.legal-section-block ul {
    padding-left: 24px;
    margin-bottom: 20px;
}

.disclaimer-box {
    background-color: rgba(201, 162, 39, 0.08);
    padding: 24px;
    border-left: 4px solid var(--color-accent);
    border-radius: var(--border-radius-btn);
}

/* THANK YOU PAGE */
.thank-you-page {
    padding: 80px 16px;
    text-align: center;
}

.thank-container {
    max-width: 750px;
    margin: 0 auto;
}

.success-icon {
    font-size: 64px;
    color: var(--color-accent);
    background-color: rgba(201, 162, 39, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: var(--border-radius-circle);
    display: inline-block;
    margin-bottom: 24px;
}

.thank-subtitle {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 40px;
}

.next-steps-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    text-align: left;
    margin-bottom: 40px;
    border: 1px solid rgba(28, 43, 58, 0.04);
}

.next-steps-card h3 {
    margin-bottom: 20px;
}

.steps-ordered-list {
    padding-left: 20px;
}

.steps-ordered-list li {
    margin-bottom: 16px;
}

.links-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* FOOTER (Strict Styling to prevent browser translator breaks) */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--color-text-light) !important;
    padding: 60px 10px 20px 10px !important;
    font-size: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 35% 20% 20% 25%;
    }
}

.site-footer h4 {
    color: var(--color-accent) !important;
    font-family: var(--font-headings) !important;
    font-size: 18px !important;
    margin-bottom: 20px !important;
}

.site-footer p, .site-footer a {
    color: rgba(245, 248, 251, 0.8) !important;
}

.site-footer a:hover {
    color: var(--color-accent) !important;
}

.footer-brand .logo {
    color: var(--color-white) !important;
    margin-bottom: 16px;
    display: inline-block;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 12px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center;
}

/* 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);
    color: var(--color-text-light);
    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; }
#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;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    border: none;
}
.cookie-btn-accept { background-color: var(--color-accent); color: var(--color-primary); }
.cookie-btn-decline { background-color: transparent; color: var(--color-text-light); border: 1px solid var(--color-text-light); }

@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; }
}