:root {
    --primary: #1A3557;
    --primary-light: #2A5080;
    --accent: #B8962E;
    --accent-light: #E2C97E;
    --green: #2C5F3F;
    --bg-light: #F8F6F2;
    --bg-section: #EEE9E1;
    --text-dark: #1A1A2E;
    --text-medium: #4A4A5A;
    --text-light: #6F7180;
    --white: #FFFFFF;
    --footer-bg: #0D1B2A;
    --footer-text: #C8C8D0;
    --shadow: 0 18px 40px rgba(13, 27, 42, 0.14);
    --radius: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.65;
}

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

a {
    color: inherit;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.12;
    margin: 0 0 1rem;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.75rem, 7vw, 5.8rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 1rem;
    color: var(--text-medium);
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10000;
    transform: translateY(-180%);
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-weight: 700;
}

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

:focus-visible {
    outline: 3px solid var(--accent-light);
    outline-offset: 3px;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.narrow {
    width: min(860px, calc(100% - 2rem));
}

/* ════════════════════════════════════════════
   HEADER — Two-row layout
   ════════════════════════════════════════════ */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: box-shadow 220ms ease;
}

/* ── Top Bar ──────────────────────── */
.header-topbar {
    background: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.42rem 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.topbar-inner {
    width: min(1220px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    white-space: nowrap;
}

.topbar-left span,
.topbar-right a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 150ms ease;
}

.topbar-right a:hover { color: var(--accent-light); }
.topbar-left i, .topbar-right i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* ── Main Nav Bar ─────────────────── */
.header-main {
    background: rgba(13, 27, 42, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled .header-main,
.site-header.nav-open .header-main {
    background: rgba(26, 53, 87, 0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}

.header-inner {
    width: min(1220px, calc(100% - 2rem));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Brand */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    flex: 0 0 auto;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transition: transform 200ms ease;
}

.brand:hover .brand-logo { transform: scale(1.06); }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-weight: 700;
    font-size: clamp(1rem, 1.6vw, 1.28rem);
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.brand-sub {
    color: var(--accent-light);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Primary Nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.7rem, 1.6vw, 1.45rem);
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    position: relative;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    letter-spacing: 0.02em;
    transition: color 150ms ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); font-weight: 700; }

/* CTA + Toggle */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.52rem 1.15rem;
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.84rem;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 160ms ease, transform 160ms ease;
}

.btn-header-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    cursor: pointer;
    flex: 0 0 auto;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
    border-radius: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero,
.page-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.page-hero {
    min-height: 54vh;
    padding-top: 84px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 27, 42, 0.86), rgba(13, 27, 42, 0.56) 45%, rgba(13, 27, 42, 0.18));
}

.hero-content,
.page-hero-content {
    position: relative;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding-top: 84px;
    color: var(--white);
}

.hero-content {
    max-width: 900px;
    margin-left: max(1rem, calc((100vw - 1120px) / 2));
}

.hero-content p,
.page-hero-content p,
.service-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.eyebrow {
    margin-bottom: 0.7rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.78rem 1.2rem;
    border: 0;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-light);
}

.btn-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.1);
}

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

.section-alt {
    background: var(--bg-section);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.image-frame {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 360ms ease;
}

.image-frame:hover img {
    transform: scale(1.04);
}

.info-grid,
.belief-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

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

.feature-card,
.belief-card,
.quote-card,
.contact-form,
.contact-panel,
.schedule-card,
.contact-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(26, 53, 87, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(13, 27, 42, 0.08);
}

.feature-card,
.belief-card {
    padding: 1.5rem;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.belief-card:hover,
.ministry-card:hover,
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-card i,
.contact-card i,
.quote-card i {
    color: var(--accent);
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
}

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

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

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 26px rgba(13, 27, 42, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.gallery-grid.masonry .gallery-item:nth-child(2),
.gallery-grid.masonry .gallery-item:nth-child(4) {
    margin-top: 2rem;
}

figcaption {
    padding: 0.85rem 1rem 1rem;
    color: var(--text-medium);
    font-size: 0.94rem;
}

.service-banner {
    background: linear-gradient(135deg, var(--primary), var(--green));
    color: var(--white);
    padding: 3rem 0;
}

.service-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.service-details p {
    margin: 0.25rem 0;
    font-weight: 700;
}

.service-details i {
    color: var(--accent-light);
    margin-right: 0.5rem;
}

.schedule-card {
    overflow: hidden;
}

.schedule-card div {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    border-bottom: 1px solid rgba(26, 53, 87, 0.1);
}

.schedule-card div:last-child {
    border-bottom: 0;
}

.schedule-card span {
    font-weight: 800;
}

.schedule-card strong,
.schedule-card em {
    color: var(--text-medium);
    font-style: normal;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover {
    color: var(--green);
}

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

.ministry-card {
    display: grid;
    grid-template-columns: minmax(170px, 0.75fr) 1fr;
    gap: 1.2rem;
    align-items: stretch;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 26px rgba(13, 27, 42, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.ministry-card.wide {
    grid-column: 1 / -1;
}

.ministry-card img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
}

.ministry-card div {
    padding: 1.4rem 1.4rem 1.4rem 0;
}

.quote-card {
    padding: 2rem;
}

.quote-card blockquote {
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.25;
}

.contact-hero {
    min-height: 48vh;
    display: grid;
    align-items: center;
    padding-top: 84px;
    background: linear-gradient(135deg, rgba(26, 53, 87, 0.96), rgba(44, 95, 63, 0.88)), radial-gradient(circle at 80% 10%, rgba(226, 201, 126, 0.22), transparent 36%);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-form,
.contact-panel {
    padding: clamp(1.2rem, 3vw, 2rem);
}

.form-field {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(26, 53, 87, 0.18);
    border-radius: 8px;
    background: var(--white);
    padding: 0.85rem 0.9rem;
    color: var(--text-dark);
    font: inherit;
}

textarea {
    resize: vertical;
}

.error-message {
    min-height: 1.2rem;
    margin: 0.25rem 0 0;
    color: #A32626;
    font-size: 0.88rem;
}

.form-status {
    margin-top: 0.8rem;
    font-weight: 800;
}

.contact-panel {
    display: grid;
    gap: 1rem;
}

.contact-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.8rem;
    padding: 1rem;
}

.contact-card i {
    margin: 0.25rem 0 0;
}

.contact-card h2 {
    font-size: 1.25rem;
}

.contact-card p {
    overflow-wrap: anywhere;
}

.contact-copy {
    padding: 0.4rem 0.2rem 0;
}

.map-frame {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-frame iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

/* ════════════════════════════════════════════
   FOOTER — 4-column layout
   ════════════════════════════════════════════ */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}

.footer-accent-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--green) 100%);
}

.footer-body {
    padding: 4rem 0 2rem;
}

.footer-inner {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Col 1 — Brand */
.footer-col--brand .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.footer-org-name {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25;
    margin: 0;
    letter-spacing: 0.03em;
}

.footer-tagline {
    color: rgba(200,200,208,0.75);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 1.4rem;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: var(--footer-text);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-dark);
}

/* Col titles */
.footer-col-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 1.1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

/* Quick Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 150ms ease, gap 150ms ease;
}

.footer-links a i {
    color: var(--accent);
    font-size: 0.65rem;
    transition: transform 150ms ease;
}

.footer-links a:hover {
    color: var(--accent-light);
    gap: 0.75rem;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex: 0 0 auto;
}

.footer-contact-list a,
.footer-contact-list address {
    color: var(--footer-text);
    font-size: 0.88rem;
    line-height: 1.55;
    font-style: normal;
    text-decoration: none;
    transition: color 150ms ease;
}

.footer-contact-list a:hover { color: var(--accent-light); }

/* Service times */
.footer-times {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-times li {
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ft-day {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-light);
}

.ft-event {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
}

.ft-time {
    color: rgba(200,200,208,0.72);
    font-size: 0.82rem;
}

.footer-visit-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.3rem;
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.84rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease;
}

.footer-visit-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom-bar {
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1rem 0;
}

.footer-bottom-inner {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(200,200,208,0.6);
}

.footer-bottom-inner strong { color: var(--accent-light); }

address { font-style: normal; }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 580ms ease, transform 580ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 900px) {
    .brand-name { font-size: 0.9rem; }
    .brand-sub  { font-size: 0.65rem; }
    .primary-nav { gap: 0.7rem; }
    .nav-link   { font-size: 0.84rem; }
    .btn-header-cta { display: none; }

    .split-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .info-grid,
    .belief-grid,
    .gallery-grid.three {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .header-topbar { display: none; }

    .header-inner { min-height: 64px; }

    .brand-logo { width: 42px; height: 42px; }

    .brand-name {
        font-size: 0.95rem;
        letter-spacing: 0.02em;
    }

    .nav-toggle { display: block; }

    /* Mobile slide-down nav */
    .primary-nav {
        position: fixed;
        top: 64px;
        right: 0;
        left: 0;
        display: grid;
        justify-content: stretch;
        gap: 0;
        padding: 0.5rem 1rem 1.2rem;
        background: rgba(26, 53, 87, 0.98);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 220ms ease, opacity 220ms ease;
        z-index: 999;
    }

    .site-header.nav-open .primary-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 0.95rem;
    }

    .nav-link::after { bottom: 0.3rem; }

    .hero, .page-hero { background-attachment: scroll; }

    .hero-content,
    .page-hero-content { padding-top: 64px; }

    .service-banner-inner,
    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .schedule-card div {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .values-grid,
    .gallery-grid.masonry {
        grid-template-columns: 1fr;
    }

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

    .footer-col--brand { grid-column: auto; }

    .gallery-grid.masonry .gallery-item:nth-child(2),
    .gallery-grid.masonry .gallery-item:nth-child(4) {
        margin-top: 0;
    }

    .ministry-card,
    .ministry-card.wide {
        grid-template-columns: 1fr;
    }

    .ministry-card img {
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }

    .ministry-card div { padding: 1.25rem; }
}

@media (max-width: 480px) {
    .container,
    .footer-inner,
    .header-inner,
    .hero-content,
    .page-hero-content {
        width: min(100% - 1.2rem, 1120px);
    }

    .hero,
    .home-hero {
        min-height: 92vh;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 3.4rem 0;
    }
}
