/* ============================================================
   ALRC Website — Shared Stylesheet
   Abundant Life Reformed Church · Wyckoff, NJ
   ============================================================ */

/* ── Google Fonts loaded via wp_enqueue_style in functions.php ── */

/* ── WordPress admin bar offset ─────────────────────────────── */
.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-nav { top: 46px; } }

/* ── WP block content / Gutenberg overrides ─────────────────── */
.wp-content-area { font-size: 15px; color: var(--text-md); line-height: 1.8; }
.wp-content-area p { margin-bottom: 16px; }
.wp-content-area h2, .wp-content-area h3 { font-family: var(--font-head); color: var(--forest); margin: 24px 0 12px; }

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  --cream:      #FDFAF4;
  --cream-dk:   #F5F0E6;
  --forest:     #1C2E1E;
  --forest-md:  #2E4A31;
  --sage:       #5A7A5C;
  --green:      #3B6D11;
  --green-lt:   #EAF3DE;
  --gold:       #C19A3E;
  --gold-lt:    #FDF4E0;
  --stone:      #6B6459;
  --stone-lt:   #E8E2D8;
  --text:       #211E18;
  --text-md:    #5C5649;
  --text-lt:    #8C8375;
  --border:     #DDD8CE;

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);

  --transition: 0.22s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ── Typography ───────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title.light { color: var(--cream); }
.section-sub {
  font-size: 15px;
  color: var(--text-md);
  line-height: 1.75;
  max-width: 600px;
}
.section-sub.light { color: rgba(255,255,255,.8); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-forest { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn-forest:hover { background: var(--forest-md); border-color: var(--forest-md); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: #a8832e; border-color: #a8832e; }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: #2f5a0d; border-color: #2f5a0d; }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
.btn-white { background: #fff; color: var(--forest); border-color: #fff; }
.btn-white:hover { background: var(--cream); border-color: var(--cream); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ── Topbar ───────────────────────────────────────────────── */
.topbar {
  background: var(--forest);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 400;
  padding: 8px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar a:hover { color: var(--gold); }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
}
.nav-logo a { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: .01em;
}
.nav-logo-sub { font-size: 10.5px; font-weight: 400; color: var(--text-lt); letter-spacing: .04em; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a, .nav-links .nav-dropdown > span {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-md);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links .nav-dropdown:hover > span { color: var(--forest); background: var(--cream-dk); }
.nav-links a.active { color: var(--forest); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > span { display: flex; align-items: center; gap: 4px; user-select: none; }
.nav-dropdown > span::after { content: '▾'; font-size: 10px; opacity: .6; transition: transform var(--transition); }
.nav-dropdown:hover > span::after, .nav-dropdown.open > span::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 210px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-md);
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--cream-dk); color: var(--forest); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: all var(--transition); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { background: var(--cream-dk); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-lt); }
.breadcrumb a { color: var(--text-lt); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--text-md); font-weight: 500; }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 320px;
  background: var(--forest);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .45; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,46,30,.7) 0%, rgba(28,46,30,.45) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 28px; max-width: 1100px; margin: 0 auto; width: 100%; }
.page-hero-eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
}
.page-hero p { margin-top: 14px; font-size: 16px; color: rgba(255,255,255,.8); max-width: 550px; line-height: 1.65; }

/* ── Section Utilities ────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.section-alt { background: var(--cream-dk); }
.section-dark { background: var(--forest); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Cards ────────────────────────────────────────────────── */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-body { padding: 24px; }
.card-eyebrow { font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.card-title { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--forest); margin-bottom: 8px; line-height: 1.3; }
.card-text { font-size: 14px; color: var(--text-md); line-height: 1.65; }
.card-footer { padding: 0 24px 20px; }

/* ── Grid helpers ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* ── Two-col layout ───────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-md); }

/* ── Divider ──────────────────────────────────────────────── */
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 24px; }
.divider.center { margin: 16px auto 24px; }

/* ── Stat blocks ──────────────────────────────────────────── */
.stat-num { font-family: var(--font-head); font-size: 44px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-md); margin-top: 6px; }

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.testimonial::before { content: '\201C'; font-family: var(--font-head); font-size: 80px; color: var(--gold); opacity: .25; position: absolute; top: 8px; left: 24px; line-height: 1; }
.testimonial-text { font-size: 15px; color: var(--text-md); line-height: 1.75; font-style: italic; padding-top: 16px; }
.testimonial-author { margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--forest); }
.testimonial-role { font-size: 12px; color: var(--text-lt); margin-top: 2px; }

/* ── Event card ───────────────────────────────────────────── */
.event-card { display: flex; gap: 20px; padding: 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: box-shadow var(--transition); }
.event-card:hover { box-shadow: var(--shadow-md); }
.event-date-block { flex-shrink: 0; width: 56px; text-align: center; background: var(--green-lt); border-radius: var(--radius); padding: 10px 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.event-month { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--sage); }
.event-day { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--forest); line-height: 1; }
.event-info { flex: 1; }
.event-title { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.event-meta { font-size: 12.5px; color: var(--text-lt); margin-bottom: 6px; }
.event-desc { font-size: 13.5px; color: var(--text-md); line-height: 1.6; }
.event-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; background: var(--green-lt); color: var(--green); margin-top: 8px; }

/* ── Staff card ───────────────────────────────────────────── */
.staff-card { text-align: center; padding: 28px 20px; }
.staff-avatar { width: 84px; height: 84px; border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-head); font-size: 26px; font-weight: 600; color: var(--gold); overflow: hidden; }
.staff-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.staff-name { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--forest); }
.staff-title { font-size: 12.5px; color: var(--text-lt); margin-top: 4px; }
.staff-email { font-size: 12px; color: var(--gold); margin-top: 8px; word-break: break-all; }

/* ── Info strip ───────────────────────────────────────────── */
.info-strip { background: var(--forest); color: #fff; padding: 28px 0; }
.info-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.info-strip-label { font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.info-strip-value { font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.5; }
.info-strip a { color: rgba(255,255,255,.9); }
.info-strip a:hover { color: var(--gold); }

/* ── Feature blocks ───────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.feature-block { padding: 36px 28px; border-right: 1px solid var(--border); transition: background var(--transition); }
.feature-block:last-child { border-right: none; }
.feature-block:hover { background: var(--cream-dk); }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-block h3 { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
.feature-block p { font-size: 13.5px; color: var(--text-md); line-height: 1.65; margin-bottom: 20px; }
.feature-link { font-size: 13px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.feature-link:hover { gap: 10px; }

/* ── Photo mosaic ─────────────────────────────────────────── */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 6px; }
.mosaic-item { position: relative; overflow: hidden; border-radius: 4px; }
.mosaic-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; transition: transform .4s ease; }
.mosaic-item:nth-child(1) img { min-height: 360px; }
.mosaic-item:hover img { transform: scale(1.04); }
.mosaic-caption { position: absolute; inset: 0; background: rgba(28,46,30,.55); display: flex; align-items: flex-end; padding: 14px; opacity: 0; transition: opacity var(--transition); }
.mosaic-item:hover .mosaic-caption { opacity: 1; }
.mosaic-caption span { font-size: 12px; font-weight: 500; color: #fff; line-height: 1.3; }

/* ── Video section ────────────────────────────────────────── */
.video-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── Callout / CTA band ───────────────────────────────────── */
.callout { background: var(--forest); color: #fff; padding: 60px 0; text-align: center; }
.callout h2 { font-family: var(--font-head); font-size: clamp(24px, 4vw, 34px); font-weight: 600; color: #fff; margin-bottom: 16px; }
.callout p { font-size: 15px; color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 32px; line-height: 1.75; }
.callout-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Hero (homepage) ──────────────────────────────────────── */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; background: var(--forest); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: .38; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(28,46,30,.75) 0%, rgba(28,46,30,.45) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding: 80px 28px; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-title { font-family: var(--font-head); font-size: clamp(34px, 6vw, 60px); font-weight: 600; color: #fff; line-height: 1.13; max-width: 640px; margin-bottom: 24px; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.82); max-width: 480px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Pastor welcome ───────────────────────────────────────── */
.pastor-section { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: start; }
.pastor-photo { width: 100%; border-radius: var(--radius-lg); object-fit: cover; object-position: top; aspect-ratio: 3/4; box-shadow: var(--shadow-md); }
.pastor-letter p { font-size: 15px; color: var(--text-md); line-height: 1.8; margin-bottom: 16px; }
.pastor-letter .pastor-sig { font-family: var(--font-head); font-size: 22px; font-style: italic; color: var(--forest); margin-top: 24px; margin-bottom: 4px; }
.pastor-letter .pastor-sig-title { font-size: 12.5px; color: var(--text-lt); letter-spacing: .04em; }

/* ── Kaleidoscope callout card ────────────────────────────── */
.k-callout { background: var(--forest); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 400px; }
.k-callout-content { padding: 48px; }
.k-callout-img { width: 100%; height: 100%; object-fit: cover; }

/* ── Live badge ───────────────────────────────────────────── */
.live-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: #C0392B; padding: 4px 12px; border-radius: 50px; }
.live-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: #111209; color: rgba(255,255,255,.72); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 4px; }
.footer-logo-sub { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .04em; margin-bottom: 14px; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.footer-address { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,.7); transition: background var(--transition), color var(--transition); }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Visit cards ──────────────────────────────────────────── */
.visit-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; }
.visit-card-icon { font-size: 32px; margin-bottom: 16px; }
.visit-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
.visit-card p { font-size: 14px; color: var(--text-md); line-height: 1.7; }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: var(--border); border-radius: 2px; }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -28px; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--gold); }
.timeline-time { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.timeline-title { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.timeline-text { font-size: 14px; color: var(--text-md); line-height: 1.7; }

/* ── Map embed ────────────────────────────────────────────── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Pillar cards ─────────────────────────────────────────── */
.pillar-card { background: var(--gold-lt); border: 1px solid #e8ddc5; border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; }
.pillar-icon { font-size: 36px; margin-bottom: 16px; }
.pillar-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--forest); margin-bottom: 12px; }
.pillar-card p { font-size: 14px; color: var(--text-md); line-height: 1.7; }

/* ── Masonry gallery ──────────────────────────────────────── */
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(28,46,30,.7)); color: #fff; font-size: 11.5px; padding: 18px 12px 8px; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-label { opacity: 1; }
.gallery-category { margin-bottom: 40px; }
.gallery-category-title { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: var(--forest); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }

/* ── Announcement cards ───────────────────────────────────── */
.announcement-card { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 28px 28px 24px; }
.ann-date { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ann-title { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
.ann-text { font-size: 14px; color: var(--text-md); line-height: 1.7; }

/* ── Contact form placeholder ─────────────────────────────── */
.form-note { background: var(--green-lt); border: 1px solid #cce0b8; border-radius: var(--radius-lg); padding: 28px 32px; font-size: 14px; color: var(--forest); line-height: 1.65; }

/* ── Give page ────────────────────────────────────────────── */
.give-area { background: var(--gold-lt); border: 1px solid #e8ddc5; border-radius: var(--radius-lg); padding: 36px; text-align: center; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-block { border-right: none; border-bottom: 1px solid var(--border); }
  .pastor-section { grid-template-columns: 280px 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .k-callout { grid-template-columns: 1fr; }
  .k-callout-img { height: 300px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic-item:nth-child(1) { grid-column: span 2; }
  .gallery-grid { columns: 2; }
  .pastor-section { grid-template-columns: 1fr; }
  .pastor-photo { max-width: 280px; aspect-ratio: 1; margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 480px; }
  .page-hero { height: 260px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px; gap: 2px; box-shadow: var(--shadow-md);
  }
  .site-nav.open .nav-cta {
    display: flex; padding: 0 20px 16px;
    position: absolute; bottom: auto;
  }
  .dropdown-menu {
    position: static; box-shadow: none; border: none;
    background: var(--cream-dk); border-radius: var(--radius);
    opacity: 1; pointer-events: auto; transform: none;
    display: none; margin: 4px 0 4px 12px; padding: 4px 0;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .info-strip-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic-item:nth-child(1) { grid-column: span 1; }
  .topbar .container { flex-direction: column; gap: 4px; }
  .topbar-right { display: none; }
}
