/* Palette Name: golden-rose */
:root {
    --color-primary: #8C7000;
    --color-secondary: #B09000;
    --color-accent: #C2185B;
    --bg-tint: #FFFBE0;
    
    --text-main: #2C281E;
    --text-muted: #5E5848;
    --white: #FFFFFF;
    
    --border-radius-card: 16px;
    --border-radius-btn: 8px;
    
    --shadow-dramatic: 0 24px 64px rgba(0,0,0,0.22);
    --shadow-hover: 0 32px 80px rgba(0,0,0,0.30);
    --transition-standard: all 0.3s ease;
}

/* Base Resets & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-tint);
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-standard);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center {
    text-align: center;
}

.space-top {
    margin-top: 24px;
}

/* Mobile-First Containers & Layouts */
.section-container {
    padding: 48px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.grid-three-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .section-container {
        padding: 80px 24px;
    }
    
    .grid-two-columns {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .grid-three-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Header Layout & Burger Logic */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--white);
    border-bottom: 2px solid rgba(140, 112, 0, 0.15);
    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: 24px;
    font-weight: 800;
    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 a {
    font-weight: 600;
    color: var(--text-main);
}

.desktop-nav a:hover {
    color: var(--color-accent);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
}

.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(--text-main);
    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);
    }
}

/* Buttons & Interactive Elements */
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    min-height: 44px;
    border: none;
    cursor: pointer;
    transition: var(--transition-standard);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 14px 28px;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    min-height: 44px;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: var(--transition-standard);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--white);
}

/* Hero Section: bold-text-only */
.hero-bold {
    background: linear-gradient(135deg, var(--bg-tint) 0%, #FFF3B3 100%);
    padding: 80px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(140, 112, 0, 0.2);
}

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero-subtext {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-action-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cards & Styling Utilities */
.card-styled {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-card);
}

.shadow-dramatic {
    box-shadow: var(--shadow-dramatic);
    transition: var(--transition-standard);
}

.shadow-dramatic:hover {
    box-shadow: var(--shadow-hover);
}

.rounded-image {
    border-radius: var(--border-radius-card);
}

/* Section Titles */
.section-title {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Section 2: Horizontal Scroll Carousel */
.benefits-scroll-section {
    background-color: var(--white);
}

.hscroll-container {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
}

.scroll-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background-color: var(--bg-tint);
    padding: 24px;
    border-radius: var(--border-radius-card);
    border-top: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
    .scroll-card {
        flex: 0 0 320px;
    }
}

.card-tag {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.scroll-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.scroll-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Narrative Sections */
.narrative-section {
    background-color: var(--bg-tint);
}

.narrative-content h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    margin-bottom: 16px;
}

.narrative-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* Section 3: FAQ Accordion */
.faq-accordion-section {
    background-color: var(--white);
}

.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-tint);
    border-radius: var(--border-radius-btn);
    padding: 16px 20px;
}

.faq-question {
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-primary);
}

.faq-answer {
    margin-top: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Section 4: Pull Quote */
.quote-section {
    background-color: var(--color-secondary);
    color: var(--white);
    text-align: center;
}

.pull-quote {
    max-width: 800px;
    margin: 0 auto;
}

.pull-quote p {
    font-size: clamp(20px, 4vw, 30px);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 16px;
}

.pull-quote cite {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

/* Section 5: Checklist Block */
.checklist-section {
    background-color: var(--white);
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: var(--bg-tint);
    padding: 16px;
    border-radius: var(--border-radius-btn);
}

.check-icon {
    background-color: var(--color-accent);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.check-text {
    font-size: 15px;
    color: var(--text-main);
}

/* Section 6: Icon Features Grid */
.icon-features-section {
    background-color: var(--bg-tint);
}

.icon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-card);
    text-align: center;
    border: 1px solid rgba(140, 112, 0, 0.1);
}

.feature-emoji {
    font-size: 36px;
    margin-bottom: 12px;
}

.icon-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.icon-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Timeline Layout (program.html) */
.page-banner {
    background-color: var(--color-primary);
    color: var(--white);
    padding: 60px 16px;
}

.page-banner h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 12px;
}

.timeline-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-marker {
    background-color: var(--color-accent);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.module-tag {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.timeline-content h2 {
    font-size: 22px;
    margin: 8px 0 12px 0;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 10px;
}

.stats-overview {
    background-color: var(--white);
}

.stat-card {
    padding: 24px;
    background-color: var(--bg-tint);
    border-radius: var(--border-radius-card);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-accent);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--white);
}

.cta-banner h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.cta-banner p {
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Grid Values Layout (mission.html) */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-card);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.manifesto-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    line-height: 1.8;
}

.manifesto-box h2 {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.manifesto-box p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* Contact Page Layout (contact.html) */
.contact-section {
    background-color: var(--bg-tint);
}

.contact-form-wrapper {
    max-width: 800px;
}

.contact-form-wrapper h2 {
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #CCC;
    border-radius: var(--border-radius-btn);
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-submit-btn {
    width: 100%;
    margin-top: 8px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card h3 {
    margin-bottom: 16px;
    color: var(--color-primary);
}

.info-item {
    margin-bottom: 12px;
    font-size: 15px;
}

/* Legal Pages (cookies-policy.html, terms-of-service.html) */
.legal-content-section h2 {
    font-size: 20px;
    margin: 24px 0 12px 0;
    color: var(--color-primary);
}

.legal-content-section p, 
.legal-content-section ul {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 16px;
}

.legal-content-section ul {
    padding-left: 20px;
}

/* Thank You Page */
.thank-box {
    max-width: 600px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.thank-box h1 {
    font-size: 28px;
    margin-bottom: 16px;
}

.thank-box p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.next-steps-box {
    background-color: var(--bg-tint);
    padding: 20px;
    border-radius: var(--border-radius-btn);
    margin-top: 24px;
    text-align: left;
}

.next-steps-box h3 {
    margin-bottom: 12px;
    font-size: 16px;
}

.clean-list {
    list-style: none;
}

.clean-list li {
    padding: 6px 0;
    font-size: 14px;
}

/* Footer Layout & Auto-Translate Fix */
.site-footer {
    background-color: #1F1B12 !important;
    color: #FFFFFF !important;
    padding: 60px 16px 20px 16px;
    border-top: 3px solid var(--color-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary) !important;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: #D3CDC0 !important;
    line-height: 1.5;
}

.footer-col h4 {
    font-size: 18px;
    color: #FFFFFF !important;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #D3CDC0 !important;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--color-primary) !important;
}

.footer-col p {
    font-size: 14px;
    color: #D3CDC0 !important;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: #A39D90 !important;
}

/* Cookie Banner Styling */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--text-main);
    color: var(--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 20px rgba(0,0,0,0.3);
}

#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-primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-weight: 700;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-weight: 600;
}

@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;
    }
}