:root {
    --primary: #8B1A1A;
    --primary-dark: #6B1414;
    --primary-light: #A52A2A;
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --text: #2D2D2D;
    --text-light: #666666;
    --gold: #C9A962;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--cream);
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
nav {
    background: var(--white);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
nav .container { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.logo { height: 44px; }
.nav-links { display: flex; gap: 22px; list-style: none; align-items: center; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.lang-select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 6px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--primary); cursor: pointer; }
@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 160px 0 90px;
    text-align: center;
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; font-weight: 700; line-height: 1.2; }
.hero p { font-size: 1.25rem; opacity: 0.92; max-width: 640px; margin: 0 auto 40px; }
@media (max-width: 640px) { .hero h1 { font-size: 2.1rem; } .hero { padding: 130px 0 70px; } }

.btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }

/* Sections */
section { padding: 70px 0; }
section.alt { background: var(--white); }
.section-title { font-size: 2.1rem; text-align: center; margin-bottom: 16px; color: var(--primary-dark); }
.section-sub { text-align: center; color: var(--text-light); max-width: 640px; margin: 0 auto 45px; font-size: 1.1rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 30px; }
.card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
section.alt .card { background: var(--cream); box-shadow: none; }
.card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.15rem; }
.card p { color: var(--text-light); font-size: 0.97rem; }

.statement {
    text-align: center;
    padding: 80px 20px;
}
.statement h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.35;
}

.steps { counter-reset: step; max-width: 700px; margin: 30px auto 0; }
.step { display: flex; gap: 18px; margin-bottom: 22px; align-items: flex-start; }
.step-num {
    flex: 0 0 42px; height: 42px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-family: 'Playfair Display', serif;
}
.step h3 { font-size: 1.1rem; margin-bottom: 4px; }
.step p { color: var(--text-light); font-size: 0.97rem; }

.flow { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin: 40px 0 10px; }
.flow .node {
    background: var(--white); border: 2px solid var(--primary);
    border-radius: 8px; padding: 16px 22px; font-weight: 600; color: var(--primary-dark); text-align: center;
}
.flow .arrow { color: var(--gold); font-size: 1.6rem; font-weight: 700; }

.cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 70px 20px;
}
.cta-band h2 { font-size: 2rem; margin-bottom: 25px; }

.manifesto {
    max-width: 680px; margin: 0 auto; background: var(--white);
    border-left: 4px solid var(--gold);
    padding: 45px 50px; border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.manifesto p { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 20px; color: var(--text); }
.manifesto .sign { text-align: right; font-style: italic; color: var(--primary); font-weight: 600; }

.small-note { font-size: 0.85rem; color: var(--text-light); text-align: center; margin-top: 30px; }

/* FAQ */
.faq-item { background: var(--white); border-radius: 8px; margin-bottom: 12px; box-shadow: 0 3px 15px rgba(0,0,0,0.04); overflow: hidden; }
.faq-item summary {
    cursor: pointer; padding: 18px 22px; font-weight: 600; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: "+"; color: var(--primary); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .answer { padding: 0 22px 18px; color: var(--text-light); }

/* Footer */
footer { background: var(--text); color: #ccc; padding: 50px 0 30px; }
footer .container { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
footer h4 { color: var(--white); margin-bottom: 14px; font-size: 1rem; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: #ccc; text-decoration: none; font-size: 0.92rem; }
footer a:hover { color: var(--white); }
.footer-bottom { text-align: center; color: #888; font-size: 0.85rem; margin-top: 40px; border-top: 1px solid #444; padding-top: 20px; width: 100%; }

/* Legal content pages */
.legal-content { margin-top: 110px; margin-bottom: 60px; background: var(--white); padding: 50px 45px; border-radius: 10px; box-shadow: 0 5px 30px rgba(0,0,0,0.05); }
.legal-content h1 { font-size: 2rem; color: var(--primary); margin-bottom: 10px; }
.legal-content h2 { font-size: 1.3rem; color: var(--primary); margin: 35px 0 12px; }
.legal-content p, .legal-content li { margin-bottom: 12px; color: var(--text); }
.legal-content ul { margin-left: 25px; }
