/* ===== V5: BORDEAUX / MAROON PALETTE ===== */
:root {
    --primary: #9b2335;
    --primary-dark: #6f1826;
    --primary-light: #f9c8ce;
    --accent: #4a0f18;
    --accent2: #e05c6e;
    --bg: #fff8f8;
    --bg2: #fef0f2;
    --text: #1a0608;
    --text-muted: #7a3540;
    --white: #ffffff;
    --card-bg: #ffffff;
    --border: #f5bcc2;
    --shadow: 0 6px 28px rgba(155,35,53,0.10);
    --shadow-hover: 0 14px 48px rgba(155,35,53,0.20);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.75; font-size: 16px; }

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 18px rgba(155,35,53,0.08);
    position: sticky; top: 0; z-index: 100;
    border-bottom: 3px solid var(--primary-light);
}
.site-header .container { max-width: 1200px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; }
.logo a { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 44px; width: auto; }

.container {    margin-left: auto;
    margin-right: auto;padding-left: 1rem;
    padding-right: 1rem;}

#menu-toggle { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: var(--radius-sm); background: var(--bg2); }
.hamburger .line { width: 24px; height: 2.5px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }

.navigation ul { list-style: none; display: flex; gap: 4px; }
.navigation a {
    text-decoration: none; color: var(--text);
    padding: 8px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.93rem;
    transition: background 0.2s, color 0.2s;
}
.navigation a:hover { background: var(--bg2); color: var(--primary); }

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 98;
    background: var(--primary-dark);
    flex-direction: column; align-items: center; justify-content: center;
}
#menu-toggle:checked ~ .mobile-nav { display: flex; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 6px; text-align: center; }
.mobile-nav a { text-decoration: none; color: var(--white); font-size: 1.3rem; font-weight: 700; padding: 14px 40px; display: block; border-radius: var(--radius-sm); transition: background 0.2s; }
.mobile-nav a:hover { background: rgba(255,255,255,0.1); }
.mobile-nav-close {
    position: absolute; top: 18px; right: 20px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border-radius: 50%; background: rgba(255,255,255,0.15);
}
.mobile-nav-close::before,
.mobile-nav-close::after {
    content: ''; position: absolute;
    width: 22px; height: 2px; background: var(--white); border-radius: 2px;
}
.mobile-nav-close::before { transform: rotate(45deg); }
.mobile-nav-close::after { transform: rotate(-45deg); }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .navigation { display: none !important; }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--primary-dark); color: var(--white);
    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;
    border-top: 3px solid var(--accent2);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--primary-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept { background: var(--accent2); color: var(--white); border: none; padding: 9px 22px; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; }
.cookie-btn-decline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); padding: 9px 22px; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; }
@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ===== SECTIONS ===== */
.section-pad { padding: 80px 0; }
.section-bg2 { background: var(--bg2); }
.section-label { display: inline-block; background: var(--primary-light); color: var(--primary-dark); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 18px; line-height: 1.2; text-align: center; }
.section-title-left { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--text); margin-bottom: 16px; line-height: 1.25; }
.section-desc { color: var(--text-muted); max-width: 640px; margin: 0 auto 40px; text-align: center; }

/* ===== HERO ===== */
.hero-section { position: relative; min-height: 90vh; display: flex; align-items: center; background: url('img/bg.jpg') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(70,14,22,0.93) 0%, rgba(155,35,53,0.72) 60%, rgba(155,35,53,0.4) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 80px 0; display: flex; flex-direction: column; max-width: 680px; }
.hero-badge { display: inline-block; background: var(--accent2); color: var(--white); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 22px; width: fit-content; }
.hero-title { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 22px; }
.hero-title em { font-style: normal; color: var(--primary-light); }
.hero-desc { color: rgba(255,255,255,0.88); font-size: 1.08rem; line-height: 1.7; margin-bottom: 36px; max-width: 560px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

/* LARGE QUOTE */
.big-quote-section { padding: 72px 0; }
.big-quote { max-width: 880px; margin: 0 auto; text-align: center; }
.big-quote-mark { font-size: 7rem; color: var(--primary-light); line-height: 0.6; margin-bottom: 20px; font-family: Georgia, serif; }
.big-quote p { font-size: clamp(1.3rem, 2.8vw, 1.85rem); font-weight: 300; color: var(--text); line-height: 1.55; font-style: italic; margin-bottom: 24px; }
.big-quote cite { font-style: normal; font-size: 0.92rem; color: var(--primary); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

/* COUNTERS ROW */
.counters-row { background: var(--primary); padding: 48px 0; }
.counters-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.counter-item { text-align: center; }
.counter-num { display: block; font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.counter-label { display: block; font-size: 0.85rem; color: var(--primary-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }

/* ASYMMETRIC GRIDS */
.asym-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 768px) { .asym-grid { grid-template-columns: 3fr 2fr; } }
.asym-grid-reverse { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 768px) { .asym-grid-reverse { grid-template-columns: 2fr 3fr; } }

/* CARDS */
.cards-3 { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 640px) { .cards-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
.card-3 { background: var(--card-bg); border: 2px solid var(--border); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow); transition: box-shadow 0.2s, transform 0.2s; }
.card-3:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-3-accent { border-top: 4px solid var(--primary); }
.card-3-icon { font-size: 2.2rem; margin-bottom: 16px; }
.card-3 h3 { font-size: 1.05rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 10px; }
.card-3 p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* SPLIT IMAGE */
.split-img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-desc { color: var(--text-muted); margin-bottom: 16px; }

/* TIMELINE VERTICAL */
.timeline { position: relative; padding-left: 40px; margin-top: 40px; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: var(--primary-light); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot { position: absolute; left: -33px; top: 4px; width: 20px; height: 20px; background: var(--primary); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--primary); }
.timeline-item h3 { font-size: 1.02rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.timeline-item p { font-size: 0.93rem; color: var(--text-muted); }
.timeline-day { font-size: 0.78rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }

/* FAQ */
.faq-list { max-width: 820px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { padding: 18px 24px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text); font-size: 0.97rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--primary); transition: transform 0.2s; }
.faq-item[open] summary { background: var(--bg2); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 16px 24px 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; border-top: 1px solid var(--border); }

/* MODULE BLOCKS */
.module-block { display: flex; gap: 28px; align-items: flex-start; padding: 40px 0; border-bottom: 1px solid var(--border); }
.module-block:last-child { border-bottom: none; }
.module-number { font-size: 3rem; font-weight: 900; color: var(--primary-light); line-height: 1; min-width: 72px; }
.module-content h3 { font-size: 1.18rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 12px; }
.module-content p { color: var(--text-muted); margin-bottom: 12px; font-size: 0.97rem; }
.module-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.mod-tag { background: var(--primary-light); color: var(--primary-dark); font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--primary); color: var(--white); padding: 15px 36px; border-radius: var(--radius-sm); font-weight: 700; text-decoration: none; font-size: 1rem; transition: background 0.2s, transform 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-ghost { display: inline-block; background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); padding: 13px 34px; border-radius: var(--radius-sm); font-weight: 700; text-decoration: none; font-size: 1rem; transition: border-color 0.2s, background 0.2s; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* FORM */
.form-header { text-align: center; margin-bottom: 32px; }
.reg-form { max-width: 800px; margin: 0 auto; background: var(--card-bg); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 7px; color: var(--text); font-size: 0.95rem; }
.form-group input, .form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; background: var(--bg); color: var(--text); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.btn-submit { width: 100%; background: var(--primary); color: var(--white); border: none; padding: 16px; border-radius: var(--radius-sm); font-size: 1.05rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.btn-submit:hover { background: var(--primary-dark); }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-note a { color: var(--primary); text-decoration: underline; }

/* CTA BG */
.cta-section { position: relative; background: center/cover no-repeat; min-height: 360px; display: flex; align-items: center; }
.cta-overlay { position: absolute; inset: 0; background: rgba(70,14,22,0.88); }
.cta-content { position: relative; z-index: 2; text-align: center; padding: 64px 0; }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 14px; font-weight: 800; }
.cta-content p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }

/* PAGE HERO */
.page-hero { position: relative; min-height: 340px; background: center/cover no-repeat; display: flex; align-items: center; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(70,14,22,0.85); }
.page-hero-content { position: relative; z-index: 2; padding: 64px 10px; }
.page-hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin: 10px 0 14px; }
.page-hero-desc { color: rgba(255,255,255,0.85); max-width: 560px; }

/* BG SECTION */
.bg-section { position: relative; min-height: 320px; background: center/cover no-repeat; display: flex; align-items: center; }
.bg-section-overlay { position: absolute; inset: 0; background: rgba(70,14,22,0.87); }
.bg-section-content { position: relative; z-index: 2; text-align: center; padding: 64px 0; }
.bg-section-content h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); margin-bottom: 14px; }
.bg-section-content p { color: var(--primary-light); }

/* CONTACT */
.contact-cards-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .contact-cards-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { background: var(--card-bg); border: 2px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); }
.contact-icon { font-size: 2.4rem; margin-bottom: 14px; }
.contact-card h3 { font-weight: 800; color: var(--primary-dark); margin-bottom: 10px; }
.contact-card p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 8px; }
.contact-val { font-weight: 700; color: var(--text) !important; font-size: 1rem !important; }
.contact-note { display: inline-block; background: var(--primary-light); color: var(--primary-dark); font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-top: 8px; }
.map-placeholder { background: var(--bg2); border: 2px solid var(--border); border-radius: var(--radius-lg); min-height: 300px; display: flex; align-items: center; justify-content: center; }
.map-inner { text-align: center; color: var(--text-muted); }
.map-icon { font-size: 3rem; margin-bottom: 12px; }
.map-inner p { font-size: 0.95rem; }

/* MANIFESTO */
.manifesto-block { background: var(--primary); border-radius: var(--radius-lg); padding: 56px 48px; text-align: center; }
.manifesto-block h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 20px; }
.manifesto-block p { color: rgba(255,255,255,0.88); max-width: 680px; margin: 0 auto 16px; }
.manifesto-block .btn-primary { margin-top: 24px; background: var(--white); color: var(--primary); }
.manifesto-block .btn-primary:hover { background: var(--primary-light); color: var(--primary-dark); }

/* STATS VERTICAL */
.stats-vertical { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-v-item { background: var(--card-bg); border: 2px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: var(--shadow); }
.stat-v-num { display: block; font-size: 2.2rem; font-weight: 900; color: var(--primary); }
.stat-v-label { display: block; font-size: 0.82rem; color: var(--text-muted); font-weight: 600; margin-top: 4px; }

/* FOOTER */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 2fr; } }
.footer-logo { font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-nav h4, .footer-legal h4, .footer-contact h4 { font-size: 0.85rem; font-weight: 800; color: var(--primary-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-nav ul, .footer-legal ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a, .footer-legal a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--primary-light); }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 20px 0; margin-top: 40px; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
