:root {
    --bg-night: #061311;
    --bg-canopy: #0f2521;
    --bg-forest: #183833;
    --bg-mist: #e8ece6;
    --bg-ivory: #f8f4ec;
    --surface-dark: rgba(9, 21, 19, 0.52);
    --surface-dark-strong: rgba(8, 18, 17, 0.76);
    --surface-light: rgba(255, 255, 255, 0.54);
    --surface-light-strong: rgba(255, 255, 255, 0.72);
    --surface-light-soft: rgba(248, 244, 236, 0.44);
    --line-dark: rgba(255, 255, 255, 0.18);
    --line-light: rgba(13, 33, 29, 0.08);
    --text-strong: #12211f;
    --text-soft: #53625d;
    --text-inverse: #f6efe3;
    --text-inverse-soft: #d4cebf;
    --accent-gold: #dfb15b;
    --accent-gold-deep: #ab7328;
    --accent-green: #7ea189;
    --accent-green-deep: #33534b;
    --shadow-soft: 0 24px 60px rgba(10, 20, 18, 0.12);
    --shadow-strong: 0 34px 90px rgba(4, 9, 8, 0.28);
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --radius-pill: 999px;
    --max-width: 1220px;
    --header-offset: 5.4rem;
    --nav-panel-width: min(86vw, 24rem);
    --section-space: clamp(4.25rem, 8vw, 7.5rem);
    --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --font-body: "Aptos", "Segoe UI Variable Text", "Trebuchet MS", "Segoe UI", sans-serif;
    --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--text-strong);
    background:
        radial-gradient(circle at 12% 15%, rgba(126, 161, 137, 0.24), transparent 22%),
        radial-gradient(circle at 88% 5%, rgba(223, 177, 91, 0.28), transparent 20%),
        linear-gradient(180deg, #05110f 0, #0e221f 18rem, #183732 34rem, #e3e9e2 34rem, #f8f4ec 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    opacity: 0.72;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35) 58%, transparent);
}

body::after {
    inset: auto auto -14rem -12rem;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 177, 91, 0.24), transparent 62%);
}

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

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

figure {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

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

::selection {
    color: #0e150f;
    background: rgba(223, 177, 91, 0.6);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3.5rem;
    z-index: 2000;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-pill);
    color: #120d05;
    background: linear-gradient(135deg, #f0ca7e, var(--accent-gold));
    box-shadow: var(--shadow-soft);
    transition: top var(--transition);
}

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

:focus-visible {
    outline: 3px solid rgba(223, 177, 91, 0.9);
    outline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 17, 16, 0.92);
    transition:
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header.is-scrolled {
    background: rgba(6, 16, 15, 0.96);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 48px rgba(3, 8, 7, 0.24);
}

.header-shell,
.hero-shell,
.page-hero-shell,
.section-shell,
.footer-shell,
.footer-meta {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.text-center {
    text-align: center;
}

.section-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.narrow-center {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.header-shell {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 1rem;
    min-height: var(--header-offset);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    inline-size: 3.2rem;
    block-size: 3.2rem;
    flex: 0 0 auto;
    overflow: hidden;
    padding: 0.18rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
        rgba(6, 17, 16, 0.74);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 18px 38px rgba(8, 14, 12, 0.22);
}

.brand-mark img,
.footer-brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.brand-text {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.brand-text strong,
.footer-brand-text strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.08;
}

.brand-text strong {
    color: var(--text-inverse);
}

.brand-text span,
.footer-brand-text span {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-text span {
    color: rgba(244, 239, 227, 0.7);
}

.menu-toggle {
    justify-self: end;
    display: none;
    position: relative;
    z-index: 30;
    align-items: center;
    gap: 0.65rem;
    padding: 0.82rem 1.05rem;
    color: var(--text-inverse);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition:
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.menu-toggle-bars {
    display: inline-grid;
    gap: 0.24rem;
}

.menu-toggle-bars span {
    display: block;
    width: 1rem;
    height: 2px;
    border-radius: var(--radius-pill);
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
    min-width: 0;
}

.site-nav a {
    position: relative;
    padding: 0.8rem 1.05rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    color: rgba(244, 239, 227, 0.74);
    font-size: 0.92rem;
    font-weight: 600;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text-inverse);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
    color: #fffaf2;
    background:
        linear-gradient(135deg, rgba(223, 177, 91, 0.2), rgba(255, 255, 255, 0.08));
    border-color: rgba(223, 177, 91, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.nav-open {
    overflow: hidden;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 990;
    border: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 7, 6, 0.34), rgba(2, 7, 6, 0.62)),
        rgba(2, 7, 6, 0.48);
    transition:
        opacity var(--transition),
        visibility 0s linear var(--transition);
}

body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity var(--transition),
        visibility 0s linear 0s;
}

.hero-home,
.page-hero {
    position: relative;
    overflow: clip;
    color: var(--text-inverse);
}

.hero-home::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(126, 161, 137, 0.26), transparent 22%),
        radial-gradient(circle at 86% 12%, rgba(223, 177, 91, 0.3), transparent 22%),
        linear-gradient(115deg, rgba(6, 14, 13, 0.96) 0%, rgba(10, 24, 22, 0.92) 48%, rgba(17, 38, 35, 0.76) 100%);
}

.hero-home::before {
    background:
        linear-gradient(115deg, rgba(7, 18, 16, 0.98) 0%, rgba(13, 31, 28, 0.96) 54%, rgba(45, 31, 20, 0.92) 100%),
        radial-gradient(circle at 82% 28%, rgba(191, 125, 51, 0.18), transparent 30%);
}

.hero-home::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -10rem -14rem auto;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 177, 91, 0.18), transparent 62%);
}

.hero-home::after {
    display: none;
}

.hero-shell,
.page-hero-shell,
.section-shell,
.footer-shell {
    position: relative;
    z-index: 1;
}

.hero-home {
    display: block;
    min-height: calc(100svh - var(--header-offset));
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #0b1715;
}

.hero-grid,
.page-hero-shell,
.split-layout,
.duo-grid,
.path-grid,
.contact-grid,
.footer-shell {
    display: grid;
    gap: clamp(1.25rem, 2vw, 1.75rem);
}

.hero-grid {
    width: min(100%, 1320px);
    min-height: calc(100svh - var(--header-offset) - clamp(8rem, 16vw, 12rem));
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.125rem);
}

.hero-grid > *,
.page-hero-shell > *,
.split-layout > *,
.duo-grid > *,
.path-grid > *,
.contact-grid > * {
    min-width: 0;
}

.hero-copy {
    position: relative;
}

.hero-content {
    z-index: 2;
    width: min(100%, 500px);
    margin: 0;
    text-align: left;
    color: #fff;
}

.eyebrow,
.section-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.2rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-pill);
    color: var(--accent-gold);
    background: rgba(223, 177, 91, 0.12);
    border: 1px solid rgba(223, 177, 91, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-title,
.page-title,
.section-heading h2,
.cta-band h2,
.feature h3,
.panel h3,
.quote-panel blockquote,
.story-note strong,
.portrait-caption strong,
.list-block strong,
.value-card strong {
    font-family: var(--font-display);
}

.hero-title {
    margin: 0;
    max-width: 11ch;
    margin-inline: 0;
    font-size: clamp(3rem, 5.6vw, 5.75rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
    color: var(--text-inverse);
}

.hero-lead,
.page-lead,
.section-heading p,
.feature p,
.panel p,
.contact-card p,
.footer-summary,
.footer-contact p,
.story-note span,
.list-block span,
.value-card span {
    line-height: 1.72;
}

.hero-lead {
    max-width: 500px;
    margin: 1.45rem 0 0;
    color: rgba(244, 239, 227, 0.84);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.76;
    letter-spacing: 0;
}

.hero-actions,
.button-row,
.section-action {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.85rem, 2vw, 1.2rem);
    margin-top: clamp(1.8rem, 3vw, 2.8rem);
}

.hero-stats,
.stack-list,
.timeline-list,
.contact-list,
.opportunity-list,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-stats li {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 1.45rem 1.35rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, rgba(22, 35, 32, 0.92), rgba(15, 25, 23, 0.88));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero-stats li:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-stats li::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 70%);
}

.hero-stats strong,
.contact-card strong,
.path-card strong,
.timeline-list strong,
.opportunity-list strong,
.contact-list strong {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-inverse);
}

.hero-stats span {
    color: rgba(244, 239, 227, 0.72);
    font-size: 0.94rem;
    line-height: 1.58;
}

.hero-visual {
    position: relative;
}

.hero-visual-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 3vw, 1.8rem);
}

.hero-seal,
.story-note,
.portrait-caption,
.page-aside,
.contact-card,
.feature,
.panel,
.path-card,
.value-card,
.quote-panel,
.list-block {
    border-radius: var(--radius-md);
}

.hero-seal,
.page-aside,
.portrait-panel,
.map-panel,
.feature,
.panel,
.path-card,
.contact-card,
.value-card,
.quote-panel,
.list-block,
.story-note,
.cta-band,
.footer-shell {
    position: relative;
    overflow: hidden;
}

.hero-seal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    max-width: 14rem;
    padding: 1.2rem 1.35rem;
    color: var(--text-inverse);
    background: rgba(10, 18, 16, 0.88);
    border: 1px solid rgba(223, 177, 91, 0.24);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-seal::before,
.page-aside::before,
.feature::before,
.panel::before,
.path-card::before,
.contact-card::before,
.value-card::before,
.quote-panel::before,
.list-block::before,
.story-note::before,
.cta-band::before,
.footer-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), transparent 70%);
}

.hero-seal span,
.story-note span {
    display: block;
    font-size: 0.88rem;
    color: rgba(244, 239, 227, 0.72);
}

.hero-seal strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
    font-size: 1.08rem;
}

.portrait-panel {
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, rgba(22, 35, 32, 0.92), rgba(15, 25, 23, 0.88));
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform var(--transition), box-shadow var(--transition);
}

.portrait-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.map-panel {
    aspect-ratio: 1 / 1;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(223, 177, 91, 0.28);
    background: linear-gradient(135deg, rgba(39, 25, 13, 0.95), rgba(29, 17, 8, 0.92));
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(223, 177, 91, 0.14);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.map-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(223, 177, 91, 0.36);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(223, 177, 91, 0.18);
}

.portrait-panel::before,
.map-panel::before {
    content: "";
    position: absolute;
    inset: -20% auto auto -14%;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 177, 91, 0.22), transparent 64%);
}

.portrait-panel::after,
.map-panel::after {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: calc(var(--radius-lg) - 12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.map-panel img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--radius-lg) - 12px);
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #2a1a0f, #1a0f08);
}

.portrait-panel img {
    width: 100%;
    min-height: 520px;
    border-radius: calc(var(--radius-lg) - 12px);
    object-fit: cover;
    object-position: center top;
}

.portrait-caption {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    padding: 1.2rem 1.35rem;
    color: var(--text-inverse);
    background: rgba(10, 18, 16, 0.88);
    border: 1px solid rgba(223, 177, 91, 0.24);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.portrait-caption strong {
    display: block;
    margin-bottom: 0.28rem;
    font-size: 1.08rem;
}

.portrait-caption span {
    color: rgba(244, 239, 227, 0.72);
    font-size: 0.9rem;
}

.page-hero {
    padding: clamp(4rem, 7.5vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.page-hero-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.75fr);
    align-items: end;
}

.page-hero-shell > div:first-child {
    justify-self: center;
    text-align: center;
}

.page-title {
    margin: 0;
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-wrap: balance;
    color: var(--text-inverse);
}

.page-lead {
    max-width: 40rem;
    margin: 1.2rem auto 0;
    color: rgba(244, 239, 227, 0.8);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.76;
    letter-spacing: 0.01em;
}

.page-aside {
    text-align: left;
    padding: 1.5rem;
    color: var(--text-inverse);
    background: linear-gradient(135deg, rgba(22, 35, 32, 0.88), rgba(15, 25, 23, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.page-aside dl {
    margin: 0;
    display: grid;
    gap: 0.95rem;
}

.page-aside dl > div + div {
    padding-top: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-aside dt,
.footer-heading {
    margin: 0 0 0.25rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-aside dt {
    color: var(--accent-gold);
}

.page-aside dd {
    margin: 0;
    color: rgba(255, 248, 238, 0.92);
    line-height: 1.58;
}

.section {
    position: relative;
    padding: var(--section-space) 0;
}

.section + .section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-mark {
    color: var(--accent-gold-deep);
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    max-width: 16ch;
    margin-inline: auto;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-wrap: balance;
    color: var(--text-strong);
}

.section-heading p {
    max-width: 44rem;
    margin: 0 auto;
    color: var(--text-soft);
}

.advocacy-hero {
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
    background: linear-gradient(180deg, #fbfaf6 0%, #f4f2ea 100%);
}

.hero-content .hero-actions {
    justify-content: flex-start;
}

.hero-image-card {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 600px;
    max-width: 100%;
    height: 400px;
    aspect-ratio: 3 / 2;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(223, 177, 91, 0.2);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.hero-image-card:hover {
    transform: translateY(-4px);
    border-color: rgba(223, 177, 91, 0.34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.hero-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.advocacy-hero-grid {
    display: grid;
    width: min(100%, 1320px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 2.5rem);
}

.advocacy-content {
    display: grid;
    justify-items: start;
    gap: 1.05rem;
    max-width: 36rem;
    margin: 0;
    padding: 0;
    text-align: left;
}

.advocacy-content .eyebrow {
    margin-bottom: 0;
}

.advocacy-content h1 {
    margin: 0;
    max-width: 20ch;
    font-family: var(--font-display);
    font-size: clamp(2.45rem, 4.4vw, 4.25rem);
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
    color: var(--text-strong);
}

.advocacy-content p {
    max-width: 34rem;
    margin: 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.72;
}

.advocacy-content .section-action {
    justify-content: flex-start;
    margin-top: 0.65rem;
}

.advocacy-image-card {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 600px;
    max-width: 100%;
    height: 350px;
    aspect-ratio: 3 / 2;
    margin: 0;
    overflow: hidden;
    padding: 0.75rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(18, 33, 31, 0.1);
    box-shadow: 0 8px 20px rgba(18, 33, 31, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.advocacy-image-card:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 33, 31, 0.16);
    box-shadow: 0 14px 28px rgba(18, 33, 31, 0.1);
}

.advocacy-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    background: #ffffff;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .advocacy-hero-grid {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        gap: clamp(2rem, 4vw, 3rem);
    }

    .advocacy-image-card {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 768px) {
    .advocacy-hero {
        padding: 3rem 0 3.5rem;
    }

    .advocacy-hero-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 6vw, 1.875rem);
    }

    .advocacy-content {
        max-width: 42rem;
    }

    .advocacy-image-card {
        justify-self: start;
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
        padding: 0.6rem;
    }
}

.feature-grid,
.value-grid,
.story-grid,
.editorial-grid,
.duo-grid,
.path-grid,
.advocacy-focus-grid,
.advocacy-preview-grid,
.contact-grid {
    display: grid;
    align-items: stretch;
    grid-auto-rows: 1fr;
    gap: clamp(1.5rem, 2.5vw, 2rem);
}

.feature-grid,
.value-grid,
.path-grid,
.advocacy-focus-grid,
.advocacy-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.75rem), 1fr));
}

.story-grid,
.editorial-grid,
.duo-grid,
.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
    gap: clamp(1.25rem, 2vw, 1.75rem);
    align-items: stretch;
}

.feature,
.panel,
.path-card,
.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    padding: 1.65rem;
    background: linear-gradient(135deg, rgba(253, 250, 244, 0.98), rgba(248, 244, 236, 0.94));
    border: 1px solid rgba(18, 33, 31, 0.12);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.64);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature:hover,
.panel:hover,
.path-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 33, 31, 0.18);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.feature h3,
.panel h3,
.path-card strong,
.contact-card strong {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.2;
    color: var(--text-strong);
    font-weight: 700;
}

.feature p,
.panel p,
.path-card p,
.contact-card p,
.timeline-list span,
.contact-list span,
.opportunity-list span,
.footer-summary,
.footer-contact p,
.value-card span {
    margin: 0;
    color: var(--text-soft);
}

.panel p + p {
    margin-top: 0.05rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    min-height: 100%;
    padding: clamp(1.4rem, 2.4vw, 1.8rem);
    background: #ffffff;
    border: 1px solid rgba(18, 33, 31, 0.12);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(18, 33, 31, 0.2);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 50%;
    color: #1a241f;
    background: #f2cf86;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.service-card h3 {
    margin: 0;
    color: var(--text-strong);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.8vw, 1.38rem);
    line-height: 1.2;
}

.service-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.68;
}

.section-action {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.35rem;
}

.advocacy-preview-card,
.advocacy-focus-card {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    min-height: 100%;
    padding: 1.55rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 250, 244, 0.98), rgba(248, 244, 236, 0.94));
    border: 1px solid rgba(18, 33, 31, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.64);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.advocacy-preview-card:hover,
.advocacy-focus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 33, 31, 0.18);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.advocacy-preview-card strong,
.advocacy-focus-card h3 {
    margin: 0;
    color: var(--text-strong);
    font-family: var(--font-display);
    font-size: 1.32rem;
    line-height: 1.12;
}

.advocacy-preview-card p,
.advocacy-focus-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.68;
}



.advocacy-focus-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    color: #201508;
    background: linear-gradient(135deg, #efc66f, var(--accent-gold));
    font-size: 0.82rem;
    font-weight: 900;
}

/* Advocacy Image Grid System */
.advocacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Advocacy Card Container */
.advocacy-card {
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advocacy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Advocacy Image Styling */
.advocacy-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.4s ease;
}

.advocacy-card:hover .advocacy-image {
    transform: scale(1.05);
}

/* Responsive Grid - Mobile */
@media (max-width: 768px) {
    .advocacy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Responsive Grid - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .advocacy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Responsive Grid - Desktop */
@media (min-width: 1025px) {
    .advocacy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.advocacy-message {
    max-width: 56rem;
}

.advocacy-message h2 {
    margin: 0;
    max-width: 15ch;
    color: var(--text-inverse);
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.5vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.advocacy-message p:not(.section-mark) {
    max-width: 48rem;
    margin: 1rem 0 0;
    color: var(--text-inverse-soft);
    font-size: 1.06rem;
    line-height: 1.78;
}

.section-advocacy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 100px 40px;
    background: #ffffff;
}

.section-advocacy .advocacy-content {
    max-width: 520px;
}

.section-advocacy .advocacy-content h2 {
    margin: 0;
    color: #111827;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    text-wrap: balance;
}

.section-advocacy .advocacy-content p {
    margin: 15px 0 0;
    color: #4b5563;
    line-height: 1.7;
}

.section-advocacy .section-action {
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.section-advocacy .advocacy-image-card {
    width: 600px;
    height: 300px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 10px;
    background: #ffffff;
    border: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    overflow: hidden;
    transition: none;
}

.section-advocacy .advocacy-image-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.section-advocacy .advocacy-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

@media (max-width: 768px) {
    .section-advocacy {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 70px 20px;
    }

    .section-advocacy .advocacy-content {
        max-width: none;
    }

    .section-advocacy .advocacy-content h2 {
        font-size: clamp(1.6rem, 7vw, 2.1rem);
    }

    .section-advocacy .advocacy-image-card {
        justify-self: stretch;
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
    }
}

.panel > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: calc(var(--radius-md) - 8px);
    margin-bottom: 0.25rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.value-card {
    display: grid;
    gap: 0.7rem;
    min-height: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(22, 35, 32, 0.88), rgba(15, 25, 23, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.value-card strong {
    margin: 0;
    font-size: 1.12rem;
    color: var(--text-inverse);
    line-height: 1.3;
}

.value-card span {
    color: rgba(244, 239, 227, 0.76);
    font-size: 0.96rem;
    line-height: 1.6;
}

.split-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.95fr);
    align-items: start;
    gap: clamp(2rem, 4vw, 3.2rem);
}

.quote-panel,
.list-block {
    min-height: 100%;
    padding: 1.85rem;
    border-radius: var(--radius-md);
}

.quote-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    background: linear-gradient(135deg, rgba(22, 35, 32, 0.88), rgba(15, 25, 23, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.quote-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quote-panel blockquote {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.16;
    text-wrap: balance;
    color: var(--text-inverse);
}

.quote-panel p {
    margin: 0;
    color: rgba(244, 239, 227, 0.76);
}

.list-block {
    background: linear-gradient(135deg, rgba(22, 35, 32, 0.88), rgba(15, 25, 23, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.list-block strong,
.story-note strong {
    display: block;
    color: inherit;
}

.stack-list,
.timeline-list,
.contact-list,
.opportunity-list {
    display: grid;
    gap: 1rem;
}

.stack-list li,
.timeline-list li,
.contact-list li,
.opportunity-list li {
    position: relative;
    padding-left: 1.3rem;
}

.stack-list li::before,
.timeline-list li::before,
.contact-list li::before,
.opportunity-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1cc82, var(--accent-gold-deep));
    box-shadow: 0 0 0 0.38rem rgba(223, 177, 91, 0.12);
}

.path-card {
    gap: 0.9rem;
}

.path-card:focus-visible {
    outline: 2px solid rgba(223, 177, 91, 0.5);
    outline-offset: 2px;
}

.path-card span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    color: var(--accent-green-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.path-card span::after {
    content: "→";
    font-size: 0.95rem;
}

.story-note {
    display: grid;
    gap: 0.5rem;
    min-height: 100%;
    padding: 1.35rem 1.45rem;
    background: linear-gradient(135deg, rgba(22, 35, 32, 0.88), rgba(15, 25, 23, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.story-note strong {
    font-size: 1.08rem;
}

.contact-grid {
    align-items: stretch;
}

.contact-card a {
    color: var(--accent-green-deep);
    font-weight: 700;
}

.contact-card address {
    margin: 0;
    font-style: normal;
    line-height: 1.72;
    color: var(--text-soft);
}

.contact-section {
    background: linear-gradient(135deg, rgba(248, 244, 236, 0.92), rgba(232, 236, 230, 0.82));
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: start;
    gap: clamp(1.8rem, 3.5vw, 2.8rem);
}

.contact-info-panel,
.contact-form-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-info-panel {
    display: grid;
    gap: 1.35rem;
    padding: clamp(1.65rem, 3vw, 2.4rem);
    color: var(--text-inverse);
    background: linear-gradient(135deg, rgba(22, 35, 32, 0.92), rgba(15, 25, 23, 0.88));
    border: 1px solid rgba(223, 177, 91, 0.22);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-info-panel .section-mark {
    margin-bottom: 0;
    color: var(--accent-gold);
}

.contact-info-panel h2,
.contact-form-card h3 {
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.05;
    text-wrap: balance;
}

.contact-info-panel h2 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 4vw, 3.65rem);
    letter-spacing: -0.025em;
}

.contact-info-panel p {
    margin: 0;
    color: rgba(244, 239, 227, 0.78);
    line-height: 1.72;
}

.contact-focus-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 1.1rem 0 1.1rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(244, 239, 227, 0.84);
    line-height: 1.55;
}

.contact-focus-list li::marker {
    color: var(--accent-gold);
}

.contact-methods {
    display: grid;
    gap: 0.75rem;
}

.contact-method {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-md);
    color: var(--text-inverse);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(223, 177, 91, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-method:hover {
    transform: translateY(-2px);
    border-color: rgba(223, 177, 91, 0.28);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-method-icon {
    display: inline-grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    color: #1a241f;
    background: linear-gradient(135deg, #f2cf86, var(--accent-gold));
    box-shadow: 0 14px 32px rgba(171, 115, 40, 0.22);
    flex: 0 0 auto;
}

.contact-method-icon svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-method strong,
.contact-method span span {
    display: block;
}

.contact-method strong {
    margin-bottom: 0.12rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.contact-method span span {
    color: rgba(244, 239, 227, 0.84);
    overflow-wrap: anywhere;
}

.contact-form-card {
    padding: clamp(1.55rem, 3vw, 2.2rem);
    background: linear-gradient(135deg, rgba(255, 250, 244, 0.98), rgba(248, 244, 236, 0.94));
    border: 1px solid rgba(18, 33, 31, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.form-heading {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.form-heading .section-mark {
    margin-bottom: 0;
}

.contact-form-card h3 {
    color: var(--text-strong);
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.form-heading p {
    max-width: 36rem;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.62;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.42rem;
}

.form-field-wide {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--text-strong);
    font-size: 0.88rem;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(13, 33, 29, 0.18);
    border-radius: 16px;
    background: #ffffff;
    color: var(--text-strong);
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(13, 33, 29, 0.06);
    transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition), transform var(--transition);
}

.form-field input,
.form-field select {
    min-height: 3.25rem;
    padding: 0 0.95rem;
}

.form-field textarea {
    min-height: 10rem;
    padding: 0.9rem 0.95rem;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(171, 115, 40, 0.76);
    background: #fffef9;
    transform: translateY(-1px);
    box-shadow: 0 0 0 5px rgba(223, 177, 91, 0.2), inset 0 2px 4px rgba(13, 33, 29, 0.04);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
    border-color: #9d342c;
    box-shadow: 0 0 0 4px rgba(157, 52, 44, 0.1);
}

.field-error {
    min-height: 1.05rem;
    color: #8c2f27;
    font-size: 0.82rem;
    font-weight: 700;
}

.form-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.2rem;
}

.form-status {
    flex: 1 1 16rem;
    margin: 0;
    color: var(--accent-green-deep);
    font-weight: 800;
    line-height: 1.5;
}

.form-status.is-error {
    color: #8c2f27;
}

.section-deep {
    color: var(--text-inverse);
    background:
        radial-gradient(circle at 10% 18%, rgba(126, 161, 137, 0.15), transparent 22%),
        radial-gradient(circle at 88% 8%, rgba(223, 177, 91, 0.15), transparent 20%),
        linear-gradient(180deg, rgba(6, 14, 13, 0.96), rgba(9, 20, 18, 0.92));
}

.section-deep .section-mark {
    color: var(--accent-gold);
}

.section-deep .section-heading h2,
.section-deep .feature h3,
.section-deep .panel h3,
.section-deep .quote-panel blockquote,
.section-deep .list-block strong,
.section-deep .timeline-list strong,
.section-deep .stack-list strong,
.section-deep .story-note strong {
    color: var(--text-inverse);
}

.section-deep .section-heading p,
.section-deep .feature p,
.section-deep .panel p,
.section-deep .timeline-list span,
.section-deep .stack-list span,
.section-deep .contact-list span,
.section-deep .opportunity-list span,
.section-deep .list-block span,
.section-deep .story-note span {
    color: var(--text-inverse-soft);
}

.section-deep .feature,
.section-deep .panel,
.section-deep .list-block,
.section-deep .quote-panel,
.section-deep .story-note,
.section-deep .value-card {
    background: linear-gradient(135deg, rgba(22, 35, 32, 0.88), rgba(15, 25, 23, 0.84));
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-deep .stack-list li::before,
.section-deep .timeline-list li::before,
.section-deep .contact-list li::before,
.section-deep .opportunity-list li::before {
    box-shadow: 0 0 0 0.38rem rgba(223, 177, 91, 0.14);
}

.cta-band {
    display: grid;
    justify-items: center;
    gap: 1.2rem;
    padding: clamp(2.2rem, 4.5vw, 3.4rem);
    border-radius: var(--radius-lg);
    color: var(--text-inverse);
    background: linear-gradient(135deg, rgba(22, 49, 43, 0.94), rgba(16, 28, 26, 0.88));
    border: 1px solid rgba(223, 177, 91, 0.2);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

.cta-band:hover {
    transform: translateY(-2px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-band::after {
    content: "";
    position: absolute;
    inset: auto -4rem -5rem auto;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-band .section-mark {
    color: var(--accent-gold);
}

.cta-band h2 {
    margin: 0;
    max-width: 13ch;
    margin-inline: auto;
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.cta-band p {
    max-width: 36rem;
    margin: 0 auto;
    color: rgba(246, 239, 227, 0.82);
}

.footer {
    color: var(--text-inverse);
    padding-top: 1.5rem;
    background: linear-gradient(180deg, rgba(6, 14, 13, 0), rgba(6, 14, 13, 0.96) 12%, rgba(4, 11, 10, 0.98) 100%);
}

.footer-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(0, 0.82fr);
    align-items: start;
    gap: 2rem;
    padding-top: 2.4rem;
    padding-bottom: 2.2rem;
    border-radius: calc(var(--radius-lg) - 4px);
    background: linear-gradient(135deg, rgba(22, 35, 32, 0.88), rgba(15, 25, 23, 0.84));
    border: 1px solid rgba(223, 177, 91, 0.16);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-shell > div:first-child {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.footer-brand-mark {
    display: grid;
    place-items: center;
    width: 3.4rem;
    height: 3.4rem;
    flex: 0 0 auto;
    overflow: hidden;
    padding: 0.18rem;
    border-radius: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent),
        rgba(255, 255, 255, 0.04);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 26px rgba(2, 7, 6, 0.18);
}

.footer-brand-text {
    display: grid;
    gap: 0.25rem;
}

.footer-summary {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(244, 239, 227, 0.78);
    font-size: 0.98rem;
    line-height: 1.72;
}

.footer-heading {
    color: var(--accent-gold);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
}

.footer-nav a,
.footer-contact a {
    color: rgba(244, 239, 227, 0.78);
    font-weight: 500;
    transition: color var(--transition), opacity var(--transition);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: #fffaf2;
    opacity: 1;
}

.footer-contact {
    display: grid;
    gap: 0.72rem;
}

.footer-meta {
    padding-top: 1.2rem;
    padding-bottom: 2rem;
    color: rgba(212, 206, 191, 0.76);
    font-size: 0.9rem;
}

.footer-meta p {
    margin: 0;
}

.section-compact {
    padding-top: 2.5rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reveal-ready {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 620ms ease,
        transform 620ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    }

    .hero-image-card {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
    }

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

@media (max-width: 980px) {
    .header-shell {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: 0.9rem;
        right: 0.9rem;
        bottom: 0.9rem;
        z-index: 20;
        width: var(--nav-panel-width);
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.7rem;
        max-height: calc(100dvh - 1.8rem);
        padding: 5.6rem 1.1rem 1.1rem;
        background: #071512;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 1.25rem;
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        overflow-y: auto;
        overscroll-behavior: contain;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(calc(100% + 1.6rem));
        transition:
            transform var(--transition),
            visibility 0s linear var(--transition);
    }

    .site-nav::before {
        content: "Site Directory";
        margin-bottom: 0.45rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(244, 239, 227, 0.62);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }

    .site-header.nav-open .site-nav {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        transition:
            transform var(--transition),
            visibility 0s linear 0s;
    }

    .site-header.nav-open .menu-toggle-bars span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.nav-open .menu-toggle-bars span:nth-child(2) {
        opacity: 0;
    }

    .site-header.nav-open .menu-toggle-bars span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.1rem;
        border-radius: 1.2rem;
        color: rgba(244, 239, 227, 0.8);
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateX(1rem);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
        transition:
            color var(--transition),
            background-color var(--transition),
            border-color var(--transition),
            transform var(--transition),
            opacity var(--transition),
            box-shadow var(--transition);
    }

    .site-nav a::before {
        display: none;
    }

    .site-nav a::after {
        content: "";
        width: 0.72rem;
        height: 0.72rem;
        flex: 0 0 auto;
        border-top: 1.5px solid currentColor;
        border-right: 1.5px solid currentColor;
        opacity: 0.34;
        transform: translateX(0) rotate(45deg);
        transition:
            transform var(--transition),
            opacity var(--transition);
    }

    .site-header.nav-open .site-nav a {
        opacity: 1;
        transform: translateX(0);
    }

    .site-header.nav-open .site-nav a:nth-child(1) {
        transition-delay: 40ms;
    }

    .site-header.nav-open .site-nav a:nth-child(2) {
        transition-delay: 70ms;
    }

    .site-header.nav-open .site-nav a:nth-child(3) {
        transition-delay: 100ms;
    }

    .site-header.nav-open .site-nav a:nth-child(4) {
        transition-delay: 130ms;
    }

    .site-header.nav-open .site-nav a:nth-child(5) {
        transition-delay: 160ms;
    }

    .site-header.nav-open .site-nav a:nth-child(6) {
        transition-delay: 190ms;
    }

    .site-header.nav-open .site-nav a:nth-child(7) {
        transition-delay: 220ms;
    }

    .site-header.nav-open .site-nav a:nth-child(8) {
        transition-delay: 250ms;
    }

    .site-header.nav-open .site-nav a:nth-child(9) {
        transition-delay: 280ms;
    }

    .site-header.nav-open .site-nav a:nth-child(10) {
        transition-delay: 310ms;
    }

    .site-header.nav-open .site-nav a:nth-child(11) {
        transition-delay: 340ms;
    }

    .site-header.nav-open .site-nav a:nth-child(12) {
        transition-delay: 370ms;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.14);
    }

    .site-nav a:hover::after,
    .site-nav a:focus-visible::after,
    .site-nav a[aria-current="page"]::after {
        opacity: 0.92;
        transform: translateX(0.16rem) rotate(45deg);
    }

    .site-nav a[aria-current="page"] {
        background:
            linear-gradient(135deg, rgba(223, 177, 91, 0.24), rgba(255, 255, 255, 0.08));
        border-color: rgba(223, 177, 91, 0.28);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 14px 28px rgba(3, 8, 7, 0.18);
    }

    .page-hero-shell,
    .split-layout,
    .contact-layout,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-home {
        min-height: auto;
    }

    .hero-title,
    .page-title {
        max-width: 12ch;
    }

    .page-aside {
        max-width: 34rem;
    }

    .hero-seal {
        position: static;
        margin-bottom: 1rem;
        max-width: none;
    }

    .section-heading {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .hero-home {
        min-height: auto;
        padding: 3.75rem 0 4rem;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content,
    .hero-copy {
        width: min(100%, 500px);
        max-width: 500px;
    }

    .hero-title {
        max-width: 12ch;
        font-size: clamp(2.6rem, 11vw, 4rem);
        line-height: 1;
    }

    .hero-image-card {
        justify-self: start;
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 720px) {
    .site-nav {
        top: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        width: min(92vw, 22rem);
        max-height: calc(100dvh - 1.5rem);
        padding-top: 5.4rem;
    }

    .hero-stats,
    .footer-nav {
        grid-template-columns: 1fr;
    }

    .portrait-panel img {
        min-height: 400px;
    }

    .section-heading h2,
    .cta-band h2 {
        max-width: none;
    }

    .brand-text strong {
        font-size: 1rem;
    }

    .brand-text span,
    .footer-brand-text span {
        letter-spacing: 0.12em;
    }
}

@media (max-width: 560px) {
    .header-shell,
    .hero-shell,
    .page-hero-shell,
    .section-shell,
    .footer-shell,
    .footer-meta {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-home {
        padding-top: 3.2rem;
    }

    .hero-title {
        font-size: clamp(2.7rem, 15vw, 4.3rem);
    }

    .page-title {
        font-size: clamp(2.25rem, 12vw, 3.2rem);
    }

    .section-heading h2 {
        font-size: clamp(1.9rem, 8.8vw, 2.7rem);
    }

    .advocacy-content h1 {
        font-size: clamp(2rem, 11vw, 3.3rem);
    }

    .feature,
    .panel,
    .path-card,
    .advocacy-preview-card,
    .advocacy-focus-card,
    .contact-card,
    .contact-info-panel,
    .contact-form-card,
    .quote-panel,
    .list-block,
    .value-card {
        padding: 1.3rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions .button,
    .button-row .button,
    .form-footer .button {
        flex: 1 1 100%;
    }

    .portrait-caption {
        left: 1.35rem;
        right: 1.35rem;
        bottom: 1.35rem;
    }

    .cta-band {
        border-radius: 30px;
    }
}

/* Premium client-ready UI pass */
:root {
    --space-4: 0.25rem;
    --space-8: 0.5rem;
    --space-12: 0.75rem;
    --space-16: 1rem;
    --space-24: 1.5rem;
    --space-32: 2rem;
    --space-48: 3rem;
    --space-64: 4rem;
    --surface-cream: #fffaf0;
    --surface-cream-deep: #f1eadf;
    --surface-green: #0a1f1b;
    --premium-shadow: 0 18px 44px rgba(10, 20, 18, 0.12);
    --premium-shadow-hover: 0 26px 62px rgba(10, 20, 18, 0.18);
    --premium-radius: 20px;
}

.site-header,
.nav-overlay,
.hero-seal,
.page-aside,
.portrait-panel,
.map-panel,
.feature,
.panel,
.path-card,
.contact-card,
.value-card,
.quote-panel,
.list-block,
.story-note,
.cta-band,
.footer-shell,
.site-nav {
}

.site-header {
    background: #061311;
    border-bottom: 1px solid rgba(223, 177, 91, 0.16);
}

.site-header.is-scrolled {
    background: #061311;
    box-shadow: 0 14px 32px rgba(3, 8, 7, 0.22);
}

.site-nav {
    gap: 0.25rem 0.45rem;
}

.site-nav a {
    border-radius: 0;
    padding: 0.72rem 0.65rem;
    background: transparent;
    border: 0;
}

.site-nav a::before {
    content: "";
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.42rem;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
    color: var(--text-inverse);
    background: transparent;
    box-shadow: none;
    transform: none;
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before,
.site-nav a[aria-current="page"]::before {
    transform: scaleX(1);
}

.site-nav a.nav-auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    margin-left: 0.2rem;
    padding: 0.58rem 0.9rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
}

.site-nav a.nav-auth::before {
    display: none;
}

.site-nav a.nav-auth-secondary {
    color: #fffaf0;
    background: #173a33;
    border-color: #2f5a50;
}

.site-nav a.nav-auth-primary {
    color: #1d1305;
    background: #dfb15b;
    border-color: #b98231;
}

.site-nav a.nav-auth:hover,
.site-nav a.nav-auth:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(2, 7, 6, 0.22);
}

.hero-home {
    min-height: calc(100svh - var(--header-offset));
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.hero-grid {
    align-items: center;
    gap: clamp(2rem, 4vw, 3.125rem);
}

.hero-copy {
    max-width: 500px;
}

.hero-title {
    max-width: 11ch;
    margin-inline: 0;
    font-size: clamp(3rem, 5.6vw, 5.75rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 500px;
    margin: var(--space-24) 0 0;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.7;
}

.hero-actions,
.button-row {
    gap: var(--space-12);
    margin-top: var(--space-32);
}

.section {
    padding: clamp(4rem, 7vw, 6.25rem) 0;
}

.section:nth-of-type(even):not(.section-deep) {
    background: rgba(255, 250, 240, 0.56);
}

.section-heading {
    gap: var(--space-16);
    margin-bottom: var(--space-32);
}

.section-heading h2,
.cta-band h2 {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 3.7vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.section-heading p,
.cta-band p {
    margin-left: auto;
    margin-right: auto;
}

.section-heading p,
.page-lead,
.feature p,
.panel p,
.path-card p,
.contact-card p,
.advocacy-preview-card p,
.advocacy-focus-card p {
    line-height: 1.65;
}

.feature,
.panel,
.path-card,
.contact-card,
.value-card,
.quote-panel,
.list-block,
.story-note,
.advocacy-preview-card,
.advocacy-focus-card,
.contact-form-card {
    border-radius: var(--premium-radius);
    padding: clamp(1.25rem, 2vw, 1.7rem);
    background: var(--surface-cream);
    border: 1px solid rgba(13, 33, 29, 0.08);
    box-shadow: var(--premium-shadow);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.feature:hover,
.panel:hover,
.path-card:hover,
.contact-card:hover,
.value-card:hover,
.quote-panel:hover,
.list-block:hover,
.story-note:hover,
.advocacy-preview-card:hover,
.advocacy-focus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(171, 115, 40, 0.22);
    box-shadow: var(--premium-shadow-hover);
}

.feature::before,
.panel::before,
.path-card::before,
.contact-card::before,
.value-card::before,
.quote-panel::before,
.list-block::before,
.story-note::before {
    width: 3rem;
    height: 4px;
    inset: 0 auto auto 1.55rem;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-deep));
}

.feature h3,
.panel h3,
.path-card strong,
.contact-card strong,
.advocacy-preview-card strong,
.advocacy-focus-card h3 {
    font-size: clamp(1.18rem, 1.6vw, 1.42rem);
    line-height: 1.18;
}

.quote-panel blockquote,
.list-block strong,
.story-note strong {
    color: var(--text-strong);
}

.quote-panel p,
.list-block span,
.story-note span {
    color: var(--text-soft);
}

.hero-stats li {
    border-radius: var(--premium-radius);
    background: #0b211d;
    border: 1px solid rgba(223, 177, 91, 0.18);
    box-shadow: 0 16px 36px rgba(3, 8, 7, 0.18);
}

.map-panel,
.portrait-panel {
    border-radius: 24px;
    background: #0b211d;
    border-color: rgba(223, 177, 91, 0.22);
    box-shadow: var(--premium-shadow-hover);
}

.map-panel img,
.portrait-panel img {
    border-radius: 16px;
}

.cta-band {
    border-radius: 24px;
    background: linear-gradient(135deg, #071512, #183833 62%, #2a1d0f);
    border-color: rgba(223, 177, 91, 0.24);
}

.footer {
    padding-top: var(--space-48);
    background: linear-gradient(180deg, rgba(6, 14, 13, 0), #061311 18%, #040b0a 100%);
}

.footer-shell {
    border-radius: 24px;
    background: #071512;
    border: 1px solid rgba(223, 177, 91, 0.14);
    box-shadow: 0 22px 50px rgba(2, 7, 6, 0.22);
}

.footer-summary {
    max-width: 34rem;
}

.footer-nav a,
.footer-contact a {
    transition: color var(--transition), transform var(--transition);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    transform: translateX(2px);
}

@media (max-width: 980px) {
    .page-hero-shell,
    .split-layout,
    .contact-layout,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 500px;
    }

    .hero-title {
        max-width: 11ch;
        font-size: clamp(2.8rem, 7vw, 4.7rem);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 34rem;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 3.5rem 0;
    }

    .hero-home {
        min-height: calc(100svh - var(--header-offset));
        padding: 4.5rem 0;
        background-position: center;
    }

    .hero-title {
        max-width: 13ch;
        font-size: clamp(2.45rem, 12vw, 3.6rem);
        line-height: 1;
    }

    .hero-lead,
    .section-heading p,
    .page-lead {
        font-size: 1rem;
    }

    .section-heading h2,
    .cta-band h2 {
        max-width: none;
        font-size: clamp(1.85rem, 8.5vw, 2.45rem);
    }

    .button {
        width: 100%;
    }

    .footer-shell {
        text-align: left;
    }
}

/* About page clean premium reset */
.about-page {
    background:
        linear-gradient(180deg, #061311 0, #0d231f 26rem, #f6efe3 26rem, #fffaf0 100%);
}

.about-page::before,
.about-page::after,
.about-page .page-hero::after,
.about-page .cta-band::after {
    display: none;
}

.about-page .page-hero {
    background: #061311;
}

.about-page .page-hero::before {
    background: linear-gradient(135deg, #061311, #12312b 72%, #26180c);
}

.about-page .page-hero-shell {
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.about-page .page-title {
    max-width: 13ch;
    letter-spacing: -0.025em;
}

.about-page .page-lead {
    max-width: 38rem;
    color: rgba(246, 239, 227, 0.84);
}

.about-page .page-aside {
    background: #0b211d;
    border: 1px solid rgba(223, 177, 91, 0.28);
    box-shadow: 0 18px 42px rgba(2, 7, 6, 0.28);
}

.about-page .section {
    background: #fffaf0;
    border-top: 1px solid rgba(13, 33, 29, 0.08);
}

.about-page .section:nth-of-type(even):not(.section-deep) {
    background: #f4eddf;
}

.about-page .section-deep {
    color: var(--text-strong);
    background: #0b211d;
}

.about-page .section-deep .section-mark {
    color: var(--accent-gold);
}

.about-page .section-deep .panel {
    background: #fffaf0;
    border: 1px solid rgba(223, 177, 91, 0.2);
    box-shadow: 0 20px 48px rgba(2, 7, 6, 0.2);
}

.about-page .section-deep .panel h3,
.about-page .section-deep .panel p {
    color: var(--text-strong);
}

.about-page .section-deep .panel p {
    color: var(--text-soft);
}

.about-page .panel,
.about-page .value-card {
    background: #fffaf0;
    border: 1px solid rgba(13, 33, 29, 0.1);
    box-shadow: 0 16px 38px rgba(10, 20, 18, 0.1);
}

.about-page .panel:hover,
.about-page .value-card:hover {
    box-shadow: 0 24px 54px rgba(10, 20, 18, 0.15);
}

.about-page .value-card strong {
    color: var(--text-strong);
}

.about-page .value-card span {
    color: var(--text-soft);
}

.about-page .panel > img {
    border-radius: 18px;
    box-shadow: none;
}

.about-page .cta-band {
    background: #0b211d;
    border: 1px solid rgba(223, 177, 91, 0.26);
    box-shadow: 0 24px 56px rgba(2, 7, 6, 0.2);
}

@media (max-width: 980px) {
    .about-page .page-hero-shell {
        gap: 1.5rem;
    }
}

/* Final solid UI system: no glassmorphism */
.button,
.contact-form-card .button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.62rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 8px;
    color: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transition:
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.button-primary,
.contact-form-card .button-primary {
    color: #1d1305;
    background: #dfb15b;
    border-color: #b98231;
}

.button-secondary {
    color: #fffaf0;
    background: #173a33;
    border-color: #2f5a50;
}

.button-outline {
    color: #173a33;
    background: #fffaf0;
    border-color: #d8c39b;
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible,
.contact-form-card .button-primary:hover,
.contact-form-card .button-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(10, 20, 18, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible,
.contact-form-card .button-primary:hover,
.contact-form-card .button-primary:focus-visible {
    background: #c9963f;
}

.button-secondary:hover,
.button-secondary:focus-visible {
    color: #fffaf0;
    background: #0d2823;
    border-color: #dfb15b;
}

.button-outline:hover,
.button-outline:focus-visible {
    color: #fffaf0;
    background: #173a33;
    border-color: #173a33;
}

.page-aside,
.hero-seal,
.portrait-caption,
.contact-info-panel,
.footer-shell,
.cta-band {
    background: #0b211d;
    border-color: rgba(223, 177, 91, 0.26);
    box-shadow: 0 22px 48px rgba(2, 7, 6, 0.22);
}

.feature,
.panel,
.path-card,
.contact-card,
.value-card,
.quote-panel,
.list-block,
.story-note,
.advocacy-preview-card,
.advocacy-focus-card,
.contact-form-card {
    background: #fffaf0;
    border-color: rgba(13, 33, 29, 0.1);
    box-shadow: 0 16px 38px rgba(10, 20, 18, 0.1);
}

.feature:hover,
.panel:hover,
.path-card:hover,
.contact-card:hover,
.value-card:hover,
.quote-panel:hover,
.list-block:hover,
.story-note:hover,
.advocacy-preview-card:hover,
.advocacy-focus-card:hover {
    box-shadow: 0 24px 54px rgba(10, 20, 18, 0.15);
}

.value-card strong,
.quote-panel blockquote,
.list-block strong,
.story-note strong,
.feature h3,
.panel h3,
.path-card strong,
.contact-card strong {
    color: var(--text-strong);
}

.value-card span,
.quote-panel p,
.list-block span,
.story-note span,
.feature p,
.panel p,
.path-card p,
.contact-card p {
    color: var(--text-soft);
}

body:not(.about-page) .section-deep .feature,
body:not(.about-page) .section-deep .panel,
body:not(.about-page) .section-deep .list-block,
body:not(.about-page) .section-deep .quote-panel,
body:not(.about-page) .section-deep .story-note,
body:not(.about-page) .section-deep .value-card {
    background: #102a25;
    border-color: rgba(223, 177, 91, 0.22);
    box-shadow: 0 20px 44px rgba(2, 7, 6, 0.28);
}

body:not(.about-page) .section-deep .feature h3,
body:not(.about-page) .section-deep .panel h3,
body:not(.about-page) .section-deep .quote-panel blockquote,
body:not(.about-page) .section-deep .list-block strong,
body:not(.about-page) .section-deep .story-note strong,
body:not(.about-page) .section-deep .value-card strong,
body:not(.about-page) .section-deep .timeline-list strong,
body:not(.about-page) .section-deep .stack-list strong {
    color: #fffaf0;
}

body:not(.about-page) .section-deep .feature p,
body:not(.about-page) .section-deep .panel p,
body:not(.about-page) .section-deep .quote-panel p,
body:not(.about-page) .section-deep .list-block span,
body:not(.about-page) .section-deep .story-note span,
body:not(.about-page) .section-deep .value-card span,
body:not(.about-page) .section-deep .timeline-list span,
body:not(.about-page) .section-deep .stack-list span {
    color: #d4cebf;
}

.page-hero::before {
    background: linear-gradient(135deg, #061311, #102a25 62%, #2a1d0f);
}

.page-hero::after,
.hero-home::after,
body::after,
.cta-band::after {
    display: none;
}

.contact-method,
.menu-toggle,
.site-nav a {
    box-shadow: none;
}

.contact-method {
    background: #102a25;
    border-color: rgba(223, 177, 91, 0.2);
}

/* Site-wide CTA card system */
.cta-band {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 12px;
    color: var(--text-strong);
    background: #fffaf0;
    border: 1px solid rgba(13, 33, 29, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.cta-band:hover {
    transform: translateY(-2px);
    border-color: rgba(171, 115, 40, 0.22);
    box-shadow: 0 14px 30px rgba(10, 20, 18, 0.1);
}

.cta-band::before {
    width: 3rem;
    height: 4px;
    inset: 0 auto auto 1.5rem;
    border-radius: 0 0 999px 999px;
    background: var(--accent-gold);
}

.cta-band .section-mark {
    margin: 0 0 0.6rem;
    color: var(--accent-gold-deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cta-band h2 {
    max-width: 24ch;
    margin: 0 0 0.75rem;
    color: var(--text-strong);
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
    text-wrap: balance;
}

.cta-band p:not(.section-mark) {
    max-width: 42rem;
    margin: 0;
    color: var(--text-soft);
    font-size: clamp(0.94rem, 1.2vw, 1rem);
    font-weight: 400;
    line-height: 1.62;
}

.cta-band .button-row {
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

@media (max-width: 980px) {
    .site-nav {
        background: #071512;
        border-color: rgba(223, 177, 91, 0.2);
        box-shadow: 0 28px 72px rgba(2, 7, 6, 0.42);
    }
}

@media (max-width: 560px) {
    .cta-band {
        padding: 1.5rem;
    }

    .cta-band .button-row {
        align-items: stretch;
    }
}

/* Homepage hero: final responsive two-column system */
.hero-home {
    display: block;
    min-height: calc(100svh - var(--header-offset));
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #0b1715;
}

.hero-grid {
    width: min(100%, 1320px);
    min-height: calc(100svh - var(--header-offset) - clamp(8rem, 16vw, 12rem));
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.125rem);
}

.hero-content,
.hero-copy {
    width: min(100%, 500px);
    max-width: 500px;
    text-align: left;
}

.hero-title {
    max-width: 11ch;
    margin-inline: 0;
    font-size: clamp(3rem, 5.6vw, 5.75rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 500px;
    margin: var(--space-24) 0 0;
    line-height: 1.76;
    letter-spacing: 0;
}

.hero-content .hero-actions {
    justify-content: flex-start;
}

.hero-image-card {
    justify-self: end;
    width: 600px;
    max-width: 100%;
    height: 400px;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    }

    .hero-image-card {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 900px) {
    .hero-home {
        min-height: auto;
        padding: 3.75rem 0 4rem;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content,
    .hero-copy {
        margin: 0 auto;
        text-align: center;
    }

    .hero-content .hero-actions {
        justify-content: center;
    }

    .hero-title {
        max-width: 12ch;
        margin-inline: auto;
        font-size: clamp(2.6rem, 11vw, 4rem);
        line-height: 1;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-image-card {
        justify-self: center;
        width: 100%;
        max-width: 600px;
        height: auto;
        aspect-ratio: 3 / 2;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .hero-home {
        min-height: auto;
        padding: 3.25rem 0 3.5rem;
    }

    .hero-title {
        max-width: 12ch;
        font-size: clamp(2.45rem, 12vw, 3.6rem);
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-ready {
        opacity: 1;
        transform: none;
    }

    .site-nav,
    .site-nav a,
    .nav-overlay,
    .menu-toggle-bars span {
        transition: none !important;
    }
}

/* Advocacy page and centered global footer */
.advocacy-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}

.advocacy-hero-content {
    max-width: 560px;
}

.advocacy-hero-content h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0;
    text-wrap: balance;
}

.advocacy-hero-content p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

.advocacy-hero-content .button,
.advocacy-hero-content .btn-primary {
    margin-top: 1.6rem;
}

.advocacy-hero .advocacy-image-card {
    width: 600px;
    height: 300px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 14px;
    background: #ffffff;
    border: 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    overflow: hidden;
    transition: none;
}

.advocacy-hero .advocacy-image-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.advocacy-hero .advocacy-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    background: #ffffff;
}

.advocacy-statement-section {
    padding: 90px 20px;
    background: #0f172a;
}

.advocacy-statement {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.advocacy-statement .section-mark {
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.advocacy-statement h2 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1.32;
    font-weight: 800;
    letter-spacing: 0;
    text-wrap: balance;
}

.site-footer {
    text-align: center;
    padding: 50px 20px;
    background: #0f172a;
    color: #ffffff;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.site-footer .footer-brand {
    display: block;
    margin: 0;
}

.footer-brand h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-brand p {
    margin: 8px 0 0;
    color: #cbd5e1;
}

.footer-links,
.footer-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 28px 0;
}

.footer-contact-links {
    margin: 0 0 26px;
}

.footer-links a,
.footer-contact-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.footer-links a:hover,
.footer-contact-links a:hover {
    color: #fbbf24;
}

.footer-copy {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .advocacy-hero {
        grid-template-columns: 1fr;
        padding: 70px 20px;
        gap: 35px;
        text-align: center;
    }

    .advocacy-hero-content {
        margin: 0 auto;
    }

    .advocacy-hero .advocacy-image-card {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
        justify-self: stretch;
    }

    .footer-links,
    .footer-contact-links {
        gap: 14px;
    }
}

/* Stories page hero */
.stories-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}

.stories-content {
    max-width: 550px;
}

.stories-content h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    letter-spacing: 0;
    text-wrap: balance;
}

.stories-content p:not(.eyebrow) {
    margin: 16px 0 0;
    line-height: 1.7;
    color: #4b5563;
}

.stories-content .button,
.stories-content .btn-primary {
    margin-top: 1.6rem;
}

.story-image-card {
    width: 600px;
    height: 300px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 10px;
    background: #ffffff;
    border: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    overflow: hidden;
}

.story-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    background: #ffffff;
}

@media (max-width: 768px) {
    .stories-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 70px 20px;
        text-align: center;
    }

    .stories-content {
        margin: 0 auto;
    }

    .story-image-card {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
        justify-self: stretch;
    }
}
