:root {
    --color-primary: #09028e;
    --color-primary-deep: #06015f;
    --color-primary-soft: #eef0ff;
    --color-text: #1d1d1d;
    --color-text-strong: #151515;
    --color-text-muted: #5d625f;
    --color-bg: #f5f3ee;
    --color-bg-alt: #eeebe3;
    --color-surface-mint: #e4f1ed;
    --color-surface-sky: #dcebf0;
    --color-surface-sand: #f8f0df;
    --color-accent-amber: #e08600;
    --color-accent-green: #5aa56a;
    --color-border-soft: #d8ddd7;
    --color-border-strong: #bec8c1;
    --color-shadow-soft: rgba(17, 17, 17, 0.08);
    --color-shadow-deep: rgba(6, 1, 95, 0.12);
    --radius-sm: 0.75rem;
    --radius-md: 1.15rem;
    --radius-lg: 1.75rem;
    --radius-pill: 999px;
    --shadow-card: 0 14px 32px rgba(17, 17, 17, 0.07);
    --shadow-soft: 0 10px 24px rgba(17, 17, 17, 0.06);
    --shadow-hover: 0 18px 34px rgba(17, 17, 17, 0.09);
    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 2.4rem;
    --space-7: 3.5rem;
    --font-body: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
    --font-display: "Iowan Old Style", "Georgia", "Times New Roman", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(228, 241, 237, 0.74), transparent 35%),
        radial-gradient(circle at top right, rgba(220, 235, 240, 0.7), transparent 29%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.04)),
        var(--color-bg-alt);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

a {
    color: var(--color-primary);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

a:hover {
    color: var(--color-primary-deep);
}

button,
input,
select,
textarea {
    font: inherit;
}

code {
    padding: 0.15rem 0.35rem;
    border-radius: 0.4rem;
    background: rgba(9, 2, 142, 0.08);
    color: var(--color-primary-deep);
    font-size: 0.95em;
}

:focus-visible {
    outline: 3px solid rgba(224, 134, 0, 0.45);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 3000;
    padding: 0.65rem 0.9rem;
    border-radius: 0.75rem;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
}

.site-body.has-bottom-nav {
    padding-bottom: 5.9rem;
}

.site-main {
    position: relative;
    z-index: 1;
}

.section {
    position: relative;
}

.section-gap {
    padding-block: var(--space-6);
}

.section-heading {
    max-width: 44rem;
    margin-bottom: var(--space-5);
}

.section-intro {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.eyebrow,
.card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.display-title,
.section-title,
.section-subtitle {
    margin: 0;
    color: var(--color-text-strong);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.12;
}

.display-title {
    font-size: clamp(2.05rem, 4.8vw, 3.2rem);
    max-width: 13ch;
}

.section-title {
    font-size: clamp(1.65rem, 3.4vw, 2.25rem);
    max-width: 18ch;
}

.section-subtitle {
    font-size: clamp(1.2rem, 2.25vw, 1.5rem);
    margin-bottom: 0.75rem;
}

.body-lead,
.body-copy {
    color: var(--color-text-muted);
}

.body-lead {
    max-width: 38rem;
    margin: 1rem 0 0;
    font-size: 1.03rem;
    line-height: 1.72;
}

.small-lead {
    font-size: 1rem;
}

.body-copy,
.rich-copy p {
    margin: 0 0 1rem;
}

.rich-copy p:last-child {
    margin-bottom: 0;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.btn {
    --bs-btn-border-radius: var(--radius-pill);
    --bs-btn-padding-x: 1.1rem;
    --bs-btn-padding-y: 0.82rem;
    --bs-btn-font-weight: 700;
    --bs-btn-box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary-deep);
    --bs-btn-hover-border-color: var(--color-primary-deep);
    --bs-btn-active-bg: var(--color-primary-deep);
    --bs-btn-active-border-color: var(--color-primary-deep);
}

.btn-outline-primary {
    --bs-btn-color: var(--color-primary);
    --bs-btn-border-color: rgba(9, 2, 142, 0.25);
    --bs-btn-hover-bg: rgba(9, 2, 142, 0.07);
    --bs-btn-hover-border-color: rgba(9, 2, 142, 0.3);
    --bs-btn-hover-color: var(--color-primary-deep);
    --bs-btn-active-bg: rgba(9, 2, 142, 0.1);
    --bs-btn-active-border-color: rgba(9, 2, 142, 0.35);
    --bs-btn-active-color: var(--color-primary-deep);
}

.btn-warm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.82rem 1.1rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #e08600, #f0a52d);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 22px rgba(224, 134, 0, 0.22);
}

.btn-primary:hover,
.btn-outline-primary:hover,
.btn-warm:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.btn-warm:hover {
    color: #fff;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.inline-link:hover {
    color: var(--color-primary-deep);
    transform: translateX(1px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    padding-block: 0.75rem;
    transition: padding 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.site-header.is-scrolled {
    padding-block: 0.55rem;
    background: linear-gradient(180deg, rgba(245, 243, 238, 0.9), rgba(245, 243, 238, 0.72));
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: calc(var(--radius-lg) + 0.15rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.site-header.is-scrolled .site-header-inner {
    border-color: rgba(9, 2, 142, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 248, 243, 0.8)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.07);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.18s ease;
}

.brand-link:hover {
    color: inherit;
    opacity: 0.96;
}

.brand-asset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 1.05rem;
    background: rgba(9, 2, 142, 0.06);
    box-shadow: 0 10px 22px rgba(9, 2, 142, 0.14);
}

.brand-asset.has-logo {
    border: 1px solid rgba(9, 2, 142, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.28rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(9, 2, 142, 0.98), rgba(90, 165, 106, 0.8)),
        var(--color-primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    min-width: 0;
}

.brand-copy strong {
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-copy span {
    color: var(--color-text-strong);
    font-size: 0.94rem;
    line-height: 1.2;
}

.brand-copy small {
    display: none;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    line-height: 1.25;
}

.desktop-nav {
    flex: 1 1 auto;
    justify-content: center;
}

.desktop-nav-list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav-link,
.desktop-nav-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.65rem 0.85rem;
    border: 0;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--color-text);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.desktop-nav-link:hover,
.desktop-nav-toggle:hover,
.desktop-nav-link.is-active,
.desktop-nav-toggle.is-active {
    background: linear-gradient(180deg, rgba(9, 2, 142, 0.08), rgba(9, 2, 142, 0.04));
    color: var(--color-primary-deep);
    box-shadow: inset 0 0 0 1px rgba(9, 2, 142, 0.06);
}

.has-dropdown .desktop-nav-toggle::after {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.site-dropdown {
    padding: 0.45rem;
    border: 1px solid rgba(9, 2, 142, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 32px rgba(17, 17, 17, 0.08);
}

.site-dropdown .dropdown-item {
    padding: 0.65rem 0.8rem;
    border-radius: 0.8rem;
}

.site-dropdown .dropdown-item:hover,
.site-dropdown .dropdown-item:focus {
    background: rgba(9, 2, 142, 0.06);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    margin-left: auto;
}

.header-actions .btn {
    white-space: nowrap;
}

.section-surface {
    position: relative;
}

.section-surface::before {
    content: "";
    position: absolute;
    inset: 0.9rem 0.45rem;
    border-radius: calc(var(--radius-lg) + 0.4rem);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
    z-index: 0;
}

.section-surface > .container {
    position: relative;
    z-index: 1;
}

.section-surface-mint::before {
    background: linear-gradient(180deg, rgba(228, 241, 237, 0.98), rgba(228, 241, 237, 0.72));
}

.section-surface-sky::before {
    background: linear-gradient(180deg, rgba(220, 235, 240, 0.98), rgba(220, 235, 240, 0.72));
}

.content-card,
.mini-card,
.link-panel {
    height: 100%;
    padding: 1.3rem;
    border: 1px solid rgba(9, 2, 142, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82));
    box-shadow: var(--shadow-card);
}

.content-card,
.mini-card {
    border-radius: var(--radius-md);
}

.link-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at top right, rgba(224, 134, 0, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 240, 223, 0.82));
}

.content-card,
.mini-card,
.link-panel,
.footer-action-card,
.pdf-button-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.link-panel:hover,
.footer-action-card:hover,
.pdf-button-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(9, 2, 142, 0.1);
}

.spacious-card {
    padding: 1.65rem;
}

.large-card {
    min-height: 100%;
}

.mini-card h3,
.link-panel h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 1.22rem;
}

.mini-card p,
.link-panel p,
.content-card p {
    color: var(--color-text-muted);
}

.editorial-quote {
    margin: 0 0 1.3rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(224, 134, 0, 0.45);
    color: var(--color-primary-deep);
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.15vw, 1.65rem);
    line-height: 1.35;
}

.feature-list,
.chip-list,
.sitemap-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.feature-list li,
.chip-list li,
.sitemap-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--color-text);
}

.feature-list li::before,
.sitemap-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--color-accent-amber);
}

.feature-list.compact {
    margin-top: 1rem;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.chip-list li {
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-pill);
    background: rgba(9, 2, 142, 0.06);
    color: var(--color-primary-deep);
    font-size: 0.9rem;
}

.chip-list li::before {
    display: none;
}

.territory-highlight {
    padding: 1.45rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(9, 2, 142, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82));
    box-shadow: var(--shadow-card);
}

.territory-highlight h3 {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: 1.26rem;
}

.territory-highlight p {
    margin: 0;
    color: var(--color-text-muted);
}

.map-note-card {
    background:
        radial-gradient(circle at top right, rgba(224, 134, 0, 0.08), transparent 26%),
        rgba(255, 255, 255, 0.84);
}

.page-letter-card,
.page-closing-card,
.page-support-card,
.donation-cta-card {
    background:
        radial-gradient(circle at top right, rgba(224, 134, 0, 0.08), transparent 24%),
        rgba(255, 255, 255, 0.84);
}

.page-letter-card .editorial-quote {
    margin-bottom: 1.5rem;
}

.signature-block {
    display: grid;
    gap: 0.18rem;
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(9, 2, 142, 0.1);
}

.signature-block strong {
    color: var(--color-text-strong);
    font-size: 1rem;
}

.signature-block span {
    color: var(--color-text-muted);
}

.cta-inline-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-aside-stack {
    display: grid;
    gap: 1rem;
}

.form-intro-copy {
    max-width: 42rem;
    margin-bottom: 1.35rem;
}

.contact-form .invalid-feedback {
    margin-top: 0.35rem;
}

.legal-section-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.78)),
        rgba(255, 255, 255, 0.8);
}

.legal-section-card .rich-copy {
    display: grid;
    gap: 0.8rem;
}

.legal-section-card .rich-copy p {
    margin: 0;
}

.sitemap-group-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.78)),
        rgba(255, 255, 255, 0.8);
}

.sitemap-group-card .section-subtitle a {
    color: var(--color-text-strong);
    text-decoration: none;
}

.sitemap-group-card .section-subtitle a:hover {
    color: var(--color-primary-deep);
}

.sitemap-group-card .sitemap-children {
    gap: 0.55rem;
    margin-top: 1rem;
    padding-left: 0;
}

.sitemap-group-card .sitemap-children a {
    display: flex;
    align-items: center;
    min-height: 2.85rem;
    padding: 0.7rem 0.85rem;
    border-radius: 1rem;
    background: rgba(9, 2, 142, 0.05);
    text-decoration: none;
}

.sitemap-group-card .sitemap-children a:hover {
    background: rgba(9, 2, 142, 0.09);
}

.contact-details {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-details dt {
    margin-bottom: 0.25rem;
    color: var(--color-text-strong);
    font-weight: 700;
}

.contact-details dd {
    margin: 0;
    color: var(--color-text-muted);
}

.contact-details a {
    color: inherit;
    text-decoration: none;
}

.form-card {
    padding: 1.5rem;
}

.contact-form .form-label {
    margin-bottom: 0.45rem;
    color: var(--color-text-strong);
    font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 3.15rem;
    border: 1px solid var(--color-border-soft);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: auto;
    padding-top: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: rgba(9, 2, 142, 0.32);
    box-shadow: 0 0 0 0.2rem rgba(9, 2, 142, 0.08);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-note,
.form-timer {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.94rem;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    border-radius: var(--radius-md);
    border: 0;
    box-shadow: var(--shadow-soft);
}

.footer-top {
    padding-top: var(--space-5);
}

.site-footer {
    margin-top: var(--space-5);
}

.footer-brand-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.45rem;
    border: 1px solid rgba(9, 2, 142, 0.06);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(9, 2, 142, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 244, 238, 0.78));
    box-shadow: var(--shadow-card);
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: inherit;
    text-decoration: none;
}

.footer-brand-link:hover {
    color: inherit;
}

.home-hero-brandline {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 0.75rem;
    padding: 0.5rem 0.95rem 0.46rem;
    border: 1px solid rgba(9, 2, 142, 0.11);
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, rgba(9, 2, 142, 0.08), rgba(9, 2, 142, 0.04));
    box-shadow: 0 10px 22px rgba(9, 2, 142, 0.08);
    color: var(--color-primary-deep);
    font-family: var(--font-display);
    font-size: clamp(1.22rem, 4.2vw, 1.42rem);
    font-weight: 700;
    letter-spacing: 0.012em;
    line-height: 1.08;
    text-wrap: pretty;
}

.footer-brand-card .brand-copy small {
    display: block;
}

.footer-intro {
    margin: 1rem 0 0;
    max-width: 30rem;
    color: var(--color-text-muted);
}

.footer-actions-grid {
    display: grid;
    gap: 1rem;
    height: 100%;
}

.footer-top-layout {
    --bs-gutter-x: 1rem;
}

.footer-action-card,
.pdf-button-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(9, 2, 142, 0.06);
    color: var(--color-text);
    text-decoration: none;
    box-shadow: var(--shadow-card);
}

.footer-action-card {
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82));
}

.pdf-button-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(224, 134, 0, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 240, 223, 0.84));
}

.footer-action-card strong,
.pdf-button-card strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--color-text-strong);
}

.footer-action-card small,
.pdf-button-card small {
    color: var(--color-text-muted);
}

.footer-actions-grid-compact {
    grid-auto-rows: minmax(0, 1fr);
}

.footer-action-card.is-compact {
    align-items: center;
    min-height: 0;
    padding: 1rem 1.05rem;
}

.footer-action-card.is-compact strong {
    margin-bottom: 0.15rem;
}

.footer-bottom {
    padding: 1.6rem 0 7rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(9, 2, 142, 0.08);
}

.footer-legal-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.95rem;
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-legal-line > * {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
}

.footer-legal-line > * + *::before {
    content: "";
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 999px;
    background: rgba(9, 2, 142, 0.18);
}

.footer-legal-credit {
    flex-wrap: wrap;
    gap: 0.25rem;
}

.footer-credit-label,
.footer-credit-name {
    white-space: nowrap;
}

.footer-bottom a {
    color: var(--color-primary);
    text-decoration: none;
}

.route-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.route-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(9, 2, 142, 0.08);
    color: var(--color-primary-deep);
    font-size: 0.9rem;
}

.sitemap-children {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.6rem;
    padding-left: 1.25rem;
}

.empty-state {
    max-width: 42rem;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
}

.hero-copy-column,
.text-media-copy {
    max-width: 38rem;
}

.text-media-copy .rich-copy,
.text-media-copy .feature-list,
.cta-don-copy .feature-list {
    max-width: 34rem;
}

.home-antenna-layout,
.home-profile-layout,
.antenna-directory-layout {
    --bs-gutter-x: 1.35rem;
    --bs-gutter-y: 1.35rem;
}

.antenna-spotlight,
.profile-spotlight {
    height: 100%;
}

.antenna-spotlight .antenne-card,
.profile-spotlight .profile-card {
    min-height: 100%;
}

@media (min-width: 768px) {
    .brand-copy small {
        display: block;
    }

    .home-hero-brandline {
        margin-bottom: 0.7rem;
        padding-inline: 1.05rem;
        font-size: clamp(1.3rem, 2vw, 1.55rem);
    }

    .site-header-inner {
        padding-inline: 1.25rem;
    }

    .form-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-actions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inline-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (min-width: 992px) {
    .home-hero-brandline {
        margin-bottom: 0.78rem;
        padding: 0.58rem 1.15rem 0.52rem;
        font-size: clamp(1.36rem, 1.45vw, 1.62rem);
        line-height: 1;
        white-space: nowrap;
    }
}

@media (min-width: 992px) {
    .site-body.has-bottom-nav {
        padding-bottom: 0;
    }

    .footer-bottom {
        padding-bottom: 2.5rem;
    }

    .site-header-inner {
        padding-inline: 1.35rem;
    }

    .footer-top {
        padding-top: var(--space-6);
    }

    .section-surface::before {
        inset: 0.85rem 0;
    }

    .hero-copy-column {
        padding-right: 1rem;
    }

    .text-media-copy {
        padding-right: 1.25rem;
    }

    .text-media-media {
        padding-left: 0.35rem;
    }

    .cta-don-copy {
        max-width: 40rem;
    }

    .home-antenna-layout,
    .home-profile-layout,
    .antenna-directory-layout {
        --bs-gutter-x: 1.6rem;
    }

    .antenna-spotlight .antenne-card-body,
    .profile-spotlight .profile-card-body {
        padding: 1.55rem;
    }

    .antenna-spotlight .antenne-card h3,
    .profile-spotlight .profile-card h3 {
        font-size: 1.42rem;
    }

    .footer-actions-grid-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        align-content: start;
    }

    .footer-action-card.is-compact small {
        display: none;
    }

    .footer-action-card.is-compact .icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .footer-action-card.is-compact strong {
        margin-bottom: 0;
    }

    .footer-top-layout {
        --bs-gutter-x: 1.15rem;
    }

    .footer-legal-credit {
        flex-wrap: nowrap;
    }

    .cta-inline-actions {
        justify-content: flex-end;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn,
    a,
    .inline-link,
    .brand-link,
    .site-header,
    .site-header-inner,
    .desktop-nav-link,
    .desktop-nav-toggle,
    .content-card,
    .mini-card,
    .link-panel,
    .footer-action-card,
    .pdf-button-card {
        transition-duration: 0.01ms !important;
    }

    .btn:hover,
    .inline-link:hover,
    .link-panel:hover,
    .footer-action-card:hover,
    .pdf-button-card:hover {
        transform: none;
    }
}
