:root {
    --forest: #1f4d3a;
    --forest-dark: #123527;
    --ink: #1c231c;
    --gold: #b8862c;
    --gold-light: #e7c878;
    --paper: #f8f6ef;
    --white: #ffffff;
    --text: #23291f;
    --text-light: #5b6353;
    --border: #e3ded0;
    --red: #a4353a;
    --red-bg: #fbf0ee;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--paper);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    background: var(--forest);
    color: white;
    padding: 90px 0 80px;
    overflow: hidden;
}

.hero-texture {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 85% 15%, rgba(184, 134, 44, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 5% 90%, rgba(231, 200, 120, 0.12) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
    border-bottom: 2px solid rgba(231, 200, 120, 0.4);
    padding-bottom: 8px;
}

.hero h1 {
    font-weight: 700;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 440px;
    margin-bottom: 36px;
}

.hero-scroll-btn {
    display: inline-block;
    color: var(--forest-dark);
    text-decoration: none;
    background: var(--gold-light);
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.25s;
}

.hero-scroll-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.hero-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(231, 200, 120, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.hero-caption {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.03em;
}

/* --- CAMPAIGN TEXT STYLING --- */
.page-content { padding-bottom: 20px; }

.campaign-paper {
    background: white;
    padding: 60px;
    border-radius: 14px;
    margin: 40px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.intro-headline {
    font-weight: 700;
    font-size: 2.1rem;
    color: var(--forest);
    line-height: 1.25;
    margin-bottom: 28px;
}

.text-block p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.08rem;
}

.callout-box {
    background: var(--red-bg);
    border-left: 5px solid var(--red);
    padding: 26px 32px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.callout-box p {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.callout-box p:last-child { margin-bottom: 0; }

.callout-emphasis {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.5rem !important;
    color: var(--ink) !important;
    line-height: 1.3;
}

.callout-box--gold {
    background: #fbf5e6;
    border-left-color: var(--gold);
}

.principle-section { margin: 48px 0 26px; }

.small-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.14em;
    display: block;
}

.principle-section h3 {
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1.35;
}

/* Checklist Styling */
.requirements {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px 28px;
    margin-bottom: 20px;
}

.custom-checklist { list-style: none; }
.custom-checklist li {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
}

.custom-checklist li:last-child { border-bottom: none; }

.check-icon {
    width: 26px;
    height: 26px;
    background-color: #eaf1ec;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon::after {
    content: '';
    width: 6px;
    height: 11px;
    border: solid var(--forest);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.custom-checklist p { font-weight: 600; color: var(--text); font-size: 1.05rem; }

.conclusion { margin-top: 46px; padding-top: 40px; border-top: 1px solid var(--border); }

.conclusion p:first-child { color: var(--text-light); font-size: 1.08rem; margin-bottom: 30px; }

.footer-slogan {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--forest);
    line-height: 1.25;
}

/* --- PETITION CARD --- */
.petition-card-premium {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    margin-bottom: 60px;
    border: 1px solid var(--border);
}

.petition-header { margin-bottom: 40px; }
.petition-header h2 { font-size: 2rem; font-weight: 600; color: var(--forest); margin-bottom: 15px; }
.accent-line { width: 60px; height: 5px; background: var(--gold); border-radius: 3px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { margin-bottom: 24px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 10px; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }

.field input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.2s;
    background: #fdfdfb;
}

.field input:focus {
    outline: none;
    border-color: var(--forest);
    background: white;
    box-shadow: 0 0 0 4px rgba(31, 77, 58, 0.1);
}

.checkbox-area { margin: 35px 0; }
.checkbox-row {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.checkbox-row input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-top: 4px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--forest);
}

.checkbox-row label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
}

.disclaimer-inline {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

.disclaimer-inline a { color: var(--forest); text-decoration: underline; }

.submit-btn-premium {
    width: 100%;
    padding: 22px;
    background: var(--forest);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Fraunces', serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 0 var(--forest-dark);
}

.submit-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--forest-dark);
    background: #1a4331;
}

.submit-btn-premium:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 var(--forest-dark);
}

.privacy-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 25px;
}

.privacy-footer a { color: var(--text); font-weight: 700; }

footer {
    background: var(--forest-dark);
    color: white;
    padding: 55px 0;
    text-align: center;
}

footer p, footer strong { color: white; }

footer strong {
    display: block;
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-family: 'Fraunces', serif;
}

.imprint {
    font-size: 0.85rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.75;
}

/* --- SIGNATURE COUNTER --- */
.sig-counter-wrap { margin: 40px 0; }

.sig-counter-card {
    background: var(--forest);
    border-radius: 18px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sig-counter-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sig-counter-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.sig-count {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.sig-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.sig-label strong { color: #ffffff; }

.sig-counter-cta {
    display: inline-block;
    background: white;
    color: var(--forest);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.sig-counter-cta:hover { opacity: 0.88; }

/* --- UTILITIES --- */
.hidden { display: none; }

#success { text-align: center; padding: 40px 0; }
.success-icon-wrap {
    width: 70px; height: 70px;
    background: var(--forest);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
}
#success h3 { font-size: 1.5rem; color: var(--forest); margin-bottom: 10px; }
#success p { color: var(--text-light); }

/* --- RESPONSIVE --- */
@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image-wrap { order: -1; max-width: 340px; margin: 0 auto 10px; }
}

@media (max-width: 768px) {
    .hero { padding: 60px 0 60px; text-align: left; }
    .hero h1 { font-size: 2.4rem; }
    .campaign-paper, .petition-card-premium { padding: 32px 22px; }
    .intro-headline { font-size: 1.6rem; }
    .callout-emphasis { font-size: 1.2rem !important; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-slogan { font-size: 1.5rem; }
    .sig-counter-card { flex-direction: column; align-items: flex-start; padding: 30px 24px; }
    .sig-count { font-size: 3rem; }
    .sig-counter-cta { width: 100%; text-align: center; }
    .requirements { padding: 4px 20px; }
}

.saern-link a { color: var(--white); font-weight: bold; text-decoration: none; border-bottom: 1px solid #4a5568; }