/* ===== Design tokens ===== */
:root {
  --navy: #14213d;
  --navy-deep: #0c162b;
  --gold: #c9a24b;
  --gold-soft: #e4c987;
  /* Brand accents sampled from the emblem */
  --ember: #ff5a1f;
  --amber: #ffbb00;
  --ivory: #f3e9db;
  --cream: #faf7f0;
  --cream-2: #f2ece0;
  --ink: #22252b;
  --muted: #5b6270;
  --white: #ffffff;
  --line: #e6ddc9;
  --shadow: 0 18px 45px -22px rgba(20, 33, 61, 0.4);
  --radius: 16px;
  --maxw: 1140px;
  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { font-family: var(--ff-serif); line-height: 1.15; font-weight: 600; margin: 0 0 0.5em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); }
h3 { font-size: 1.45rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.6rem;
}
.eyebrow-light { color: var(--gold-soft); }

.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: var(--cream-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-lede { color: var(--muted); font-size: 1.1rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); box-shadow: 0 12px 24px -12px rgba(201,162,75,0.8); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-block { width: 100%; text-align: center; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 240, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { color: var(--gold); font-size: 1.4rem; }

/* Logo badge in header (dark chip; screen-blend hides the logo's black bg).
   Only becomes a dark chip once a real logo image has loaded — otherwise it
   falls back to the ✦ mark so there is never an empty black box. */
.brand-logo-badge {
  flex: 0 0 auto; display: grid; place-items: center;
}
.brand-logo-badge.has-logo {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(150deg, #1c2f57 0%, var(--navy-deep) 70%);
  box-shadow: inset 0 0 0 1px rgba(255, 187, 0, 0.28), 0 8px 18px -10px rgba(255, 90, 31, 0.55);
  overflow: hidden;
}
.brand-logo-badge img {
  width: 78%; height: 78%; object-fit: contain;
}
.badge-fallback {
  font-family: var(--ff-serif); font-weight: 700;
  color: var(--gold); font-size: 1.2rem; letter-spacing: 0.02em; white-space: nowrap;
}
.brand-logo-badge.has-logo .badge-fallback { display: none; }
/* Hero emblem — transparent PNG, so it sits on the hero without blend tricks */
.hero-logo {
  display: block; margin: 0 auto 8px;
  width: clamp(220px, 42vw, 340px); height: auto;
  filter:
    drop-shadow(0 0 26px rgba(255, 187, 0, 0.28))
    drop-shadow(0 16px 44px rgba(255, 90, 31, 0.35));
}
/* Footer logo badge */
.footer-logo-badge { display: inline-grid; place-items: center; vertical-align: middle; }
.footer-logo-badge.has-logo {
  width: 56px; height: 56px; border-radius: 14px; overflow: hidden;
  background: linear-gradient(150deg, #1c2f57 0%, var(--navy-deep) 70%);
  box-shadow: inset 0 0 0 1px rgba(255, 187, 0, 0.3);
}
.footer-logo-badge img { width: 78%; height: 78%; object-fit: contain; }
.footer-logo-badge.has-logo .badge-fallback { display: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--ff-serif); font-size: 1.35rem; color: var(--navy); letter-spacing: 0.01em; }
.brand-text em { font-style: normal; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }

.nav-menu { list-style: none; display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; }
.nav-menu a { text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--ink); transition: color 0.15s; }
.nav-menu a:hover { color: var(--gold); }
.nav-cta { background: var(--navy); color: var(--white) !important; padding: 9px 20px; border-radius: 999px; }
.nav-cta:hover { background: var(--navy-deep); }
.lang-switch { border: 1.5px solid var(--gold); color: var(--gold) !important; padding: 7px 16px; border-radius: 999px; font-weight: 600; }
.lang-switch:hover { background: var(--gold); color: var(--navy-deep) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: 0.25s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  /* warm accents pushed to the corners so the emblem keeps a deep backdrop */
  background:
    radial-gradient(circle at 82% 14%, rgba(255,90,31,0.20), transparent 46%),
    radial-gradient(circle at 14% 84%, rgba(255,187,0,0.16), transparent 50%),
    linear-gradient(160deg, #16264a 0%, var(--navy-deep) 62%, #060b18 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.06;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; padding: 100px 24px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { font-size: clamp(3rem, 8vw, 5.5rem); color: var(--white); margin-bottom: 0.3em; letter-spacing: 0.01em; }
.hero-verse {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  line-height: 1.4;
  margin: 0 auto 1.4rem;
  max-width: 640px;
  color: var(--gold-soft);
}
.hero-verse span { display: block; }
.hero-verse cite {
  display: block;
  font-style: normal;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 2.2rem; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1.5rem; z-index: 2;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ===== Grid helpers ===== */
.grid-2 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start; }

/* ===== About ===== */
.about-text p { color: var(--muted); }
.value-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 16px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list span { color: var(--gold); font-size: 1.1rem; line-height: 1.6; }
.value-list strong { color: var(--navy); }

.about-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.about-card h3 { color: var(--gold-soft); }
.about-card p { color: rgba(255,255,255,0.8); }
.quick-facts { list-style: none; margin: 1.4rem 0; padding: 0; }
.quick-facts li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.quick-facts li:last-child { border-bottom: 0; }
.quick-facts strong { color: var(--white); }
.quick-facts span { color: var(--gold-soft); }

/* ===== Campus blocks (shared) ===== */
.campus-block { margin-bottom: 56px; }
.campus-block:last-child { margin-bottom: 0; }
.campus-label {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding-bottom: 14px; margin-bottom: 28px; border-bottom: 2px solid var(--line);
}
.campus-label h3 { margin: 0; color: var(--navy); font-size: 1.6rem; }
.campus-pin { font-size: 1.2rem; }
.campus-link {
  margin-left: auto; font-size: 0.9rem; font-weight: 600; color: var(--gold);
  text-decoration: none; white-space: nowrap;
}
.campus-link:hover { color: var(--navy); }

/* ===== Ministries ===== */
.ministry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.ministry-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}
.ministry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.ministry-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.7rem;
  background: linear-gradient(145deg, var(--cream-2), #fff);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.ministry-card h3 { color: var(--navy); margin-bottom: 0.25em; }
.ministry-meta { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); font-weight: 600; margin: 0 0 1rem; }
.ministry-card > p { color: var(--muted); }
.ministry-verse { font-family: var(--ff-serif); font-style: italic; color: var(--navy); font-size: 1.05rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--line); }

/* ===== Schedule ===== */
.schedule-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.schedule-list { display: grid; gap: 16px; }
.schedule-row {
  display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 24px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 28px; transition: border-color 0.2s, transform 0.2s;
}
.schedule-row:hover { border-color: var(--gold); transform: translateX(4px); }
.schedule-day { display: grid; place-items: center; }
.day-abbr {
  font-family: var(--ff-serif); font-weight: 600; font-size: 1.1rem;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy); color: var(--gold-soft);
  display: grid; place-items: center; letter-spacing: 0.05em;
}
.schedule-info h3 { margin: 0; font-size: 1.25rem; color: var(--navy); }
.schedule-info p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.95rem; }
.schedule-time { font-weight: 600; color: var(--gold); white-space: nowrap; }

/* ===== Events ===== */
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.event-card {
  display: flex; gap: 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform 0.2s, box-shadow 0.2s;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.event-date {
  flex: 0 0 64px; height: 74px; border-radius: 12px;
  background: var(--navy); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ev-day { font-family: var(--ff-serif); font-size: 1.7rem; font-weight: 600; line-height: 1; }
.ev-mon { font-size: 0.72rem; letter-spacing: 0.15em; color: var(--gold-soft); margin-top: 3px; }
.event-body h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 0.2em; }
.event-loc { font-size: 0.85rem; color: var(--gold); font-weight: 600; margin: 0 0 0.6rem; }
.event-body p { color: var(--muted); font-size: 0.95rem; }
.event-link { display: inline-block; margin-top: 0.6rem; color: var(--navy); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.event-link:hover { color: var(--gold); }

/* ===== Daily Verse band ===== */
.verse-band {
  background:
    radial-gradient(circle at 15% 30%, rgba(201,162,75,0.22), transparent 55%),
    linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: clamp(44px, 6vw, 72px) 0;
  text-align: center;
}
.verse-band-inner { max-width: 820px; margin: 0 auto; }
.verse-band-text {
  font-family: var(--ff-serif); font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.15rem); line-height: 1.4;
  color: var(--gold-soft); margin: 0.4rem auto 0.8rem; max-width: 720px;
}
.verse-band-ref {
  display: block; font-style: normal; font-family: var(--ff-sans);
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.verse-loading { opacity: 0.6; }

/* ===== Empty states ===== */
.empty-state {
  text-align: center; max-width: 560px; margin: 0 auto;
  padding: 48px 28px; border: 1px dashed var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--navy);
}
.empty-state p { margin: 0; font-family: var(--ff-serif); font-size: 1.4rem; }
.empty-state .empty-sub { font-family: var(--ff-sans); font-size: 0.98rem; color: var(--muted); margin-top: 0.6rem; }

/* ===== Resources (Messages & Media) ===== */
.resource-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.resource-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s;
  display: flex; flex-direction: column;
}
.resource-card:hover { transform: translateY(-5px); }
.resource-media { position: relative; aspect-ratio: 16 / 9; background: var(--cream-2); }
.resource-media iframe,
.resource-media img,
.resource-media video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; }
.resource-media--audio { display: grid; place-items: center; aspect-ratio: auto; padding: 22px; background: var(--navy); }
.resource-media--audio audio { width: 100%; }
.resource-media--link {
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.watch-btn {
  background: var(--gold); color: var(--navy-deep); border: 0; cursor: pointer;
  font-family: var(--ff-sans); font-weight: 600; font-size: 0.95rem;
  padding: 12px 24px; border-radius: 999px; transition: transform 0.15s, background 0.15s;
}
.watch-btn:hover { background: var(--gold-soft); transform: translateY(-2px); }

/* In-page media viewer (modal) */
.media-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.media-modal[hidden] { display: none; }
.media-modal__backdrop { position: absolute; inset: 0; background: rgba(6, 11, 24, 0.88); backdrop-filter: blur(3px); }
.media-modal__box { position: relative; width: 100%; max-width: 960px; }
.media-modal__frame { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8); }
.media-modal__frame iframe, .media-modal__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-modal__audio { display: grid; place-items: center; width: 100%; height: 100%; padding: 24px; }
.media-modal__close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--gold); color: var(--navy-deep); font-size: 1.1rem; font-weight: 700;
  box-shadow: var(--shadow);
}
.media-modal__ext { display: inline-block; margin-top: 14px; color: var(--gold-soft); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.media-modal__ext:hover { color: #fff; }
@media (max-width: 560px) {
  .media-modal__close { top: 6px; right: 6px; }
}
.resource-body { padding: 20px 22px 24px; }
.resource-badge {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin-bottom: 8px;
}
.resource-body h3 { color: var(--navy); font-size: 1.2rem; margin: 0 0 0.4em; }
.resource-body p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ===== Locations ===== */
.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.location-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s;
}
.location-card:hover { transform: translateY(-5px); }
.location-map { position: relative; aspect-ratio: 16 / 10; background: var(--cream-2); }
.location-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.location-body { padding: 26px 28px 30px; }
.location-body h3 { color: var(--navy); margin-bottom: 0.5em; }
.location-addr { color: var(--muted); font-size: 0.95rem; margin: 0 0 1rem; }

/* ===== Give ===== */
.give {
  background:
    radial-gradient(circle at 80% 30%, rgba(201,162,75,0.2), transparent 50%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); text-align: center;
}
.give-inner { max-width: 640px; margin: 0 auto; }
.give h2 { color: var(--white); }
.give p { color: rgba(255,255,255,0.82); }
.give-verse { font-family: var(--ff-serif); font-style: italic; font-size: 1.3rem; color: var(--gold-soft); margin: 1.4rem 0 2rem; }

/* ===== Contact ===== */
.contact-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list span { font-size: 1.2rem; }
.contact-list a { color: var(--gold); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 32px; box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--navy); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--ff-sans); font-size: 0.95rem; color: var(--ink); background: var(--cream);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.18); background: #fff;
}
.field textarea { resize: vertical; }
.form-note { margin: 14px 0 0; font-size: 0.9rem; min-height: 1.2em; }
.form-note.ok { color: #2f7d4f; }
.form-note.err { color: #c0392b; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand strong { font-family: var(--ff-serif); font-size: 1.4rem; color: var(--white); display: inline-block; margin-left: 6px; }
.footer-brand .brand-mark { color: var(--gold); }
.footer-brand p { font-family: var(--ff-serif); font-style: italic; margin-top: 1rem; max-width: 320px; color: var(--gold-soft); }
.footer-col h4 { color: var(--white); font-family: var(--ff-sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 56px; padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: 0.85rem; text-align: center; color: rgba(255,255,255,0.55); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .schedule-columns { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; box-shadow: var(--shadow);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid var(--line); }
  .nav-menu li:last-child { border-bottom: 0; padding-top: 12px; }
  .nav-menu a { display: block; padding: 14px 0; }
  .nav-cta { text-align: center; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .schedule-row { grid-template-columns: 60px 1fr; }
  .schedule-time { grid-column: 2; color: var(--gold); }
  .day-abbr { width: 50px; height: 50px; font-size: 0.95rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .event-card { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .btn:hover, .ministry-card:hover, .event-card:hover, .schedule-row:hover { transform: none; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
