/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    color: #2c2c2c;
    background: #fff;
    font-size: 16px;
    line-height: 1.7;
}

/* ── Colour Palette ───────────────────────────────────────────────────────── */
:root {
    --teal:    #1a6b6e;
    --teal-dk: #124b4e;
    --gold:    #c9902a;
    --gold-lt: #f0c060;
    --cream:   #faf7f2;
    --mid:     #f2ede4;
    --dark:    #1c1c1c;
    --muted:   #666;
}

/* ── Accessibility ────────────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--teal);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0;
    position: absolute; width: 1px; word-wrap: normal !important;
}

/* ── Site Header ──────────────────────────────────────────────────────────── */
.site-header {
    background: var(--teal-dk);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 72px;
}
.site-branding { display: flex; align-items: center; gap: 14px; }
.logo-icon {
    width: 48px; height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.custom-logo-wrap img { height: 52px; width: auto; }
.site-title-wrap a { text-decoration: none; }
.site-title {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}
.site-description {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: var(--gold-lt);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.main-navigation .nav-menu {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0; padding: 0;
}
.main-navigation .nav-menu li a {
    color: #dde;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.3px;
    display: block;
}
.main-navigation .nav-menu li a:hover,
.main-navigation .nav-menu li.current-menu-item > a,
.main-navigation .nav-menu li.current_page_item > a {
    background: var(--gold);
    color: #fff;
}

/* ── Mobile Nav Toggle ────────────────────────────────────────────────────── */
.nav-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    transition: transform 0.2s;
}
.nav-toggle-icon { position: relative; }
.nav-toggle-icon::before { content: ''; position: absolute; top: -6px; }
.nav-toggle-icon::after  { content: ''; position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after  { transform: rotate(-45deg); top: 0; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(135deg, #0d4044 0%, #1a6b6e 40%, #2a9d8f 70%, #c9902a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(201,144,42,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26,107,110,0.35) 0%, transparent 50%);
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%23faf7f2' d='M0,96 C200,120 400,60 600,96 C800,132 1000,72 1200,96 L1200,120 L0,120Z'/%3E%3C/svg%3E") no-repeat bottom center/cover;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 60px 24px 140px;
}
.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-lt);
    font-weight: 700;
    margin-bottom: 16px;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    margin: 0 auto 36px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-outline  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ── Stats Bar ────────────────────────────────────────────────────────────── */
.stats-bar { background: var(--teal-dk); padding: 24px 0; }
.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 24px;
}
.stat-item { text-align: center; color: #fff; }
.stat-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--gold-lt);
    font-weight: 700;
    line-height: 1;
}
.stat-item .label { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ── Section Utility ──────────────────────────────────────────────────────── */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--teal-dk);
    margin-bottom: 18px;
    line-height: 1.2;
}
.section-intro {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 50px;
}
hr.divider {
    border: none;
    height: 3px;
    width: 56px;
    background: var(--gold);
    margin: 14px 0 20px;
}
.section-cta { text-align: center; margin-top: 40px; }

/* ── About ────────────────────────────────────────────────────────────────── */
.section-about { background: var(--cream); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-img-placeholder {
    background: linear-gradient(135deg, var(--teal) 0%, #2a9d8f 100%);
    height: 400px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    gap: 12px;
    border-radius: 12px;
}
.about-img-placeholder .img-icon { font-size: 56px; }
.about-photo { width: 100%; height: auto; border-radius: 12px; display: block; }
.about-text p { color: #444; margin-bottom: 16px; }
.highlight-box {
    background: var(--teal);
    color: #fff;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 28px;
    font-style: italic;
    font-size: 1.05rem;
    border-left: 4px solid var(--gold);
}
.highlight-box cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 12px;
    color: var(--gold-lt);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Mission & Vision ─────────────────────────────────────────────────────── */
.section-mission { background: #fff; }
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}
.mv-card {
    border-radius: 12px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}
.mv-card.mission { background: var(--teal); color: #fff; }
.mv-card.vision  { background: var(--gold);  color: #fff; }
.mv-card::before {
    content: attr(data-letter);
    position: absolute;
    right: -10px; top: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    opacity: 0.08;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.mv-card p { font-size: 0.97rem; opacity: 0.92; line-height: 1.75; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--cream);
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    border-bottom: 3px solid var(--teal);
    transition: transform 0.2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card .icon { font-size: 32px; margin-bottom: 12px; }
.value-card h4 { font-size: 14px; font-weight: 700; color: var(--teal-dk); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Programs ─────────────────────────────────────────────────────────────── */
.section-programs { background: var(--mid); }
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.program-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.program-img {
    height: 180px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    overflow: hidden;
}
.program-img img { width: 100%; height: 100%; object-fit: cover; }
.program-img.color-1 { background: linear-gradient(135deg, #1a6b6e, #2a9d8f); }
.program-img.color-2 { background: linear-gradient(135deg, #c9902a, #e8b84b); }
.program-img.color-3 { background: linear-gradient(135deg, #4a3728, #8b6343); }
.program-img.color-4 { background: linear-gradient(135deg, #2a4d8b, #4a7fc1); }
.program-img.color-5 { background: linear-gradient(135deg, #6b4e8e, #9b7ec1); }
.program-img.color-6 { background: linear-gradient(135deg, #2d7a45, #4daa65); }
.program-body { padding: 28px 26px; }
.program-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--teal-dk); margin-bottom: 10px; }
.program-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.program-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

/* ── Events ───────────────────────────────────────────────────────────────── */
.section-events { background: #fff; }
.events-list { display: flex; flex-direction: column; gap: 20px; }
.event-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    border-radius: 10px;
    padding: 28px;
    background: var(--cream);
    border-left: 4px solid var(--teal);
    transition: border-color 0.2s;
}
.event-item:hover { border-color: var(--gold); }
.event-date {
    min-width: 68px;
    text-align: center;
    background: var(--teal);
    border-radius: 8px;
    padding: 12px 8px;
    color: #fff;
}
.event-date .day { font-family: 'Playfair Display', serif; font-size: 2rem; line-height: 1; font-weight: 700; }
.event-date .month { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-lt); font-weight: 700; }
.event-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--teal-dk); margin-bottom: 6px; }
.event-info p { font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }
.event-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.event-meta span { font-size: 12px; color: var(--gold); font-weight: 600; }

/* ── Diocese ──────────────────────────────────────────────────────────────── */
.section-diocese {
    background: var(--teal-dk);
    color: #fff;
    padding: 80px 24px;
}
.diocese-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}
.diocese-text .section-label { color: var(--gold-lt); }
.diocese-text .section-title { color: #fff; }
.diocese-text p { color: rgba(255,255,255,0.82); margin-bottom: 16px; font-size: 0.97rem; }
.diocese-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fact-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 22px 20px;
}
.fact-box .fact-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt); font-weight: 700; margin-bottom: 6px; }
.fact-box .fact-value { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; }

/* ── Gallery ──────────────────────────────────────────────────────────────── */
.section-gallery { background: var(--cream); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    color: rgba(255,255,255,0.7);
    transition: transform 0.3s;
    cursor: pointer;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.large { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:nth-child(1)  { background: linear-gradient(135deg, #1a6b6e, #2a9d8f); }
.gallery-item:nth-child(2)  { background: linear-gradient(135deg, #c9902a, #e8b84b); }
.gallery-item:nth-child(3)  { background: linear-gradient(135deg, #4a3728, #8b6343); }
.gallery-item:nth-child(4)  { background: linear-gradient(135deg, #2a4d8b, #4a7fc1); }
.gallery-item:nth-child(5)  { background: linear-gradient(135deg, #6b4e8e, #9b7ec1); }
.gallery-item:nth-child(6)  { background: linear-gradient(135deg, #2d7a45, #4daa65); }
.gallery-item:nth-child(7)  { background: linear-gradient(135deg, #8b2a2a, #c15050); }
.gallery-item:nth-child(8)  { background: linear-gradient(135deg, #3a5a6e, #5a8a9e); }

/* ── Contact ──────────────────────────────────────────────────────────────── */
.section-contact { background: #fff; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--teal-dk); margin-bottom: 20px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-detail .icon {
    width: 44px; height: 44px; min-width: 44px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: #fff;
}
.contact-detail .text strong { display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail .text span, .contact-detail .text a { color: #444; font-size: 14.5px; text-decoration: none; }
.contact-detail .text a:hover { color: var(--teal); text-decoration: underline; }
.contact-form {
    background: var(--cream);
    border-radius: 14px;
    padding: 40px 36px;
}
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--teal-dk); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--teal-dk); text-transform: uppercase; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    padding: 11px 14px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit {
    background: var(--teal);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
    font-family: 'Open Sans', sans-serif;
}
.btn-submit:hover { background: var(--teal-dk); transform: translateY(-2px); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: #0e2325;
    color: rgba(255,255,255,0.75);
    padding: 60px 24px 0;
}
.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand .ft-title { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.footer-brand .ft-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; font-size: 15px;
    transition: background 0.2s;
}
.social-links a:hover { background: var(--gold); }
.footer-col h4 {
    color: #fff;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-nav { padding: 0; }
.footer-nav li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-nav li a:hover { color: var(--gold-lt); }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
}
.footer-bottom a { color: var(--gold-lt); text-decoration: none; }

/* ── Blog / Index ─────────────────────────────────────────────────────────── */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 32px;
}
.post-card {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.post-thumb img { width: 100%; height: 220px; object-fit: cover; display: block; }
.post-body { padding: 24px; }
.post-meta { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.post-title a { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--teal-dk); text-decoration: none; }
.post-title a:hover { color: var(--gold); }
.post-excerpt { font-size: 14px; color: var(--muted); margin-top: 10px; line-height: 1.6; }
.pagination { margin-top: 48px; text-align: center; }
.pagination .nav-links a,
.pagination .nav-links span { padding: 8px 16px; margin: 0 4px; border-radius: 6px; background: var(--cream); color: var(--teal); text-decoration: none; font-size: 14px; }
.pagination .nav-links .current { background: var(--teal); color: #fff; }

/* ── Entry Content (WP blocks) ────────────────────────────────────────────── */
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
    font-family: 'Playfair Display', serif;
    color: var(--teal-dk);
    margin: 28px 0 12px;
    line-height: 1.3;
}
.entry-content p { margin-bottom: 18px; color: #444; line-height: 1.8; }
.entry-content a { color: var(--teal); }
.entry-content a:hover { color: var(--gold); }
.entry-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 18px; color: #444; }
.entry-content li { margin-bottom: 6px; }
.entry-content blockquote {
    border-left: 4px solid var(--gold);
    background: var(--cream);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--muted);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .about-grid, .mv-grid, .contact-grid, .diocese-inner { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .main-navigation { display: none; }
    .nav-toggle { display: block; }
    .main-navigation.open { display: block; position: absolute; top: 72px; left: 0; right: 0; background: var(--teal-dk); padding: 16px; }
    .main-navigation.open .nav-menu { flex-direction: column; gap: 0; }
    .main-navigation.open .nav-menu li a { padding: 12px 16px; border-radius: 6px; }
}
@media (max-width: 600px) {
    .programs-grid, .values-grid, .post-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 2; }
    .stats-inner { gap: 16px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .hero-btns { flex-direction: column; align-items: center; }
}
