/* Palette Name: espresso-amber */
:root {
    --color-primary: #2C1810;
    --color-secondary: #4A2E20;
    --color-accent: #D4900A;
    --bg-tint: #FBF6F0;
    --text-dark: #1A0F0A;
    --text-light: #FBF6F0;
    --white: #FFFFFF;
    --gray-light: #ECE5DD;
    --font-sans: 'Helvetica Neue', Arial, sans-serif;
    --font-serif: Georgia, serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-tint);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography (Bold Editorial Style) */
h1, h2, h3, h4 {
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(36px, 7vw, 76px);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    margin-bottom: 15px;
}

p {
    font-size: clamp(15px, 1.5vw, 17px);
    margin-bottom: 20px;
    color: rgba(44, 24, 16, 0.85);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

/* Pill Borders and Dramatic Shadows Styles */
.btn, .benefit-card, .testimonial-card, .timeline-content-box, .info-block-card, .manifesto-box, .thank-you-card, .custom-contact-form input, .custom-contact-form textarea {
    border-radius: 28px; /* pill style for cards */
}

.btn {
    border-radius: 50px; /* pill style for buttons */
    padding: 14px 32px;
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(212, 144, 10, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(44, 24, 16, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-primary);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-light) !important;
    letter-spacing: -1px;
    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(--text-light);
    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(--text-light);
    font-weight: bold;
}

.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(--color-primary);
}

.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(--text-light);
    font-size: 18px;
    font-weight: bold;
}

/* Sections Base */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-light {
    background-color: var(--bg-tint);
    padding: 80px 0;
}

.section-dark {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 80px 0;
}

.section-dark h2, .section-dark h3, .section-dark p {
    color: var(--text-light);
}

.section-header-editorial {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header-editorial .sub-title {
    display: inline-block;
    padding: 6px 18px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: bold;
    border-radius: 999px;
    margin-bottom: 20px;
}

/* HERO: DIAGONAL-SPLIT Layout */
.hero-diagonal-split {
    display: flex;
    flex-direction: column;
    background-color: var(--color-primary);
    color: var(--text-light);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-diagonal-split h1, .hero-diagonal-split p {
    color: var(--text-light);
}

.hero-content {
    padding: 60px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.hero-diagonal-split p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 35px;
    color: rgba(251, 246, 240, 0.8);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-diagonal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Benefits 3-Col Layout */
.cards-grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.benefit-card {
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 24px 64px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(44, 24, 16, 0.18);
}

.card-icon {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 20px;
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background-color: rgba(0, 0, 0, 0.2);
    font-weight: bold;
    color: var(--color-accent);
}

/* Checklist Block */
.checklist-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.checklist-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.check-icon {
    font-size: 24px;
    color: var(--color-accent);
    font-weight: bold;
}

/* Testimonials Vertical */
.testimonials-vertical {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: var(--color-accent);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-name {
    display: block;
    font-weight: bold;
}

.author-meta {
    font-size: 12px;
    opacity: 0.7;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.step-item {
    position: relative;
    padding-top: 40px;
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(212, 144, 10, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.step-item h3 {
    position: relative;
    z-index: 2;
}

/* Split Call to Action */
.cta-split-section {
    background-color: var(--color-primary);
    color: var(--text-light);
}

.cta-split-grid {
    display: flex;
    flex-direction: column;
}

.cta-split-image {
    min-height: 300px;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-split-text {
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-split-text h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-split-text p {
    color: rgba(251, 246, 240, 0.8);
    margin-bottom: 30px;
}

/* Program Page / Timeline */
.hero-compact {
    padding: 100px 0 60px;
}

.huge-title {
    font-size: clamp(32px, 6vw, 64px);
    color: var(--text-light);
}

.lead-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(251, 246, 240, 0.8);
}

.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-block {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.timeline-content-box {
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 24px 64px rgba(44, 24, 16, 0.08);
    flex: 1;
}

.module-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(44, 24, 16, 0.05);
    border-radius: 999px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
}

.module-bullets {
    list-style: none;
    margin-top: 20px;
}

.module-bullets li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-weight: bold;
}

.module-bullets li::before {
    content: "•";
    color: var(--color-accent);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.stat-num {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
}

.split-layout-v2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-img-rounded {
    width: 100%;
    height: auto;
    border-radius: 36px;
    object-fit: cover;
}

/* Mission Page / Story-Team Layout */
.split-story-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-img-frame {
    width: 100%;
    height: auto;
    border-radius: 36px;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 36px;
}

.value-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.manifesto-box {
    background-color: var(--white);
    padding: 60px 40px;
    box-shadow: 0 24px 64px rgba(44, 24, 16, 0.1);
}

.badge-accent {
    display: inline-block;
    padding: 6px 18px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
}

.manifesto-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 24px;
}

/* Contact Page Layout */
.contact-split-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-form-container, .info-block-card {
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 24px 64px rgba(44, 24, 16, 0.06);
}

.info-block-card {
    margin-bottom: 30px;
}

.custom-contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.custom-contact-form input, .custom-contact-form textarea {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid var(--gray-light);
    font-family: var(--font-sans);
    font-size: 16px;
    background-color: var(--bg-tint);
    outline: none;
    transition: border-color 0.3s ease;
}

.custom-contact-form input:focus, .custom-contact-form textarea:focus {
    border-color: var(--color-accent);
}

.contact-details-list, .schedule-list {
    list-style: none;
    margin-top: 20px;
}

.contact-details-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--bg-tint);
    padding-bottom: 10px;
}

.contact-details-list strong {
    display: block;
    color: var(--color-primary);
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-tint);
}

/* Legal Documents */
.legal-document h1 {
    margin-bottom: 10px;
}

.legal-date {
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0.7;
}

.legal-section {
    margin-bottom: 40px;
}

.alert-box-legal {
    background-color: var(--white);
    padding: 30px;
    border-left: 6px solid var(--color-accent);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(44, 24, 16, 0.05);
}

/* Thank You Section */
.thank-you-section {
    padding: 100px 0;
}

.thank-you-card {
    background-color: var(--white);
    padding: 60px 40px;
    box-shadow: 0 24px 64px rgba(44, 24, 16, 0.1);
    text-align: center;
}

.thank-icon {
    font-size: 64px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 20px;
}

.next-steps-box {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-tint);
}

.next-links-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.next-link {
    font-weight: bold;
    color: var(--color-primary);
}

.next-link:hover {
    color: var(--color-accent);
}

/* Footer Protection & Layout */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--text-light) !important;
    padding: 80px 0 40px;
}

.site-footer h4, .site-footer p, .site-footer span, .site-footer a {
    color: var(--text-light) !important;
}

.site-footer a:hover {
    color: var(--color-accent) !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-col .footer-logo {
    font-size: 32px;
    font-weight: 900;
    display: block;
    margin-bottom: 20px;
}

.footer-links-col ul, .footer-legal-col ul {
    list-style: none;
}

.footer-links-col li, .footer-legal-col li {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(251, 246, 240, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* 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-primary);
    color: var(--text-light);
    transform: translateY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.15);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    color: var(--text-light);
}

#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(--color-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
}

/* Responsive Styles (Mobile-First approach) */
@media (min-width: 768px) {
    /* Header */
    .hamburger {
        display: none;
    }
    
    /* Hero Diagonal Split to 2 Cols */
    .hero-diagonal-split {
        flex-direction: row;
        align-items: stretch;
    }
    
    .hero-content {
        padding: 80px;
        flex: 0 0 50%;
    }
    
    .hero-image-wrapper {
        flex: 0 0 50%;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    }
    
    /* Grid 3-Col Benefits */
    .cards-grid-3col {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Checklist 2-Col */
    .checklist-grid-2col {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    /* Steps 4-Col */
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* CTA Split 2-Col */
    .cta-split-grid {
        flex-direction: row;
    }
    
    .cta-split-image, .cta-split-text {
        flex: 0 0 50%;
    }
    
    .cta-split-text {
        padding: 80px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Split V2 */
    .split-layout-v2 {
        flex-direction: row;
        align-items: center;
    }
    
    .split-text-box, .split-image-box {
        flex: 0 0 50%;
    }
    
    /* Split Story */
    .split-story-grid {
        flex-direction: row;
        align-items: center;
    }
    
    .story-text, .story-image-decor {
        flex: 0 0 50%;
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Split */
    .contact-split-grid {
        flex-direction: row;
    }
    
    .contact-form-container {
        flex: 0 0 60%;
    }
    
    .contact-info-container {
        flex: 0 0 40%;
    }
    
    /* Footer Grid */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Next Links Thank You */
    .next-links-grid {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

@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);
    }
    
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-btns {
        width: 100%;
    }
    
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}