/* 
   COLORS PALETTE: charcoal-teal
   Primary: #1C2A35 
   Secondary: #37474F 
   Accent: #00695C 
   Tint: #F5F8F8 
   
   STYLE: warm-vintage
   BORDER: rounded (12px cards, 8px buttons)
   SHADOW: subtle (0 4px 12px rgba(0,0,0,0.05))
   MODE: light
*/

:root {
    --color-primary: #1C2A35;
    --color-secondary: #37474F;
    --color-accent: #00695C;
    --bg-tint: #F5F8F8;
    --bg-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-muted: #5A6B7C;
    --border-radius-card: 12px;
    --border-radius-btn: 8px;
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.05);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-tint);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Containers & Layouts */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

.section-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 1024px) {
    .section-container {
        padding: 80px 24px;
    }
    .section-container-narrow {
        padding: 80px 24px;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--bg-white) !important;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-btn);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary) !important;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-btn);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--bg-white) !important;
}

/* Header & Hamburger Menu */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    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;
    background-color: var(--color-primary);
    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 .nav-list a {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 16px;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

.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(--bg-white);
    box-shadow: var(--shadow-subtle);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    display: block;
}

@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 (split-color) */
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(80vh - 60px);
}

.hero-text-block {
    background-color: var(--bg-tint);
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    align-self: flex-start;
    background-color: rgba(0, 105, 92, 0.1);
    color: var(--color-accent);
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-block {
    position: relative;
    min-height: 300px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr 1fr;
    }
    .hero-text-block {
        padding: 80px;
    }
}

/* Horizontal Scroll Benefits */
.benefits-scroll-section {
    background-color: var(--bg-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
}

.section-title-vintage {
    font-size: clamp(28px, 4vw, 42px);
    margin-top: 8px;
    margin-bottom: 16px;
}

.section-intro-text {
    font-size: 18px;
    color: var(--text-muted);
}

.horizontal-scroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--bg-tint);
}

.horizontal-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--color-accent);
    border-radius: 10px;
}

.benefit-card-scroll {
    flex: 0 0 280px;
    background-color: var(--bg-tint);
    padding: 32px 24px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0,0,0,0.03);
}

.card-icon {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-accent);
    margin-bottom: 16px;
    font-style: italic;
}

.benefit-card-scroll h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card-scroll p {
    font-size: 15px;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .benefit-card-scroll {
        flex: 0 0 320px;
    }
}

/* Expert Quote Block */
.expert-quote-section {
    background-color: var(--bg-tint);
}

.expert-card-layout {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.expert-avatar-placeholder {
    width: 100px;
    height: 100px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.avatar-initials {
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 32px;
}

.expert-content {
    text-align: center;
}

.expert-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.expert-name {
    font-size: 18px;
    margin-bottom: 4px;
}

.expert-title {
    font-size: 14px;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .expert-card-layout {
        grid-template-columns: auto 1fr;
        text-align: left;
    }
    .expert-content {
        text-align: left;
    }
}

/* Quote Highlight Block */
.quote-highlight-section {
    background-color: var(--color-primary);
    color: var(--bg-white);
    padding: 80px 24px;
    text-align: center;
}

.quote-highlight-bg {
    max-width: 800px;
    margin: 0 auto;
}

.vintage-quote-mark {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 0.1;
    color: var(--color-accent);
    display: block;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: clamp(22px, 3.5vw, 32px);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 24px;
}

.quote-author {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* Two Column Layout */
.two-col-layout-section {
    background-color: var(--bg-white);
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.grid-side-img {
    width: 100%;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
}

.side-badge {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.side-paragraph {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.vintage-checklist {
    list-style: none;
    margin-bottom: 32px;
}

.vintage-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
}

.vintage-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.btn-text-link {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Testimonials Vertical */
.testimonials-vertical-section {
    background-color: var(--bg-tint);
}

.testimonials-vertical-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.testimonial-item-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-body {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial-user {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-muted);
}

/* Program Page Accordion */
.page-intro-hero {
    background-color: var(--color-secondary);
    color: var(--bg-white);
    text-align: center;
    padding: 60px 24px;
}

.page-intro-hero h1 {
    color: var(--bg-white);
}

.page-main-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.page-subtitle-text {
    font-size: 18px;
    opacity: 0.9;
}

.program-accordion-section {
    background-color: var(--bg-white);
}

.vintage-accordion {
    margin-top: 40px;
}

.accordion-item {
    background-color: var(--bg-tint);
    border-radius: var(--border-radius-card);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    box-shadow: var(--shadow-subtle);
}

.accordion-header {
    padding: 24px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: bold;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    outline: none;
}

.accordion-num {
    color: var(--color-accent);
    font-style: italic;
    font-size: 24px;
    margin-right: 16px;
}

.accordion-content {
    padding: 0 24px 24px 64px;
}

.accordion-content p {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-muted);
}

/* Statistics */
.stats-section {
    background-color: var(--color-primary);
    color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--color-accent);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-card .stat-label {
    font-size: 15px;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ Block */
.faq-section {
    background-color: var(--bg-tint);
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius-card);
    margin-bottom: 16px;
    box-shadow: var(--shadow-subtle);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Program CTA */
.program-cta-section {
    background-color: var(--bg-white);
}

.cta-banner-box {
    background-color: var(--bg-tint);
    padding: 60px 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
}

.cta-banner-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-banner-box p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Mission Split Section */
.mission-split-section {
    background-color: var(--bg-white);
}

.mission-split-container {
    display: grid;
    grid-template-columns: 1fr;
}

.mission-text-side {
    padding: 48px 24px;
}

.mission-paragraph {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.values-vertical-list {
    margin-top: 32px;
}

.value-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.value-bullet {
    color: var(--color-accent);
    font-size: 32px;
    line-height: 1;
}

.value-item h5 {
    font-size: 18px;
    margin-bottom: 6px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 15px;
}

@media (min-width: 1024px) {
    .mission-split-container {
        grid-template-columns: 1fr 1fr;
    }
    .mission-text-side {
        padding: 80px;
    }
    .mission-image-side {
        height: 100%;
    }
    .mission-side-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Manifesto */
.manifesto-section {
    background-color: var(--bg-tint);
}

.manifesto-box {
    margin-top: 40px;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    border-top: 4px solid var(--color-accent);
}

.manifesto-lead {
    font-size: 22px;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.manifesto-text {
    font-size: 16px;
    color: var(--text-muted);
}

/* Contact Page Form & Layout */
.contact-layout-section {
    background-color: var(--bg-white);
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.form-intro {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.vintage-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-primary);
}

.form-group input, .form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    background-color: var(--bg-tint);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
}

.form-submit-btn {
    align-self: flex-start;
}

.info-card-vintage {
    background-color: var(--bg-tint);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
}

.info-card-vintage h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.info-lead-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.contact-detail-block {
    margin-bottom: 24px;
}

.contact-detail-block h5 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-detail-block p {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 600;
}

@media (min-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 3fr 2fr;
    }
}

/* Legal Content Pages */
.legal-content-section {
    background-color: var(--bg-white);
}

.legal-date {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.legal-text-block h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-text-block p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-text-block ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-text-block li {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Thank You Section */
.thank-you-section {
    background-color: var(--bg-tint);
}

.thank-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    text-align: center;
}

.thank-icon {
    font-size: 64px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 20px;
}

.thank-lead-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.vintage-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 32px 0;
}

.next-steps-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.next-steps-block p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.thank-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.thank-link-item {
    font-weight: bold;
    color: var(--color-accent);
    font-size: 16px;
}

/* Footer (Safe colors for translator protection) */
.site-footer {
    background-color: #37474F !important;
    color: #F5F8F8 !important;
    padding: 60px 20px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-col .footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: bold;
    color: #FFFFFF !important;
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: #F5F8F8 !important;
    opacity: 0.8;
}

.footer-grid h4 {
    color: #FFFFFF !important;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #F5F8F8 !important;
    opacity: 0.8;
    font-size: 14px;
}

.footer-menu a:hover {
    opacity: 1;
    color: #00695C !important;
}

.footer-email-link {
    color: #FFFFFF !important;
    text-decoration: underline !important;
}

.footer-contact-col p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--color-primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

#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 {
    background-color: var(--color-accent);
    color: var(--bg-white);
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 8px 16px;
    font-size: 14px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
}

@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;
    }
}