/* ============================================================
   Norwich Baptist Church — main stylesheet
   ============================================================ */

:root {
    --sage-mist:   #DCE3DA;
    --sage-soft:   #B9C7B8;
    --sage:        #8FA89B;
    --sage-deep:   #5C6F65;
    --sage-ink:    #3A4842;
    --cream:       #F5F1EA;
    --cream-warm:  #EDE6D7;
    --ink:         #2A2E2C;
    --ink-soft:    #5A625D;
    --gold:        #B89968;
    --line:        rgba(58, 72, 66, 0.12);
    --line-strong: rgba(58, 72, 66, 0.22);
    --shadow-card: 0 12px 40px rgba(58, 72, 66, 0.08);
    --shadow-deep: 0 24px 60px rgba(58, 72, 66, 0.16);

    --max:    1180px;
    --max-sm: 820px;
    --max-xs: 640px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body { min-height: 100%; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: var(--max-sm); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 24px 0;
}
.nav.nav--solid {
    position: sticky;
    background: rgba(245, 241, 234, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}
.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.nav-brand .mark {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.18em;
}
.nav-brand .sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-top: 4px;
    opacity: 0.85;
}
.nav--light .nav-brand,
.nav--light .nav-links a,
.nav--light .nav-phone { color: #fff; }
.nav--dark .nav-brand,
.nav--dark .nav-links a,
.nav--dark .nav-phone { color: var(--ink); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}
.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    transition: opacity 0.2s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-current::after { transform: scaleX(1); }
.nav-links a.is-current { opacity: 1; }

.nav-phone {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}
.nav-phone:hover { opacity: 0.8; }

.nav-burger {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: inherit;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: currentColor;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* mobile drawer */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--sage-ink);
    color: #fff;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.6, 0.05, 0.2, 1);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-close {
    position: absolute;
    top: 28px; right: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    line-height: 1;
}
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-nav a {
    display: block;
    padding: 22px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    letter-spacing: 0.04em;
}
.mobile-nav .mobile-foot {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: rgba(255,255,255,0.75);
}
.mobile-nav .mobile-foot a {
    font-size: 16px;
    padding: 4px 0;
    display: inline;
}

/* ============================================================
   HEROES
   ============================================================ */
.hero {
    position: relative;
    background:
        linear-gradient(180deg, rgba(74, 93, 82, 0.55) 0%, rgba(58, 72, 66, 0.78) 100%),
        linear-gradient(135deg, #8FA89B 0%, #6E8479 50%, #4A5D52 100%);
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero .hills {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    height: 55%;
    pointer-events: none;
    z-index: 0;
}
.hero .hills svg { width: 100%; height: 100%; display: block; }

/* tall (home) */
.hero--tall {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    text-align: center;
}

/* short (interior pages) */
.hero--page {
    padding: 180px 24px 100px;
    text-align: center;
}
.hero--page .hills { height: 45%; }

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(184, 153, 104, 0.25);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(184, 153, 104, 0.25); }
    50%      { box-shadow: 0 0 0 8px rgba(184, 153, 104, 0.05); }
}

.hero-logo { margin-bottom: 32px; }
.hero-logo .mark {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(56px, 8vw, 80px);
    letter-spacing: 0.12em;
    line-height: 1;
}
.hero-logo .sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0.06em;
    margin-top: 8px;
    color: rgba(255,255,255,0.85);
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.08;
    margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--cream-warm); }

.hero-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(44px, 6.5vw, 72px);
    line-height: 1.05;
    margin-bottom: 18px;
}
.hero-page-title em { font-style: italic; color: var(--cream-warm); }

.hero-page-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(17px, 1.6vw, 20px);
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto;
}

.hero-divider {
    width: 60px; height: 1px;
    background: rgba(255,255,255,0.5);
    margin: 28px auto;
}

.verse {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    max-width: 620px;
    margin: 0 auto;
}
.verse-ref {
    display: block;
    margin-top: 14px;
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
section { padding: 100px 24px; }
section.tight { padding: 72px 24px; }
section.bg-mist { background: var(--sage-mist); }
section.bg-cream { background: var(--cream); }
section.bg-ink { background: var(--sage-ink); color: rgba(255,255,255,0.88); }

.section-intro { text-align: center; margin-bottom: 60px; }
.section-intro .eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-deep);
    font-weight: 500;
    margin-bottom: 14px;
}
.section-intro.on-dark .eyebrow { color: var(--sage-soft); }
.section-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    color: var(--ink);
    max-width: 680px;
    margin: 0 auto 18px;
}
.section-intro.on-dark h2 { color: #fff; }
.section-intro h2 em { font-style: italic; color: var(--sage-deep); }
.section-intro.on-dark h2 em { color: var(--sage-soft); }
.section-intro p {
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto;
    font-size: 16px;
}
.section-intro.on-dark p { color: rgba(255,255,255,0.75); }

/* Two-col block (text + image / text + content) */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split-text .eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-deep);
    font-weight: 500;
    margin-bottom: 16px;
}
.split-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    margin-bottom: 24px;
}
.split-text h2 em { font-style: italic; color: var(--sage-deep); }
.split-text p { color: var(--ink-soft); margin-bottom: 18px; font-size: 16px; }
.split-text p:last-child { margin-bottom: 0; }

/* Image placeholder block — decorative SVG so no asset needed yet */
.image-block {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--sage-soft) 0%, var(--sage-deep) 100%);
    overflow: hidden;
    border-radius: 2px;
}
.image-block svg,
.image-block picture,
.image-block img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}
.image-block picture { display: block; }
.image-block img { object-fit: cover; display: block; }

/* Photo variant — landscape 4:3 frame matches a building/wide photo
   without aggressive top/bottom cropping. */
.image-block--photo { aspect-ratio: 4 / 3; background: transparent; }

.image-block.with-bg {
    background-size: cover;
    background-position: center;
}

/* ============================================================
   CARDS
   ============================================================ */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max);
    margin: 0 auto;
}
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 38px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: var(--sage-soft);
}
.card .ico {
    width: 44px; height: 44px;
    margin: 0 auto 22px;
    color: var(--sage-deep);
}
.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--ink);
}
.card .body { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.card .body strong { color: var(--ink); font-weight: 500; }
.card .body a { color: var(--sage-deep); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.card .body a:hover { border-bottom-color: var(--sage-deep); }

/* Ministry cards — left-aligned variant */
.card--ministry {
    text-align: left;
    padding: 40px 36px;
}
.card--ministry .ico { margin: 0 0 24px; }
.card--ministry h3 { font-size: 26px; }

/* Belief cards — flat numbered */
.beliefs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: var(--max);
    margin: 0 auto;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.belief {
    padding: 44px 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.belief .num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}
.belief h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--ink);
}
.belief p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
}
.btn-primary { background: var(--sage-deep); color: #fff; }
.btn-primary:hover { background: var(--sage-ink); }
.btn-ghost {
    background: transparent;
    color: var(--sage-ink);
    border-color: var(--sage-deep);
}
.btn-ghost:hover { background: var(--sage-deep); color: #fff; }
.btn-light {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
}
.btn-light:hover { background: #fff; color: var(--sage-ink); border-color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #9d8157; }

.btn svg { width: 16px; height: 16px; }

.btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
    background: var(--sage-mist);
    padding: 80px 24px;
    text-align: center;
}
.cta-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(28px, 3.6vw, 38px);
    color: var(--sage-ink);
    margin-bottom: 14px;
}
.cta-strip h2 em { font-style: italic; color: var(--sage-deep); }
.cta-strip p {
    color: var(--sage-deep);
    margin-bottom: 36px;
    font-size: 16px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
    background: #fff;
    border: 1px solid var(--line);
    padding: 56px;
    border-radius: 4px;
    max-width: 680px;
    margin: 0 auto;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage-deep);
    font-weight: 500;
    margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 14px 16px;
    transition: border-color 0.2s ease, background 0.2s ease;
    width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--sage-deep);
    background: #fff;
}
.field textarea { resize: vertical; min-height: 140px; }
.field .err {
    color: #a4453a;
    font-size: 12px;
    margin-top: 6px;
    letter-spacing: 0.04em;
}
.honey { position: absolute; left: -9999px; }
.form-actions { grid-column: 1 / -1; margin-top: 8px; }
.form-message {
    grid-column: 1 / -1;
    padding: 16px 20px;
    border-radius: 2px;
    margin-bottom: 12px;
    font-size: 14px;
}
.form-message.ok {
    background: var(--sage-mist);
    color: var(--sage-ink);
    border: 1px solid var(--sage-soft);
}
.form-message.err {
    background: #f4dad6;
    color: #6e2e26;
    border: 1px solid #d8a399;
}

/* ============================================================
   GIVE — list style
   ============================================================ */
.give-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max);
    margin: 0 auto;
}
.give-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 44px 36px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}
.give-card .num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.give-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 14px;
}
.give-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 20px; }
.give-card .more { margin-top: auto; }

/* ============================================================
   SERVICES BLOCK
   ============================================================ */
.services-list {
    max-width: 720px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.18);
}
.service-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 32px;
    align-items: baseline;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}
.service-row .day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
}
.service-row .time {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--sage-soft);
    font-size: 20px;
}
.service-row .note {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
}

/* ============================================================
   MAP
   ============================================================ */
.map-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 9;
    max-width: var(--max);
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}
.map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.85) contrast(0.95);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
    background: var(--sage-ink);
    color: rgba(255,255,255,0.78);
    padding: 80px 24px 32px;
}
.foot-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 60px;
}
.foot-brand .mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    letter-spacing: 0.15em;
    color: #fff;
    line-height: 1;
}
.foot-brand .sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    margin-top: 8px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}
.foot-brand p { font-size: 14px; color: rgba(255,255,255,0.65); max-width: 320px; }

.foot-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
    font-weight: 500;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    transition: color 0.2s ease;
}
.foot-col a:hover { color: #fff; }

.foot-bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.foot-bottom .copyright {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
}
.socials { display: flex; gap: 12px; }
.socials a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75);
    transition: all 0.2s ease;
}
.socials a:hover {
    background: #fff;
    color: var(--sage-ink);
    border-color: #fff;
}
.socials svg { width: 15px; height: 15px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.3, 1),
                transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-eyebrow .dot { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .nav-links, .nav-phone { display: none; }
    .nav-burger { display: block; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .foot-brand { grid-column: 1 / -1; }
    .cards--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    section { padding: 72px 24px; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split--reverse { direction: ltr; }
    .cards, .cards--2 { grid-template-columns: 1fr; gap: 16px; }
    .give-options { grid-template-columns: 1fr; }
    .beliefs { grid-template-columns: 1fr; }
    .form-wrap { padding: 36px 28px; }
    .form-grid { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
    .service-row .day:empty { display: none; }
    .service-row .time, .service-row .note { font-size: 16px; }
}

@media (max-width: 600px) {
    .nav-inner { padding: 0 20px; }
    .hero--tall { padding: 120px 20px 80px; }
    .hero--page { padding: 140px 20px 70px; }
    .foot-grid { grid-template-columns: 1fr; gap: 36px; }
    .cards--4 { grid-template-columns: 1fr; }
    .form-wrap { padding: 28px 20px; }
}
