/* Palette Name: Terracotta Copper & Gold Dramatic Dark */
:root {
    --primary: #E05A47;
    --primary-hover: #C54432;
    --secondary: #D4AF37;
    --secondary-hover: #Bfa030;
    --bg-dark: #121212;
    --bg-card: #1C1C1E;
    --bg-card-alt: #252528;
    --text-light: #F5F5F7;
    --text-muted: #A1A1A6;
    --border-color: #2C2C2E;
    
    /* Design System Styles */
    --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --border-radius-card: 16px;
    --border-radius-btn: 8px;
    
    /* Dramatic Shadows */
    --shadow-dramatic: 0 24px 64px rgba(0, 0, 0, 0.45);
    --shadow-dramatic-hover: 0 32px 80px rgba(0, 0, 0, 0.60);
}

/* Base Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.dark-mode-body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography - Bold Editorial */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #FFF;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header & Hamburger Menu */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.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;
    font-family: var(--font-heading);
    color: var(--primary) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    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(--text-light);
    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(--text-light);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.desktop-nav .nav-list a:hover {
    color: var(--primary);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--bg-dark);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 18px;
    text-transform: uppercase;
    display: block;
}

/* Hero Diagonal Split Layout */
.hero-diagonal {
    padding: 40px 16px;
    border-bottom: 1px solid var(--border-color);
}

.hero-diagonal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.editorial-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(224, 90, 71, 0.15);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: var(--border-radius-btn);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFF;
    box-shadow: var(--shadow-dramatic);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dramatic-hover);
}

.btn-secondary {
    border: 2px solid var(--border-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-diagonal-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-dramatic);
}

.diagonal-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Horizontal Scroll Benefits */
.benefits-scroll-section {
    padding: 80px 16px;
    border-bottom: 1px solid var(--border-color);
}

.section-header-editorial {
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.section-tag {
    color: var(--secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.section-title-large {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

.hscroll-container {
    display: flex;
    gap: 24px;
    padding: 24px 8px;
    flex-wrap: wrap;
    justify-content: center;
}


.benefit-scroll-card {
    flex: 0 0 280px;
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    scroll-snap-align: start;
    box-shadow: var(--shadow-dramatic);
    transition: all 0.3s ease;
}

.benefit-scroll-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic-hover);
    border-color: var(--primary);
}

.card-num {
    font-family: var(--font-heading);
    font-size: 48px;
    color: rgba(224, 90, 71, 0.2);
    display: block;
    margin-bottom: 16px;
    font-weight: 900;
}

.benefit-scroll-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.benefit-scroll-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Gallery Grid Section */
.gallery-grid-section {
    padding: 80px 16px;
    border-bottom: 1px solid var(--border-color);
}

.editorial-gallery {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.gallery-img-el {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-el {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #FFF;
    font-size: 14px;
}

.item-accent {
    background: linear-gradient(135deg, var(--primary), var(--bg-card-alt));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--primary);
}

.accent-box-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #FFF;
}

.accent-box-content p {
    color: #FFD2CC;
    font-size: 16px;
}

/* Quote Highlight */
.quote-highlight-section {
    padding: 100px 16px;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.huge-quote {
    font-family: var(--font-heading);
    font-size: 120px;
    line-height: 1;
    color: var(--primary);
    opacity: 0.3;
    display: block;
    height: 50px;
}

.editorial-quote {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.4;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.quote-author {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 700;
}

/* Checklist Block */
.checklist-section {
    padding: 80px 16px;
    border-bottom: 1px solid var(--border-color);
}

.checklist-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.checklist-intro p {
    color: var(--text-muted);
    font-size: 18px;
    margin-top: 16px;
}

.checklist-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checklist-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.checkmark {
    font-size: 24px;
    color: var(--primary);
    background-color: rgba(224, 90, 71, 0.15);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.checklist-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.checklist-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Numbered Steps */
.numbered-steps-section {
    padding: 80px 16px;
    border-bottom: 1px solid var(--border-color);
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.step-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-dramatic);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-dramatic-hover);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--secondary);
    font-weight: 900;
    display: block;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Form Styling - Editorial */
.form-section-home {
    padding: 100px 16px;
    background-color: var(--bg-card-alt);
    border-bottom: 1px solid var(--border-color);
}

.form-container-editorial {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 16px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input, .form-group textarea {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-btn);
    padding: 16px;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(224, 90, 71, 0.2);
}

.btn-submit-editorial {
    background-color: var(--primary);
    color: #FFF;
    border: none;
    padding: 18px 36px;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: var(--shadow-dramatic);
    transition: all 0.3s ease;
}

.btn-submit-editorial:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dramatic-hover);
}

/* Page Header General */
.page-header-section {
    padding: 80px 16px 40px 16px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-header-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-main-title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* Timeline 4 Modules (program.html) */
.timeline-section {
    padding: 80px 16px;
    border-bottom: 1px solid var(--border-color);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-intro {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.timeline-intro p {
    color: var(--text-muted);
    font-size: 16px;
}

.timeline-wrapper {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--border-color);
}

.timeline-step {
    position: relative;
    margin-bottom: 48px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 4px solid var(--bg-dark);
}

.timeline-content {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-dramatic);
}

.module-tag {
    color: var(--secondary);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Integrated Image Section (program.html) */
.integrated-image-section {
    padding: 80px 16px;
    border-bottom: 1px solid var(--border-color);
}

.integrated-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.integrated-text-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.integrated-text-box p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.integrated-image-box {
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.integrated-img-el {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* FAQ Grid Style */
.faq-section {
    padding: 80px 16px;
    border-bottom: 1px solid var(--border-color);
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.faq-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
}

.faq-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
}

.faq-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Founder Story (mission.html) */
.founder-story-section {
    padding: 80px 16px;
    border-bottom: 1px solid var(--border-color);
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.story-image-wrapper {
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-text-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.story-text-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Grid Values (mission.html) */
.values-grid-section {
    padding: 80px 16px;
    border-bottom: 1px solid var(--border-color);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.value-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-dramatic);
    text-align: center;
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Manifesto Section */
.manifesto-section {
    padding: 100px 16px;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.manifesto-container {
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-tag {
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 16px;
}

.manifesto-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 44px);
    line-height: 1.2;
    margin-bottom: 24px;
    color: #FFF;
}

.manifesto-text {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Contact Split Layout */
.contact-split-section {
    padding: 80px 16px;
    border-bottom: 1px solid var(--border-color);
}

.contact-split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-form-area h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.contact-info-area {
    display: flex;
    flex-direction: column;
}

.info-card-editorial {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-dramatic);
}

.info-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.schedule-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.info-detail-block {
    margin-bottom: 24px;
}

.info-detail-block:last-child {
    margin-bottom: 0;
}

.info-detail-block h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.info-detail-block p {
    font-size: 16px;
    color: var(--text-light);
}

.info-link {
    color: var(--text-light);
    font-weight: 700;
}

.info-link:hover {
    color: var(--primary);
}

/* Legal Pages */
.legal-page-main {
    padding: 80px 16px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.legal-container > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.legal-section p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* Thank You Page */
.thank-you-main {
    padding: 100px 16px;
    text-align: center;
}

.thank-container {
    max-width: 600px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 64px;
    color: var(--primary);
    background-color: rgba(224, 90, 71, 0.15);
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 32px;
}

.thank-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.thank-intro {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.next-steps-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    text-align: left;
    margin-bottom: 40px;
    box-shadow: var(--shadow-dramatic);
}

.next-steps-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.next-steps-list {
    list-style: none;
}

.next-steps-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-muted);
}

.next-steps-list li::before {
    content: "•";
    color: var(--primary);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

/* 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(--bg-card);
    border-top: 2px solid var(--primary);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--text-muted);
}

#cookie-banner p a {
    color: var(--primary);
    font-weight: 700;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept, .cookie-btn-decline {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--primary);
    color: #FFF;
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-hover);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.cookie-btn-decline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Footer Section */
.site-footer {
    background-color: #0F0F10 !important; /* Hardcoded hex as requested to prevent auto-translators style broke */
    color: #A1A1A6 !important;
    padding: 80px 16px 40px 16px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--primary) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.footer-disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #8E8E93 !important;
}

.footer-grid h4 {
    color: #FFF !important;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 12px;
}

.footer-links a, .footer-legal a {
    color: #A1A1A6 !important;
    font-size: 14px;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--primary) !important;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #A1A1A6 !important;
}

.footer-tel, .footer-email {
    color: #F5F5F7 !important;
    font-weight: 700;
}

.footer-tel:hover, .footer-email:hover {
    color: var(--primary) !important;
}

.footer-bottom {
    border-top: 1px solid #2C2C2E !important;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #8E8E93 !important;
}

/* Mobile-First Responsive Extensions */
@media (min-width: 600px) {
    #cookie-banner {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-btns {
        width: auto;
    }
}

@media (min-width: 768px) {
    /* Header Desktop */
    .hamburger {
        display: none;
    }
    
    .desktop-nav {
        display: block;
    }
    
    .mobile-nav {
        display: none;
    }

    /* Grids Layouts */
    .hero-diagonal-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diagonal-img {
        height: 450px;
    }

    .editorial-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .item-large {
        grid-column: span 2;
    }

    .checklist-grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-group-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrated-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-split-container {
        grid-template-columns: 1.5fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Burger Activation */
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    /* Hamburger Animation */
    #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);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}