/* ═══════════════════════════════════════
   Claimified — Campaign page shared styles
   Dark theme · midnight blue + electric blue
═══════════════════════════════════════ */

:root {
    --bg: #F5F7FA;
    --bg-warm: #ECF0F7;
    --bg-card: #FFFFFF;
    --ink: #0F1B2D;
    --ink-secondary: #3D526B;
    --ink-tertiary: #7A8FA8;
    --navy: #1A2D54;
    --navy-deep: #0E1929;
    --navy-soft: #243D5E;
    --gold: #B8914A;
    --gold-light: #D4AD6A;
    --gold-pale: #FBF4E8;
    --gold-glow: rgba(184, 145, 74, 0.15);
    --border: rgba(26, 46, 74, 0.09);
    --border-strong: rgba(26, 46, 74, 0.18);
    --shadow-sm: 0 1px 3px rgba(15,27,45,0.05), 0 4px 12px rgba(15,27,45,0.04);
    --shadow-md: 0 4px 16px rgba(15,27,45,0.08), 0 12px 40px rgba(15,27,45,0.05);
    --shadow-lg: 0 8px 30px rgba(15,27,45,0.11), 0 20px 60px rgba(15,27,45,0.07);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --max-w: 1200px;
    --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Satoshi', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: transparent; cursor: pointer; font: inherit; }
ul { list-style: none; }

.wrap {
    width: min(var(--max-w), calc(100% - 40px));
    margin-inline: auto;
}

h1, h2, h3, .display {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--navy);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 16px;
    font-family: 'Satoshi', sans-serif;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

/* ── NAV (compact version) ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: padding 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled { padding: 12px 0; }

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    padding: 0 20px 0 14px;
    height: var(--nav-h);
    background: rgba(245, 247, 250, 0.80);
    border: 1px solid transparent;
    border-radius: 22px;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: min(var(--max-w), calc(100% - 40px));
}

.navbar.scrolled .navbar-inner {
    max-width: 880px;
    height: 60px;
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--border);
    border-radius: 999px;
    box-shadow: 0 6px 28px rgba(15,27,45,0.09);
}

.nav-brand {
    display: flex; align-items: center; height: 100%;
    transition: transform 0.4s ease;
}
.nav-brand:hover { transform: scale(1.02); }
.nav-brand img {
    height: 6vh; width: auto; display: block;
    transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.navbar.scrolled .nav-brand img { height: 5vh; }

.brand-wordmark {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    user-select: none;
}
.navbar.scrolled .brand-wordmark { font-size: 1.45rem; }
.footer-wordmark {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.nav-links {
    display: flex; align-items: center; gap: 4px;
}

.nav-links > li { list-style: none; position: relative; }

.nav-links a, .nav-links button.nav-trigger {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 14px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--ink-secondary);
    border-radius: 999px;
    transition: all 0.25s ease;
    background: transparent; cursor: pointer; border: 0;
    font-family: inherit;
}

.nav-links a:hover, .nav-links button.nav-trigger:hover,
.nav-links li.is-open > button.nav-trigger {
    color: var(--navy);
    background: rgba(26, 46, 74, 0.06);
}

.nav-trigger .chev { width: 10px; height: 10px; transition: transform 0.3s ease; }
.nav-links li.is-open .chev { transform: rotate(180deg); }

.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-links button.nav-trigger {
    padding: 7px 12px; font-size: 0.84rem;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: min(880px, 92vw);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 24px 60px rgba(15,27,45,0.16);
    opacity: 0; pointer-events: none;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 110;
}
.nav-links li.is-open > .mega-menu {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-menu::before {
    content: '';
    position: absolute; top: -7px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px; height: 14px;
    background: rgba(255,255,255,0.97);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.mega-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mega-item:hover, .mega-item.is-active {
    background: var(--bg);
    transform: translateY(-1px);
}

.mega-item.is-active { background: var(--gold-pale); }

.mega-thumb {
    width: 44px; height: 44px;
    border-radius: 10px; overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-warm);
    border: 1px solid var(--border);
}
.mega-thumb img { width: 100%; height: 100%; object-fit: cover; }

.mega-text { min-width: 0; }
.mega-text .mega-title {
    display: block; font-size: 0.88rem; font-weight: 600;
    color: var(--navy); line-height: 1.3; margin-bottom: 2px;
}
.mega-text .mega-sub {
    display: block; font-size: 0.74rem; color: var(--ink-tertiary);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.mega-foot {
    margin-top: 14px; padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.84rem; color: var(--ink-secondary);
}
.mega-foot a {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold); font-weight: 600;
}
.mega-foot a:hover { color: var(--navy); }

.nav-cta {
    display: inline-flex; align-items: center;
    height: 42px; padding: 0 22px;
    background: var(--navy); color: #fff;
    font-size: 0.88rem; font-weight: 600;
    border-radius: 999px;
    transition: all 0.3s ease;
    border: 1px solid var(--navy);
    position: relative; overflow: hidden;
}
.nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent, var(--gold-glow), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.nav-cta:hover::before { transform: translateX(100%); }
.nav-cta:hover {
    background: var(--navy-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(184, 145, 74, 0.28), 0 0 0 1px var(--gold);
}
.navbar.scrolled .nav-cta {
    height: 38px; padding: 0 18px; font-size: 0.84rem;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; height: 52px; padding: 0 28px;
    border-radius: 999px;
    font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184, 145, 74, 0.34), 0 0 0 1px var(--gold);
}
.btn-secondary {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--border-strong);
}
.btn-secondary:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
}
.btn-arrow::after { content: '→'; transition: transform 0.25s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ── CAMPAIGN HERO ── */
.camp-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.camp-hero-bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(ellipse 70% 55% at 75% 18%, rgba(184, 145, 74, 0.07), transparent 60%),
        radial-gradient(ellipse 60% 50% at 18% 82%, rgba(96, 165, 250, 0.09), transparent 60%);
}

.camp-hero .wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.camp-hero h1 {
    font-size: clamp(2.6rem, 5.2vw, 4.6rem);
    line-height: 1.04;
    margin-bottom: 22px;
}

.camp-hero h1 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold), var(--gold-light) 50%, var(--gold));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.camp-hero p.lede {
    font-size: 1.1rem; line-height: 1.7;
    color: var(--ink-secondary);
    max-width: 52ch;
}

.camp-hero-actions {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px;
}

.camp-hero-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}

.camp-tag-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--ink-secondary);
    font-weight: 500;
}
.camp-tag-pill::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.camp-hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.camp-hero-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.camp-hero-image:hover img { transform: scale(1.04); }

.camp-hero-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,27,45,0.58));
    pointer-events: none;
}

.camp-hero-image .img-badge {
    position: absolute;
    top: 20px; left: 20px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    font-size: 0.74rem; font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    z-index: 1;
}

.camp-hero-image .img-stats {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    color: #fff;
    z-index: 1;
    display: flex; gap: 24px;
}
.camp-hero-image .img-stats .stat-num {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem; line-height: 1;
}
.camp-hero-image .img-stats .stat-label {
    font-size: 0.74rem; opacity: 0.85; margin-top: 4px;
}

/* ── INTAKE FORM (hero right column) ── */
.lead-form-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 28px 24px;
    box-shadow: var(--shadow-lg);
    max-width: 520px;
    width: 100%;
    margin-left: auto;
}

.lead-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 32px; right: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 0 0 3px 3px;
}

.lead-form-head { margin-bottom: 16px; }

.lead-form-head .form-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 8px;
}

.lead-form-head .form-eyebrow::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.lead-form-head h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.15;
}

.lead-form-head p {
    font-size: 0.86rem;
    color: var(--ink-secondary);
}

.lead-form { display: grid; gap: 12px; }

.lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lead-form label {
    display: grid; gap: 5px;
}

.lead-form label > .field-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-secondary);
    letter-spacing: 0.01em;
}

.lead-form label .req { color: var(--gold); }

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form input[type="date"],
.lead-form textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--ink);
    font: inherit;
    font-size: 0.92rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* Native date control: match the text-input box and keep the height consistent */
.lead-form input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    min-height: 42px;
}
.lead-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: var(--ink-tertiary);
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 145, 74, 0.10);
}

.lead-form input.is-invalid,
.lead-form textarea.is-invalid {
    border-color: #C0392B;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.lead-form textarea { resize: vertical; min-height: 70px; }

/* Radio pills */
.lead-form fieldset {
    border: 0;
    padding: 0;
    margin: 2px 0;
    display: grid;
    gap: 6px;
}

.lead-form fieldset legend {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-secondary);
    margin-bottom: 4px;
    padding: 0;
}

.lead-form .pill-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.lead-form .radio-pill {
    flex: 1;
    min-width: 70px;
    cursor: pointer;
    user-select: none;
}

.lead-form .radio-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lead-form .radio-pill span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ink-secondary);
    transition: all 0.2s ease;
}

.lead-form .radio-pill:hover span {
    border-color: var(--border-strong);
    color: var(--navy);
}

.lead-form .radio-pill input:checked + span {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: 0 4px 12px rgba(184, 145, 74, 0.22), 0 0 0 1px var(--gold);
}

.lead-form .radio-pill input:focus-visible + span {
    box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Consent + fineprint */
.consent-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: flex-start;
    margin-top: 4px;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.consent-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border: 1.5px solid var(--border-strong);
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
}

.consent-row input[type="checkbox"]:checked {
    background: var(--navy);
    border-color: var(--navy);
}

.consent-row input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7.5l3 3 5-6' stroke='%23D4AD6A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
}

.consent-row input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.consent-row label {
    font-size: 0.74rem;
    color: var(--ink-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.legal-fineprint {
    font-size: 0.66rem;
    color: var(--ink-tertiary);
    line-height: 1.55;
    max-height: 100px;
    overflow-y: auto;
    padding: 10px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.legal-fineprint::-webkit-scrollbar { width: 6px; }
.legal-fineprint::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }

/* Submit */
.lead-form button[type="submit"] {
    width: 100%;
    height: 50px;
    margin-top: 4px;
    background: var(--navy);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.lead-form button[type="submit"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, var(--gold-glow), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.lead-form button[type="submit"]:hover::before { transform: translateX(100%); }
.lead-form button[type="submit"]:hover {
    background: var(--navy-deep);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(184, 145, 74, 0.34), 0 0 0 1px var(--gold);
}

.lead-form button[type="submit"][disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.lead-form button[type="submit"] .arrow {
    transition: transform 0.25s ease;
}

.lead-form button[type="submit"]:hover .arrow {
    transform: translateX(3px);
}

/* Honeypot — hide visually + from a11y */
.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* Form states */
.form-status {
    font-size: 0.84rem;
    text-align: center;
    padding: 4px 0;
    color: var(--ink-secondary);
}

.form-status.is-error { color: #C0392B; }
.form-status.is-success { color: var(--gold); font-weight: 600; }

.lead-form-card.is-submitted .lead-form { display: none; }

.form-success {
    display: none;
    text-align: center;
    padding: 32px 8px;
}

.lead-form-card.is-submitted .form-success { display: block; }

.form-success-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px var(--gold-glow);
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--ink-secondary);
    line-height: 1.6;
}

/* ── ABOUT MEDIA ── */
.about-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-md);
}

.about-media img {
    width: 100%; height: 100%; object-fit: cover;
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    margin-bottom: 14px;
}
.section-head p {
    font-size: 1.02rem;
    color: var(--ink-secondary);
    line-height: 1.7;
}

/* ── ABOUT — 2 col ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-grid p {
    color: var(--ink-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.about-card {
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: -40%; right: -30%;
    width: 70%; height: 80%;
    background: radial-gradient(circle, rgba(184, 145, 74, 0.22), transparent 70%);
    pointer-events: none;
}
.about-card > * { position: relative; z-index: 1; }
.about-card .eyebrow { color: var(--gold-light); }
.about-card .eyebrow::before { background: linear-gradient(90deg, var(--gold-light), transparent); }
.about-card h3 {
    font-size: 1.6rem; color: #fff;
    margin: 12px 0 18px;
}
.about-card ul { display: grid; gap: 14px; }
.about-card ul li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
}
.about-card ul li::before {
    content: '✓';
    color: var(--gold-light);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── ELIGIBILITY ── */
.elig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.elig-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
.elig-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}
.elig-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.elig-card:hover::after { transform: scaleX(1); }

.elig-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gold-pale);
    border: 1px solid rgba(184, 145, 74, 0.20);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--navy);
    margin-bottom: 18px;
    font-weight: 700;
}
.elig-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.elig-card p { font-size: 0.92rem; color: var(--ink-secondary); }

/* ── CTA BAND ── */
.cta-band {
    margin: 0 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 32px;
    padding: 64px 48px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before, .cta-band::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-band::before {
    top: -40%; left: -10%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(184, 145, 74, 0.22), transparent 65%);
}
.cta-band::after {
    bottom: -50%; right: -15%;
    width: 70%; height: 130%;
    background: radial-gradient(circle, rgba(36, 61, 94, 0.44), transparent 65%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
    font-size: clamp(2rem, 4vw, 3rem); color: #fff;
    margin-bottom: 14px;
}
.cta-band p {
    color: rgba(255,255,255,0.78);
    max-width: 56ch; margin: 0 auto 32px;
    font-size: 1.02rem;
}
.cta-band .btn-primary {
    background: var(--gold); color: #fff;
    border: 1px solid var(--gold);
}
.cta-band .btn-primary:hover {
    background: var(--gold-light); color: #fff;
    box-shadow: 0 10px 28px rgba(184, 145, 74, 0.38);
}

/* ── OTHER CAMPAIGNS ── */
.other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.oc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}
.oc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
}
.oc-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.oc-card:hover::after { transform: scaleX(1); }

.oc-img { aspect-ratio: 5/4; overflow: hidden; }
.oc-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.oc-card:hover .oc-img img { transform: scale(1.06); }

.oc-body { padding: 22px 24px 26px; }
.oc-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.oc-body p { font-size: 0.88rem; color: var(--ink-secondary); }
.oc-body .oc-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 14px;
    font-size: 0.84rem; font-weight: 600;
    color: var(--gold);
}
.oc-body .oc-link:hover { color: var(--navy); }

/* ── FOOTER ── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
    margin-top: 80px;
}
.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}
.footer-brand img { height: 42px; width: auto; margin-bottom: 10px; }
.footer-brand .footer-wordmark { margin-bottom: 10px; }
.footer-brand p {
    color: var(--ink-secondary);
    font-size: 0.9rem;
    max-width: 40ch;
}
.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
    font-size: 0.9rem; color: var(--ink-secondary);
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--navy); }

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(32px) scale(0.985);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.vis { opacity: 1; transform: translateY(0) scale(1); }

.elig-grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.elig-grid .reveal:nth-child(2) { --reveal-delay: 100ms; }
.elig-grid .reveal:nth-child(3) { --reveal-delay: 200ms; }
.other-grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.other-grid .reveal:nth-child(2) { --reveal-delay: 100ms; }
.other-grid .reveal:nth-child(3) { --reveal-delay: 200ms; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .camp-hero .wrap, .about-grid { grid-template-columns: 1fr; }
    .lead-form-card { max-width: 100%; margin-left: 0; }
    .elig-grid, .other-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .nav-links { display: none; }
    .elig-grid, .other-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .camp-hero { padding: 130px 0 50px; }
    .cta-band { padding: 44px 24px; margin: 0 10px; }
    .footer-inner { flex-direction: column; }
    .lead-form-card { padding: 22px; }
    .lead-form .form-row { grid-template-columns: 1fr; }
    .lead-form .pill-row .radio-pill { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
