:root {
    --syw-navy: #141422;
    --syw-navy-soft: #343452;
    --syw-text: #141422;
    --syw-muted: #74748A;
    --syw-red: #E6284B;
    --syw-line: #d8d9e2;
    --syw-bg: #f4f5f8;
    --syw-white: #ffffff;
}

* {
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--syw-text);
    background: var(--syw-white);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.figma-container {
    max-width: 1160px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    transform: translateY(-150%);
    padding: 0.65rem 1rem;
    color: var(--syw-white);
    background: var(--syw-red);
    border-radius: 0;
    transition: transform 0.2s ease;
}

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

.navbar {
    min-height: 72px;
    padding: 0;
    background: rgba(17, 17, 34, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, min-height 0.2s ease;
}

.site-header.is-scrolled .navbar {
    min-height: 64px;
    background: rgba(17, 17, 34, 0.96);
}

.navbar-brand img {
    width: 86px;
    height: auto;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-nav {
    gap: 1.2rem;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 1.7rem 0 !important;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--syw-white);
}

.nav-link.active {
    color: #E6284B;
}

.nav-link.active::after {
    position: absolute;
    right: 0;
    bottom: 1.25rem;
    left: 0;
    height: 1px;
    background: var(--syw-red);
    content: "";
}

.nav-donate {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 72px;
    padding-left: 1.25rem;
    color: var(--syw-white);
    border-left: 3px solid var(--syw-red);
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-donate:hover {
    color: var(--syw-white);
}

.btn,
.form-control {
    border-radius: 0;
}

.home-hero {
    position: relative;
    min-height: 790px;
    color: var(--syw-white);
    background:
        linear-gradient(90deg, rgba(17, 17, 34, 0.84), rgba(17, 17, 34, 0.58)),
        var(--hero-image) center/cover;
}

.home-hero::after {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 45, 0.28);
    content: "";
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 790px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 118px;
}

.home-hero__content {
    max-width: 610px;
}

.home-hero h1 {
    margin: 0 0 1.2rem;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    font-weight: 900;
    line-height: 0.98;
}

.home-hero p {
    max-width: 520px;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.home-hero__quick-links {
    display: flex;
    gap: 1.3rem;
    padding-bottom: 0.4rem;
}

.home-hero__quick-links a {
    color: var(--syw-white);
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.figma-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
    color: var(--syw-red);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.figma-kicker::before {
    width: 7px;
    height: 7px;
    background: var(--syw-red);
    content: "";
}

.figma-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--syw-red);
    font-size: 0.75rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.figma-link:hover {
    color: var(--syw-red);
}

.figma-link-light {
    color: var(--syw-white);
}

.figma-link-light:hover {
    color: var(--syw-white);
}

.home-intro,
.home-objectives,
.home-cta,
.partners-strip {
    background: var(--syw-bg);
}

.home-intro {
    padding: 100px 0;
}

.home-intro__image,
.home-cta__image {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-left: 3px solid var(--syw-red);
}

.home-intro h2,
.home-cta h2,
.section-title-center h2,
.content-band h2,
.page-hero h1 {
    margin: 0 0 1.15rem;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
}

.home-intro p,
.home-cta p,
.content-band p {
    max-width: 720px;
    color: #4e5060;
    font-size: 0.98rem;
}

.home-objectives {
    padding: 88px 0 96px;
}

.objective-list {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 0 0 2.25rem;
    list-style: none;
}

.objective-list li {
    position: relative;
    padding-left: 1.55rem;
    color: var(--syw-text);
    font-size: 1rem;
    font-weight: 700;
}

.objective-list li::before {
    position: absolute;
    top: 0.44rem;
    left: 0;
    width: 10px;
    height: 10px;
    border: 2px solid var(--syw-red);
    content: "";
}

.prayer-banner {
    min-height: 570px;
    background:
        linear-gradient(rgba(17, 17, 34, 0.34), rgba(17, 17, 34, 0.34)),
        var(--banner-image) center/cover;
}

.home-programs,
.stories-section {
    color: var(--syw-white);
    background: var(--syw-navy);
}

.home-programs {
    padding: 86px 0 110px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    gap: 3rem;
    margin: 0 auto 120px;
    text-align: center;
}

.stats-row strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--syw-white);
    font-size: clamp(2.3rem, 5vw, 4.15rem);
    font-weight: 900;
    line-height: 1;
}

.stats-row span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
}

.section-title-center {
    margin-bottom: 44px;
    text-align: center;
}

.section-title-center .figma-kicker {
    justify-content: center;
}

.section-title-center h2 {
    color: inherit;
}

.program-feature-grid {
    display: grid;
    grid-template-columns: 1.55fr 0.95fr;
    overflow: hidden;
    margin-bottom: 28px;
    background: var(--syw-navy-soft);
}

.program-feature-card {
    padding: clamp(2rem, 5vw, 4.6rem);
}

.program-feature-card h3 {
    max-width: 540px;
    margin: 0 0 1rem;
    color: var(--syw-white);
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    font-weight: 900;
    line-height: 1.08;
}

.program-feature-card p {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.78);
}

.program-feature-grid img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.program-poster-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.program-poster-row img {
    width: 100%;
    aspect-ratio: 1.33 / 1;
    object-fit: cover;
}

.section-action-center {
    margin-top: 54px;
    text-align: center;
}

.home-cta {
    padding: 108px 0;
}

.cta-link-list {
    display: grid;
    max-width: 590px;
    margin-top: 2.2rem;
}

.cta-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 0;
    color: var(--syw-text);
    border-bottom: 1px solid #bfc1ca;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
}

.cta-link-list a:hover {
    color: var(--syw-red);
}

.partners-strip {
    padding: 86px 0;
    border-top: 1px solid #e2e3e8;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 18px 24px;
}

.partner-box {
    display: grid;
    min-height: 74px;
    color: #9b9dac;
    background: #f8f8fb;
    border-right: 1px solid #c9cbd4;
    border-left: 3px solid var(--syw-red);
    place-items: center;
    font-size: 1.55rem;
}

.stories-section {
    padding: 96px 0 120px;
}

.story-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 70px;
    color: var(--syw-white);
    background: var(--syw-navy-soft);
    text-align: center;
}

.story-card i {
    display: block;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.22);
    font-size: 2.4rem;
}

.story-card p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
}

.story-card cite {
    display: block;
    margin-top: 1.4rem;
    color: var(--syw-white);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.page-hero {
    padding: 150px 0 82px;
    color: var(--syw-white);
    background:
        linear-gradient(90deg, rgba(17, 17, 34, 0.9), rgba(17, 17, 34, 0.62)),
        url("../images/site/1764537699.png") center/cover;
}

.page-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
}

.content-band {
    padding: 86px 0;
    background: var(--syw-bg);
}

.feature-image {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-left: 3px solid var(--syw-red);
}

.objective-card,
.contact-panel,
.contact-form,
.program-card {
    height: 100%;
    padding: 1.5rem;
    background: var(--syw-white);
    border: 1px solid #e4e5ec;
}

.objective-card i {
    color: var(--syw-red);
    font-size: 1.6rem;
}

.program-card {
    padding: 0;
    overflow: hidden;
}

.program-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.program-card div {
    padding: 1.35rem;
}

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

.gallery-grid-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.form-label {
    font-weight: 800;
}

.form-control {
    min-height: 48px;
    border-color: var(--syw-line);
}

.site-footer {
    position: relative;
    padding: 86px 0 36px;
    color: rgba(255, 255, 255, 0.68);
    background: var(--syw-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top-link {
    position: absolute;
    top: 0;
    right: 42px;
}

.footer-top-link a {
    display: grid;
    width: 46px;
    height: 46px;
    color: var(--syw-white);
    border-top: 2px solid var(--syw-red);
    border-right: 2px solid var(--syw-red);
    place-items: center;
    text-decoration: none;
}

.footer-brand img {
    width: 92px;
    margin-bottom: 1.5rem;
}

.footer-copy {
    max-width: 230px;
    font-size: 0.82rem;
}

.footer-title {
    margin-bottom: 1.2rem;
    color: var(--syw-white);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: var(--syw-white);
}

.footer-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-form input {
    min-width: 0;
    flex: 1;
    padding: 0.8rem 0;
    color: var(--syw-white);
    background: transparent;
    border: 0;
    outline: 0;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.footer-form button {
    color: var(--syw-white);
    background: transparent;
    border: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 78px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .navbar {
        background: rgba(17, 17, 34, 0.96);
    }

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

    .nav-link {
        padding: 0.55rem 0 !important;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-donate {
        min-height: auto;
        margin-top: 0.6rem;
        padding: 0.8rem 0 0.8rem 1rem;
    }

    .home-hero,
    .home-hero__inner {
        min-height: 680px;
    }

    .home-hero__inner {
        display: block;
        padding-top: 190px;
        padding-bottom: 80px;
    }

    .home-hero__quick-links {
        margin-top: 3rem;
    }

    .program-feature-grid {
        grid-template-columns: 1fr;
    }

    .program-poster-row,
    .partner-grid,
    .gallery-grid,
    .gallery-grid-large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-row {
        margin-bottom: 80px;
    }
}

/* Homepage — SUDAI Youthwing Figma implementation */
.home-page {
    --home-container: 1320px;
    --home-navy: #111120;
    --home-card: #343452;
    --home-paper: #f4f5f8;
    --home-red: #ed3154;
    --home-ink: #25243f;
    background: var(--home-navy);
}

.home-page .home-container,
.home-page .site-header .figma-container,
.home-page .site-footer .figma-container {
    width: min(calc(100% - 112px), var(--home-container));
    max-width: var(--home-container);
}

.home-page .navbar {
    min-height: 90px;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}

.home-page .navbar > .container::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .42);
    content: "";
}

.home-page .site-header.is-scrolled .navbar {
    min-height: 72px;
    background: rgba(17, 17, 32, .96);
}

.home-page .navbar-brand img { width: 150px; }
.home-page .navbar-nav { gap: 29px; }
.home-page .navbar-nav > li:first-child { display: none; }
.home-page .navbar-nav > li:nth-child(2) { order: 1; }
.home-page .navbar-nav > li:nth-child(4) { order: 2; }
.home-page .navbar-nav > li:nth-child(3) { order: 3; }
.home-page .navbar-nav > li:nth-child(5) { order: 4; }
.home-page .navbar-nav > li:nth-child(6) { order: 5; }
.home-page .navbar-nav > li:nth-child(7) { order: 6; }

.home-page .nav-link {
    padding: 2.25rem 0 !important;
    color: rgba(255,255,255,.82);
    font-size: .76rem;
    font-weight: 700;
}

.home-page .nav-link.active::after { display: none; }
.home-page .nav-donate {
    min-height: 46px;
    padding: 0 24px;
    border: 2px solid var(--home-red);
    font-size: .76rem;
}

.home-page .home-hero {
    min-height: 960px;
    background:
        linear-gradient(90deg, rgba(18,18,48,.82), rgba(18,18,48,.60)),
        var(--hero-image) center/cover;
}

.home-page .home-hero::after { background: rgba(24,24,62,.18); }
.home-page .home-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 960px;
    align-items: flex-end;
    padding-bottom: 145px;
}

.home-page .home-hero__content { max-width: 720px; }
.home-page .home-hero h1 {
    margin: 0 0 26px;
    font-size: clamp(3.4rem, 5.25vw, 4.75rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.home-page .home-hero p {
    max-width: 670px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.86);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.7;
}

.home-link,
.home-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--home-red);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .015em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-link:hover,
.home-button:hover { color: var(--home-red); }
.home-link--light,
.home-button--light,
.home-link--light:hover,
.home-button--light:hover { color: #fff; }
.home-button {
    min-height: 43px;
    padding: 0 15px;
    border: 2px solid var(--home-red);
}

.home-hero__details {
    position: absolute;
    right: 0;
    bottom: 36px;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;
    color: rgba(255,255,255,.84);
    font-size: .63rem;
    font-weight: 700;
}

.home-hero__rule { height: 1px; background: rgba(255,255,255,.35); }
.home-hero__details i { color: var(--home-red); }

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 19px;
    color: #8b8b9a;
    font-size: .63rem;
    font-weight: 800;
    text-transform: uppercase;
}

.home-kicker::before {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    background: var(--home-red);
    content: "";
}

.home-page .home-intro,
.home-page .home-cta { padding: 126px 0; background: var(--home-paper); }
.home-split { display: grid; align-items: center; }
.home-split--intro { grid-template-columns: 610px 1fr; gap: 112px; }
.home-split--cta { grid-template-columns: 505px 1fr; gap: 125px; }
.home-image {
    width: 100%;
    object-fit: cover;
    border-left: 3px solid var(--home-red);
}
.home-page .home-intro__image { height: 525px; min-height: 0; }
.home-page .home-cta__image { height: 650px; min-height: 0; }
.home-copy h2,
.home-heading h2 {
    margin: 0 0 24px;
    color: var(--home-ink);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}
.home-copy p {
    max-width: 600px;
    margin: 0 0 20px;
    color: #757487;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .91rem;
    line-height: 1.75;
}
.home-copy .home-button { margin-top: 8px; }

.home-page .home-objectives { padding: 180px 0; background: #fff; }
.home-objectives__grid { display: grid; grid-template-columns: 360px 1fr; gap: 46px; }
.home-page .objective-list { gap: 18px; margin: 0 0 32px; }
.home-page .objective-list li { padding-left: 29px; font-size: 1rem; font-weight: 700; }
.home-page .objective-list li::before {
    top: .35rem;
    width: 12px;
    height: 12px;
    border: 2px solid var(--home-red);
}

.home-page .prayer-banner {
    min-height: 775px;
    background:
        linear-gradient(rgba(24,24,62,.45), rgba(24,24,62,.45)),
        var(--banner-image) center/cover;
}

.home-page .home-programs { padding: 170px 0 180px; background: var(--home-navy); }
.home-page .stats-row {
    max-width: 1000px;
    gap: 100px;
    margin: 0 auto 220px;
}
.home-page .stats-row strong { font-size: 4.6rem; font-weight: 800; }
.home-page .stats-row span { font-size: .67rem; }
.home-heading--center { margin-bottom: 52px; color: #fff; text-align: center; }
.home-heading--center .home-kicker { margin-bottom: 14px; color: #8b8b9a; }
.home-heading--center h2 { margin: 0; color: inherit; font-size: 2rem; }
.program-feature {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    min-height: 530px;
    overflow: hidden;
    background: var(--home-card);
}
.program-feature__copy { padding: 84px 80px; }
.program-feature__copy h3 {
    max-width: 580px;
    margin: 0 0 24px;
    font-size: 2.45rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}
.program-feature__copy p {
    max-width: 610px;
    margin: 0 0 32px;
    color: rgba(255,255,255,.66);
    font-family: Georgia, "Times New Roman", serif;
    font-size: .86rem;
    line-height: 1.75;
}
.program-feature > img { width: 100%; height: 530px; object-fit: cover; }
.program-posters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 32px; }
.program-posters img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.home-action { margin-top: 90px; text-align: center; }

.home-page .home-cta { background: #fff; }
.home-page .home-cta .home-copy p { font-family: "Poppins", "Segoe UI", Arial, sans-serif; }
.cta-links { display: grid; max-width: 690px; margin-top: 70px; }
.cta-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    color: var(--home-ink);
    border-bottom: 1px solid #cccdd5;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
}
.cta-links a:hover { color: var(--home-red); }

.home-page .partners-strip { padding: 168px 0; background: var(--home-paper); }
.partners-layout { display: grid; grid-template-columns: 360px 1fr; gap: 46px; }
.home-page .partner-grid { grid-template-columns: repeat(5, 1fr); gap: 28px 38px; }
.home-page .partner-box {
    min-height: 82px;
    color: #a4a5b1;
    background: transparent;
    border: 1px solid #d8d9e0;
    border-left: 3px solid var(--home-red);
    font-size: 1.8rem;
}

.home-page .stories-section { padding: 90px 0 70px; background: var(--home-navy); }
.home-page .story-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 72px 115px;
    background: var(--home-card);
}
.home-page .story-card i { margin-bottom: 24px; font-size: 2.5rem; }
.home-page .story-card p {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.04rem;
    font-style: italic;
    line-height: 1.65;
}
.home-page .story-card cite { margin: 0; font-size: .63rem; }
.home-page .story-card cite strong,
.home-page .story-card cite span { display: block; }
.home-page .story-card cite span { color: rgba(255,255,255,.55); font-family: Georgia, "Times New Roman", serif; font-weight: 400; text-transform: none; }
.story-progress { max-width: 1000px; height: 1px; margin: 78px auto 0; background: rgba(255,255,255,.12); }
.story-progress span { display: block; width: 33%; height: 2px; background: var(--home-red); }

.home-page .site-footer { padding: 132px 0 68px; background: var(--home-navy); }
.home-page .footer-top-link { right: 58px; }
.home-page .footer-top-link a { width: 48px; height: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .95fr 1.35fr 1fr 1.4fr; gap: 52px; }
.home-page .footer-brand img { width: 138px; margin-bottom: 30px; }
.home-page .footer-title { margin-bottom: 22px; font-size: .67rem; }
.home-page .footer-links,
.home-page .footer-contact { gap: 11px; }
.home-page .footer-links a,
.home-page .footer-contact a,
.home-page .footer-contact span { color: rgba(255,255,255,.58); font-size: .67rem; line-height: 1.55; }
.home-page .footer-contact { font-style: normal; }
.home-page .footer-note { margin-top: 16px; color: rgba(255,255,255,.42); font-family: Georgia, "Times New Roman", serif; font-size: .61rem; line-height: 1.55; }
.home-page .footer-form input { font-size: .7rem; }
.home-page .footer-bottom { margin-top: 74px; padding-top: 25px; font-size: .61rem; }

@media (max-width: 1199.98px) {
    .home-page { --home-container: 1080px; }
    .home-page .home-container,
    .home-page .site-header .figma-container,
    .home-page .site-footer .figma-container { width: min(calc(100% - 64px), var(--home-container)); }
    .home-page .navbar-nav { gap: 15px; }
    .home-split--intro { grid-template-columns: 46% 1fr; gap: 65px; }
    .home-split--cta { grid-template-columns: 42% 1fr; gap: 70px; }
    .partners-layout,
    .home-objectives__grid { grid-template-columns: 270px 1fr; }
    .footer-grid { gap: 28px; }
}

@media (max-width: 991.98px) {
    .home-page .navbar { min-height: 72px; background: rgba(17,17,32,.92); }
    .home-page .navbar > .container::after { display: none; }
    .home-page .navbar-brand img { width: 120px; }
    .home-page .navbar-nav > li:first-child { display: list-item; }
    .home-page .navbar-nav > li { order: initial !important; }
    .home-page .nav-link { padding: .65rem 0 !important; font-size: .76rem; }
    .home-page .home-hero,
    .home-page .home-hero__inner { min-height: 760px; }
    .home-page .home-hero__inner { padding: 160px 0 130px; }
    .home-page .home-intro,
    .home-page .home-cta { padding: 85px 0; }
    .home-split--intro,
    .home-split--cta { grid-template-columns: 1fr 1fr; gap: 48px; }
    .home-page .home-intro__image,
    .home-page .home-cta__image { height: 520px; }
    .program-feature__copy { padding: 60px 48px; }
    .program-feature__copy h3 { font-size: 2rem; }
    .home-page .partner-grid { gap: 18px; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767.98px) {
    .home-page .home-container,
    .home-page .site-header .figma-container,
    .home-page .site-footer .figma-container { width: min(calc(100% - 36px), var(--home-container)); }
    .home-page .home-hero,
    .home-page .home-hero__inner { min-height: 680px; }
    .home-page .home-hero__inner { display: flex; padding: 125px 0 120px; }
    .home-page .home-hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
    .home-page .home-hero h1 br,
    .home-copy h2 br { display: none; }
    .home-hero__details { grid-template-columns: 1fr auto; gap: 14px; }
    .home-hero__details .home-hero__rule { grid-column: 1/-1; }
    .home-split--intro,
    .home-split--cta,
    .home-objectives__grid,
    .partners-layout,
    .program-feature { grid-template-columns: 1fr; }
    .home-page .home-intro,
    .home-page .home-objectives,
    .home-page .home-cta,
    .home-page .partners-strip { padding: 72px 0; }
    .home-split--intro,
    .home-split--cta { gap: 48px; }
    .home-page .home-intro__image,
    .home-page .home-cta__image { height: min(115vw, 520px); }
    .home-objectives__grid,
    .partners-layout { gap: 24px; }
    .home-page .prayer-banner { min-height: 430px; }
    .home-page .home-programs { padding: 80px 0; }
    .home-page .stats-row { grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 90px; }
    .home-page .stats-row strong { font-size: clamp(2.4rem, 12vw, 4rem); }
    .program-feature__copy { padding: 45px 30px; }
    .program-feature > img { height: 460px; }
    .program-posters { grid-template-columns: 1fr; gap: 18px; }
    .home-page .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .home-page .story-card { padding: 50px 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 26px; }
}

@media (max-width: 479.98px) {
    .home-page .home-hero h1 { font-size: 2.6rem; }
    .home-page .home-hero p { font-size: .9rem; }
    .home-copy h2,
    .home-heading h2 { font-size: 2rem; }
    .home-page .stats-row { grid-template-columns: 1fr; gap: 30px; }
    .program-feature > img { height: 390px; }
    .footer-grid { grid-template-columns: 1fr; }
    .home-page .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        width: 78px;
    }

    .home-hero,
    .home-hero__inner {
        min-height: 620px;
    }

    .home-hero__inner {
        padding-top: 150px;
        padding-bottom: 56px;
    }

    .home-hero__quick-links,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-intro,
    .home-objectives,
    .home-cta,
    .partners-strip,
    .stories-section,
    .home-programs,
    .content-band {
        padding: 64px 0;
    }

    .home-intro__image,
    .home-cta__image {
        min-height: 320px;
    }

    .prayer-banner {
        min-height: 340px;
    }

    .stats-row,
    .program-poster-row,
    .partner-grid,
    .gallery-grid,
    .gallery-grid-large {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 2.2rem;
    }

    .story-card {
        padding: 38px 24px;
    }
}

.has-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: transparent;
    border: 0;
}

.nav-dropdown-toggle::before {
    display: none;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    z-index: 1200;
    visibility: hidden;
    color: var(--syw-navy);
    background: #f2f3f7;
    border-top: 5px solid var(--syw-red);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 24px 60px rgba(20, 20, 34, 0.18);
    opacity: 0;
    transform: translate(-50%, 12px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown::before {
    position: absolute;
    top: -18px;
    left: 50%;
    width: 28px;
    height: 28px;
    background: #f2f3f7;
    border-top: 5px solid var(--syw-red);
    border-left: 5px solid var(--syw-red);
    content: "";
    transform: translateX(-50%) rotate(45deg);
}

.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown,
.has-dropdown.is-open > .nav-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-dropdown--about {
    display: grid;
    width: min(1520px, calc(100vw - 0px));
    min-height: 605px;
    grid-template-columns: 1fr 1.25fr;
}

.nav-dropdown--compact {
    width: 322px;
    min-height: 495px;
    padding: 42px 40px 48px;
}

.nav-dropdown--single {
    width: 640px;
    min-height: 560px;
    padding: 74px 80px 70px;
}

.nav-dropdown--right {
    right: 0;
    left: auto;
    transform: translate(0, 12px);
}

.has-dropdown:hover > .nav-dropdown--right,
.has-dropdown:focus-within > .nav-dropdown--right,
.has-dropdown.is-open > .nav-dropdown--right {
    transform: translate(0, 0);
}

.nav-dropdown--right::before {
    left: auto;
    right: 110px;
    transform: rotate(45deg);
}

.nav-dropdown h2 {
    margin: 0;
    color: var(--syw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 1.1;
}

.nav-dropdown__rule {
    width: 100%;
    height: 1px;
    margin: 40px 0;
    background: rgba(20, 20, 34, 0.45);
}

.nav-dropdown__column {
    padding: 84px 80px;
}

.nav-dropdown__column-shade {
    background: #e9e9ee;
}

.about-preview {
    display: block;
    padding: 28px 36px 30px;
    color: var(--syw-muted);
    border-left: 3px solid var(--syw-red);
    text-decoration: none;
}

.about-preview + .about-preview {
    margin-top: 26px;
}

.about-preview.active {
    background: var(--syw-white);
    border-radius: 0 6px 6px 0;
}

.about-preview strong {
    display: block;
    margin-bottom: 18px;
    color: var(--syw-navy);
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
}

.about-preview span {
    display: block;
    color: #63637d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    line-height: 1.35;
}

.dropdown-link-list {
    display: grid;
    gap: 50px;
}

.dropdown-link-list a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    color: var(--syw-navy);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.15;
    text-decoration: none;
}

.dropdown-link-list a:hover,
.about-preview:hover {
    color: var(--syw-red);
}

.dropdown-link-list a i {
    font-size: 2.2rem;
    line-height: 1;
    transition: transform 0.16s ease;
}

.dropdown-link-list a:hover i {
    transform: translateX(6px);
}

.dropdown-link-list--small {
    gap: 27px;
}

.dropdown-link-list--small a {
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.35;
}

.dropdown-link-list--small a i {
    font-size: 1.25rem;
}

@media (max-width: 1199.98px) {
    .navbar-nav {
        gap: 0.8rem;
    }

    .nav-link,
    .nav-donate {
        font-size: 0.68rem;
    }

    .nav-dropdown--about {
        width: min(1120px, 100vw);
        grid-template-columns: 1fr 1fr;
    }

    .about-preview span {
        font-size: 1.45rem;
    }

    .dropdown-link-list a {
        font-size: 1.45rem;
    }
}

@media (max-width: 991.98px) {
    .has-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        text-align: left;
    }

    .nav-dropdown {
        position: static;
        display: none;
        visibility: visible;
        width: 100%;
        min-height: auto;
        margin: 0.3rem 0 1rem;
        padding: 1.25rem;
        border-top-width: 3px;
        opacity: 1;
        transform: none;
        box-shadow: none;
        transition: none;
    }

    .nav-dropdown::before {
        display: none;
    }

    .has-dropdown.is-open > .nav-dropdown {
        display: block;
        transform: none;
    }

    .nav-dropdown--about {
        grid-template-columns: 1fr;
    }

    .nav-dropdown__column {
        padding: 1rem 0;
    }

    .nav-dropdown__column-shade {
        padding: 1rem;
    }

    .nav-dropdown__rule {
        margin: 1rem 0;
    }

    .about-preview {
        padding: 1rem;
    }

    .about-preview + .about-preview {
        margin-top: 1rem;
    }

    .about-preview span,
    .dropdown-link-list a {
        font-size: 1rem;
    }

    .dropdown-link-list {
        gap: 1.05rem;
    }

    .dropdown-link-list--history-all {
        gap: .55rem;
    }

    .dropdown-link-list--history-all a {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-link-list a i {
        font-size: 1.25rem;
    }
}

/* Corrected Figma dropdown sizing and button hover behavior. */
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.18s ease;
}

.has-dropdown:hover .nav-dropdown-toggle i,
.has-dropdown:focus-within .nav-dropdown-toggle i,
.has-dropdown.is-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-donate,
.btn,
.contact-form button,
.footer-form button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: color 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.nav-donate::after,
.btn::after,
.contact-form button::after,
.footer-form button::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--syw-red);
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.nav-donate:hover,
.btn:hover,
.contact-form button:hover,
.footer-form button:hover {
    color: var(--syw-white) !important;
    border-color: var(--syw-red) !important;
}

.nav-donate:hover::after,
.btn:hover::after,
.contact-form button:hover::after,
.footer-form button:hover::after {
    transform: scaleX(1);
}

@media (min-width: 992px) {
    .navbar {
        background: rgba(20, 20, 34, 0.82);
    }

    .site-header .figma-container {
        max-width: 1584px;
    }

    .navbar-nav {
        gap: 1.35rem;
    }

    .nav-link {
        padding: 2rem 0 1.85rem !important;
        font-size: 0.82rem;
    }

    .nav-link.active::after {
        bottom: 1.45rem;
    }

    .nav-donate {
        min-height: 84px;
        padding: 0 28px;
        border: 2px solid var(--syw-red);
        font-size: 0.82rem;
    }

    .nav-dropdown {
        top: 100%;
        border-top-width: 4px;
        border-radius: 4px;
        box-shadow: 0 22px 55px rgba(20, 20, 34, 0.22);
    }

    .nav-dropdown::before {
        top: -13px;
        width: 20px;
        height: 20px;
        border-top-width: 4px;
        border-left-width: 4px;
    }

    .nav-dropdown--about {
        width: 912px;
        min-height: 555px;
        grid-template-columns: 1fr 1.12fr;
    }

    .nav-dropdown--compact {
        width: 386px;
        min-height: 588px;
        padding: 50px 48px 54px;
    }

    .nav-dropdown--single {
        width: 384px;
        min-height: 468px;
        padding: 50px 48px 54px;
    }

    .nav-dropdown--right {
        right: 50%;
        left: auto;
        transform: translate(50%, 12px);
    }

    .has-dropdown:hover > .nav-dropdown--right,
    .has-dropdown:focus-within > .nav-dropdown--right,
    .has-dropdown.is-open > .nav-dropdown--right {
        transform: translate(50%, 0);
    }

    .nav-dropdown--right::before {
        right: 50%;
        transform: translateX(50%) rotate(45deg);
    }

    .nav-dropdown h2 {
        font-size: 1.08rem;
    }

    .nav-dropdown__rule {
        margin: 24px 0 26px;
    }

    .nav-dropdown__column {
        padding: 50px 48px;
    }

    .about-preview {
        padding: 18px 24px 20px;
        border-left-width: 3px;
    }

    .about-preview + .about-preview {
        margin-top: 16px;
    }

    .about-preview strong {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .about-preview span {
        font-size: 1.08rem;
        line-height: 1.45;
    }

    .dropdown-link-list {
        gap: 34px;
    }

    .dropdown-link-list a {
        gap: 12px;
        font-size: 1rem;
        line-height: 1.25;
    }

    .dropdown-link-list a i {
        font-size: 1.35rem;
    }

    .dropdown-link-list--small {
        gap: 25px;
    }

    .dropdown-link-list--small a {
        font-size: 0.94rem;
    }
}

@media (max-width: 991.98px) {
    .nav-dropdown-toggle {
        display: flex;
        justify-content: space-between;
    }

    .nav-donate {
        width: fit-content;
        min-height: 48px;
        padding: 0.75rem 1rem;
        border: 2px solid var(--syw-red);
    }
}

.nav-donate,
.btn,
.contact-form button,
.footer-form button {
    background-image: linear-gradient(90deg, var(--syw-red), var(--syw-red));
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 0 100%;
}

.nav-donate::after,
.btn::after,
.contact-form button::after,
.footer-form button::after {
    display: none;
}

.nav-donate:hover,
.btn:hover,
.contact-form button:hover,
.footer-form button:hover {
    background-size: 100% 100%;
}

/* Legacy homepage pass retained for reference; layered below the current implementation. */
@layer legacy-home {
/* Home page Figma pass */
.home-figma-container {
    max-width: 708px;
}

.home-figma-light,
.home-figma-white {
    background: #f4f5f8;
}

.home-figma-white {
    background: var(--syw-white);
}

.home-figma.home-hero {
    min-height: 514px;
    background:
        linear-gradient(90deg, rgba(20, 20, 34, 0.9), rgba(20, 20, 34, 0.72)),
        var(--hero-image) center/cover;
}

.home-figma.home-hero::after {
    background: rgba(20, 20, 34, 0.2);
}

.home-figma .home-hero__inner,
.home-hero.home-figma .home-hero__inner {
    min-height: 514px;
    padding-bottom: 82px;
}

.home-figma .home-hero__content,
.home-hero.home-figma .home-hero__content {
    max-width: 405px;
}

.home-figma h1,
.home-hero.home-figma h1 {
    max-width: 390px;
    margin-bottom: 14px;
    font-size: 2.02rem;
    line-height: 1.04;
}

.home-figma .home-hero__content p,
.home-hero.home-figma p {
    max-width: 385px;
    margin-bottom: 18px;
    font-size: 0.67rem;
    line-height: 1.75;
}

.home-figma .home-hero__quick-links,
.home-hero.home-figma .home-hero__quick-links {
    gap: 24px;
    align-items: center;
    padding-bottom: 4px;
}

.home-figma .home-hero__quick-links a,
.home-hero.home-figma .home-hero__quick-links a,
.home-figma .figma-link,
.home-hero.home-figma .figma-link {
    font-size: 0.58rem;
    letter-spacing: 0;
}

.home-intro {
    padding: 64px 0 62px;
}

.home-intro .row,
.home-cta .row {
    --bs-gutter-x: 3.8rem;
}

.home-intro__image {
    min-height: 282px;
    aspect-ratio: 1.15 / 1;
}

.home-intro h2,
.home-cta h2,
.section-title-center h2 {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: 1.42rem;
    line-height: 1.18;
}

.home-intro p,
.home-cta p {
    max-width: 392px;
    margin-bottom: 14px;
    color: var(--syw-navy);
    font-size: 0.66rem;
    line-height: 1.8;
}

.figma-kicker {
    margin-bottom: 10px;
    font-size: 0.55rem;
}

.figma-kicker::before {
    width: 6px;
    height: 6px;
}

.home-objectives {
    padding: 68px 0 66px;
}

.objective-list {
    gap: 12px;
    margin-bottom: 28px;
}

.objective-list li {
    padding-left: 18px;
    font-size: 0.72rem;
    line-height: 1.4;
}

.objective-list li::before {
    top: 0.24rem;
    width: 8px;
    height: 8px;
    border-width: 1px;
}

.prayer-banner {
    min-height: 374px;
    background:
        linear-gradient(rgba(20, 20, 34, 0.42), rgba(20, 20, 34, 0.42)),
        var(--banner-image) center/cover;
}

.home-programs {
    padding: 68px 0 78px;
    background: var(--syw-navy);
}

.stats-row {
    max-width: 520px;
    gap: 46px;
    margin: 0 auto 86px;
}

.stats-row strong {
    margin-bottom: 2px;
    font-size: 2.42rem;
}

.stats-row span {
    font-size: 0.58rem;
}

.section-title-center {
    margin-bottom: 30px;
}

.section-title-center .figma-kicker {
    margin-bottom: 6px;
}

.section-title-center h2 {
    max-width: none;
    margin-inline: auto;
    font-size: 1.27rem;
}

.program-feature-grid {
    grid-template-columns: 1.46fr 0.9fr;
    margin-bottom: 20px;
    background: #343452;
}

.program-feature-card {
    padding: 36px 34px 32px;
}

.program-feature-card h3 {
    max-width: 310px;
    margin-bottom: 14px;
    font-size: 1.24rem;
    line-height: 1.18;
}

.program-feature-card p {
    max-width: 350px;
    margin-bottom: 20px;
    font-size: 0.64rem;
    line-height: 1.75;
}

.program-feature-grid img {
    min-height: 268px;
    object-fit: cover;
}

.program-poster-row {
    gap: 18px;
}

.program-poster-row img {
    aspect-ratio: 1.38 / 1;
}

.section-action-center {
    margin-top: 42px;
}

.home-cta {
    padding: 66px 0 64px;
}

.home-cta__image {
    min-height: 300px;
    aspect-ratio: 0.9 / 1;
}

.cta-link-list {
    max-width: 376px;
    margin-top: 28px;
}

.cta-link-list a {
    padding: 10px 0;
    font-size: 0.68rem;
}

.partners-strip {
    padding: 58px 0 54px;
}

.partner-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px 20px;
}

.partner-box {
    min-height: 52px;
    border-left-width: 2px;
    font-size: 1.1rem;
}

.stories-section {
    padding: 64px 0 82px;
    background: var(--syw-navy);
}

.story-card {
    max-width: 536px;
    padding: 40px 62px;
    background: #343452;
}

.story-card i {
    margin-bottom: 16px;
    font-size: 1.7rem;
}

.story-card p {
    margin-bottom: 12px;
    font-size: 0.68rem;
    line-height: 1.65;
}

.story-card cite {
    margin-top: 0;
    font-size: 0.56rem;
}

.site-footer {
    padding-top: 58px;
}

.site-footer .figma-container {
    max-width: 708px;
}

.footer-brand img {
    width: 82px;
}

.footer-copy,
.footer-links a,
.footer-contact a {
    font-size: 0.62rem;
}

.footer-title {
    font-size: 0.64rem;
}

.footer-bottom {
    margin-top: 42px;
    font-size: 0.58rem;
}

@media (min-width: 992px) {
    .home-figma-container,
    .site-footer .figma-container {
        max-width: 708px;
    }
}

@media (max-width: 767.98px) {
    .home-figma-container,
    .site-footer .figma-container {
        width: min(100% - 32px, 708px);
    }

    .home-figma.home-hero,
    .home-figma .home-hero__inner,
    .home-hero.home-figma .home-hero__inner {
        min-height: 620px;
    }

    .home-figma .home-hero__inner,
    .home-hero.home-figma .home-hero__inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding-bottom: 56px;
    }

    .home-figma .home-hero__quick-links,
    .home-hero.home-figma .home-hero__quick-links {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 22px;
    }

    .home-intro .row,
    .home-cta .row {
        --bs-gutter-x: 1.5rem;
    }

    .home-intro__image,
    .home-cta__image {
        min-height: 260px;
    }

    .program-feature-grid,
    .program-poster-row,
    .partner-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 28px;
        margin-bottom: 58px;
    }

    .program-feature-grid img {
        min-height: 260px;
    }

    .story-card {
        padding: 34px 24px;
    }
}

/* Exact uploaded index-page scale */
.home-page {
    background: var(--syw-navy);
}

.home-page .navbar {
    min-height: 58px;
    background: rgba(20, 20, 34, 0.58);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: none;
}

.home-page .site-header.is-scrolled .navbar {
    min-height: 58px;
    background: rgba(20, 20, 34, 0.96);
}

.home-page .site-header .figma-container {
    max-width: 708px;
}

.home-page .navbar-brand img {
    width: 72px;
}

.home-page .navbar-nav {
    gap: 0.8rem;
}

.home-page .nav-link {
    padding: 1.25rem 0 !important;
    font-size: 0.48rem;
    font-weight: 800;
}

.home-page .nav-link.active::after {
    bottom: 0.95rem;
}

.home-page .nav-donate {
    min-height: 58px;
    padding: 0 14px;
    font-size: 0.48rem;
    border-width: 0 0 0 2px;
}

.home-page .nav-dropdown {
    top: 100%;
}

.home-page .home-figma-container {
    max-width: 708px;
}

.home-page .home-figma.home-hero {
    min-height: 514px;
    background-position: center top;
}

.home-page .home-figma .home-hero__inner,
.home-page .home-hero.home-figma .home-hero__inner {
    min-height: 514px;
    padding-bottom: 84px;
}

.home-page .home-hero__content {
    margin-left: 0;
}

.home-page .home-figma h1,
.home-page .home-hero.home-figma h1 {
    font-size: 2rem;
    letter-spacing: 0;
}

.home-page .home-intro {
    padding-top: 64px;
    padding-bottom: 64px;
}

.home-page .home-intro__image {
    height: 282px;
    min-height: 0;
}

.home-page .home-objectives {
    padding-top: 66px;
    padding-bottom: 66px;
}

.home-page .prayer-banner {
    min-height: 376px;
    background-position: center center;
}

.home-page .home-programs {
    padding-top: 68px;
    padding-bottom: 80px;
}

.home-page .program-feature-grid,
.home-page .program-poster-row {
    max-width: 708px;
    margin-right: auto;
    margin-left: auto;
}

.home-page .program-feature-grid img {
    height: 268px;
    min-height: 0;
}

.home-page .home-cta {
    padding-top: 66px;
    padding-bottom: 66px;
}

.home-page .home-cta__image {
    height: 300px;
    min-height: 0;
}

.home-page .partners-strip {
    padding-top: 58px;
    padding-bottom: 56px;
}

.home-page .stories-section {
    padding-top: 64px;
    padding-bottom: 82px;
}

.home-page .site-footer {
    padding-top: 56px;
    padding-bottom: 30px;
}

@media (max-width: 991.98px) {
    .home-page .navbar-collapse {
        padding-top: 0.75rem;
        padding-bottom: 1rem;
        background: rgba(20, 20, 34, 0.98);
    }

    .home-page .nav-link {
        padding: 0.55rem 0 !important;
        font-size: 0.76rem;
    }

    .home-page .nav-donate {
        min-height: 42px;
        padding: 0.7rem 1rem;
        border: 2px solid var(--syw-red);
        font-size: 0.76rem;
    }
}
}

/* Final cascade: shared CTA motion and Figma-sized desktop navigation. */
:is(.nav-donate, .home-button, .home-link, .figma-link, .btn, .contact-form button) {
    position: relative;
    z-index: 0;
    isolation: isolate;
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    overflow: hidden;
    padding: 0 16px;
    background-color: transparent;
    background-image: none;
    border: 2px solid #E6284B;
    border-radius: 0;
    text-decoration: none;
    transition: color .42s ease, border-color .42s ease;
}

:is(.nav-donate, .home-button, .home-link, .figma-link, .btn, .contact-form button)::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: block;
    background: #E6284B;
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .62s cubic-bezier(.22, .61, .36, 1);
}

:is(.nav-donate, .home-button, .home-link, .figma-link, .btn, .contact-form button):hover,
:is(.nav-donate, .home-button, .home-link, .figma-link, .btn, .contact-form button):focus-visible {
    color: #fff !important;
    border-color: #E6284B !important;
    background-color: transparent;
    background-image: none;
}

:is(.nav-donate, .home-button, .home-link, .figma-link, .btn, .contact-form button):hover::before,
:is(.nav-donate, .home-button, .home-link, .figma-link, .btn, .contact-form button):focus-visible::before {
    transform: scaleX(1);
}

.nav-donate,
.home-button--light,
.home-link--light { color: #fff; }
.home-link { padding-right: 16px; padding-left: 16px; }
.home-page .nav-donate,
.home-page .home-button--light,
.home-page .home-link--light { color: #fff !important; }

.about-preview {
    transition: color .3s ease, background-color .3s ease, border-radius .3s ease;
}

.about-preview:hover,
.about-preview:focus-visible,
.about-preview.active {
    color: var(--syw-muted);
    background: #fff;
    border-radius: 0 6px 6px 0;
    outline: none;
}

.about-preview:hover strong,
.about-preview:focus-visible strong,
.about-preview.active strong { color: var(--syw-navy); }

.home-page .home-hero {
    isolation: isolate;
    overflow: hidden;
    background: #111120;
}

.home-hero__slides,
.home-hero__slide {
    position: absolute;
    inset: 0;
}

.home-hero__slides { z-index: 0; }

.home-hero__slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 1.15s ease, transform 6s ease;
}

.home-hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.home-page .home-hero::after {
    z-index: 1;
    background: rgba(20, 20, 34, .8);
}
.home-page .home-hero__inner { z-index: 2; }
.home-page .home-hero__content { max-width: 920px; }
.home-page .home-hero h1 { max-width: 920px; }
.home-page .home-hero__details { bottom: 62px; }

.home-hero__controls {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.home-hero__controls button {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    padding: 0;
    color: rgba(255, 255, 255, .5);
    background: transparent;
    border: 0;
    border-radius: 0;
    place-items: center;
    transition: color .25s ease;
}

.home-hero__controls button:hover,
.home-hero__controls button:focus-visible {
    color: #fff;
    background: transparent;
    outline: 1px solid rgba(255,255,255,.35);
}

.home-hero__dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.home-hero__dots button {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .35);
    border-radius: 50%;
}

.home-hero__dots button.is-active { background: #E6284B; }

@media (min-width: 992px) {
    .navbar-nav > li:first-child { display: none; }
    .navbar-nav > li:nth-child(2) { order: 1; }
    .navbar-nav > li:nth-child(4) { order: 2; }
    .navbar-nav > li:nth-child(3) { order: 3; }
    .navbar-nav > li:nth-child(5) { order: 4; }
    .navbar-nav > li:nth-child(6) { order: 5; }
    .navbar-nav > li:nth-child(7) { order: 6; }

    .home-page .site-header .figma-container {
        width: min(calc(100% - 140px), 1584px);
        max-width: 1584px;
    }

    .nav-dropdown--about {
        width: min(912px, 52.78vw);
        height: min(555px, 32.12vw);
        min-height: 0;
        grid-template-columns: 47.4% 52.6%;
    }

    .nav-dropdown--compact {
        width: min(386px, 22.34vw);
        height: min(588px, 34.03vw);
        min-height: 0;
        padding: clamp(34px, 2.78vw, 48px);
    }

    .nav-dropdown--single {
        width: min(384px, 22.22vw);
        height: min(468px, 27.08vw);
        min-height: 0;
        padding: clamp(34px, 2.78vw, 48px);
    }

    .nav-dropdown__column { padding: clamp(34px, 2.78vw, 48px); }
    .nav-dropdown h2 { font-size: 1rem; }
    .nav-dropdown__rule { margin: clamp(20px, 1.4vw, 24px) 0 clamp(22px, 1.5vw, 26px); }
    .dropdown-link-list { gap: clamp(24px, 1.97vw, 34px); }
    .dropdown-link-list a { font-size: clamp(.82rem, .93vw, 1rem); }
    .dropdown-link-list--small { gap: clamp(17px, 1.45vw, 25px); }
    .dropdown-link-list--small a { font-size: clamp(.76rem, .87vw, .94rem); }
    .about-preview { padding: clamp(12px, .81vw, 14px) clamp(17px, 1.27vw, 22px); }
    .about-preview + .about-preview { margin-top: clamp(10px, .93vw, 16px); }
    .about-preview strong { margin-bottom: 9px; font-size: clamp(.75rem, .83vw, .9rem); }
    .about-preview span { font-size: clamp(.88rem, .93vw, 1rem); }

    .has-dropdown:hover > .nav-link::after,
    .has-dropdown:focus-within > .nav-link::after,
    .has-dropdown.is-open > .nav-link::after {
        display: block;
        background: #fff;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__slide,
    :is(.nav-donate, .home-button, .home-link, .figma-link, .btn, .contact-form button)::before {
        transition-duration: .01ms;
    }
}

/* Contact page */
.contact-page {
    color: #30304f;
    background: #141422;
}

.contact-page .site-header {
    background: #141422;
}

.contact-page .site-header .figma-container,
.contact-page .site-footer .figma-container,
.contact-container {
    width: min(calc(100% - 112px), 1320px);
    max-width: 1320px;
}

.contact-hero {
    height: 510px;
    color: #fff;
    background: #141422;
}

.contact-hero__inner {
    display: flex;
    height: 100%;
    padding-bottom: 76px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, .62);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-kicker::before {
    width: 15px;
    height: 15px;
    content: "";
    background: #E6284B;
    border-radius: 3px;
}

.contact-hero h1 {
    margin: 27px 0 0;
    color: #fff;
    font-size: clamp(2.75rem, 4vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.contact-form-section {
    padding: 120px 0;
    background: #f4f5f8;
    border-bottom: 1px solid #d8d9e0;
}

.contact-form-card {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: 38px 40px 40px;
    background: #fff;
    border: 0;
    border-top: 5px solid #E6284B;
    border-radius: 4px 4px 0 0;
}

.contact-form-card h2 {
    margin: 0 0 40px;
    color: #30304f;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.18;
}

.contact-form-card input,
.contact-form-card textarea {
    display: block;
    width: 100%;
    color: #30304f;
    background: #fff;
    border: 1px solid #b9bac6;
    border-radius: 0;
    box-shadow: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .95rem;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form-card input {
    height: 62px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.contact-form-card textarea {
    min-height: 160px;
    padding: 20px;
    margin-bottom: 38px;
    resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #a5a6b3;
    opacity: 1;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: #E6284B;
    box-shadow: 0 0 0 2px rgba(230, 40, 75, .1);
}

.contact-form__names {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form-card button {
    position: relative;
    z-index: 0;
    display: inline-flex;
    min-width: 200px;
    height: 55px;
    padding: 0 28px 0 38px;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #E6284B;
    background: transparent;
    border: 1px solid #E6284B;
    border-left-width: 5px;
    border-radius: 3px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: uppercase;
    transition: color .35s ease;
}

.contact-form-card button::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: #E6284B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.contact-form-card button:hover,
.contact-form-card button:focus-visible {
    color: #fff;
}

.contact-form-card button:hover::before,
.contact-form-card button:focus-visible::before {
    transform: scaleX(1);
}

.contact-involvement {
    padding: 120px 0 118px;
    background: #fff;
}

.contact-involvement__grid {
    display: grid;
    grid-template-columns: minmax(360px, 505px) minmax(0, 1fr);
    gap: clamp(70px, 8.3vw, 120px);
    align-items: center;
}

.contact-involvement__image {
    height: 620px;
    overflow: hidden;
    border-left: 4px solid #E6284B;
    border-radius: 5px;
}

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

.contact-kicker--muted {
    color: #a1a1b0;
}

.contact-involvement__content h2 {
    margin: 27px 0 22px;
    color: #30304f;
    font-size: clamp(2.25rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.contact-involvement__content > p {
    margin: 0;
    color: #64657d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
}

.contact-involvement__links {
    margin-top: 86px;
}

.contact-involvement__links a {
    position: relative;
    z-index: 0;
    display: flex;
    min-height: 79px;
    padding: 0 3px;
    overflow: hidden;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    color: #30304f;
    border-bottom: 1px solid #c5c6cf;
    font-size: clamp(1.25rem, 1.65vw, 1.6rem);
    font-weight: 700;
    letter-spacing: -.02em;
    text-decoration: none;
    transition: color .25s ease, padding-left .35s ease;
}

.contact-involvement__links a::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: #E6284B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.contact-involvement__links a:hover,
.contact-involvement__links a:focus-visible {
    padding-left: 12px;
    color: #fff;
}

.contact-involvement__links a:hover::before,
.contact-involvement__links a:focus-visible::before {
    transform: scaleX(1);
}

.contact-involvement__links i {
    font-size: .82em;
}

.form-success {
    padding: 120px 0;
    background: #f4f5f8;
    border-bottom: 1px solid #d8d9e0;
}

.form-success__card {
    display: flex;
    width: min(100%, 680px);
    min-height: 410px;
    margin: 0 auto;
    padding: 45px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border-top: 5px solid #E6284B;
    border-radius: 4px 4px 0 0;
}

.form-success__icon {
    display: grid;
    width: 112px;
    height: 112px;
    margin-bottom: 40px;
    place-items: center;
    color: #E6284B;
    border: 1px solid #E6284B;
    border-radius: 50%;
    font-size: 2.6rem;
    line-height: 1;
}

.form-success__card h2 {
    margin: 0 0 42px;
    color: #30304f;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.2;
}

.form-success__button {
    position: relative;
    z-index: 0;
    display: inline-flex;
    min-width: 190px;
    height: 55px;
    padding: 0 27px 0 32px;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: #E6284B;
    background: transparent;
    border: 1px solid #E6284B;
    border-left-width: 5px;
    border-radius: 3px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .01em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .35s ease;
}

.form-success__button::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: #E6284B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.form-success__button:hover,
.form-success__button:focus-visible {
    color: #fff;
}

.form-success__button:hover::before,
.form-success__button:focus-visible::before {
    transform: scaleX(1);
}

@media (max-width: 991.98px) {
    .contact-page .site-header .figma-container,
    .contact-page .site-footer .figma-container,
    .contact-container {
        width: min(calc(100% - 64px), 1320px);
    }

    .contact-involvement__grid {
        grid-template-columns: minmax(280px, 40%) minmax(0, 1fr);
        gap: 50px;
    }

    .contact-involvement__image { height: 520px; }
    .contact-involvement__links { margin-top: 55px; }
}

@media (max-width: 767.98px) {
    .contact-page .site-header .figma-container,
    .contact-page .site-footer .figma-container,
    .contact-container {
        width: min(calc(100% - 36px), 1320px);
    }

    .contact-hero { height: 390px; }
    .contact-hero__inner { padding-bottom: 58px; }
    .contact-hero h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
    .contact-form-section { padding: 70px 0; }
    .contact-form-card { padding: 30px 24px 32px; }
    .contact-form__names { grid-template-columns: 1fr; gap: 0; }
    .contact-form-card button { width: 100%; }

    .contact-involvement { padding: 72px 0; }
    .contact-involvement__grid { grid-template-columns: 1fr; gap: 52px; }
    .contact-involvement__image { height: min(125vw, 560px); }
    .contact-involvement__links { margin-top: 48px; }
    .contact-involvement__links a { min-height: 70px; }

    .form-success { padding: 70px 0; }
    .form-success__card { min-height: 365px; padding: 40px 24px; }
    .form-success__icon { width: 96px; height: 96px; margin-bottom: 34px; }
    .form-success__card h2 { font-size: 1.3rem; }
}

/* SUDAI history pages */
.history-page {
    color: #333452;
    background: #141422;
}

.history-page .site-header {
    background: #141422;
}

.history-page .site-header .figma-container,
.history-page .site-footer .figma-container,
.history-container {
    width: min(calc(100% - 112px), 1320px);
    max-width: 1320px;
}

.history-hero {
    height: 600px;
    color: #fff;
    background: #141422;
}

.history-hero__inner {
    display: flex;
    height: 100%;
    padding-bottom: 82px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.history-kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, .6);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
    text-transform: uppercase;
}

.history-kicker::before {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    content: "";
    background: #E6284B;
    border-radius: 3px;
}

.history-hero h1 {
    max-width: 720px;
    margin: 26px 0 24px;
    color: #fff;
    font-size: clamp(3rem, 4.15vw, 4rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.history-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.65;
}

.history-article-section,
.milestones-section {
    background: #f4f5f8;
}

.history-article-section {
    padding: 120px 0 150px;
}

.history-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(340px, 1fr);
    gap: clamp(70px, 7vw, 105px);
    align-items: start;
}

.history-article h2 {
    margin: 0 0 24px;
    color: #333452;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.history-article h3 {
    margin: 44px 0 18px;
    color: #333452;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -.018em;
    line-height: 1.28;
}

.history-article p {
    margin: 0 0 25px;
    color: #696a82;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .98rem;
    line-height: 1.68;
}

.history-article-image {
    margin: 74px 0 0;
    overflow: hidden;
    border-left: 4px solid #E6284B;
    border-radius: 7px;
}

.history-article-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.62 / 1;
    object-fit: cover;
}

.milestones-section {
    padding: 145px 0 118px;
}

.milestones-list {
    padding-right: 60px;
    padding-left: 60px;
}

.milestone-item {
    display: grid;
    min-height: 202px;
    padding: 42px 0;
    grid-template-columns: minmax(310px, 38%) minmax(0, 1fr);
    gap: 38px;
    align-items: start;
    border-bottom: 1px solid #bec0ca;
}

.milestone-item:first-child {
    padding-top: 0;
}

.milestone-year {
    color: #333452;
    font-size: clamp(4.5rem, 7vw, 6.25rem);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: .92;
}

.milestone-year--ongoing {
    font-size: clamp(3.6rem, 5.8vw, 5rem);
}

.milestone-copy h2 {
    margin: 0 0 21px;
    color: #333452;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.milestone-copy p {
    margin: 0;
    color: #696a82;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.65;
}

@media (max-width: 991.98px) {
    .history-page .site-header .figma-container,
    .history-page .site-footer .figma-container,
    .history-container {
        width: min(calc(100% - 64px), 1320px);
    }

    .history-article-layout {
        grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr);
        gap: 50px;
    }

    .milestones-list {
        padding-right: 0;
        padding-left: 0;
    }

    .milestone-item {
        grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .history-page .site-header .figma-container,
    .history-page .site-footer .figma-container,
    .history-container {
        width: min(calc(100% - 36px), 1320px);
    }

    .history-hero {
        height: 520px;
    }

    .history-hero__inner {
        padding-bottom: 58px;
    }

    .history-hero h1 {
        font-size: clamp(2.5rem, 12vw, 3.4rem);
    }

    .history-hero p {
        font-size: .98rem;
    }

    .history-article-section,
    .milestones-section {
        padding: 72px 0 80px;
    }

    .history-article-layout {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }

    .history-article {
        display: contents;
    }

    .history-article h2 {
        font-size: 1.55rem;
    }

    .history-article h3 {
        font-size: 1.2rem;
    }

    .history-article-image {
        width: 100%;
        margin: 0;
        order: -1;
    }

    .milestone-item {
        min-height: 0;
        padding: 42px 0;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .milestone-year,
    .milestone-year--ongoing {
        font-size: clamp(3.7rem, 20vw, 5.2rem);
    }

    .milestone-copy h2 {
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
}

/* Leadership and structure directories */
.directory-hero h1 {
    max-width: 820px;
}

.directory-page--past .directory-hero h1 {
    max-width: 940px;
}

.directory-page--past .directory-hero p {
    max-width: 930px;
}

.leadership-directory,
.organization-chart-section,
.branch-directory-section,
.missionaries-section {
    background: #f4f5f8;
}

.leadership-directory {
    padding: 120px 0 140px;
}

.leadership-list {
    border-top: 1px solid transparent;
}

.leadership-row {
    display: grid;
    min-height: 80px;
    padding: 20px 0;
    grid-template-columns: 72px minmax(0, 1.45fr) minmax(250px, 1fr);
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #bfc1cb;
}

.leadership-row:nth-child(odd) {
    background: #e9e9ee;
}

.leadership-row__number {
    color: #a5a6b6;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-style: italic;
}

.leadership-row h2,
.leadership-row p,
.leadership-row strong {
    margin: 0;
}

.leadership-row h2 {
    color: #333452;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.leadership-row h2 a {
    color: inherit;
    text-decoration: none;
}

.leadership-row h2 a:hover,
.leadership-row h2 a:focus-visible {
    color: #E6284B;
}

.leadership-row p {
    color: #666780;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.35;
}

.leadership-row strong {
    color: #333452;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    text-align: right;
}

.directory-page--past .leadership-row {
    grid-template-columns: 72px minmax(0, 1.45fr) minmax(260px, 1fr) 75px;
}

.organization-chart-section {
    min-height: 920px;
}

.organization-chart-placeholder {
    display: grid;
    min-height: 920px;
    place-items: center;
    text-align: center;
}

.organization-chart-placeholder a {
    position: relative;
    z-index: 0;
    display: inline-block;
    padding: 18px 28px;
    overflow: hidden;
    color: #E6284B;
    font-size: clamp(2rem, 3.25vw, 3.25rem);
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .35s ease;
}

.organization-chart-placeholder a::before,
.branch-chip::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: #E6284B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.organization-chart-placeholder a:hover,
.organization-chart-placeholder a:focus-visible,
.branch-chip:hover,
.branch-chip:focus-visible {
    color: #fff;
}

.organization-chart-placeholder a:hover::before,
.organization-chart-placeholder a:focus-visible::before,
.branch-chip:hover::before,
.branch-chip:focus-visible::before {
    transform: scaleX(1);
}

.branch-directory-section {
    padding: 120px 0 135px;
}

.branch-directory-content > h2,
.division-zone-group h2,
.missionary-panel h2 {
    margin: 0 0 42px;
    color: #333452;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.025em;
}

.branch-chip-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(82px, 106px));
    gap: 38px 34px;
    justify-content: space-between;
}

.branch-chip,
.zone-chip-list .branch-chip {
    position: relative;
    z-index: 0;
    display: inline-flex;
    min-height: 48px;
    padding: 10px 20px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    color: #333452;
    background: #e8e8ed;
    border-bottom: 1px solid #bfc1cb;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: color .35s ease;
}

.division-zone-group + .division-zone-group {
    margin-top: 108px;
}

.zone-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.zone-chip-list .branch-chip {
    min-width: 105px;
}

.history-article-image--portrait img {
    aspect-ratio: 1 / 1;
    object-position: center top;
}

.missionaries-section {
    padding: 120px 0 140px;
}

.missionary-tabs {
    display: flex;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.missionary-tab {
    position: relative;
    z-index: 0;
    min-width: 130px;
    min-height: 58px;
    padding: 12px 22px;
    overflow: hidden;
    color: #55566f;
    background: #e8e8ed;
    border: 0;
    font-weight: 700;
    transition: color .35s ease, background .35s ease;
}

.missionary-tab::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: #E6284B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.missionary-tab:hover,
.missionary-tab:focus-visible,
.missionary-tab.is-active {
    color: #fff;
}

.missionary-tab:hover::before,
.missionary-tab:focus-visible::before,
.missionary-tab.is-active::before {
    transform: scaleX(1);
}

.missionary-panel[hidden] {
    display: none;
}

.missionary-chair,
.missionary-row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(190px, .8fr) minmax(190px, .65fr);
    gap: 30px;
    align-items: center;
}

.missionary-chair {
    min-height: 74px;
    padding: 0 45px 20px 0;
    border-bottom: 2px solid #E6284B;
}

.missionary-chair strong,
.missionary-chair a {
    color: #333452;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

.missionary-list {
    margin-top: 24px;
}

.missionary-row {
    min-height: 80px;
    padding: 18px 45px 18px 0;
    grid-template-columns: 72px minmax(0, 1.35fr) minmax(190px, .8fr) minmax(190px, .65fr);
    border-bottom: 1px solid #bfc1cb;
}

.missionary-row:nth-child(even) {
    background: #e8e8ed;
}

.missionary-row > span {
    color: #a5a6b6;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.missionary-row strong {
    color: #333452;
    font-size: 1rem;
}

.missionary-row a {
    color: #696a82;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .leadership-row,
    .directory-page--past .leadership-row {
        grid-template-columns: 55px minmax(0, 1.35fr) minmax(210px, 1fr);
    }

    .directory-page--past .leadership-row strong {
        grid-column: 3;
        text-align: left;
    }

    .branch-chip-grid {
        grid-template-columns: repeat(5, minmax(82px, 1fr));
    }

    .missionary-chair,
    .missionary-row {
        grid-template-columns: 55px minmax(0, 1.2fr) minmax(150px, .8fr) minmax(140px, .65fr);
    }

    .missionary-chair {
        grid-template-columns: minmax(0, 1.2fr) minmax(150px, .8fr) minmax(140px, .65fr);
    }
}

@media (max-width: 767.98px) {
    .directory-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.2rem);
    }

    .leadership-directory,
    .branch-directory-section,
    .missionaries-section {
        padding: 72px 0 80px;
    }

    .leadership-row,
    .directory-page--past .leadership-row {
        padding: 20px 14px;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 8px 14px;
    }

    .leadership-row p,
    .directory-page--past .leadership-row strong {
        grid-column: 2;
    }

    .organization-chart-section,
    .organization-chart-placeholder {
        min-height: 560px;
    }

    .organization-chart-placeholder a {
        padding: 15px 8px;
        font-size: 1.65rem;
    }

    .branch-chip-grid {
        grid-template-columns: repeat(3, minmax(70px, 1fr));
        gap: 18px 14px;
    }

    .branch-chip,
    .zone-chip-list .branch-chip {
        min-height: 44px;
        padding: 9px 12px;
        font-size: .9rem;
    }

    .division-zone-group + .division-zone-group {
        margin-top: 72px;
    }

    .missionary-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .missionary-tab {
        min-width: 0;
    }

    .missionary-chair,
    .missionary-row {
        padding-right: 12px;
        padding-left: 12px;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .missionary-row > span {
        grid-row: span 3;
    }

    .missionary-row {
        grid-template-columns: 36px 1fr;
    }

    .missionary-row strong,
    .missionary-row a {
        grid-column: 2;
    }
}

@media (min-width: 992px) {
    .nav-dropdown--about {
        height: auto;
        min-height: min(555px, 32.12vw);
        align-items: stretch;
    }

    .nav-dropdown--about > .nav-dropdown__column {
        min-height: inherit;
        align-self: stretch;
    }

    .dropdown-link-list--history-all {
        grid-template-columns: minmax(0, 1fr);
        gap: clamp(7px, .55vw, 10px);
    }

    .dropdown-link-list--history-all a {
        width: 100%;
        min-height: 27px;
        justify-content: space-between;
        gap: 8px;
        font-size: clamp(.7rem, .75vw, .8rem);
        line-height: 1.2;
    }

    .dropdown-link-list--history-all a i {
        flex: 0 0 auto;
    }
}

/* Youthwing pages */
.youthwing-page {
    background: #141422;
}

.youthwing-page .site-header {
    background: #141422;
}

.youthwing-page .site-header .figma-container,
.youthwing-page .site-footer .figma-container,
.youth-container {
    width: min(calc(100% - 112px), 1320px);
    max-width: 1320px;
}

.youthwing-hero h1 {
    max-width: 760px;
}

.youthwing-hero p {
    max-width: 760px;
}

.youth-board-section,
.youth-zonal-section,
.youth-mission-section,
.youth-objectives-section {
    background: #f4f5f8;
}

.youth-board-section {
    padding: 120px 0 135px;
}

.youth-board-tabs {
    display: flex;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.youth-board-tab {
    position: relative;
    z-index: 0;
    min-width: 180px;
    min-height: 54px;
    padding: 12px 24px;
    overflow: hidden;
    color: #575870;
    background: #e8e8ed;
    border: 0;
    font-size: .78rem;
    font-weight: 700;
    transition: color .35s ease;
}

.youth-board-tab::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: #E6284B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.youth-board-tab:hover,
.youth-board-tab:focus-visible,
.youth-board-tab.is-active {
    color: #fff;
}

.youth-board-tab:hover::before,
.youth-board-tab:focus-visible::before,
.youth-board-tab.is-active::before {
    transform: scaleX(1);
}

.youth-board-panel[hidden],
.youth-zone-panel[hidden] {
    display: none;
}

.youth-board-heading {
    padding-bottom: 42px;
    border-bottom: 1px solid #bfc1cb;
}

.youth-board-heading h2 {
    margin: 0 0 12px;
    color: #333452;
    font-size: clamp(1.9rem, 2.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -.03em;
}

.youth-board-heading h2 sup {
    font-size: .58em;
}

.youth-board-heading p {
    margin: 0;
    color: #55566f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
}

.youth-board-list {
    margin-top: 30px;
}

.youth-board-row {
    display: grid;
    min-height: 70px;
    padding: 17px 0;
    grid-template-columns: 74px minmax(0, 1.5fr) minmax(150px, .55fr) minmax(180px, .45fr);
    gap: 22px;
    align-items: center;
    border-bottom: 1px solid #bfc1cb;
}

.youth-board-row:nth-child(even) {
    background: #e8e8ed;
}

.youth-board-row > span {
    color: #a5a6b6;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-style: italic;
}

.youth-board-row > strong {
    color: #333452;
    font-size: 1.08rem;
}

.youth-board-row > small,
.youth-board-row > b {
    color: #666780;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .95rem;
    font-weight: 400;
}

.youth-board-row > b {
    color: #333452;
    font-weight: 700;
}

.youth-stories {
    padding: 125px 0 115px;
    color: #fff;
    background: #141422;
}

.youth-stories__heading {
    margin-bottom: 80px;
    text-align: center;
}

.youth-stories__heading .history-kicker {
    justify-content: center;
}

.youth-stories__heading h2 {
    margin: 27px 0 0;
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -.03em;
}

.youth-story-card {
    display: flex;
    width: min(100%, 1000px);
    min-height: 380px;
    margin: 0 auto;
    padding: 62px 90px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #343452;
    text-align: center;
}

.youth-story-card > i {
    margin-bottom: 42px;
    color: rgba(255, 255, 255, .2);
    font-size: 3rem;
}

.youth-story-card p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.6;
}

.youth-story-card cite {
    display: block;
    margin-top: 38px;
    font-size: .7rem;
    font-style: normal;
    text-transform: uppercase;
}

.youth-story-card cite strong,
.youth-story-card cite span {
    display: block;
}

.youth-story-card cite span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .58);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    text-transform: none;
}

.youth-story-progress {
    width: min(100%, 1000px);
    height: 1px;
    margin: 80px auto 0;
    background: rgba(255, 255, 255, .12);
}

.youth-story-progress span {
    display: block;
    width: 33.333%;
    height: 2px;
    background: #E6284B;
}

.testimonial-slide[hidden] {
    display: none !important;
}

.testimonial-progress {
    display: flex;
    height: auto;
    gap: 7px;
    background: transparent;
}

.testimonial-progress button {
    display: block;
    flex: 1 1 0;
    padding: 10px 0;
    background: transparent;
    border: 0;
}

.testimonial-progress button span {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .12);
    transition: height .2s ease, background-color .2s ease;
}

.testimonial-progress button.is-active span,
.testimonial-progress button:hover span,
.testimonial-progress button:focus-visible span {
    height: 2px;
    background: #E6284B;
}

.testimonial-progress button:focus-visible {
    outline: 1px solid rgba(230, 40, 75, .75);
    outline-offset: 2px;
}

.site-header .nav-link.active,
.home-page .site-header .nav-link.active {
    color: #E6284B !important;
}

.youth-zonal-section {
    padding: 120px 0 135px;
}

.youth-zone-heading {
    padding-bottom: 40px;
    border-bottom: 1px solid #bfc1cb;
}

.youth-zone-heading h2 {
    margin: 0 0 10px;
    color: #333452;
    font-size: 2.15rem;
    font-weight: 700;
}

.youth-zone-heading p {
    margin: 0;
    color: #666780;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
}

.youth-zone-list {
    margin-top: 28px;
}

.youth-zone-row {
    display: grid;
    min-height: 96px;
    padding: 18px 18px;
    grid-template-columns: minmax(190px, .85fr) minmax(240px, 1fr) minmax(240px, 1fr);
    gap: 40px;
    align-items: center;
    border-bottom: 1px solid #bfc1cb;
}

.youth-zone-row:nth-child(even) {
    background: #e8e8ed;
}

.youth-zone-row > strong,
.youth-zone-row div b,
.youth-zone-row div span,
.youth-zone-row div a {
    display: block;
}

.youth-zone-row > strong,
.youth-zone-row div b {
    color: #333452;
    font-size: 1rem;
}

.youth-zone-row div span,
.youth-zone-row div a {
    color: #696a82;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .82rem;
    text-decoration: none;
}

.youth-zone-row div b {
    margin: 3px 0;
}

.youth-zone-row div a i {
    margin-left: 7px;
}

.youth-formation-section {
    padding-bottom: 160px;
}

.youth-formation-image img {
    aspect-ratio: 1.62 / 1;
}

.youth-objective-list {
    margin: -12px 0 25px;
    padding-left: 24px;
    color: #696a82;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .98rem;
    line-height: 1.62;
}

.youth-mission-section {
    padding: 115px 0;
}

.youth-mission-section--bordered {
    border-top: 1px solid #cfd0d8;
    border-bottom: 1px solid #cfd0d8;
}

.youth-mission-row {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(0, 1.18fr);
    gap: clamp(70px, 8.5vw, 125px);
    align-items: center;
}

.youth-mission-row--reverse {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 1fr);
}

.youth-mission-image {
    margin: 0;
    overflow: hidden;
    border-left: 4px solid #E6284B;
    border-radius: 6px;
}

.youth-mission-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.24 / 1;
    object-fit: cover;
}

.history-kicker--dark {
    color: #9a9bac;
}

.youth-mission-copy h2 {
    margin: 25px 0 20px;
    color: #333452;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: -.035em;
}

.youth-mission-copy p {
    max-width: 580px;
    margin: 0;
    color: #696a82;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.65;
}

.youth-objectives-section {
    padding: 95px 0;
}

.youth-objectives-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.youth-objectives-layout ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.youth-objectives-layout li {
    position: relative;
    padding: 0 0 22px 31px;
    color: #333452;
    font-size: 1.25rem;
    font-weight: 700;
}

.youth-objectives-layout li::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 14px;
    height: 14px;
    content: "";
    border: 2px solid #E6284B;
}

.youth-prayer-banner {
    min-height: 700px;
    background:
        linear-gradient(rgba(20, 20, 34, .56), rgba(20, 20, 34, .56)),
        var(--youth-prayer-image) center/cover no-repeat;
    filter: grayscale(1);
}

@media (max-width: 991.98px) {
    .youthwing-page .site-header .figma-container,
    .youthwing-page .site-footer .figma-container,
    .youth-container {
        width: min(calc(100% - 64px), 1320px);
    }

    .youth-board-row {
        grid-template-columns: 56px minmax(0, 1.35fr) minmax(100px, .5fr) minmax(135px, .5fr);
    }

    .youth-zone-row {
        grid-template-columns: minmax(130px, .75fr) 1fr 1fr;
        gap: 24px;
    }

    .youth-prayer-banner {
        min-height: 520px;
    }
}

@media (max-width: 767.98px) {
    .youthwing-page .site-header .figma-container,
    .youthwing-page .site-footer .figma-container,
    .youth-container {
        width: min(calc(100% - 36px), 1320px);
    }

    .youth-board-section,
    .youth-zonal-section,
    .youth-mission-section,
    .youth-objectives-section {
        padding: 72px 0 80px;
    }

    .youth-board-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .youth-board-tab {
        min-width: 0;
        padding: 11px 14px;
    }

    .youth-board-heading h2 {
        font-size: 1.65rem;
    }

    .youth-board-row {
        padding: 18px 14px;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 7px 12px;
    }

    .youth-board-row > small,
    .youth-board-row > b {
        grid-column: 2;
    }

    .youth-stories {
        padding: 80px 0;
    }

    .youth-stories__heading {
        margin-bottom: 48px;
    }

    .youth-story-card {
        min-height: 360px;
        padding: 45px 25px;
    }

    .youth-story-card p {
        font-size: 1rem;
    }

    .youth-story-progress {
        margin-top: 55px;
    }

    .youth-zone-row {
        padding: 20px 14px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .youth-mission-row,
    .youth-mission-row--reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .youth-mission-row--reverse .youth-mission-copy {
        order: 2;
    }

    .youth-objectives-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .youth-objectives-layout li {
        font-size: 1.05rem;
    }

    .youth-prayer-banner {
        min-height: 380px;
    }
}

/* Program pages */
.program-page {
    color: #333452;
    background: #141422;
}

.program-page .site-header {
    background: #141422;
}

.program-page .site-header .figma-container,
.program-page .site-footer .figma-container,
.program-container {
    width: min(calc(100% - 112px), 1320px);
    max-width: 1320px;
}

.program-hero h1 {
    max-width: 620px;
}

.program-hero p {
    max-width: 820px;
}

.program-about {
    padding: 112px 0;
    background: #f4f5f8;
}

.program-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(70px, 8vw, 120px);
    align-items: center;
}

.program-about__image {
    margin: 0;
    overflow: hidden;
    border-left: 4px solid #E6284B;
    border-radius: 6px;
}

.program-about__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.12 / 1;
    object-fit: cover;
}

.program-about__copy h2 {
    max-width: 570px;
    margin: 25px 0 22px;
    color: #333452;
    font-size: clamp(2.2rem, 3.4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -.035em;
}

.program-about__copy p {
    margin: 0 0 21px;
    color: #696a82;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .98rem;
    line-height: 1.65;
}

.program-showcase {
    padding: 105px 0;
    background: #141422;
}

.program-showcase__card {
    display: grid;
    width: min(100%, 1130px);
    margin: 0 auto;
    grid-template-columns: 1.08fr .92fr;
    overflow: hidden;
    background: #343452;
}

.program-showcase__copy {
    display: flex;
    min-height: 500px;
    padding: 72px 70px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.program-showcase__copy h2 {
    margin: 25px 0 22px;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.12;
    letter-spacing: -.03em;
}

.program-showcase__copy p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .78);
    font-family: Georgia, "Times New Roman", serif;
    font-size: .95rem;
    line-height: 1.65;
}

.program-showcase__copy .figma-link {
    min-width: 155px;
    min-height: 52px;
    justify-content: center;
    color: #fff;
    border-color: #E6284B;
}

.program-showcase__card figure {
    margin: 0;
}

.program-showcase__card figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-gallery-section {
    padding: 105px 0 130px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    color: #fff;
    background: #141422;
}

.program-section-heading {
    margin-bottom: 75px;
    text-align: center;
}

.program-section-heading .history-kicker {
    justify-content: center;
}

.program-section-heading h2 {
    max-width: 730px;
    margin: 26px auto 0;
    color: #fff;
    font-size: clamp(2.1rem, 3.3vw, 3.1rem);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.program-gallery {
    display: grid;
    gap: 20px;
}

.program-gallery--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-gallery--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-gallery--single {
    grid-template-columns: 1fr;
}

.program-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
}

.program-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.program-gallery--single figure {
    width: min(100%, 1240px);
    margin: 0 auto;
}

.program-gallery--single img {
    aspect-ratio: 2.18 / 1;
}

.program-directory {
    padding: 110px 0 140px;
    background: #f4f5f8;
}

.program-filters {
    display: grid;
    padding-bottom: 30px;
    grid-template-columns: auto minmax(250px, 1fr) minmax(190px, .8fr) 125px;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #E6284B;
}

.program-filters > strong {
    color: #333452;
    font-size: .86rem;
    text-transform: uppercase;
}

.program-search {
    display: flex;
    min-height: 54px;
    padding: 0 20px;
    align-items: center;
    border: 1px solid #b7b9c5;
    background: #fff;
}

.program-search i {
    margin-right: 13px;
    color: #E6284B;
    font-size: 1.15rem;
}

.program-search input,
.program-filters select {
    width: 100%;
    min-height: 52px;
    color: #55566f;
    background: #fff;
    border: 1px solid #b7b9c5;
    outline: 0;
}

.program-search input {
    min-height: auto;
    border: 0;
}

.program-filters select {
    padding: 0 18px;
}

.program-filter-button {
    position: relative;
    z-index: 0;
    min-height: 54px;
    overflow: hidden;
    color: #E6284B;
    background: transparent;
    border: 1px solid #E6284B;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color .35s ease;
}

.program-filter-button::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: #E6284B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.program-filter-button:hover,
.program-filter-button:focus-visible {
    color: #fff;
}

.program-filter-button:hover::before,
.program-filter-button:focus-visible::before {
    transform: scaleX(1);
}

.program-card-grid {
    display: grid;
    margin-top: 38px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.program-poster-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #ddd;
}

.program-poster-card[hidden] {
    display: none;
}

.program-poster-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .6s ease;
}

.program-poster-card:hover img {
    transform: scale(1.025);
}

.program-poster-card__link {
    position: absolute;
    z-index: 1;
    bottom: 50%;
    left: 50%;
    display: flex;
    min-width: 170px;
    min-height: 55px;
    padding: 12px 24px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    color: #fff;
    background: #E6284B;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    transform: translate(-50%, 50%);
    transition: opacity .35s ease, color .35s ease;
}

.program-poster-card:first-child::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(255, 255, 255, .7);
}

.program-poster-card:first-child .program-poster-card__link,
.program-poster-card:hover .program-poster-card__link,
.program-poster-card:focus-within .program-poster-card__link {
    z-index: 2;
    opacity: 1;
}

.program-empty {
    margin: 55px 0 0;
    color: #696a82;
    font-family: Georgia, "Times New Roman", serif;
    text-align: center;
}

@media (max-width: 991.98px) {
    .program-page .site-header .figma-container,
    .program-page .site-footer .figma-container,
    .program-container {
        width: min(calc(100% - 64px), 1320px);
    }

    .program-about__grid {
        gap: 55px;
    }

    .program-showcase__copy {
        min-height: 430px;
        padding: 50px 42px;
    }

    .program-gallery--four {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .program-filters {
        grid-template-columns: auto 1fr 1fr;
    }

    .program-filter-button {
        grid-column: 2 / 3;
    }
}

@media (max-width: 767.98px) {
    .program-page .site-header .figma-container,
    .program-page .site-footer .figma-container,
    .program-container {
        width: min(calc(100% - 36px), 1320px);
    }

    .program-about,
    .program-directory {
        padding: 75px 0 85px;
    }

    .program-about__grid,
    .program-showcase__card {
        grid-template-columns: 1fr;
    }

    .program-about__grid {
        gap: 50px;
    }

    .program-showcase {
        padding: 75px 0;
    }

    .program-showcase__copy {
        min-height: auto;
        padding: 52px 30px;
    }

    .program-showcase__card figure img {
        aspect-ratio: 1 / 1;
    }

    .program-gallery-section {
        padding: 78px 0 90px;
    }

    .program-section-heading {
        margin-bottom: 48px;
    }

    .program-gallery--four,
    .program-gallery--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .program-gallery--single img {
        aspect-ratio: 1.25 / 1;
    }

    .program-filters {
        grid-template-columns: 1fr;
    }

    .program-filter-button {
        grid-column: auto;
    }

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

/* Resource pages */
.resource-hero h1 {
    max-width: 650px;
}

.resource-hero p {
    max-width: 820px;
}

.resource-directory,
.resource-gallery-section {
    padding: 105px 0 130px;
    background: #f4f5f8;
}

.resource-filters {
    max-width: 100%;
}

[data-resource-item][hidden] {
    display: none;
}

.resource-card-grid {
    display: grid;
    margin-top: 38px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.resource-card {
    overflow: hidden;
    border: 1px solid #b9bbc5;
    border-radius: 4px;
    background: #fff;
    transition: border-color .35s ease, transform .35s ease;
}

.resource-card:hover,
.resource-card:focus-within {
    border-color: #E6284B;
    transform: translateY(-2px);
}

.resource-card > img {
    display: block;
    width: calc(100% - 30px);
    margin: 15px 15px 0;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
}

.resource-card > div {
    padding: 17px 15px 25px;
}

.resource-card small {
    display: block;
    margin-bottom: 12px;
    color: #a0a1af;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .78rem;
}

.resource-card h2 {
    margin: 0;
    font-size: 1.1rem;
}

.resource-card h2 a,
.resource-news-item h2 a {
    color: #333452;
    text-decoration: none;
    transition: color .35s ease;
}

.resource-card:hover h2 a,
.resource-card:focus-within h2 a,
.resource-news-item:hover h2 a,
.resource-news-item:focus-within h2 a {
    color: #E6284B;
}

.resource-load-wrap {
    display: flex;
    margin-top: 48px;
    justify-content: center;
}

.resource-load-button {
    min-width: 175px;
    min-height: 52px;
    justify-content: center;
    color: #E6284B;
    background: transparent;
    border: 1px solid #E6284B;
}

.resource-load-button[hidden] {
    display: none;
}

.resource-news-list {
    margin-top: 42px;
}

.resource-news-item {
    display: grid;
    padding: 32px 0;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 55px;
    align-items: center;
    border-bottom: 1px solid #bfc1cb;
}

.resource-news-item:first-child {
    border-bottom-color: #E6284B;
}

.resource-news-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1.62 / 1;
    object-fit: cover;
}

.resource-news-item h2 {
    margin: 0 0 16px;
    font-size: 1.3rem;
}

.resource-news-item p {
    margin: 0;
    color: #696a82;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .98rem;
    line-height: 1.65;
}

.resource-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.resource-photo-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
}

.resource-photo-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .55s ease;
}

.resource-photo-grid figure:hover img {
    transform: scale(1.035);
}

.resource-video-section {
    padding-top: 115px;
}

.resource-video-grid {
    display: grid;
    width: min(100%, 1160px);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.resource-video {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #aeb0bc;
    border-radius: 5px;
    background: #ddd;
}

.resource-video img {
    display: block;
    width: 100%;
    aspect-ratio: 1.86 / 1;
    object-fit: cover;
    transition: transform .55s ease, filter .55s ease;
}

.resource-video span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #fff;
    background: rgba(20, 20, 34, .48);
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background .4s ease, transform .4s ease;
}

.resource-video span i {
    margin-left: 4px;
    font-size: 1.8rem;
}

.resource-video:hover img,
.resource-video:focus-visible img {
    transform: scale(1.025);
    filter: brightness(.78);
}

.resource-video:hover span,
.resource-video:focus-visible span {
    background: #E6284B;
    transform: translate(-50%, -50%) scale(1.08);
}

@media (max-width: 991.98px) {
    .resource-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .resource-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .resource-news-item {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 35px;
    }
}

@media (max-width: 767.98px) {
    .resource-directory,
    .resource-gallery-section {
        padding: 75px 0 88px;
    }

    .resource-card-grid,
    .resource-video-grid {
        grid-template-columns: 1fr;
    }

    .resource-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .resource-news-item {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .resource-news-item img {
        width: min(100%, 420px);
    }
}

/* Get involved pages */
.involvement-hero {
    height: 570px;
}

.involvement-hero h1 {
    max-width: 660px;
}

.involvement-hero p {
    max-width: 700px;
    margin: 50px 0 0;
    color: rgba(255, 255, 255, .82);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.6;
}

.involvement-form-section {
    padding: 118px 0 135px;
}

.involvement-form {
    width: min(100%, 680px);
    padding: 40px 40px 42px;
}

.involvement-form h2 {
    margin-bottom: 38px;
}

.involvement-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
}

.involvement-form label {
    display: block;
}

.involvement-form select {
    display: block;
    width: 100%;
    height: 62px;
    padding: 0 20px;
    margin-bottom: 20px;
    color: #a5a6b3;
    background: #fff;
    border: 1px solid #b9bac6;
    border-radius: 0;
    box-shadow: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .95rem;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.involvement-form select:focus {
    color: #30304f;
    border-color: #E6284B;
    box-shadow: 0 0 0 2px rgba(230, 40, 75, .1);
}

.involvement-options {
    padding: 0;
    margin: 4px 0 30px;
    border: 0;
}

.involvement-options legend {
    float: none;
    width: auto;
    margin: 0 0 14px;
    color: #30304f;
    font-size: .9rem;
    font-weight: 700;
}

.involvement-choice {
    display: flex !important;
    min-height: 31px;
    align-items: center;
    gap: 11px;
    color: #62637a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .98rem;
    cursor: pointer;
}

.involvement-choice input,
.donation-amounts input,
.donation-payments input {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    opacity: 0;
    pointer-events: none;
}

.involvement-choice > span {
    position: relative;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    border: 1px solid #E6284B;
}

.involvement-choice input:checked + span::after {
    position: absolute;
    inset: 2px;
    content: "";
    background: #E6284B;
}

.involvement-choice input:focus-visible + span {
    outline: 2px solid rgba(230, 40, 75, .35);
    outline-offset: 3px;
}

.involvement-choice--standalone {
    margin: 4px 0 18px;
}

.involvement-page--volunteer .involvement-form,
.involvement-page--donation .involvement-form,
.involvement-page--partner .involvement-form {
    width: min(100%, 700px);
}

.involvement-page--donation .involvement-form textarea,
.involvement-page--partner .involvement-form textarea {
    min-height: 145px;
    margin-bottom: 25px;
}

.donation-options {
    margin-bottom: 20px;
}

.donation-amounts,
.donation-payments {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
}

.donation-payments {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.donation-amounts label,
.donation-payments label {
    cursor: pointer;
}

.donation-amounts label > span,
.donation-payments label > span {
    display: flex;
    min-height: 52px;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #55566f;
    background: #e9e9ee;
    font-size: .82rem;
    font-weight: 700;
    text-align: center;
    transition: color .3s ease, background .3s ease;
}

.donation-amounts input:checked + span,
.donation-payments input:checked + span {
    color: #fff;
    background: #E6284B;
}

.donation-amounts input:focus-visible + span,
.donation-payments input:focus-visible + span {
    outline: 2px solid rgba(230, 40, 75, .4);
    outline-offset: 2px;
}

.donation-payments label > span {
    min-height: 55px;
}

.involvement-partners {
    padding: 105px 0 120px;
    background: #fff;
}

.involvement-partners__grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 55px;
    align-items: start;
}

.involvement-partners__grid h2 {
    margin: 12px 0 0;
}

.involvement-partner-logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 35px 28px;
}

.involvement-partner-logos span {
    display: grid;
    min-height: 85px;
    place-items: center;
    color: #aaaab7;
    background: #fff;
    border: 1px solid #d2d3da;
    border-left: 3px solid #E6284B;
    font-size: 1.45rem;
    font-weight: 700;
    text-transform: lowercase;
}

@media (max-width: 991.98px) {
    .involvement-partners__grid {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 35px;
    }

    .involvement-partner-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .involvement-hero {
        height: auto;
        min-height: 500px;
    }

    .involvement-hero p {
        margin-top: 32px;
        font-size: .98rem;
    }

    .involvement-form__grid {
        grid-template-columns: 1fr;
    }

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

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

    .involvement-partners {
        padding: 72px 0 82px;
    }

    .involvement-partners__grid {
        grid-template-columns: 1fr;
    }

    .involvement-partner-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

.contact-details {
    padding: 38px 0;
    background: #fff;
    border-bottom: 1px solid #d8d9e0;
}

.contact-details__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-detail-card {
    min-height: 132px;
    padding: 24px;
    background: #f4f5f8;
    border-left: 3px solid #E6284B;
}

.contact-detail-card i {
    display: block;
    margin-bottom: 14px;
    color: #E6284B;
    font-size: 1.35rem;
}

.contact-detail-card span {
    display: block;
    margin-bottom: 8px;
    color: #74748A;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-detail-card a,
.contact-detail-card strong {
    display: block;
    color: #141422;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.45;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .contact-details__grid {
        grid-template-columns: 1fr;
    }
}

/* Phase 7 resource details */
.resource-download-link,
.resource-detail-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.resource-detail-body {
    background: #f5f5f8;
    padding: 80px 0;
}

.resource-detail-grid,
.resource-video-detail-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}

.resource-detail-article,
.resource-detail-aside,
.resource-video-embed {
    background: #fff;
    border: 1px solid rgba(20, 20, 34, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(20, 20, 34, 0.08);
}

.resource-detail-article {
    overflow: hidden;
}

.resource-detail-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.resource-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 24px 28px 0;
    color: #74748A;
    font-size: 0.95rem;
}

.resource-detail-content {
    padding: 24px 28px 34px;
    color: #141422;
    font-size: 1.02rem;
    line-height: 1.9;
}

.resource-detail-aside {
    padding: 28px;
}

.resource-detail-aside h2 {
    margin: 0 0 18px;
    font-size: 1.35rem;
    color: #141422;
}

.resource-detail-aside dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.resource-detail-aside dt {
    color: #74748A;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.resource-detail-aside dd {
    margin: -10px 0 0;
    color: #141422;
    font-weight: 700;
}

.resource-video-embed {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #141422;
}

.resource-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.resource-video-info .figma-link {
    margin-top: 24px;
}

@media (max-width: 991px) {
    .resource-detail-grid,
    .resource-video-detail-wrap {
        grid-template-columns: 1fr;
    }
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-consent {
    margin-top: 18px;
    color: #74748A;
}

@media (min-width: 992px) {
    .nav-dropdown--programs {
        height: auto;
        min-height: 520px;
        padding-bottom: 46px;
    }

    .nav-dropdown--programs .dropdown-link-list--small {
        gap: 18px;
    }

    .nav-dropdown--programs .dropdown-link-list--small a {
        width: 100%;
        justify-content: space-between;
        line-height: 1.25;
    }
}
