:root {
    --ink: #17252f;
    --deep: #143d52;
    --teal: #0b8c90;
    --teal-soft: #d9f0ef;
    --maroon: #20204a;
    --maroon-dark: #111731;
    --saffron: #77d7d9;
    --ivory: #f3f8f8;
    --paper: #e6f2f2;
    --white: #ffffff;
    --muted: #5d7078;
    --line: #c9dddd;
    --shadow: 0 20px 54px rgba(20, 61, 82, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}
body, button, input, textarea { font-family: "DM Sans", Arial, sans-serif; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1, h2 { font-family: "Fraunces", Georgia, serif; }
h1 { font-size: clamp(40px, 5vw, 72px); }
h2 { font-size: clamp(31px, 3.4vw, 50px); }
h3 { font-size: 22px; }
p { margin: 0; }
ul { margin: 0; padding-left: 20px; }

.container { width: min(100% - 48px, 1180px); margin-inline: auto; }
.section { padding: 102px 0; }
.section-soft { background: var(--paper); }
.eyebrow {
    margin-bottom: 14px;
    color: var(--maroon);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.section-copy p, .section-head p, .contact-section p, .gallery-layout p {
    color: var(--muted);
    font-size: 17px;
}
.section-copy p + p { margin-top: 17px; }
.section-copy h2, .section-head h2, .contact-section h2, .gallery-layout h2 { margin-bottom: 22px; color: var(--deep); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head-wide {
    display: grid;
    max-width: none;
    grid-template-columns: 1fr minmax(260px, 430px);
    align-items: end;
    gap: 56px;
}

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--maroon);
    border-radius: 8px;
    background: var(--maroon);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(122, 31, 43, .22); }
.btn-small { min-height: 46px; padding-inline: 18px; }
.btn-outline { border-color: var(--teal); background: transparent; color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); box-shadow: 0 14px 30px rgba(15, 127, 129, .2); }
.card-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 8px;
    background: var(--teal-soft);
    color: var(--teal);
}
.card-icon svg { width: 26px; height: 26px; }

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(201, 221, 221, .9);
    background: rgba(243, 248, 248, .95);
    backdrop-filter: blur(14px);
}
.nav-wrap {
    position: relative;
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand-logo {
    width: 86px;
    height: 62px;
    object-fit: contain;
    object-position: left center;
}
.site-header .brand-logo {
    width: 96px;
    height: 66px;
}
.brand-light .brand-logo {
    width: 124px;
    height: auto;
    padding: 8px;
    border-radius: 8px;
    background: var(--white);
}
.admin-topbar .brand-logo {
    width: 104px;
    height: 72px;
}
.brand-mark {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--saffron);
    border-radius: 8px;
    background: var(--maroon);
    color: var(--white);
    font-family: "Fraunces", Georgia, serif;
    font-size: 19px;
    font-weight: 750;
}
.brand-copy { display: grid; min-width: 0; gap: 2px; }
.brand-copy strong { color: var(--deep); font-size: 20px; font-weight: 800; line-height: 1; }
.brand-copy small {
    max-width: 260px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
    position: relative;
    padding: 28px 0;
    color: var(--deep);
    font-size: 14px;
    font-weight: 800;
}
.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 21px;
    left: 0;
    height: 2px;
    background: var(--saffron);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition: opacity .2s ease, transform .2s ease;
}
.main-nav a:hover::after { opacity: 1; transform: scaleX(1); }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    border-radius: 8px;
    background: var(--teal-soft);
    cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--deep); }

.hero {
    overflow: hidden;
    background: #0a4141;
}
.hero picture, .hero img { display: block; width: 100%; }
.hero img {
    min-height: 500px;
    max-height: calc(100vh - 86px);
    object-fit: cover;
    object-position: center top;
}

.intro-band {
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}
.intro-grid h1 { margin-bottom: 16px; color: var(--deep); }
.intro-grid p:not(.eyebrow) { max-width: 740px; color: var(--muted); font-size: 18px; }
.intro-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.stats-strip, .impact-band {
    padding: 30px 0;
    background: var(--deep);
    color: var(--white);
}
.stats-grid, .impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .18);
}
.stats-grid article, .impact-grid article {
    min-height: 120px;
    padding: 24px;
    background: rgba(255, 255, 255, .07);
}
.stats-grid strong, .impact-grid strong {
    display: block;
    color: var(--saffron);
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
}
.stats-grid span, .impact-grid span {
    display: block;
    margin-top: 9px;
    color: #e7f3f0;
    font-size: 13px;
    font-weight: 800;
}

.purpose-section { background: var(--white); }
.purpose-layout {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: start;
    gap: 72px;
}
.purpose-layout h2 { color: var(--deep); }
.purpose-layout > p { color: var(--muted); font-size: 22px; font-weight: 600; line-height: 1.5; }

.image-story-strip {
    padding: 18px 0 96px;
    background: var(--white);
}
.image-story-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr 1fr;
    gap: 12px;
}
.image-story-grid figure {
    min-height: 280px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
}
.image-story-grid figure:first-child { grid-row: span 2; }
.image-story-grid figure:nth-child(4) { grid-column: span 2; }
.image-story-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: start;
    gap: 70px;
}
.vision-panel {
    display: grid;
    gap: 14px;
}
.vision-panel article, .why-card, .contact-form, .hours-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(23, 63, 70, .07);
}
.vision-panel span {
    display: block;
    margin-bottom: 12px;
    color: var(--maroon);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.vision-panel p, .vision-panel li { color: var(--muted); }
.vision-panel li + li { margin-top: 8px; }

.values-section { background: var(--ivory); }
.value-grid, .benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.value-grid article, .benefit-grid article, .activity-grid article {
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(23, 63, 70, .06);
}
.activity-grid article {
    overflow: hidden;
    padding: 0;
}
.activity-grid img {
    height: 190px;
    object-fit: cover;
}
.activity-grid h3 { padding: 0 26px; }
.activity-grid p { padding: 0 26px 28px; }
.value-grid h3, .benefit-grid h3, .activity-grid h3 {
    margin: 22px 0 10px;
    color: var(--deep);
}
.value-grid p, .benefit-grid p, .activity-grid p { color: var(--muted); font-size: 14px; }

.activities-section { background: var(--paper); }
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.activity-grid article:first-child {
    border-top: 5px solid var(--teal);
}
.activity-grid article:nth-child(2) {
    border-top: 5px solid var(--saffron);
}
.activity-grid article:nth-child(3) {
    border-top: 5px solid var(--maroon);
}

.gallery-section { background: var(--white); }
.gallery-layout {
    display: grid;
    grid-template-columns: .68fr 1.32fr;
    align-items: start;
    gap: 66px;
}
.gallery-layout > div:first-child { grid-row: span 2; }
.gallery-layout .btn { margin-top: 28px; }
.gallery-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.gallery-photo-grid figure {
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--paper);
}
.gallery-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.gallery-photo-grid figure:hover img { transform: scale(1.04); }
.moment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.moment-grid span {
    min-height: 86px;
    display: grid;
    align-items: end;
    padding: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--teal-soft), #fff8e8);
    color: var(--deep);
    font-weight: 800;
}

.membership-section {
    background: linear-gradient(135deg, var(--maroon-dark), var(--deep));
    color: var(--white);
}
.membership-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: start;
    gap: 68px;
}
.membership-section .eyebrow { color: var(--saffron); }
.membership-section h2 { color: var(--white); }
.membership-section .section-copy p { color: #dfecea; }
.member-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.membership-section .btn-outline { border-color: var(--saffron); color: var(--white); }
.membership-section .btn-outline:hover { background: var(--saffron); color: var(--ink); }
.why-card {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    box-shadow: none;
}
.why-card h3 { margin-bottom: 18px; color: var(--white); }
.why-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; padding-left: 0; list-style: none; }
.why-card li {
    position: relative;
    padding-left: 25px;
    color: #edf7f5;
    font-size: 14px;
}
.why-card li::before {
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--saffron);
    content: "✓";
    font-weight: 800;
}

.why-card li::before { content: "\2713"; }

.benefits-section { background: var(--ivory); }
.join-process { background: var(--white); }
.process-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 70px;
}
.process-layout h2 { margin-bottom: 24px; color: var(--deep); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list span {
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--ivory);
    color: var(--deep);
    font-size: 13px;
    font-weight: 800;
}
.process-list {
    display: grid;
    gap: 12px;
}
.process-list article {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--ivory);
}
.process-list span {
    color: var(--maroon);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.process-list p { color: var(--muted); font-weight: 700; }

.contact-section { background: var(--paper); }
.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 68px;
}
.contact-list { display: grid; gap: 12px; margin-top: 30px; }
.contact-list a {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: start;
    gap: 14px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--deep);
    font-weight: 700;
}
.contact-list svg {
    width: 46px;
    height: 46px;
    padding: 11px;
    border-radius: 8px;
    background: var(--teal-soft);
    color: var(--teal);
}
.contact-list strong { display: block; margin-bottom: 3px; color: var(--maroon); font-size: 12px; text-transform: uppercase; }
.brand-copy strong, .contact-list span, .site-footer a, .site-footer span {
    overflow-wrap: anywhere;
}
.hours-card { margin-top: 14px; }
.hours-card h3 { margin-bottom: 12px; color: var(--deep); }
.hours-card p { color: var(--muted); font-size: 14px; }
.contact-form h3 { margin-bottom: 24px; color: var(--deep); }
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 22px;
}
label {
    display: grid;
    gap: 7px;
    color: var(--deep);
    font-size: 12px;
    font-weight: 800;
}
.field-full { grid-column: 1 / -1; }
input, textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #cdbfae;
    border-radius: 8px;
    background: var(--ivory);
    color: var(--ink);
    font-size: 14px;
}
textarea { min-height: 132px; resize: vertical; }
input:focus, textarea:focus {
    border-color: var(--teal);
    outline: 3px solid rgba(15, 127, 129, .13);
}

.site-footer {
    padding-top: 70px;
    border-top: 6px solid var(--saffron);
    background: var(--maroon-dark);
    color: var(--white);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr;
    gap: 56px;
    padding-bottom: 50px;
}
.brand-light { margin-bottom: 20px; }
.brand-light .brand-mark { background: var(--saffron); color: var(--maroon-dark); }
.brand-light .brand-copy strong { color: var(--white); }
.brand-light .brand-copy small, .site-footer p { color: #f2dfc2; }
.site-footer h3 { margin-bottom: 18px; color: var(--white); font-size: 15px; }
.site-footer a, .site-footer span, .site-footer p {
    display: block;
    margin: 9px 0;
    color: #f2dfc2;
    font-size: 13px;
}
.site-footer a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
}
.wa-float {
    position: fixed;
    z-index: 60;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #25d366;
    color: #08391d;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
    font-size: 12px;
    font-weight: 800;
}
.wa-float svg { width: 22px; height: 22px; }

.admin-login-page, .admin-page {
    background: var(--paper);
}
.login-screen {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 28px;
}
.login-card, .admin-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.login-card {
    width: min(100%, 430px);
    padding: 34px;
}
.login-card img {
    width: 132px;
    height: auto;
    margin-bottom: 24px;
}
.login-card h1, .admin-card h1 {
    margin-bottom: 12px;
    color: var(--deep);
    font-size: 42px;
}
.login-note, .admin-card p { color: var(--muted); }
.login-error, .success-note {
    margin: 18px 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}
.login-error {
    border-left: 4px solid var(--maroon);
    background: #eef3fb;
    color: var(--maroon);
}
.success-note {
    border-left: 4px solid var(--teal);
    background: var(--teal-soft);
    color: var(--deep);
}
.login-card .btn {
    width: 100%;
    margin-top: 18px;
}
.back-home {
    display: block;
    margin-top: 16px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}
.admin-topbar {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
}
.admin-topbar nav {
    display: flex;
    gap: 10px;
}
.admin-topbar nav a {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--deep);
    font-size: 13px;
    font-weight: 800;
}
.admin-shell {
    width: min(100% - 48px, 940px);
    margin: 0 auto;
    padding: 70px 0;
}
.admin-card {
    padding: 30px;
    margin-bottom: 18px;
}
.admin-card code {
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--teal-soft);
    color: var(--deep);
}
.admin-form {
    display: grid;
    gap: 20px;
}
.admin-form fieldset {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 14px;
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
}
.admin-form legend {
    padding: 0 8px;
    color: var(--maroon);
    font-weight: 800;
}

/* Visual refinement: keep section typography calm and grids precise. */
body { line-height: 1.58; }
h1 { font-size: clamp(34px, 4.2vw, 58px); }
h2 { font-size: clamp(26px, 2.35vw, 34px); }
h3 { font-size: 19px; }
.section { padding: 82px 0; }
.eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
}
.section-copy p, .section-head p, .contact-section p, .gallery-layout p {
    font-size: 15.5px;
    line-height: 1.72;
    font-weight: 400;
}
.section-copy h2, .section-head h2, .contact-section h2, .gallery-layout h2 {
    max-width: 640px;
    margin-bottom: 18px;
}
.section-head { margin-bottom: 34px; }
.btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
}
.purpose-section { padding-bottom: 58px; }
.purpose-layout {
    grid-template-columns: minmax(280px, 430px) minmax(320px, 520px);
    justify-content: center;
    gap: 72px;
}
.purpose-layout h2 {
    max-width: 460px;
    font-size: clamp(29px, 2.65vw, 34px);
    line-height: 1.15;
}
.purpose-layout > p {
    max-width: 580px;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.7;
}
.image-story-strip { padding: 0 0 82px; }
.image-story-grid {
    width: min(100% - 48px, 1180px);
    max-width: none;
    margin-inline: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 178px;
}
.image-story-grid figure { min-height: 0; box-shadow: none; }
.image-story-grid figure:first-child { grid-column: span 2; grid-row: span 2; }
.image-story-grid figure:nth-child(4) { grid-column: span 2; }
.about-layout, .membership-layout, .process-layout, .contact-layout {
    gap: 56px;
}
.value-grid article, .benefit-grid article {
    min-height: 205px;
    padding: 24px;
}
.activity-grid {
    gap: 14px;
}
.activity-grid img {
    height: 168px;
}
.activity-grid h3 {
    margin-top: 20px;
    padding: 0 22px;
}
.activity-grid p {
    padding: 0 22px 24px;
    font-size: 13.5px;
}
.gallery-layout {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 52px;
}
.gallery-photo-grid {
    gap: 10px;
}
.moment-grid {
    gap: 10px;
}
.moment-grid span {
    min-height: 72px;
    padding: 15px 16px;
    font-size: 14px;
}
.contact-layout {
    grid-template-columns: minmax(300px, 410px) minmax(420px, 1fr);
}
.contact-list { margin-top: 26px; }
.contact-list a {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 14px;
}
.contact-list svg {
    width: 42px;
    height: 42px;
}
.contact-list strong {
    font-size: 10.5px;
}
.hours-card, .contact-form {
    padding: 26px;
}
.contact-form h3 {
    margin-bottom: 22px;
    font-size: 21px;
}
label {
    font-size: 11px;
}
input, textarea {
    min-height: 44px;
    font-size: 13px;
}
textarea { min-height: 116px; }

@media (max-width: 1080px) {
    .nav-cta { display: none; }
    .main-nav { gap: 18px; }
    .activity-grid, .value-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .image-story-grid { grid-template-columns: repeat(2, 1fr); }
    .image-story-grid figure:first-child, .image-story-grid figure:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 900px) {
    .menu-toggle { display: block; order: 3; }
    .main-nav {
        position: absolute;
        top: 86px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--ivory);
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 13px; }
    .main-nav a::after { display: none; }
    .intro-grid, .purpose-layout, .about-layout, .gallery-layout, .membership-layout, .process-layout, .contact-layout, .section-head-wide {
        grid-template-columns: 1fr;
    }
    .gallery-layout > div:first-child { grid-row: auto; }
    .intro-actions { justify-content: flex-start; }
    .stats-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 28px, 1180px); }
    .section { padding: 74px 0; }
    .nav-wrap { min-height: 74px; }
    .site-header .brand-logo { width: 82px; height: 58px; }
    .brand-mark { width: 44px; height: 44px; font-size: 17px; }
    .brand-copy strong { font-size: 17px; }
    .brand-copy small { display: none; }
    .main-nav { top: 74px; }
    .hero img {
        min-height: calc(100vh - 74px);
        max-height: none;
        object-fit: cover;
        object-position: center top;
    }
    .intro-band { padding: 36px 0; }
    .intro-actions .btn { width: 100%; }
    .stats-grid, .impact-grid, .activity-grid, .value-grid, .benefit-grid, .moment-grid, .gallery-photo-grid, .image-story-grid, .why-card ul, .form-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .image-story-strip { padding-bottom: 74px; }
    .image-story-grid figure { min-height: 240px; }
    .purpose-layout > p { font-size: 15.5px; }
    .vision-panel article, .why-card, .contact-form, .hours-card { padding: 24px; }
    .process-list article { grid-template-columns: 1fr; gap: 4px; }
    .field-full { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .admin-topbar { align-items: flex-start; flex-direction: column; padding: 16px; }
    .admin-topbar nav { width: 100%; }
    .admin-topbar nav a { flex: 1; text-align: center; }
    .admin-shell { width: min(100% - 28px, 940px); padding: 46px 0; }
    .admin-form fieldset { grid-template-columns: 1fr; padding: 16px; }
    .wa-float { width: 54px; height: 54px; justify-content: center; padding: 0; }
    .wa-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
}
