:root {
    --blue: #003874;
    --blue-2: #075aa6;
    --sky: #99caea;
    --gold: #b49759;
    --ink: #102538;
    --muted: #536979;
    --mist: #f3f7f9;
    --cream: #fff8eb;
    --white: #ffffff;
    --line: #d8e4eb;
    --shell: 1416px;
    --sans: Arial, Helvetica, sans-serif;
    --narrow: "Arial Narrow", "Nimbus Sans Narrow", Arial, sans-serif;
    --serif: Georgia, "Times New Roman", serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.55;
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

a:hover {
    text-decoration-thickness: 0.13em;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #f0b83c;
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--blue);
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: min(var(--shell), calc(100% - 3rem));
    margin-inline: auto;
}

.utility-bar {
    color: #e2eef8;
    background: var(--blue);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.75rem;
}

.utility-links {
    display: flex;
    gap: 1.75rem;
}

.utility-links a {
    text-decoration: none;
}

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid #d9e5ed;
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) auto auto;
    align-items: center;
    gap: 2.25rem;
    min-height: 7.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    width: max-content;
    color: var(--blue);
    text-decoration: none;
}

.brand img {
    width: 3.875rem;
    height: 3.875rem;
    border-radius: 50%;
    object-fit: cover;
}

.brand-copy {
    display: grid;
    gap: 0.05rem;
}

.brand-copy strong {
    font-family: var(--narrow);
    font-size: 1.7rem;
    font-stretch: condensed;
    line-height: 1;
    text-transform: uppercase;
}

.brand-copy span {
    color: #5c7181;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 1.6vw, 1.9rem);
}

.primary-nav a {
    color: #28465c;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.primary-nav a:hover {
    color: var(--blue-2);
}

.menu-toggle {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3.35rem;
    padding: 0.9rem 1.45rem;
    border: 2px solid transparent;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.button:hover {
    transform: translateY(-1px);
}

.button-blue {
    color: var(--white);
    background: var(--blue);
}

.button-blue:hover {
    background: #002b59;
}

.button-gold {
    color: var(--white);
    background: var(--gold);
}

.button-gold:hover {
    background: #967c48;
}

.button-outline {
    color: var(--blue);
    border-color: var(--blue);
    background: rgba(255, 255, 255, 0.35);
}

.header-cta {
    min-width: 9.25rem;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(100deg, #fbfdff 2%, #e7f3f9 70%, #dceef7 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(580px, 1.1fr);
    align-items: center;
    gap: 2.5rem;
    min-height: 54rem;
    padding-block: 5rem 4.75rem;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 42rem;
}

.eyebrow {
    margin: 0 0 0.65rem;
    color: var(--blue-2);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-line {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.eyebrow-line::before {
    width: 2.5rem;
    height: 0.22rem;
    background: var(--gold);
    content: "";
}

.hero h1 {
    margin: 1.5rem 0 2.2rem;
    color: var(--blue);
    font-family: var(--narrow);
    font-size: clamp(4.75rem, 6.25vw, 7.25rem);
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.94;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    margin-bottom: 0.13em;
}

.hero-intro {
    max-width: 40rem;
    margin: 0 0 2.5rem;
    color: #40586b;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    line-height: 1.55;
}

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

.hero-photo {
    position: relative;
    align-self: stretch;
    min-height: 45rem;
    margin: 0 -6rem 0 0;
    clip-path: polygon(17% 0, 100% 0, 100% 83%, 78% 100%, 0 84%, 7% 24%);
}

.hero-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(132deg, transparent 66%, rgba(180, 151, 89, 0.88) 66% 80%, transparent 80%);
    content: "";
    pointer-events: none;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 50%;
}

.hero-photo figcaption {
    position: absolute;
    z-index: 2;
    right: 5rem;
    bottom: 6.25rem;
    max-width: calc(100% - 9rem);
    padding: 0.8rem 1.25rem;
    color: var(--blue);
    background: var(--white);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.hero-facet {
    position: absolute;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

.hero-facet-one {
    top: 5rem;
    left: -7rem;
    width: 34rem;
    height: 35rem;
    background: #cde7f4;
    clip-path: polygon(0 30%, 64% 0, 100% 47%, 61% 100%, 0 82%);
}

.hero-facet-two {
    bottom: -4rem;
    left: -5rem;
    width: 37rem;
    height: 26rem;
    border: 2px solid #acd6e9;
    clip-path: polygon(0 42%, 70% 0, 100% 62%, 55% 100%, 0 80%);
}

.meeting-wrap {
    position: relative;
    z-index: 5;
    margin-top: -5.6rem;
}

.meeting-card {
    display: grid;
    grid-template-columns: minmax(330px, 1.2fr) minmax(570px, 2fr) auto;
    align-items: center;
    min-height: 12rem;
    overflow: hidden;
    border: 2px solid #dfd0b0;
    border-radius: 1.6rem;
    background: var(--cream);
    box-shadow: 0 1rem 3rem rgba(20, 49, 70, 0.08);
}

.meeting-welcome {
    align-self: stretch;
    padding: 2.15rem 2.3rem 2rem 2.7rem;
    border-left: 0.55rem solid var(--gold);
}

.meeting-welcome h2 {
    margin: 0 0 0.45rem;
    color: var(--blue);
    font-family: var(--serif);
    font-size: clamp(1.75rem, 2vw, 2.2rem);
    line-height: 1.15;
    text-transform: uppercase;
}

.meeting-welcome p {
    margin: 0;
    color: #685f50;
    font-size: 1.15rem;
}

.meeting-details {
    display: grid;
    grid-template-columns: 0.85fr 0.9fr 1.35fr;
    margin: 0;
}

.meeting-details > div {
    min-height: 6.9rem;
    padding: 0.5rem 2.25rem;
    border-left: 1px solid #ddcfb4;
}

.meeting-details dt {
    margin-bottom: 0.45rem;
    color: #8b7650;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.meeting-details dd {
    margin: 0;
    color: var(--blue);
    font-size: clamp(1.35rem, 1.65vw, 1.65rem);
    font-weight: 800;
    line-height: 1.2;
}

.meeting-details .address {
    margin-top: 0.45rem;
    color: #685f50;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.35;
}

.meeting-button {
    margin-right: 2rem;
    border-radius: 999px;
    white-space: nowrap;
}

.section {
    padding-block: 7rem;
}

.section-heading {
    margin-bottom: 3.25rem;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 4rem;
}

.section-heading h2,
.grants h2,
.invitation h2,
.give h2 {
    margin: 0;
    color: var(--blue);
    font-family: var(--narrow);
    font-size: clamp(3rem, 4.5vw, 4.6rem);
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-transform: uppercase;
}

.split-heading > p,
.grants-copy > p,
.invitation-grid > div > p,
.give-grid > div > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.55;
}

.pathways {
    padding-top: 7.5rem;
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pathway-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 22rem;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid var(--line);
    background: #f8fbfd;
}

.pathway-card::after {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 8.5rem;
    height: 8.5rem;
    background: #e8f3f8;
    clip-path: polygon(37% 0, 100% 0, 100% 68%, 64% 100%, 0 55%);
    content: "";
}

.pathway-card:nth-child(2)::after {
    background: #f2ead8;
}

.pathway-card:nth-child(3)::after {
    background: #dceef6;
}

.card-number {
    position: relative;
    z-index: 2;
    color: var(--gold);
    font-family: var(--narrow);
    font-size: 1.45rem;
    font-weight: 900;
}

.pathway-card h3 {
    position: relative;
    z-index: 2;
    margin: 2.1rem 0 0.75rem;
    color: var(--blue);
    font-family: var(--narrow);
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
}

.pathway-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 1.75rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.pathway-card a,
.event-content a,
.social-fallback a {
    margin-top: auto;
    color: var(--blue);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.impact {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--blue);
}

.impact-facet {
    position: absolute;
    top: -8rem;
    right: -3rem;
    width: 28rem;
    height: 26rem;
    border: 2px solid rgba(153, 202, 234, 0.28);
    clip-path: polygon(45% 0, 100% 28%, 87% 85%, 40% 100%, 0 57%);
}

.light-heading h2 {
    color: var(--white);
}

.light-heading > p {
    color: #d5e7f4;
}

.light-heading .eyebrow {
    color: var(--sky);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 4rem;
}

.stat-card {
    display: grid;
    align-content: center;
    min-height: 15rem;
    padding: 2.25rem;
    color: var(--blue);
    background: var(--white);
}

.stat-card-2 {
    background: var(--sky);
}

.stat-card-3 {
    color: var(--white);
    background: var(--gold);
}

.stat-card strong {
    font-family: var(--narrow);
    font-size: clamp(4.2rem, 6vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-card span {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.impact-story {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(350px, 0.8fr);
    align-items: center;
    gap: 4rem;
}

.impact-story figure {
    position: relative;
    margin: 0;
}

.impact-story img {
    width: 100%;
    max-height: 30rem;
    object-fit: cover;
}

.impact-story figcaption,
.invitation figcaption {
    position: absolute;
    left: 1.5rem;
    bottom: -0.9rem;
    max-width: calc(100% - 3rem);
    padding: 0.8rem 1.1rem;
    color: var(--blue);
    background: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.25;
    text-transform: uppercase;
}

.impact-story h3 {
    margin: 0 0 1.5rem;
    color: var(--white);
    font-family: var(--narrow);
    font-size: clamp(3rem, 4.6vw, 4.8rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.impact-story h3 em {
    display: block;
    color: var(--gold);
    font-style: normal;
}

.impact-story > div > p:last-child {
    color: #d5e7f4;
    font-size: 1.1rem;
}

.verification-note {
    margin: 3.25rem 0 0;
    color: #b8d7e9;
    font-size: 0.9rem;
}

.events {
    background: var(--mist);
}

.events-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr 1fr;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    flex-direction: column;
    min-height: 36rem;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
}

.event-card > img,
.event-facets {
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

.event-facets {
    background:
        linear-gradient(135deg, transparent 23%, var(--sky) 23% 46%, transparent 46%) 0 0 / 55% 100% no-repeat,
        linear-gradient(230deg, transparent 20%, var(--gold) 20% 52%, transparent 52%) 100% 0 / 55% 100% no-repeat,
        #f8fbfd;
}

.event-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
}

.status {
    display: inline-flex;
    align-items: center;
    min-height: 2.1rem;
    padding: 0.45rem 0.8rem;
    color: var(--blue);
    background: #eaf6fc;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.status-registration-open {
    color: var(--white);
    background: var(--blue-2);
}

.event-eyebrow {
    margin: 1.5rem 0 0.35rem;
    color: #8b7650;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.event-content h3 {
    margin: 0 0 1rem;
    color: var(--blue);
    font-family: var(--narrow);
    font-size: 2.15rem;
    line-height: 1;
    text-transform: uppercase;
}

.event-content p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 1rem;
}

.grants {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 41rem;
    background: #e8f5fb;
}

.grants-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.grants-copy {
    align-self: center;
    max-width: 44rem;
    padding: 5rem clamp(3rem, 8vw, 8rem);
}

.grants-copy > p {
    margin: 1.75rem 0;
}

.grants-copy .eyebrow {
    margin-bottom: 0.75rem;
}

.status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social {
    padding-bottom: 5rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.photo-card {
    position: relative;
    min-height: 25rem;
    margin: 0;
    overflow: hidden;
    background: var(--blue);
}

.photo-card::after {
    position: absolute;
    inset: 40% 0 0;
    background: linear-gradient(transparent, rgba(0, 28, 57, 0.96));
    content: "";
}

.photo-card img {
    width: 100%;
    height: 100%;
    min-height: 25rem;
    object-fit: cover;
}

.photo-card figcaption {
    position: absolute;
    z-index: 2;
    right: 1.6rem;
    bottom: 1.6rem;
    left: 1.6rem;
    color: var(--white);
    font-family: var(--narrow);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.05;
}

.photo-card figcaption small {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--sky);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.social-fallback {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2.2rem;
}

.social-fallback p {
    margin: 0;
    color: #627481;
    font-size: 0.9rem;
}

.invitation {
    position: relative;
    overflow: hidden;
    padding-block: 5rem;
    background: var(--cream);
}

.invitation::before {
    position: absolute;
    bottom: -14rem;
    left: -10rem;
    width: 35rem;
    height: 35rem;
    border-radius: 50%;
    background: #f2e4c9;
    content: "";
}

.invitation-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.invitation figure {
    position: relative;
    margin: 0;
}

.invitation figure img {
    width: 100%;
    min-height: 31rem;
    border-radius: 2.75rem;
    object-fit: cover;
    object-position: center;
}

.invitation-grid > div > p {
    margin: 1.6rem 0;
}

.invitation-tagline {
    color: #826b3f !important;
    font-family: var(--serif);
    font-weight: 700;
}

.give {
    color: var(--white);
    background: var(--gold);
}

.give-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    align-items: center;
    gap: 6rem;
    padding-block: 4.5rem;
}

.give .eyebrow,
.give h2,
.give-grid > div > p {
    color: var(--white);
}

.give-grid > div > p {
    max-width: 48rem;
    margin-top: 1.35rem;
}

.support-card {
    display: grid;
    padding: 2rem 2.4rem;
    color: var(--blue);
    background: var(--white);
}

.support-card h3 {
    margin: 0 0 1rem;
    font-family: var(--narrow);
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
}

.support-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1rem;
    border-top: 1px solid var(--line);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
}

.site-footer {
    color: #b8ccdc;
    background: #031c35;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 0.75fr);
    gap: 4rem;
    padding-block: 4.5rem 3.5rem;
}

.brand-dark {
    color: var(--white);
}

.brand-dark .brand-copy span {
    color: var(--sky);
}

.footer-brand p {
    max-width: 27rem;
    font-size: 1rem;
}

.footer-grid h2 {
    margin: 0 0 1rem;
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li + li {
    margin-top: 0.55rem;
}

.footer-grid a {
    font-size: 1rem;
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 1.5rem;
    border-top: 1px solid #29465e;
    color: #8ba4b6;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.primary-nav a[aria-current="page"] {
    color: var(--blue-2);
    box-shadow: inset 0 -0.2rem 0 var(--gold);
}

.inner-main {
    overflow: hidden;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(105deg, #fbfdff, #e0f0f8);
}

.page-hero-facet {
    position: absolute;
    top: -11rem;
    left: -8rem;
    width: 38rem;
    height: 38rem;
    background: #cde7f4;
    clip-path: polygon(10% 25%, 67% 0, 100% 48%, 68% 100%, 0 76%);
}

.page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
    min-height: 38rem;
    padding-block: 4rem;
}

.page-hero-grid > div {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 49rem;
    margin: 1.25rem 0 1.65rem;
    color: var(--blue);
    font-family: var(--narrow);
    font-size: clamp(4rem, 6.4vw, 6.7rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.94;
    text-transform: uppercase;
}

.page-hero-grid > div > p:last-child {
    max-width: 43rem;
    margin: 0;
    color: #40586b;
    font-size: 1.25rem;
    line-height: 1.55;
}

.page-hero figure {
    align-self: stretch;
    min-height: 29rem;
    margin: 0 -5rem 0 0;
    clip-path: polygon(15% 0, 100% 0, 100% 84%, 73% 100%, 0 86%, 5% 22%);
}

.page-hero figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-section {
    padding-block: 7rem;
}

.page-section h2,
.compact-meeting h2,
.page-cta h2,
.sponsor-band h2,
.map-band h2 {
    margin: 0 0 1.5rem;
    color: var(--blue);
    font-family: var(--narrow);
    font-size: clamp(3rem, 4.7vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-transform: uppercase;
}

.page-section p,
.page-cta p,
.compact-meeting p {
    font-size: 1.08rem;
}

.large-copy {
    color: #40586b;
    font-size: 1.3rem !important;
    line-height: 1.6;
}

.narrow-shell {
    max-width: 61rem;
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.65fr);
    align-items: start;
    gap: clamp(4rem, 9vw, 9rem);
}

.two-column-layout .button-row,
.two-column-layout > div > .button {
    margin-top: 2rem;
}

.detail-panel {
    padding: 2.5rem;
    border-top: 0.5rem solid var(--gold);
    background: var(--cream);
    box-shadow: 0 1.25rem 3.5rem rgba(13, 44, 67, 0.09);
}

.detail-panel h3 {
    margin: 0 0 1.5rem;
    color: var(--blue);
    font-family: var(--narrow);
    font-size: 2.25rem;
    line-height: 1;
    text-transform: uppercase;
}

.stacked-details {
    margin: 0;
}

.stacked-details > div {
    display: grid;
    grid-template-columns: minmax(7rem, 0.65fr) 1.35fr;
    gap: 1rem;
    padding-block: 1.1rem;
    border-top: 1px solid #ddcfb4;
}

.stacked-details dt {
    color: #8b7650;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stacked-details dd {
    margin: 0;
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.stacked-details dd small {
    display: block;
    margin-top: 0.35rem;
    color: #685f50;
    font-size: 0.95rem;
    font-weight: 400;
}

.text-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
}

.tinted-section {
    background: #eef7fb;
}

.centered-heading {
    max-width: 58rem;
    margin: 0 auto 3.75rem;
    text-align: center;
}

.centered-heading h2 {
    margin-inline: auto;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-grid article,
.support-option-grid article {
    position: relative;
    min-height: 22rem;
    padding: 2rem;
    border: 1px solid var(--line);
    background: var(--white);
}

.step-grid article > span,
.support-option-grid article > span {
    color: var(--gold);
    font-family: var(--narrow);
    font-size: 2rem;
    font-weight: 900;
}

.step-grid h3,
.support-option-grid h3,
.project-card h3,
.value-grid h3,
.contact-grid h3 {
    margin: 2.2rem 0 0.8rem;
    color: var(--blue);
    font-family: var(--narrow);
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
}

.step-grid p,
.support-option-grid p {
    margin: 0;
    color: var(--muted);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 1.6rem 3.5rem 1.6rem 0;
    color: var(--blue);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 1.25rem;
    right: 0;
    font-family: var(--sans);
    font-size: 1.7rem;
    content: "+";
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 50rem;
    margin: -0.35rem 0 1.7rem;
    color: var(--muted);
}

.page-cta,
.compact-meeting {
    background: var(--cream);
}

.page-cta-grid,
.compact-meeting-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 5rem;
    padding-block: 4.5rem;
}

.page-cta h2,
.compact-meeting h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(2.7rem, 4vw, 4rem);
}

.page-cta .button-row {
    justify-content: flex-end;
}

.compact-meeting-grid {
    grid-template-columns: minmax(250px, 0.8fr) minmax(530px, 1.4fr) auto;
    gap: 3rem;
}

.compact-meeting dl {
    display: grid;
    grid-template-columns: 0.8fr 0.9fr 1.4fr;
    margin: 0;
}

.compact-meeting dl > div {
    padding-inline: 1.5rem;
    border-left: 1px solid #ddcfb4;
}

.compact-meeting dt {
    color: #8b7650;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.compact-meeting dd {
    margin: 0.4rem 0 0;
    color: var(--blue);
    font-size: 1.3rem;
    font-weight: 800;
}

.compact-meeting dd small {
    display: block;
    color: #685f50;
    font-size: 0.85rem;
    font-weight: 400;
}

.impact-summary,
.values-band {
    color: var(--white);
    background: var(--blue);
}

.light-on-blue h2 {
    color: var(--white);
}

.light-on-blue .eyebrow {
    color: var(--sky);
}

.impact-summary .verification-note {
    max-width: 62rem;
    margin-inline: auto;
    color: #c8dfed;
    font-size: 1rem;
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.project-card {
    min-height: 17rem;
    padding: 1.8rem;
    border: 1px solid var(--line);
    background: #f8fbfd;
}

.project-card > span {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.project-card h3 {
    margin-top: 1.5rem;
}

.project-card p {
    margin: 0;
    color: var(--muted);
}

.image-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(4rem, 8vw, 8rem);
}

.reverse-grid > div {
    order: 1;
}

.reverse-grid > figure {
    order: 2;
}

.image-story-grid figure,
.facet-photo {
    position: relative;
    margin: 0;
}

.image-story-grid figure img,
.facet-photo img {
    width: 100%;
    min-height: 32rem;
    object-fit: cover;
    clip-path: polygon(8% 0, 100% 0, 100% 83%, 81% 100%, 0 88%, 0 16%);
}

.image-story-grid figcaption {
    position: absolute;
    right: 2rem;
    bottom: 3.25rem;
    padding: 0.75rem 1rem;
    color: var(--blue);
    background: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

.numbered-list {
    margin: 2rem 0 0;
    padding: 0;
    counter-reset: item;
    list-style: none;
}

.numbered-list li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.8rem;
    padding-block: 1rem;
    border-top: 1px solid #cbdfe9;
    counter-increment: item;
}

.numbered-list li::before {
    color: var(--gold);
    font-weight: 800;
    content: counter(item, decimal-leading-zero);
}

.numbered-list strong,
.numbered-list span {
    grid-column: 2;
}

.numbered-list span {
    color: var(--muted);
}

.event-detail-list {
    display: grid;
    gap: 3rem;
}

.event-detail {
    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
    min-height: 34rem;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 1.25rem 3rem rgba(15, 47, 71, 0.07);
}

.event-detail:nth-child(even) .event-detail-media {
    order: 2;
}

.event-detail-media img,
.event-detail-media .event-facets {
    width: 100%;
    height: 100%;
    min-height: 34rem;
    object-fit: cover;
}

.event-detail-copy {
    align-self: center;
    padding: clamp(2.5rem, 6vw, 5rem);
}

.event-detail-copy .eyebrow {
    margin-top: 1.5rem;
}

.event-detail-copy h3 {
    margin: 0 0 1.5rem;
    color: var(--blue);
    font-family: var(--narrow);
    font-size: clamp(3rem, 4.7vw, 4.7rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.event-detail-copy p {
    color: var(--muted);
}

.event-date strong {
    color: var(--blue);
}

.event-detail-copy .button {
    margin-top: 1rem;
}

.sponsor-band,
.map-band {
    color: var(--white);
    background: var(--gold);
}

.sponsor-band .eyebrow,
.sponsor-band h2,
.sponsor-band p,
.map-band .eyebrow,
.map-band h2,
.map-band p {
    color: var(--white);
}

.grant-status-section {
    padding-block: 4rem;
}

.grant-status-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
    align-items: center;
    gap: 5rem;
    padding: clamp(2.5rem, 6vw, 5rem);
    border: 2px solid #dfd0b0;
    background: var(--cream);
}

.grant-status-card h2 {
    margin-top: 1.5rem;
}

.grant-status-card p {
    max-width: 48rem;
    color: var(--muted);
}

.grant-status-action {
    display: grid;
    gap: 0.75rem;
    padding: 2rem;
    color: var(--blue);
    background: var(--white);
}

.grant-status-action strong {
    font-family: var(--serif);
    font-size: 1.35rem;
}

.grant-status-action span {
    color: var(--muted);
}

.check-list {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 0.9rem 0 0.9rem 2.5rem;
    border-top: 1px solid var(--line);
    font-size: 1.05rem;
}

.check-list li::before {
    position: absolute;
    left: 0;
    color: var(--blue-2);
    font-weight: 900;
    content: "✓";
}

.verification-callout,
.merger-note {
    padding: 1.25rem 1.5rem;
    border-left: 0.35rem solid var(--gold);
    color: #685f50;
    background: var(--cream);
}

.merger-note {
    margin-top: 2rem;
}

.merger-note > span {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
}

.merger-note p {
    margin-bottom: 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-grid article {
    padding: 2rem;
    border: 1px solid rgba(153, 202, 234, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.value-grid h3 {
    margin-top: 0;
    color: var(--sky);
}

.value-grid p {
    margin-bottom: 0;
    color: #d6e6f1;
}

.leadership-group + .leadership-group {
    margin-top: 3.5rem;
}

.leadership-group > h3 {
    padding-bottom: 0.8rem;
    border-bottom: 0.25rem solid var(--gold);
    color: var(--blue);
    font-family: var(--narrow);
    font-size: 2rem;
    text-transform: uppercase;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.leadership-grid article {
    display: grid;
    gap: 0.35rem;
    min-height: 8rem;
    padding: 1.5rem;
    background: var(--white);
}

.leadership-grid span {
    color: #8b7650;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.leadership-grid strong {
    color: var(--blue);
    font-family: var(--serif);
    font-size: 1.25rem;
}

.seal-feature {
    display: grid;
    place-items: center;
    min-height: 26rem;
    padding: 3rem;
    color: var(--blue);
    background: var(--white);
}

.seal-feature img {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
}

.seal-feature p {
    margin: 1.5rem 0 0;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.support-option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.support-option-grid article {
    display: flex;
    flex-direction: column;
}

.support-option-grid a {
    margin-top: auto;
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.payment-panel {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 1.5rem;
}

.contact-grid article {
    min-height: 25rem;
    padding: 2.25rem;
    border: 1px solid var(--line);
    background: #f8fbfd;
}

.contact-grid .contact-primary {
    color: var(--white);
    background: var(--blue);
}

.contact-grid .contact-primary .eyebrow,
.contact-grid .contact-primary h3,
.contact-grid .contact-primary p,
.contact-grid .contact-primary a {
    color: var(--white);
}

.contact-grid h3 {
    margin-top: 1.7rem;
    overflow-wrap: anywhere;
}

.contact-grid article > a {
    color: var(--blue);
    font-weight: 800;
}

.contact-icon {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 2.5rem;
    border: 2px solid var(--sky);
    border-radius: 50%;
    color: var(--sky);
    font-size: 1.8rem;
    font-weight: 800;
}

.subject-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.subject-list li {
    border-top: 1px solid #cbdfe9;
}

.subject-list a {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.2rem;
    color: var(--blue);
    font-size: 1.08rem;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1240px) {
    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 1.25rem;
    }

    .primary-nav {
        gap: 1rem;
    }

    .primary-nav a {
        font-size: 0.8rem;
    }

    .brand-copy strong {
        font-size: 1.45rem;
    }

    .brand-copy span {
        font-size: 0.75rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    }

    .meeting-card {
        grid-template-columns: 1fr 1.55fr;
    }

    .meeting-button {
        grid-column: 1 / -1;
        width: calc(100% - 4rem);
        margin: 0 2rem 1.5rem;
    }
}

@media (max-width: 1020px) {
    .utility-bar {
        display: none;
    }

    .header-inner {
        position: relative;
        grid-template-columns: 1fr auto;
        min-height: 6rem;
    }

    .brand img {
        width: 3.25rem;
        height: 3.25rem;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.7rem 0.9rem;
        border: 2px solid var(--blue);
        color: var(--blue);
        background: var(--white);
        font: inherit;
        font-weight: 800;
        text-transform: uppercase;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 1.5rem 1.5rem;
        border-top: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 1rem 2rem rgba(10, 41, 65, 0.12);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 4.5rem;
    }

    .hero-copy {
        max-width: 45rem;
    }

    .hero-photo {
        min-height: 35rem;
        margin: 0 -1.5rem;
        clip-path: polygon(9% 0, 100% 0, 100% 88%, 78% 100%, 0 88%, 4% 20%);
    }

    .meeting-wrap {
        margin-top: -2.5rem;
    }

    .meeting-card {
        grid-template-columns: 1fr;
    }

    .meeting-welcome {
        min-height: auto;
    }

    .meeting-details {
        border-top: 1px solid #ddcfb4;
    }

    .meeting-details > div:first-child {
        border-left: 0;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pathway-grid,
    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pathway-card:last-child,
    .photo-card:last-child {
        grid-column: 1 / -1;
    }

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

    .stat-card {
        min-height: 12rem;
    }

    .impact-story {
        grid-template-columns: 1fr;
    }

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

    .event-featured {
        grid-column: 1 / -1;
    }

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

    .grants-photo {
        height: 32rem;
    }

    .grants-copy {
        max-width: none;
    }

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

    .give-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .page-hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }

    .page-hero figure {
        min-height: 31rem;
        margin: 0 -1.5rem;
    }

    .two-column-layout,
    .image-story-grid,
    .event-detail,
    .grant-status-card,
    .page-cta-grid,
    .compact-meeting-grid {
        grid-template-columns: 1fr;
    }

    .reverse-grid > div,
    .reverse-grid > figure,
    .event-detail:nth-child(even) .event-detail-media {
        order: initial;
    }

    .step-grid,
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid,
    .leadership-grid,
    .support-option-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-primary,
    .support-option-grid article:last-child {
        grid-column: 1 / -1;
    }

    .page-cta .button-row {
        justify-content: flex-start;
    }

    .compact-meeting-grid {
        gap: 2rem;
    }
}

@media (max-width: 680px) {
    .shell {
        width: min(100% - 2rem, var(--shell));
    }

    .header-inner {
        min-height: 5.25rem;
    }

    .brand {
        gap: 0.7rem;
    }

    .brand img {
        width: 2.85rem;
        height: 2.85rem;
    }

    .brand-copy strong {
        font-size: 1.2rem;
    }

    .brand-copy span {
        max-width: 13rem;
        font-size: 0.75rem;
        line-height: 1.15;
    }

    .menu-toggle-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .hero-grid {
        min-height: auto;
        padding-block: 3.75rem 3rem;
    }

    .hero h1 {
        margin-block: 1.2rem 1.65rem;
        font-size: clamp(3.25rem, 16vw, 5rem);
    }

    .hero-intro {
        font-size: 1.1rem;
    }

    .button-row {
        display: grid;
    }

    .button-row .button {
        width: 100%;
    }

    .hero-photo {
        min-height: 25rem;
        margin-inline: -1rem;
    }

    .hero-photo figcaption {
        right: 1.5rem;
        bottom: 5rem;
        max-width: calc(100% - 3rem);
        font-size: 0.875rem;
    }

    .meeting-wrap {
        margin-top: 0;
        padding-top: 1rem;
        background: #f5fafc;
    }

    .meeting-card {
        border-radius: 1.1rem;
    }

    .meeting-welcome {
        padding: 1.75rem 1.5rem;
    }

    .meeting-details {
        grid-template-columns: 1fr 1fr;
    }

    .meeting-details > div {
        min-height: auto;
        padding: 1.5rem;
        border-bottom: 1px solid #ddcfb4;
    }

    .meeting-details > div:nth-child(odd) {
        border-left: 0;
    }

    .meeting-details .meeting-location {
        grid-column: 1 / -1;
        border-left: 0;
        border-bottom: 0;
    }

    .meeting-button {
        width: calc(100% - 3rem);
        margin: 0 1.5rem 1.5rem;
    }

    .section {
        padding-block: 5rem;
    }

    .pathways {
        padding-top: 5rem;
    }

    .section-heading {
        margin-bottom: 2.25rem;
    }

    .section-heading h2,
    .grants h2,
    .invitation h2,
    .give h2 {
        font-size: clamp(2.7rem, 13vw, 3.8rem);
    }

    .pathway-grid,
    .photo-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .pathway-card,
    .pathway-card:last-child,
    .photo-card:last-child,
    .event-featured {
        grid-column: auto;
    }

    .pathway-card {
        min-height: 19rem;
    }

    .stat-card {
        min-height: 10rem;
        padding: 1.75rem;
    }

    .stat-card strong {
        font-size: 4rem;
    }

    .impact-story {
        gap: 3rem;
    }

    .impact-story img {
        min-height: 20rem;
    }

    .event-card {
        min-height: auto;
    }

    .grants-photo {
        height: 24rem;
    }

    .grants-copy {
        padding: 4rem 1rem;
    }

    .social-fallback {
        align-items: flex-start;
        flex-direction: column;
    }

    .invitation figure img {
        min-height: 24rem;
    }

    .give-grid {
        padding-block: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.55rem;
    }

    .page-hero-grid {
        gap: 2.5rem;
        padding-top: 3.5rem;
    }

    .page-hero h1 {
        font-size: clamp(3.35rem, 16vw, 5rem);
    }

    .page-hero-grid > div > p:last-child {
        font-size: 1.1rem;
    }

    .page-hero figure {
        min-height: 24rem;
        margin-inline: -1rem;
    }

    .page-section {
        padding-block: 5rem;
    }

    .page-section h2,
    .compact-meeting h2,
    .page-cta h2,
    .sponsor-band h2,
    .map-band h2 {
        font-size: clamp(2.65rem, 13vw, 3.8rem);
    }

    .two-column-layout,
    .image-story-grid {
        gap: 3rem;
    }

    .detail-panel,
    .event-detail-copy,
    .grant-status-card {
        padding: 1.6rem;
    }

    .stacked-details > div {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .step-grid,
    .value-grid,
    .project-grid,
    .leadership-grid,
    .support-option-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-primary,
    .support-option-grid article:last-child {
        grid-column: auto;
    }

    .step-grid article,
    .support-option-grid article {
        min-height: auto;
    }

    .image-story-grid figure img,
    .facet-photo img {
        min-height: 24rem;
    }

    .event-detail {
        min-height: auto;
    }

    .event-detail-media img,
    .event-detail-media .event-facets {
        min-height: 23rem;
    }

    .compact-meeting dl {
        grid-template-columns: 1fr;
    }

    .compact-meeting dl > div {
        padding-block: 1rem;
        border-top: 1px solid #ddcfb4;
        border-left: 0;
    }

    .page-cta-grid,
    .compact-meeting-grid {
        padding-block: 3.5rem;
    }
}

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

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