@charset "UTF-8";

:root {
    --kiu-green: #02b056;
    --kiu-green-dark: #02b056;
    --kiu-green-ink: #026b38;
    --kiu-green-soft: #e7f8ef;
    --kiu-on-green-accent: #fff0ba;
    --kiu-gold: #e7b928;
    --kiu-blue: #1b5f9e;
    --kiu-ink: #10231d;
    --kiu-muted: #5c6c66;
    --kiu-line: rgba(16, 35, 29, .12);
    --kiu-surface: #ffffff;
    --kiu-soft: #f5f8f6;
    --kiu-shadow: 0 18px 45px rgba(16, 35, 29, .12);
    --kiu-radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--kiu-ink);
    background: var(--kiu-surface);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

a:hover {
    color: var(--kiu-green);
}

.container {
    max-width: 1180px;
}

.topbar {
    background: var(--kiu-green-dark);
    color: rgba(255, 255, 255, .84);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 0;
    padding: .55rem 0;
}

.topbar a {
    color: rgba(255, 255, 255, .9);
}

.topbar a:hover {
    color: #ffffff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 35, 29, .08);
}

.alumni-navbar {
    min-height: 84px;
}

.site-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.brand-lockup {
    color: var(--kiu-green-dark);
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--kiu-ink);
    font-size: .92rem;
    font-weight: 800;
    padding: .75rem .8rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--kiu-green);
}

.btn {
    border-radius: var(--kiu-radius);
    font-weight: 800;
    letter-spacing: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}

.btn-lg {
    min-height: 52px;
    padding-inline: 1.25rem;
    font-size: 1rem;
}

.btn-kiu {
    color: #ffffff;
    background: var(--kiu-green);
    border-color: var(--kiu-green);
}

.btn-kiu:hover,
.btn-kiu:focus {
    color: #ffffff;
    background: #02a651;
    border-color: #02a651;
    box-shadow: 0 14px 26px rgba(0, 170, 78, .24);
}

.btn-outline-kiu {
    color: var(--kiu-green-ink);
    background: #ffffff;
    border-color: rgba(0, 170, 78, .38);
}

.btn-outline-kiu:hover,
.btn-outline-kiu:focus {
    color: #ffffff;
    background: var(--kiu-green);
    border-color: var(--kiu-green);
}

.hero-home {
    min-height: clamp(360px, 50svh, 500px);
    color: #ffffff;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-home-inner {
    width: 100%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--kiu-green);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .8rem;
}

.hero-home .eyebrow,
.page-hero .eyebrow {
    color: var(--kiu-on-green-accent);
}

h1,
h2,
h3 {
    color: inherit;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-home h1 {
    max-width: 680px;
    margin: 0 0 1.1rem;
    font-size: clamp(2.05rem, 4.2vw, 3.6rem);
}

.hero-home p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.6rem;
}

.stat-strip {
    background: var(--kiu-green-dark);
    color: #ffffff;
}

.stat-item {
    min-height: 128px;
    padding: 1.6rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.stat-item strong {
    display: block;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 900;
    line-height: 1.05;
}

.stat-item span {
    display: block;
    max-width: 180px;
    margin-top: .35rem;
    color: rgba(255, 255, 255, .76);
    font-size: .92rem;
}

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

.section-muted {
    background: var(--kiu-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading h2,
.split-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p,
.split-heading p,
.image-band p,
.statement-card p,
.side-panel p,
.feature-card p,
.event-card p,
.update-card p,
.network-card p,
.leader-card p {
    color: var(--kiu-muted);
}

.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card,
.event-card,
.update-card,
.network-card,
.statement-card,
.side-panel,
.form-panel,
.leader-card,
.directory-panel {
    border: 1px solid var(--kiu-line);
    border-radius: var(--kiu-radius);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 35, 29, .06);
}

.feature-card,
.event-card,
.update-card,
.network-card,
.statement-card,
.side-panel,
.form-panel,
.directory-panel {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.feature-card h3,
.feature-card h2,
.event-card h3,
.event-card h2,
.update-card h3,
.update-card h2,
.network-card h2,
.statement-card h2,
.side-panel h2,
.leader-card h2 {
    margin: 0 0 .85rem;
    font-size: 1.35rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-radius: var(--kiu-radius);
    color: var(--kiu-green-ink);
    background: var(--kiu-green-soft);
    font-size: .78rem;
    font-weight: 900;
}

.image-band {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--kiu-green);
    color: #ffffff;
}

.image-band p {
    color: rgba(255, 255, 255, .76);
    font-size: 1.05rem;
}

.image-band h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.image-band .eyebrow,
.cta-band .eyebrow,
.side-panel .eyebrow {
    color: var(--kiu-on-green-accent);
}

.image-frame {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--kiu-radius);
    box-shadow: var(--kiu-shadow);
}

.action-list {
    display: grid;
    gap: .75rem;
    margin-top: 1.5rem;
}

.action-list a,
.network-card a,
.event-card a {
    color: var(--kiu-green);
    font-weight: 900;
}

.action-list a:hover,
.network-card a:hover,
.event-card a:hover {
    color: var(--kiu-gold);
}

.image-band .action-list {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    align-items: center;
}

.image-band .action-list a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .36rem .6rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #ffffff;
    background: #10231d;
    font-size: .76rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 6px 14px rgba(16, 35, 29, .14);
}

.image-band .action-list a:hover {
    color: var(--kiu-ink);
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-1px);
}

.event-card {
    position: relative;
    overflow: hidden;
}

.event-date {
    width: 64px;
    min-height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    border-radius: var(--kiu-radius);
    color: #ffffff;
    background: var(--kiu-green-dark);
    text-align: center;
}

.event-date span {
    display: block;
    width: 100%;
    padding-top: .45rem;
    color: #bafbd4;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.event-date strong {
    display: block;
    margin-top: -.2rem;
    font-size: 1.65rem;
    line-height: 1;
}

.event-place,
.date-line {
    color: var(--kiu-green-ink) !important;
    font-size: .9rem;
    font-weight: 800;
}

.update-card span,
.statement-card span,
.network-card span,
.leader-card span {
    display: inline-block;
    margin-bottom: .85rem;
    color: var(--kiu-blue);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.empty-state {
    position: relative;
    min-height: 260px;
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px dashed rgba(16, 35, 29, .24);
    border-radius: var(--kiu-radius);
    background:
        linear-gradient(135deg, rgba(231, 248, 239, .82), rgba(255, 255, 255, .96) 58%),
        #ffffff;
    box-shadow: 0 10px 28px rgba(16, 35, 29, .06);
}

.empty-state-compact {
    min-height: 230px;
}

.empty-state-mark {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: var(--kiu-radius);
    color: #ffffff;
    background: var(--kiu-green-ink);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .05em;
}

.empty-state .eyebrow {
    display: block;
    color: var(--kiu-green-ink);
    margin-bottom: .65rem;
}

.empty-state h2,
.empty-state h3 {
    max-width: 620px;
    margin: 0 0 .75rem;
    color: var(--kiu-ink);
}

.empty-state h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.empty-state h3 {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.empty-state p {
    max-width: 640px;
    margin: 0 0 1.25rem;
    color: var(--kiu-muted);
}

.empty-state p:last-child {
    margin-bottom: 0;
}

.page-hero {
    min-height: clamp(390px, 50svh, 540px);
    display: flex;
    align-items: end;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    padding: 5.5rem 0;
}

.compact-hero {
    min-height: clamp(340px, 44svh, 480px);
}

.page-hero .container {
    max-width: 920px;
}

.page-hero h1 {
    max-width: 820px;
    margin: 0 0 1rem;
    font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.page-hero p {
    max-width: 710px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.value-tile {
    min-height: 112px;
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 1px solid var(--kiu-line);
    border-radius: var(--kiu-radius);
    color: var(--kiu-green-dark);
    background: #ffffff;
    font-weight: 900;
}

.directory-panel {
    margin-bottom: 1.5rem;
}

.member-directory-summary {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0 1.25rem;
}

.member-directory-summary h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.member-page-count {
    margin: .45rem 0 0;
    color: var(--kiu-muted);
    font-weight: 700;
}

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

.member-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.15rem, 2.4vw, 1.5rem);
    border: 1px solid var(--kiu-line);
    border-radius: var(--kiu-radius);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 35, 29, .06);
}

.member-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.member-avatar {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--kiu-radius);
    color: #ffffff;
    background: var(--kiu-green);
    font-weight: 900;
    letter-spacing: .04em;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-card h2 {
    margin: 0;
    color: var(--kiu-ink);
    font-size: 1.18rem;
}

.member-card-top p {
    margin: .25rem 0 0;
    color: var(--kiu-muted);
    line-height: 1.4;
}

.member-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1rem;
}

.member-meta span,
.member-reg {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: .35rem .55rem;
    border-radius: var(--kiu-radius);
    color: var(--kiu-green-ink);
    background: var(--kiu-green-soft);
    font-size: .78rem;
    font-weight: 900;
}

.member-interest {
    margin: 0 0 1rem;
    color: var(--kiu-muted);
}

.member-reg {
    margin-top: auto;
    color: var(--kiu-muted);
    background: var(--kiu-soft);
}

.member-empty,
.directory-alert {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid var(--kiu-line);
    border-radius: var(--kiu-radius);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 35, 29, .06);
}

.member-empty h2 {
    margin-bottom: .75rem;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.member-empty p,
.directory-alert {
    color: var(--kiu-muted);
}

.kiu-pagination .page-link {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: var(--kiu-line);
    color: var(--kiu-green-ink);
    font-weight: 900;
}

.kiu-pagination .pagination-nav {
    padding-right: .95rem;
    padding-left: .95rem;
}

.kiu-pagination .page-link:hover {
    color: #ffffff;
    background: var(--kiu-green);
    border-color: var(--kiu-green);
}

.kiu-pagination .page-item.active .page-link {
    color: #ffffff;
    background: var(--kiu-green);
    border-color: var(--kiu-green);
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: var(--kiu-radius);
    border-color: rgba(16, 35, 29, .18);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--kiu-green);
    box-shadow: 0 0 0 .2rem rgba(0, 170, 78, .14);
}

textarea.form-control {
    min-height: 148px;
}

.form-label {
    color: var(--kiu-ink);
    font-weight: 800;
}

.form-note {
    color: var(--kiu-muted);
}

.form-note a {
    color: var(--kiu-green-ink);
    font-weight: 900;
}

.form-link {
    color: var(--kiu-green-ink);
    font-size: .9rem;
    font-weight: 900;
}

.directory-alert a {
    color: var(--kiu-green-ink);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.turnstile-box {
    display: inline-flex;
    max-width: 100%;
    padding: .75rem;
    border: 1px solid var(--kiu-line);
    border-radius: var(--kiu-radius);
    background: var(--kiu-soft);
}

.portal-profile-card {
    height: 100%;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border: 1px solid var(--kiu-line);
    border-radius: var(--kiu-radius);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 35, 29, .06);
    text-align: center;
}

.portal-avatar {
    width: 154px;
    height: 154px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    border-radius: var(--kiu-radius);
    color: #ffffff;
    background: var(--kiu-green);
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: .04em;
}

.portal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portal-profile-card h2 {
    margin: 0 0 .45rem;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.portal-profile-card > p {
    color: var(--kiu-muted);
}

.side-panel {
    background: var(--kiu-green-dark);
    color: #ffffff;
}

.side-panel p,
.side-panel li {
    color: rgba(255, 255, 255, .8);
}

.side-panel ul {
    display: grid;
    gap: .65rem;
    margin: 1.25rem 0 0;
    padding-left: 1.15rem;
}

.contact-list {
    display: grid;
    gap: .65rem;
    margin-top: 1rem;
}

.contact-list a {
    color: #ffffff;
    font-weight: 800;
}

.contact-list a:hover {
    color: var(--kiu-on-green-accent);
}

.leader-card {
    overflow: hidden;
}

.leader-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.leader-card > div {
    padding: 1.25rem;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border-radius: var(--kiu-radius);
    color: #ffffff;
    background: var(--kiu-green-dark);
}

.cta-band h2,
.cta-band p {
    margin-bottom: .5rem;
}

.cta-band p {
    color: rgba(255, 255, 255, .78);
}

.site-footer {
    padding: clamp(2rem, 4vw, 3rem) 0 1.25rem;
    color: rgba(255, 255, 255, .76);
    background:
        linear-gradient(180deg, rgba(2, 176, 86, .16), rgba(2, 176, 86, 0) 32%),
        #061611;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--kiu-radius);
    background: var(--kiu-green);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.footer-kicker {
    display: inline-flex;
    margin-bottom: .5rem;
    color: var(--kiu-on-green-accent);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-cta h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    line-height: 1.15;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    flex: 0 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, .7fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.footer-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.footer-brand-mark {
    width: 98px;
    height: 98px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: var(--kiu-radius);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

.footer-copy {
    max-width: 420px;
    margin-bottom: 1.25rem !important;
    color: rgba(255, 255, 255, .74) !important;
}

.footer-links h2,
.footer-address h2 {
    color: #ffffff;
    font-size: .82rem;
    margin-bottom: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer a,
.site-footer p {
    display: block;
    color: rgba(255, 255, 255, .72);
    margin-bottom: .5rem;
}

.site-footer .footer-cta .btn {
    display: inline-flex;
    margin: 0;
}

.site-footer .footer-cta .btn-light {
    color: var(--kiu-green-ink);
}

.site-footer .footer-cta .btn-outline-light {
    color: #ffffff;
}

.site-footer .footer-cta .btn-outline-light:hover {
    color: var(--kiu-green-ink);
}

.site-footer .footer-brand-mark {
    display: inline-flex;
    margin-bottom: 1rem;
}

.footer-links a,
.footer-address a {
    width: max-content;
    max-width: 100%;
    border-bottom: 1px solid transparent;
    font-weight: 700;
}

.site-footer a:hover {
    color: var(--kiu-on-green-accent);
}

.footer-links a:hover,
.footer-address a:hover {
    border-color: rgba(255, 240, 186, .54);
}

.footer-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.footer-contact-strip a {
    width: auto;
    margin: 0;
    padding: .55rem .8rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--kiu-radius);
    background: rgba(255, 255, 255, .07);
    color: #ffffff;
    font-size: .92rem;
    font-weight: 800;
}

.footer-contact-strip a:hover {
    border-color: rgba(255, 240, 186, .55);
    background: rgba(255, 255, 255, .11);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .62);
    font-size: .9rem;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-weight: 800;
}

.kiu-toast-stack {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1080;
    display: grid;
    gap: .75rem;
    width: min(380px, calc(100vw - 2rem));
}

.kiu-toast {
    display: grid;
    grid-template-columns: 42px 1fr 28px;
    gap: .8rem;
    align-items: start;
    padding: 1rem;
    border-radius: var(--kiu-radius);
    color: var(--kiu-ink);
    background: #ffffff;
    box-shadow: var(--kiu-shadow);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.kiu-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.kiu-toast-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--kiu-radius);
    color: #ffffff;
    background: var(--kiu-green);
    font-size: .75rem;
    font-weight: 900;
}

.kiu-toast-content strong {
    display: block;
    margin-bottom: .25rem;
}

.kiu-toast-content p {
    margin: 0;
    color: var(--kiu-muted);
}

.kiu-toast-close {
    border: 0;
    background: transparent;
    color: var(--kiu-muted);
    font-size: 1.35rem;
    line-height: 1;
}

@media (max-width: 1199.98px) {
    .alumni-navbar {
        min-height: 76px;
    }

    .navbar-collapse {
        padding: 1rem 0 1.25rem;
    }

    .navbar-nav .nav-link {
        padding-left: 0;
    }

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

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

@media (max-width: 767.98px) {
    .topbar {
        text-align: center;
    }

    .site-logo {
        width: 58px;
        height: 58px;
    }

    .hero-home {
        min-height: 52svh;
        background-position: center top;
    }

    .hero-home-inner {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem;
    }

    .hero-actions,
    .split-heading,
    .member-directory-summary,
    .cta-band,
    .footer-cta,
    .footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .split-heading .btn,
    .cta-band .btn,
    .footer-cta .btn {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 1rem;
        padding: 1.85rem 0;
    }

    .footer-cta-actions {
        width: 100%;
    }

    .footer-cta {
        padding: 1.15rem;
    }

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

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

    .stat-item {
        min-height: 118px;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .page-hero {
        min-height: 360px;
        padding: 4rem 0;
    }

    .footer-logo {
        width: 70px;
        height: 70px;
    }

    .footer-brand-mark {
        width: 90px;
        height: 90px;
    }

    .footer-bottom div {
        gap: .8rem;
    }
}
