/* Palette: Burnt Terracotta & Vintage Gold on Dark Earth - #1a120b, #2c1e13, #d4a373, #e07a5f */
:root {
    --bg-color: #1a120b;
    --surface-color: #2c1e13;
    --surface-light: #3f2a1d;
    --text-main: #f5ebe0;
    --text-muted: #d4a373;
    --accent-primary: #d4a373;
    --accent-secondary: #e07a5f;
    --border-color: #d4a373;
    --shadow-color: rgba(0, 0, 0, 0.45);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', Arial, sans-serif;
}

/* Base resets & Dark Mode */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
    overflow-x: hidden;
    /* Vintage repeating background pattern */
    background-image: repeating-linear-gradient(45deg, rgba(44, 30, 19, 0.15) 0px, rgba(44, 30, 19, 0.15) 2px, transparent 2px, transparent 10px);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(32px, 6vw, 64px);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 12px;
}

p {
    margin-bottom: 20px;
    color: var(--text-main);
    opacity: 0.9;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0 !important; /* Strict sharp border style */
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Vintage badge */
.vintage-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    color: var(--accent-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    display: block;
    color: var(--accent-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 600;
}

.text-center {
    text-align: center;
}

/* Buttons (Sharp and Dramatic Shadow) */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    border-radius: 0 !important; /* Strict sharp */
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-secondary);
    color: #fff;
    box-shadow: 0 12px 24px var(--shadow-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px var(--shadow-color);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-main);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background-color: var(--accent-primary);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--surface-light);
    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: clamp(24px, 4vw, 32px);
    font-weight: bold;
    color: var(--accent-primary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 101;
}

/* Hamburger - ALWAYS RIGHT */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 101;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    margin: 5px 0;
    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(--text-main);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.desktop-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-secondary);
    transition: width 0.3s ease;
}

.desktop-nav .nav-list a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.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-color);
}

.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.05);
}

.mobile-nav a {
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 16px;
    display: block;
}

/* HERO INDEX - DIAGONAL SPLIT */
.hero-diagonal {
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(85vh - 65px);
    border-bottom: 1px solid var(--surface-light);
}

.hero-text-side {
    padding: 48px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-color);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.hero-image-side {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION HEADERS */
.section-header-vintage {
    max-width: 800px;
    margin: 0 auto 48px auto;
    padding: 0 16px;
}

/* BENEFITS HORIZONTAL SCROLL */
.benefits-scroll-section {
    padding: 60px 0;
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--surface-light);
}

.benefits-scroll-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 16px 40px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) var(--bg-color);
}

.benefits-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.benefits-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--bg-color);
}

.benefits-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
}

.benefit-vintage-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
    background-color: var(--bg-color);
    border: 1px solid var(--surface-light);
    padding: 32px;
    box-shadow: 0 24px 64px var(--shadow-color); /* dramatic shadow */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-vintage-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.benefit-vintage-card .card-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--accent-secondary);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--surface-light);
    padding-bottom: 8px;
}

/* CHECKLIST SECTION */
.checklist-section {
    padding: 60px 16px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--surface-light);
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.checklist-intro .checklist-img {
    margin-top: 24px;
    border: 1px solid var(--surface-light);
    box-shadow: 0 24px 64px var(--shadow-color);
}

.checklist-items-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    background-color: var(--surface-color);
    padding: 24px;
    border-left: 3px solid var(--accent-secondary);
    box-shadow: 0 12px 32px var(--shadow-color);
}

.checklist-item .checkmark {
    color: var(--accent-primary);
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.checklist-item h4 {
    margin-bottom: 6px;
    color: var(--accent-primary);
}

.checklist-item p {
    margin-bottom: 0;
    font-size: 15px;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 60px 16px;
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--surface-light);
}

.testimonials-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-vintage-card {
    background-color: var(--bg-color);
    border: 1px solid var(--surface-light);
    padding: 40px;
    box-shadow: 0 24px 64px var(--shadow-color);
}

.testimonial-stars {
    color: var(--accent-primary);
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--surface-light);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--accent-primary);
    opacity: 0.8;
}

/* COMPARISON TABLE */
.comparison-section {
    padding: 60px 16px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--surface-light);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    box-shadow: 0 24px 64px var(--shadow-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--surface-color);
    text-align: left;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    border: 1px solid var(--surface-light);
}

.comparison-table th {
    background-color: var(--surface-light);
    color: var(--accent-primary);
    font-family: var(--font-heading);
    font-size: 18px;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

/* GALLERY GRID */
.gallery-section {
    padding: 60px 16px;
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--surface-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border: 1px solid var(--surface-light);
    box-shadow: 0 24px 64px var(--shadow-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.gallery-overlay span {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-size: 18px;
}

.css-placeholder-gallery {
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.placeholder-content h4 {
    color: var(--accent-secondary);
    margin-bottom: 10px;
}

/* REGISTRATION FORM & VINTAGE FORM */
.registration-section {
    padding: 80px 16px;
    background-color: var(--bg-color);
}

.registration-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 40px 20px;
    box-shadow: 0 24px 64px var(--shadow-color);
}

.vintage-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    font-weight: 600;
}

.form-group input, .form-group textarea {
    background-color: var(--bg-color);
    border: 1px solid var(--surface-light);
    padding: 14px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    border-radius: 0 !important; /* Strict sharp */
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* INTERNAL PAGES */
.internal-hero {
    padding: 80px 16px;
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--surface-light);
    text-align: center;
}

.internal-hero p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* METHODOLOGY */
.methodology-section {
    padding: 60px 16px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--surface-light);
}

.methodology-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.methodology-visual img {
    border: 1px solid var(--surface-light);
    box-shadow: 0 24px 64px var(--shadow-color);
}

/* PROGRAM.HTML: GRID-6CARDS */
.modules-grid-section {
    padding: 60px 16px;
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--surface-light);
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.module-card {
    background-color: var(--bg-color);
    border: 1px solid var(--surface-light);
    padding: 32px;
    box-shadow: 0 24px 64px var(--shadow-color);
    position: relative;
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-badge {
    display: inline-block;
    background-color: var(--accent-secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 16px;
}

.module-card h3 {
    color: var(--accent-primary);
}

/* STATS SECTION */
.stats-section {
    padding: 60px 16px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--surface-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 72px);
    color: var(--accent-secondary);
    line-height: 1;
    margin-bottom: 12px;
}

/* FAQ SECTION */
.faq-section {
    padding: 60px 16px;
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--surface-light);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: var(--bg-color);
    border: 1px solid var(--surface-light);
    padding: 24px;
    box-shadow: 0 12px 32px var(--shadow-color);
}

.faq-item h4 {
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 0;
}

/* CTA BLOCK */
.cta-section {
    padding: 80px 16px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--surface-light);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* MISSION.HTML: TIMELINE DATES */
.timeline-section {
    padding: 60px 16px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--surface-light);
}

.timeline-wrapper {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 1px;
    background-color: var(--accent-primary);
}

.timeline-item-vintage {
    display: flex;
    gap: 24px;
    position: relative;
    padding-left: 40px;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-secondary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
}

.timeline-content-vintage {
    background-color: var(--surface-color);
    border: 1px solid var(--surface-light);
    padding: 24px;
    box-shadow: 0 12px 32px var(--shadow-color);
    width: 100%;
}

.timeline-content-vintage h3 {
    color: var(--accent-primary);
}

/* VALUES GRID */
.values-section {
    padding: 60px 16px;
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--surface-light);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.value-card-vintage {
    background-color: var(--bg-color);
    border: 1px solid var(--surface-light);
    padding: 32px;
    box-shadow: 0 24px 64px var(--shadow-color);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.value-card-vintage h3 {
    color: var(--accent-primary);
}

/* MANIFESTO */
.manifesto-section {
    padding: 60px 16px;
    background-color: var(--bg-color);
}

.manifesto-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 40px 20px;
    box-shadow: 0 24px 64px var(--shadow-color);
}

.manifesto-image img {
    border: 1px solid var(--surface-light);
}

/* CONTACT.HTML SPLIT GRID */
.contact-layout-section {
    padding: 60px 16px;
    background-color: var(--bg-color);
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-vintage {
    background-color: var(--surface-color);
    border: 1px solid var(--surface-light);
    padding: 24px;
    box-shadow: 0 12px 32px var(--shadow-color);
}

.info-card-vintage h3 {
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.css-decoration-block {
    border-left: 3px solid var(--accent-secondary);
}

/* LEGAL PAGES */
.legal-page {
    padding: 80px 16px;
    background-color: var(--bg-color);
}

.last-updated {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--accent-primary);
    border-bottom: 1px solid var(--surface-light);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style-type: square;
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

/* THANK YOU PAGE */
.thank-you-page {
    padding: 80px 16px;
    background-color: var(--bg-color);
}

.thank-lead {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.next-steps-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto 40px auto;
    box-shadow: 0 24px 64px var(--shadow-color);
}

.next-steps-card h3 {
    color: var(--accent-primary);
    margin-bottom: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.step-card {
    background-color: var(--bg-color);
    border: 1px solid var(--surface-light);
    padding: 24px;
}

.step-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.step-card h4 {
    color: var(--accent-secondary);
    margin-bottom: 8px;
}

.thank-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* 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(--surface-color);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--accent-secondary);
    color: #fff;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--surface-light);
    padding: 8px 20px;
    cursor: pointer;
}

/* FOOTER SECTION */
.site-footer {
    background-color: #0f0a06 !important; /* hardcoded to protect from translation engines */
    color: #f5ebe0 !important;
    padding: 60px 16px 20px 16px;
    border-top: 1px solid var(--surface-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    color: var(--accent-primary) !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f5ebe0 !important;
    font-size: 15px;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent-secondary) !important;
    opacity: 1;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-tel, .footer-email {
    color: var(--accent-primary) !important;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 0;
}

/* RESPONSIVE DESIGN - MOBILE FIRST MEDIA QUERIES */

@media (min-width: 600px) {
    #cookie-banner {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-btns {
        width: auto;
    }
}

@media (min-width: 768px) {
    /* Header & Burger */
    .desktop-nav {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    /* Grid Layouts */
    .hero-diagonal {
        grid-template-columns: 1fr 1.1fr;
    }
    
    .hero-text-side {
        padding: 60px 40px;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .large-gallery {
        grid-column: span 2;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-split-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methodology-split {
        grid-template-columns: 1.2fr 0.8fr;
    }
    
    .manifesto-box {
        grid-template-columns: 0.8fr 1.2fr;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    .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) {
    .hero-text-side {
        padding: 80px;
    }
    
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 0.8fr 1.2fr 0.8fr;
    }
    
    .registration-box {
        padding: 60px 80px;
    }
}