/* ============================================================
   EEBCL — Ethiopian & Eritrean Bible Church of Loudoun
   Brand palette: Black, Ivory, Gold (from the church seal)
   ============================================================ */

:root {
  --black: #0e0e0d;
  --ink: #1a1916;
  --ink-2: #2a2823;
  --cream: #faf7f0;
  --paper: #ffffff;
  --line: #e6e1d3;
  --muted: #6b6759;
  --text: #1a1916;
  --gold: #c8a24a;
  --gold-deep: #a8842f;
  --gold-soft: #efe2b8;

  --max: 1180px;
  --r: 6px;
  --r-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 14, 12, 0.06), 0 4px 12px rgba(15, 14, 12, 0.04);
  --shadow-md: 0 2px 8px rgba(15, 14, 12, 0.08), 0 18px 48px rgba(15, 14, 12, 0.08);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --text-base: clamp(16px, 1vw + 12px, 17px);
  --text-lead: clamp(17px, 0.5vw + 16px, 19px);
  --h2: clamp(28px, 2.6vw + 12px, 44px);
  --h3: clamp(20px, 1.2vw + 14px, 24px);
  --hero: clamp(40px, 6vw + 8px, 84px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: absolute;
  top: -40px; left: 8px;
  background: var(--black); color: var(--cream);
  padding: 8px 12px; border-radius: var(--r);
  z-index: 100;
}
.skip-link:focus { top: 8px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 2px 12px rgba(15, 14, 12, 0.05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; box-shadow: var(--shadow-sm); object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-line-1 { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; color: var(--ink); }
.brand-line-2 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); }

.primary-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.primary-nav a {
  text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em; padding: 6px 0; position: relative;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .25s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }
.header-cta { font-size: 13px; padding: 10px 18px; }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 0; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 12px 24px 18px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none; color: var(--ink); padding: 12px 0;
  border-bottom: 1px solid var(--line); font-size: 16px;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-family: var(--font-sans);
  font-size: 15px; font-weight: 500; padding: 14px 26px;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn.small { padding: 9px 16px; font-size: 13px; }
.btn-primary { background: var(--black); color: var(--cream); }
.btn-primary:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-deep); color: var(--paper); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
  color: var(--cream);
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(200, 162, 74, 0.22), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(200, 162, 74, 0.12), transparent 60%),
    linear-gradient(180deg, #0a0a09 0%, #15140f 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200, 162, 74, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 162, 74, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.45;
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 880px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease;
}
.hero-inner.in { opacity: 1; transform: none; }
.hero-seal {
  width: 130px; height: 130px; border-radius: 50%;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 1px rgba(200, 162, 74, 0.45), 0 24px 60px rgba(0,0,0,0.6);
}
.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 14px;
}
.eyebrow.gold { color: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--hero);
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.hero-title .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.hero-sub {
  font-size: var(--text-lead);
  max-width: 640px; margin: 0 auto 36px;
  color: #d8d1bf;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 56px; }
.hero-ctas .btn-ghost { color: var(--cream); border-color: var(--gold); }
.hero-ctas .btn-ghost:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin: 0 auto; max-width: 720px;
  border-top: 1px solid rgba(200, 162, 74, 0.35);
  border-bottom: 1px solid rgba(200, 162, 74, 0.35);
  padding: 22px 0;
}
.hero-meta > div { text-align: center; }
.hero-meta dt {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.hero-meta dd { margin: 0; font-family: var(--font-display); font-size: 22px; color: var(--cream); }

/* ===== SECTION ===== */
.section {
  padding: clamp(72px, 8vw, 120px) 0;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.section.in { opacity: 1; transform: none; }
.section.dark { background: var(--black); color: var(--cream); }
.section.dark .section-title { color: var(--cream); }
.section.dark .section-sub { color: #c9c3b1; }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--h2);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.section-title.light { color: var(--cream); }
.section-sub {
  font-size: var(--text-lead);
  color: var(--muted);
  margin: 0;
}

.lead { font-size: var(--text-lead); color: var(--ink-2); margin: 0 0 18px; }
.link-arrow {
  display: inline-block; margin-top: 12px;
  font-weight: 600; font-size: 14px;
  text-decoration: none; color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.link-arrow:hover { color: var(--gold-deep); }

.two-col {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: start;
}

/* ===== ABOUT — PILLARS CARD ===== */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.card-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  margin: 0 0 18px;
  color: var(--ink);
}
.pillars .pillar-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.pillars li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--gold-deep);
  border-right: 1px solid var(--line);
  padding-right: 12px;
}
.pillars h4 {
  font-family: var(--font-display); font-size: 19px; font-weight: 600;
  margin: 0 0 4px; color: var(--ink);
}
.pillars p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ===== SCRIPTURE BANNER ===== */
.scripture {
  background: linear-gradient(135deg, #1a1610 0%, #2a2317 100%);
  color: var(--cream);
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.scripture.in { opacity: 1; transform: none; }
.scripture-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw + 10px, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  max-width: 880px; margin: 0 auto 18px;
}
.scripture-ref { letter-spacing: 0.22em; text-transform: uppercase; font-size: 12px; color: var(--gold); margin: 0; }

/* ===== BELIEFS ===== */
.belief-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.belief {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200, 162, 74, 0.22);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.belief:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(200, 162, 74, 0.05); }
.belief h3 {
  font-family: var(--font-display);
  color: var(--gold);
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
}
.belief p { margin: 0; color: #d4ceba; font-size: 15px; line-height: 1.65; }

/* ===== MINISTRIES ===== */
.ministry-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.ministry {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ministry:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.ministry.feature {
  background: linear-gradient(180deg, #ffffff 0%, #fffaee 100%);
  border-color: var(--gold);
  grid-column: span 1;
}
.ministry-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.ministry h3 {
  font-family: var(--font-display);
  font-size: var(--h3); font-weight: 600;
  margin: 0 0 6px; color: var(--ink);
}
.ministry-meta {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 14px;
}
.ministry p { margin: 0 0 12px; color: var(--ink-2); font-size: 15px; }
.ministry-features { list-style: none; padding: 0; margin: 0; }
.ministry-features li {
  font-size: 14px; color: var(--muted);
  padding: 6px 0 6px 18px; position: relative;
}
.ministry-features li::before {
  content: "✦"; position: absolute; left: 0; top: 6px;
  color: var(--gold); font-size: 12px;
}

/* ===== SERMONS ===== */
.sermons { background: var(--paper); }
.sermon-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.sermon.latest {
  background: var(--black); color: var(--cream);
  padding: 44px; border-radius: var(--r-lg);
  border: 1px solid var(--gold-deep);
  position: relative; overflow: hidden;
}
.sermon.latest::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.18), transparent 70%);
}
.sermon-series {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 16px;
}
.sermon.latest h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw + 8px, 40px);
  font-weight: 500; line-height: 1.1;
  margin: 0 0 12px; color: var(--cream);
}
.sermon-meta {
  font-size: 13px; color: #c9c3b1;
  margin: 0 0 18px;
}
.sermon.latest p:not(.sermon-series):not(.sermon-meta) { color: #d8d1bf; margin: 0 0 24px; }
.sermon-actions { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.sermon-actions .btn-primary { background: var(--gold); color: var(--black); }
.sermon-actions .btn-primary:hover { background: var(--gold-deep); color: var(--paper); }
.sermon-actions .btn-ghost { color: var(--cream); border-color: var(--gold); }
.sermon-actions .btn-ghost:hover { background: var(--gold); color: var(--black); }

.sermon-list { list-style: none; padding: 0; margin: 0; }
.sermon-list li {
  display: grid; grid-template-columns: 70px 1fr; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.sermon-list li:first-child { padding-top: 0; }
.sermon-list .date {
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px; color: var(--gold-deep);
  border-right: 1px solid var(--line); padding-right: 14px;
}
.sermon-list h4 {
  font-family: var(--font-display);
  margin: 0 0 4px; font-size: 18px; font-weight: 600;
  color: var(--ink);
}
.sermon-list p { margin: 0; font-size: 13.5px; color: var(--muted); }

/* ===== EVENTS ===== */
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.event {
  display: grid; grid-template-columns: 96px 1fr; gap: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200, 162, 74, 0.25);
  border-radius: var(--r-lg);
  padding: 26px;
  align-items: start;
  transition: border-color .25s ease, transform .25s ease;
}
.event:hover { border-color: var(--gold); transform: translateY(-3px); }
.event-date {
  background: var(--gold); color: var(--black);
  border-radius: var(--r);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px 8px;
}
.event-date .month {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.event-date .day { font-family: var(--font-display); font-size: 34px; font-weight: 600; line-height: 1; }
.event h3 {
  font-family: var(--font-display); margin: 0 0 6px;
  font-size: 22px; font-weight: 600; color: var(--cream);
}
.event-meta {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 10px;
}
.event-body p:last-child { margin: 0; color: #c9c3b1; font-size: 14.5px; }

/* ===== VISIT ===== */
.visit-card .big-time {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 600; line-height: 1;
  color: var(--gold-deep); margin: 0 0 6px;
}
.visit-card .visit-line { margin: 0 0 4px; color: var(--muted); font-size: 14px; }
.visit-card hr { border: none; border-top: 1px solid var(--line); margin: 24px 0; }
.visit-card address { font-style: normal; color: var(--ink-2); margin: 0 0 8px; line-height: 1.55; }
.visit-h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; margin: 28px 0 12px;
}
.visit-list { padding: 0; list-style: none; margin: 0 0 28px; }
.visit-list li {
  padding: 10px 0 10px 24px; position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2); font-size: 15px;
}
.visit-list li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  color: var(--gold-deep); font-weight: 700;
}
.schedule { list-style: none; padding: 0; margin: 0; }
.schedule li {
  display: flex; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.schedule li:last-child { border: none; }
.schedule li span:first-child { color: var(--ink-2); }
.schedule li span:last-child { color: var(--gold-deep); font-weight: 600; }

/* ===== GIVE ===== */
.give {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200, 162, 74, 0.18), transparent 60%),
    linear-gradient(135deg, #0e0d0a 0%, #1a1610 100%);
  color: var(--cream);
  text-align: center;
}
.give-inner { max-width: 760px; margin: 0 auto; }
.give-lead { font-size: var(--text-lead); color: #d4ceba; margin: 0 auto 32px; max-width: 600px; }
.give-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 28px; }
.give-fine {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: 16px; margin: 0;
  max-width: 600px; margin: 28px auto 0;
}

/* ===== CONTACT FORM ===== */
.contact-list { list-style: none; padding: 0; margin: 22px 0; }
.contact-list li { padding: 6px 0; color: var(--ink-2); }
.contact-list a { color: var(--gold-deep); text-decoration: none; border-bottom: 1px solid var(--gold-soft); }
.contact-list a:hover { color: var(--ink); border-color: var(--gold-deep); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-sans); font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--cream); color: var(--ink);
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold-deep); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { align-self: flex-start; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black); color: #c9c3b1;
  padding: 64px 0 32px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-mark { width: 70px; height: 70px; border-radius: 50%; }
.footer-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  color: var(--cream); margin: 0;
  line-height: 1.25;
}
.footer-tag { color: var(--gold); font-size: 13px; margin: 0; letter-spacing: 0.04em; }
.site-footer h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 16px;
}
.site-footer p { margin: 0 0 8px; font-size: 14px; line-height: 1.55; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 4px 0; }
.footer-links a { color: #c9c3b1; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-form { display: flex; gap: 8px; margin-top: 12px; }
.footer-form input {
  flex: 1; padding: 10px 12px;
  background: rgba(255,255,255,0.06); color: var(--cream);
  border: 1px solid rgba(200, 162, 74, 0.3); border-radius: var(--r);
  font-family: var(--font-sans); font-size: 13.5px;
}
.footer-form input:focus { outline: none; border-color: var(--gold); }
.footer-form button {
  background: var(--gold); color: var(--black);
  border: none; padding: 10px 16px; border-radius: var(--r);
  cursor: pointer; font-weight: 600; font-size: 13.5px;
}
.footer-form button:hover { background: var(--gold-deep); color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(200, 162, 74, 0.2);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: #807961;
}
.footer-bottom .verse { font-family: var(--font-display); font-style: italic; color: var(--gold); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .belief-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ministry-grid { grid-template-columns: repeat(2, 1fr); }
  .sermon-grid { grid-template-columns: 1fr; gap: 32px; }
  .event-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .brand-line-1 { font-size: 12px; }
  .brand-line-2 { font-size: 15px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero-meta { grid-template-columns: 1fr; gap: 12px; }
  .hero-meta > div { padding: 6px 0; }
  .belief-grid, .ministry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sermon.latest { padding: 28px; }
  .footer-bottom { flex-direction: column; }
  .section-head { margin-bottom: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .section, .hero-inner, .scripture { opacity: 1; transform: none; }
}
