/* =========================================================
   GEREJA YAKIN REHOBOT — Desain modern bold ala CHC
   ========================================================= */

:root {
    --black: #0d0d0d;
    --ink: #161616;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f2f1ef;
    --gray-200: #e6e4e0;
    --gray-400: #a8a6a1;
    --gray-500: #767470;
    --gray-700: #454340;

    --accent: #d81e2c;
    --accent-dark: #a8141f;
    --accent-light: #ff4d57;

    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }

ul { list-style: none; }

.container {
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.section-sm { padding: 70px 0; }

.section-black {
    background: var(--black);
    color: var(--white);
}

.section-gray {
    background: var(--gray-100);
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.tag-light { color: var(--accent-light); }

.section-head {
    max-width: 720px;
    margin-bottom: 56px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-sub {
    font-size: 1.08rem;
    color: var(--gray-500);
    margin-top: 18px;
}

.section-sub-light { color: rgba(255,255,255,0.65); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 17px 34px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s var(--ease);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-black {
    background: var(--black);
    color: var(--white);
}
.btn-black:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}
.btn-white:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(255,255,255,0.35);
    color: var(--white);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
    border-color: var(--gray-200);
    color: var(--ink);
    background: transparent;
}
.btn-outline-dark:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.btn-sm { padding: 12px 24px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ===== Navigation ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.35s var(--ease);
    background: transparent;
    padding: 22px 0;
}

.site-nav.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-chip {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.logo-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.nav-brand-text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.site-nav:not(.scrolled) .nav-brand-text {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.2px;
}

.site-nav:not(.scrolled) .nav-menu a:not(.nav-cta) {
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.nav-menu a:hover { color: var(--accent); }
.nav-menu a.active { color: var(--accent); }

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-shadow: none !important;
}
.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.site-nav:not(.scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle.active span { background: var(--ink) !important; }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.12); }
    to { transform: scale(1); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 45%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 60px;
}

.hero-content h1 {
    color: var(--white);
    text-transform: uppercase;
    max-width: 900px;
    margin-bottom: 26px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.hero-content h1 span { color: var(--accent-light); }

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 560px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Service strip overlapping hero bottom */
.service-strip {
    position: relative;
    z-index: 3;
    margin-top: -50px;
}

.service-strip-inner {
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.service-strip-item {
    flex: 1;
    min-width: 220px;
    padding: 28px 32px;
    border-right: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-strip-item:last-child { border-right: none; }

.service-strip-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.service-strip-item h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
}

.service-strip-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ===== Intro / Statement Section ===== */
.intro-section {
    background: var(--white);
    padding-top: 160px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.intro-statement {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.35;
    color: var(--ink);
}

.intro-statement .accent-word { color: var(--accent); }

.intro-images {
    position: relative;
    min-height: 460px;
}

.intro-img-main {
    width: 82%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.intro-img-accent {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 48%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 8px solid var(--white);
}

/* ===== Ministries Grid ===== */
.ministries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ministry-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 340px;
    display: block;
}

.ministry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.ministry-card:hover img { transform: scale(1.08); }

.ministry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
}

.ministry-card-overlay .badge {
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ministry-card-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.ministry-card-overlay p {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}

.section-cta-row {
    margin-top: 46px;
    text-align: center;
}

/* ===== Sermon / Watch Section ===== */
.watch-section { background: var(--black); color: var(--white); }

.watch-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.watch-video-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.watch-video-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.watch-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 84px; height: 84px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.3s var(--ease);
}
.watch-play:hover { transform: translate(-50%,-50%) scale(1.1); background: var(--accent-dark); }

.watch-text h2 { color: var(--white); margin-bottom: 18px; }

.watch-meta {
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.watch-desc {
    color: rgba(255,255,255,0.65);
    margin-bottom: 34px;
    font-size: 1.05rem;
}

.watch-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Events Strip ===== */
.events-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card-mini {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--ease);
    border: 1px solid var(--gray-200);
}

.event-card-mini:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.event-card-mini-img { height: 190px; overflow: hidden; background: var(--gray-200); }
.event-card-mini-img img { width: 100%; height: 100%; object-fit: cover; }

.event-card-mini-body { padding: 24px; }

.event-date-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: var(--gray-100);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.event-card-mini-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.event-card-mini-body p { color: var(--gray-500); font-size: 0.9rem; }

/* ===== Leadership ===== */
.leader-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
    align-items: center;
}

.leader-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.leader-info h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 10px; }

.leader-role {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.leader-bio { color: var(--gray-500); font-size: 1.06rem; }

/* ===== Involved / Give Section ===== */
.involved-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--gray-200);
}

.involved-card {
    background: var(--white);
    padding: 44px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s var(--ease);
}

.involved-card:hover {
    background: var(--black);
    color: var(--white);
}

.involved-card h3 { font-size: 1.25rem; }
.involved-card p { color: var(--gray-500); font-size: 0.92rem; }
.involved-card:hover p { color: rgba(255,255,255,0.7); }

.involved-arrow {
    margin-top: auto;
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.3s var(--ease);
}
.involved-card:hover .involved-arrow { transform: translateX(6px); }

/* ===== CTA Banner ===== */
.cta-banner {
    background: var(--accent);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 20px; }
.cta-banner p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 90px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-brand-row .logo-chip { width: 50px; height: 50px; }

.footer-brand-name {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--white);
    font-size: 1.1rem;
}

.site-footer p { font-size: 0.92rem; line-height: 1.8; }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    margin-bottom: 12px;
}
.footer-col a:hover { color: var(--accent-light); }

.footer-social { display: flex; gap: 12px; margin-top: 6px; }

.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 28px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

/* ===== Page Hero (subpages) ===== */
.page-hero {
    padding: 170px 0 90px;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(60px);
}

.page-hero h1 { color: var(--white); text-transform: uppercase; margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 600px; position: relative; z-index: 1; }

/* ===== Values Grid ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s var(--ease);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.value-card p { color: var(--gray-500); font-size: 0.95rem; }

/* ===== Ministry Full Grid ===== */
.ministry-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ministry-full-grid .ministry-card { height: 380px; }

/* ===== Sermon Library ===== */
.sermon-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filter-chip {
    padding: 10px 22px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active { background: var(--black); color: var(--white); border-color: var(--black); }

.sermon-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.sermon-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    border: 1px solid var(--gray-200);
}
.sermon-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }

.sermon-card-img { position: relative; height: 200px; overflow: hidden; background: var(--gray-200); }
.sermon-card-img img { width: 100%; height: 100%; object-fit: cover; }

.sermon-card-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(216,30,44,0.9); color: var(--white); border: none;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}

.sermon-card-body { padding: 24px; }
.sermon-card-date { color: var(--accent); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.sermon-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.sermon-card-body .speaker { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 4px; }
.sermon-card-body .series { color: var(--gray-400); font-size: 0.82rem; margin-bottom: 16px; }
.sermon-card-link { color: var(--accent); font-weight: 700; font-size: 0.9rem; }

/* ===== Events Full Page ===== */
.events-full-list { display: flex; flex-direction: column; gap: 34px; }

.event-card-full {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.event-card-full-img { min-height: 260px; }
.event-card-full-img img { width: 100%; height: 100%; object-fit: cover; }

.event-card-full-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.event-card-full-body h3 { margin-bottom: 10px; }
.event-card-full-body .meta { color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.event-card-full-body .desc { color: var(--gray-500); margin-bottom: 26px; }

/* ===== Visit Page ===== */
.visit-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.visit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.visit-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.visit-card .addr { color: var(--gray-500); font-size: 1.05rem; }
.visit-card .time { color: var(--accent); font-size: 1.3rem; font-weight: 800; }

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 34px;
}

.expect-card { text-align: center; padding: 20px; }
.expect-icon {
    width: 64px; height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.5rem;
}
.expect-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.expect-card p { color: rgba(255,255,255,0.6); font-size: 0.93rem; }

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

/* ===== Forms ===== */
.form-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    padding: 46px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-row.single { grid-template-columns: 1fr; }

.form-field { margin-bottom: 22px; }
.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    background: var(--gray-50);
    transition: border-color 0.3s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

.form-field textarea { resize: vertical; }

/* ===== Contact Page ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 50px;
}

.contact-info-list { display: flex; flex-direction: column; gap: 20px; }

.contact-info-block {
    background: var(--white);
    padding: 26px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
}
.contact-info-block h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 6px; }
.contact-info-block p { color: var(--gray-500); }

/* ===== Empty state ===== */
.empty-note {
    color: var(--gray-500);
    font-size: 0.95rem;
    padding: 30px;
    text-align: center;
    grid-column: 1 / -1;
}

/* ===== Fade-in animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
    .ministries-grid, .ministry-full-grid { grid-template-columns: repeat(2, 1fr); }
    .events-scroll { grid-template-columns: repeat(2, 1fr); }
    .involved-grid { grid-template-columns: repeat(2, 1fr); }
    .intro-grid, .watch-grid, .leader-grid { gap: 40px; }
}

@media (max-width: 860px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0; right: 0;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 26px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active { display: flex; }
    .nav-menu a { color: var(--ink) !important; text-shadow: none !important; font-size: 1rem; }
    .nav-toggle { display: block; }

    .intro-grid, .watch-grid, .leader-grid, .contact-layout { grid-template-columns: 1fr; }
    .intro-section { padding-top: 120px; }
    .intro-images { min-height: 340px; }
    .intro-img-main { height: 300px; width: 78%; }
    .intro-img-accent { height: 160px; }

    .service-strip-item { min-width: 100%; border-right: none; border-bottom: 1px solid var(--gray-200); }
    .service-strip-item:last-child { border-bottom: none; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 640px) {
    .section { padding: 70px 0; }
    .ministries-grid, .ministry-full-grid, .events-scroll, .involved-grid { grid-template-columns: 1fr; }
    .leader-photo { height: 340px; }
    .watch-video-wrap img { height: 260px; }
    .event-card-full { grid-template-columns: 1fr; }
    .event-card-full-img { min-height: 200px; }
    .visit-cards-grid, .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 34px; }
    .hero-actions .btn, .cta-banner-actions .btn { width: 100%; }
    .hero-actions, .cta-banner-actions { flex-direction: column; }
}
