/* Iglesia Pentecostal Impacto De Amor — colores tomados del logo (corazón carmesí + paloma dorada) */
:root {
  --burgundy-900: #3A0610;
  --burgundy: #5E0B1B;
  --wine: #86102A;
  --crimson: #C8103C;
  --crimson-dark: #A30C30;
  --gold: #C9A227;
  --gold-light: #E8D272;
  --gold-dark: #9C7A12;
  --cream: #FBF7F0;
  --cream-2: #F3EADC;
  --paper: #FFFFFF;
  --ink: #2A1418;
  --muted: #6E5A5E;
  --line: #E6DACB;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(58, 6, 16, .06), 0 8px 24px rgba(58, 6, 16, .08);
  --shadow-lg: 0 2px 4px rgba(58, 6, 16, .08), 0 20px 48px rgba(58, 6, 16, .16);
  --wrap: 1180px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
img.is-missing { display: none; }
a { color: var(--crimson-dark); text-underline-offset: 3px; }
a:hover { color: var(--crimson); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--gold); color: var(--ink); padding: 8px 14px; border-radius: 6px; }
.skip:focus { left: 8px; }
.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  background: rgba(94, 11, 27, .97); color: #fff;
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid rgba(201, 162, 39, .35);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.brand:hover { color: #fff; }
.brand-mark { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 1px 1px rgba(0,0,0,.35)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-kicker { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }
.brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }

.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.site-nav a { color: rgba(255,255,255,.88); text-decoration: none; font-weight: 500; padding: 8px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; transition: background .2s, color .2s; }
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.site-nav a[aria-current="page"] { color: var(--gold-light); box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
.lang-switch { border: 1px solid rgba(232, 210, 114, .55); font-size: .92rem; }
.lang-switch .icon { width: 1em; height: 1em; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff3b5c; box-shadow: 0 0 0 0 rgba(255,59,92,.6); animation: pulse 2s infinite; display: inline-block; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,59,92,.55); } 70% { box-shadow: 0 0 0 8px rgba(255,59,92,0); } 100% { box-shadow: 0 0 0 0 rgba(255,59,92,0); } }
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } html { scroll-behavior: auto; } }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after { position: absolute; left: 11px; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; content: ''; }
.nav-toggle-bars { top: 21px; }
.nav-toggle-bars::before { top: -7px; left: 0; }
.nav-toggle-bars::after { top: 7px; left: 0; }
.nav-open .nav-toggle-bars { background: transparent; }
.nav-open .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 12px;
    background: var(--burgundy); padding: 16px 24px 28px; border-bottom: 1px solid rgba(201,162,39,.35);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: all .2s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-open .site-nav { transform: none; opacity: 1; visibility: visible; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { width: 100%; padding: 14px 4px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.1rem; }
  .site-nav a[aria-current="page"] { box-shadow: none; }
  .lang-switch { align-self: flex-start; }
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 1rem/1 var(--font-body); padding: 14px 24px; border-radius: 999px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, box-shadow .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn-primary { background: var(--crimson); color: #fff; box-shadow: 0 6px 18px rgba(200,16,60,.28); }
.btn-primary:hover { background: var(--crimson-dark); color: #fff; }
.btn-gold { background: linear-gradient(180deg, var(--gold-light), var(--gold)); color: var(--burgundy-900); box-shadow: 0 6px 18px rgba(201,162,39,.3); }
.btn-gold:hover { color: var(--burgundy-900); filter: brightness(1.05); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.04); }
.btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.12); }
.btn-outline { color: var(--burgundy); border-color: var(--burgundy); background: transparent; }
.btn-outline:hover { background: var(--burgundy); color: #fff; }
.btn-small { padding: 9px 16px; font-size: .92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; text-decoration: none; color: var(--crimson-dark); }
.link-arrow .icon { transition: transform .2s; }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ---------- Typography helpers ---------- */
.kicker { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--gold-dark); margin: 0 0 .9em; display: inline-flex; align-items: center; gap: 10px; }
.kicker::before { content: ''; width: 28px; height: 2px; background: currentColor; opacity: .8; }
.kicker-light { color: var(--gold-light); }
.h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--burgundy); }
.h2-light { color: #fff; }
.h3 { font-size: 1.35rem; }
.accent { color: var(--crimson); font-style: italic; }
.lead { font-size: 1.18rem; color: #45292F; }
.muted { color: var(--muted); }
.muted-light { color: rgba(255,255,255,.72); }
.note { display: flex; gap: 10px; align-items: flex-start; background: var(--cream-2); border-left: 3px solid var(--gold); padding: 12px 16px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: #4d3a3e; font-size: .98rem; }
.note .icon { color: var(--gold-dark); margin-top: 3px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(86vh, 760px); display: flex; align-items: center; color: #fff; overflow: hidden;
  background: radial-gradient(1200px 600px at 75% 20%, #8e1330 0%, transparent 60%), linear-gradient(135deg, var(--burgundy-900), var(--burgundy) 55%, var(--wine)); }
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; opacity: .38; mix-blend-mode: luminosity; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,6,16,.35) 0%, rgba(58,6,16,.25) 40%, rgba(58,6,16,.85) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 120px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-mark { width: 120px; height: 120px; object-fit: contain; margin-bottom: 18px; filter: drop-shadow(0 6px 18px rgba(0,0,0,.45)); }
.hero-title { font-size: clamp(2.8rem, 8vw, 5.6rem); font-weight: 700; letter-spacing: -.01em; margin-bottom: .2em; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero-title-sm { display: block; font-family: var(--font-body); font-size: clamp(.85rem, 1.6vw, 1.05rem); letter-spacing: .38em; text-transform: uppercase; font-weight: 600; color: var(--gold-light); margin-bottom: .9em; }
.hero-tagline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.25rem, 2.6vw, 1.75rem); color: rgba(255,255,255,.92); margin-bottom: 1.6em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero .kicker::after { content: ''; width: 28px; height: 2px; background: currentColor; opacity: .8; }

/* ---------- Info strip (overlaps hero) ---------- */
.info-strip { position: relative; z-index: 2; margin-top: -72px; }
.info-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px; }
.info-card { background: var(--paper); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-lg); border-top: 3px solid var(--gold); }
.info-h { font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--wine); font-weight: 700; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.info-h .icon { color: var(--gold-dark); }
.info-big { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); line-height: 1.35; }
.times { list-style: none; margin: 0; padding: 0; }
.times li { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "day time" "name time"; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.times li:last-child { border-bottom: 0; }
.times-day { grid-area: day; font-weight: 700; color: var(--burgundy); }
.times-name { grid-area: name; color: var(--muted); font-size: .95rem; }
.times-time { grid-area: time; align-self: center; font-family: var(--font-display); font-size: 1.3rem; color: var(--crimson); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-tint { background: var(--cream-2); }
.section-dark { background: var(--burgundy-900); color: #fff; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-reverse .split-media { order: 2; }
.split-media { position: relative; }
.photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); background: linear-gradient(135deg, var(--wine), var(--burgundy)); }
.photo-portrait { aspect-ratio: 4 / 5; max-width: 460px; margin-inline: auto; }
.since-badge { position: absolute; right: -14px; bottom: -22px; background: var(--burgundy); color: #fff; border: 3px solid var(--gold); border-radius: 50%; width: 118px; height: 118px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); }
.since-badge span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); }
.since-badge strong { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.pull { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--wine); border-left: 3px solid var(--gold); margin: 22px 0 28px; padding: 4px 0 4px 20px; }

/* ---------- Burgundy band ---------- */
.band { padding: clamp(56px, 8vw, 96px) 0; }
.band-burgundy { background: radial-gradient(900px 400px at 10% 0%, rgba(200,16,60,.35), transparent 60%), linear-gradient(135deg, var(--burgundy-900), var(--burgundy)); color: #fff; position: relative; }
.band-live { background: linear-gradient(120deg, var(--crimson-dark), var(--wine) 45%, var(--burgundy-900)); color: #fff; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); }
.mv-text { font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.5; color: rgba(255,255,255,.94); }
.values { list-style: none; margin: 40px 0 0; padding: 28px 0 0; border-top: 1px solid rgba(232,210,114,.3); display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: center; }
.values li { padding: 8px 18px; border: 1px solid rgba(232,210,114,.55); border-radius: 999px; color: var(--gold-light); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; }
.values-dark { border-top-color: var(--line); }
.values-dark li { color: var(--wine); border-color: var(--gold); background: #fff; }
.live-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.live-cta .h2 { margin: 0; max-width: 620px; }
.live-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 22px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--wine), var(--burgundy)); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-badge { position: absolute; left: 12px; bottom: 12px; background: rgba(58,6,16,.82); color: var(--gold-light); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; padding: 6px 10px; border-radius: 6px; }
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body p { color: #4d3a3e; font-size: .98rem; }
.card-body .link-arrow { margin-top: auto; }
.card-title { font-size: 1.35rem; color: var(--burgundy); }
.cards-2 .card-title { font-size: 1.7rem; }
.verse { font-family: var(--font-display); font-style: italic; color: var(--wine); border-left: 3px solid var(--gold); padding-left: 14px; }

/* ---------- About ---------- */
.pillars { list-style: none; margin: 0 0 12px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pillars li { background: var(--paper); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); display: flex; gap: 18px; align-items: flex-start; }
.pillars p { margin: 0; }
.pillar-num { font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--gold); font-weight: 700; }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 0; right: 0; top: 23px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--crimson)); }
.timeline li { position: relative; padding: 0 18px 0 0; }
.tl-year { position: relative; display: inline-block; background: var(--burgundy); color: var(--gold-light); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; padding: 10px 16px; border-radius: 999px; margin-bottom: 14px; border: 2px solid var(--gold); }
.timeline p { color: #4d3a3e; }

/* ---------- Page hero ---------- */
.page-hero { background: radial-gradient(900px 400px at 85% 0%, rgba(200,16,60,.45), transparent 60%), linear-gradient(135deg, var(--burgundy-900), var(--burgundy)); color: #fff; padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px); border-bottom: 3px solid var(--gold); }
.page-title { font-size: clamp(2.3rem, 5.5vw, 3.8rem); margin-bottom: .25em; }
.page-sub { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: rgba(255,255,255,.85); max-width: 720px; margin: 0; }

/* ---------- Beliefs ---------- */
.beliefs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.beliefs-toc { position: sticky; top: calc(var(--header-h) + 24px); max-height: calc(100vh - var(--header-h) - 48px); overflow-y: auto; padding-right: 8px; }
.beliefs-toc ol { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.beliefs-toc a { display: flex; gap: 10px; padding: 6px 0 6px 14px; margin-left: -2px; border-left: 2px solid transparent; text-decoration: none; color: var(--muted); font-size: .93rem; line-height: 1.35; }
.beliefs-toc a:hover, .beliefs-toc a.is-active { color: var(--burgundy); border-left-color: var(--crimson); }
.beliefs-toc span { color: var(--gold-dark); font-weight: 700; min-width: 1.4em; }
.beliefs-tools { display: flex; gap: 10px; margin: 24px 0 18px; }
.accordion details { background: var(--paper); border-radius: var(--radius-sm); margin-bottom: 10px; box-shadow: var(--shadow); border-left: 3px solid transparent; transition: border-color .2s; }
.accordion details[open] { border-left-color: var(--crimson); }
.accordion summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 18px 22px; font-family: var(--font-display); font-size: 1.2rem; color: var(--burgundy); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; margin-left: auto; font-family: var(--font-body); font-size: 1.6rem; color: var(--gold-dark); transition: transform .2s; line-height: 1; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.acc-num { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--cream-2); color: var(--wine); font-family: var(--font-body); font-weight: 700; font-size: .95rem; border: 1px solid var(--gold); }
.accordion .prose { padding: 0 22px 22px 78px; }
.prose p, .prose li { color: #3d272b; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .5em; }
.prose blockquote { margin: 14px 0; padding: 14px 18px; background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .98rem; }
.prose blockquote p { margin: 0; }
.prose blockquote strong { color: var(--wine); }
.beliefs-intro { font-size: 1.08rem; }

/* ---------- Live ---------- */
.live-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.player { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); border: 1px solid rgba(232,210,114,.25); }
.player iframe, .player video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 24px; background: radial-gradient(600px 300px at 50% 30%, rgba(200,16,60,.35), transparent 70%), var(--burgundy-900); }
.player-placeholder p { max-width: 440px; color: rgba(255,255,255,.8); margin: 0; }
.player-offline { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 12px 16px; background: rgba(0,0,0,.7); color: #fff; font-size: .95rem; }
.live-links { list-style: none; padding: 0; margin: 0 0 24px; }
.live-links a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; margin-bottom: 8px; border-radius: var(--radius-sm); background: rgba(255,255,255,.06); color: #fff; text-decoration: none; font-weight: 600; border: 1px solid rgba(255,255,255,.08); }
.live-links a:hover { background: rgba(255,255,255,.12); color: #fff; }
.live-links a span { margin-left: auto; font-weight: 400; color: rgba(255,255,255,.6); font-size: .9rem; }
.live-links .icon { color: var(--gold-light); width: 1.35em; height: 1.35em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: start; margin-bottom: 36px; }
.contact-side { display: grid; gap: 16px; }
.contact-side .info-card { box-shadow: var(--shadow); }
.form { background: var(--paper); padding: clamp(22px, 4vw, 36px); border-radius: var(--radius); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--burgundy); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--cream); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(201,162,39,.2); }
.field .is-invalid, .field input.is-invalid, .field textarea.is-invalid { border-color: var(--crimson); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status:empty { display: none; }
.form-status { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600; }
.form-status.is-ok { background: #EEF6EA; color: #2F5A1F; border: 1px solid #B8D6A8; }
.form-status.is-err { background: #FCEBEE; color: var(--crimson-dark); border: 1px solid #F1B6C3; }
.form button[disabled] { opacity: .7; cursor: progress; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: var(--cream-2); border: 4px solid #fff; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-wide { aspect-ratio: 21 / 8; }

/* ---------- Social ---------- */
.social { list-style: none; display: flex; gap: 10px; margin: 0; padding: 0; flex-wrap: wrap; }
.social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--burgundy); color: var(--gold-light); transition: background .2s, transform .2s; }
.social a:hover { background: var(--crimson); color: #fff; transform: translateY(-2px); }
.social .icon { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--burgundy-900); color: rgba(255,255,255,.78); padding: 64px 0 0; border-top: 3px solid var(--gold); font-size: .98rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 10px; }
.footer-name { font-family: var(--font-display); color: #fff; font-size: 1.25rem; margin-bottom: 4px; }
.footer-tagline { font-style: italic; color: var(--gold-light); }
.footer-h { font-family: var(--font-body); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }
.site-footer a { color: #fff; text-decoration-color: rgba(232,210,114,.5); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer .social a { background: rgba(255,255,255,.08); }
.site-footer .social a:hover { background: var(--crimson); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 18px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: none; }

/* ---------- Admin ---------- */
.messages { display: grid; gap: 14px; }
.msg { background: var(--paper); border-radius: var(--radius-sm); padding: 18px 22px; box-shadow: var(--shadow); border-left: 3px solid var(--gold); }
.msg-prayer { border-left-color: var(--crimson); }
.msg header { display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; }
.msg time { margin-left: auto; color: var(--muted); font-size: .9rem; }
.msg-topic { background: var(--cream-2); color: var(--wine); font-size: .78rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.msg-meta { font-size: .92rem; color: var(--muted); margin: 6px 0 10px; }
.msg-body { white-space: pre-wrap; margin: 0; }

.notfound { text-align: center; }
.notfound img { margin: 0 auto 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .live-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .info-grid, .split, .mv-grid, .contact-grid, .cards-2, .pillars, .beliefs-layout { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
  .timeline { grid-template-columns: 1fr; gap: 18px; padding-left: 8px; }
  .timeline::before { left: 29px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--gold), var(--crimson)); }
  .timeline li { display: flex; gap: 16px; align-items: baseline; padding: 0; }
  .beliefs-toc { display: none; }
  .map-wide { aspect-ratio: 4 / 3; }
  .since-badge { right: 12px; width: 100px; height: 100px; }
}
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .wrap { padding: 0 16px; }
  .brand-name { font-size: 1.2rem; }
  .brand-mark { width: 44px; height: 44px; }
  .cards-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .live-cta-actions .btn { flex: 1 1 100%; }
  .accordion .prose { padding: 0 16px 18px; }
  .accordion summary { padding: 16px; font-size: 1.08rem; }
  .footer-bottom { flex-direction: column; }
}
