/* ============================================================
   ST. MARY OF VICTORIES — Main Stylesheet
   Aesthetic: Sacred Gothic Revival · Deep Navy & Gold
   ============================================================ */

:root {
  --navy:          #2563d9;
  --navy-dark:     #1a4fc7;
  --navy-mid:      #3575e5;
  --navy-light:    #4a88f0;
  --gold:          #c9a84c;
  --gold-light:    #e8c97a;
  --gold-pale:     #f5e9c8;
  --cream:         #f7f9fc;
  --parchment:     #edf1f8;
  --warm-dark:     #1240a8;
  --warm-mid:      #1e55cc;
  --text-dark:     #0a1e5e;
  --text-mid:      #2a4a99;
  --text-light:    #6080c0;
  --border-gold:   rgba(201,168,76,0.35);
  --shadow:        0 4px 32px rgba(6,15,30,0.18);
  --shadow-heavy:  0 8px 48px rgba(6,15,30,0.28);

  --font-display:  'Cinzel', serif;
  --font-body:     'EB Garamond', serif;
  --font-fine:     'Cormorant Garamond', serif;
}

*, *::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-dark);
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--navy-dark); line-height: 1.2; }
em { font-family: var(--font-fine); font-style: italic; }
p { margin-bottom: 1rem; }
a { color: var(--navy-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
address { font-style: normal; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  font-weight: 600;
}
.btn-primary { background: var(--navy); color: var(--gold-light); border: 2px solid var(--navy); }
.btn-primary:hover { background: var(--navy-dark); color: var(--gold-light); border-color: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,31,60,0.35); }
.btn-outline { background: transparent; color: var(--gold-light); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-1px); }
.btn-tour {
  background: transparent;
  color: #a8d8ff;
  border: 2px solid #4a9fd4;
}
.btn-tour:hover {
  background: #4a9fd4;
  color: var(--navy-dark);
  transform: translateY(-1px);
}

.section-title { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 0.6rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-sub { font-family: var(--font-fine); font-size: 1.15rem; color: var(--text-mid); font-style: italic; }

/* ── Header / Nav ─────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; height: 72px;
}
.logo-wrap { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.logo-emblem { font-size: 1.4rem; color: var(--gold); line-height: 1; display: flex; align-items: center; }
.logo-emblem-img { width: 36px; height: 36px; object-fit: contain; display: block; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gold-light); letter-spacing: 0.04em; line-height: 1.1; }
.logo-sub { font-family: var(--font-fine); font-size: 0.7rem; color: rgba(232,201,122,0.65); letter-spacing: 0.08em; line-height: 1; }

.main-nav ul { list-style: none; }
/* Desktop: top-level nav is flex row */
@media (min-width: 769px) {
  .main-nav > ul { display: flex; align-items: center; gap: 0.25rem; }
}

.main-nav > ul > li > a {
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(232,201,122,0.85);
  padding: 0.5rem 0.75rem; border-radius: 2px; transition: all 0.2s; white-space: nowrap;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active {
  color: var(--gold-light); background: rgba(201,168,76,0.12);
}
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--navy-dark); border: 1px solid var(--border-gold);
  border-radius: 3px; min-width: 220px; box-shadow: var(--shadow-heavy);
  z-index: 200; padding: 0.4rem 0;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block; font-family: var(--font-body); font-size: 0.88rem;
  color: rgba(245,233,200,0.85); padding: 0.5rem 1.1rem; transition: all 0.15s;
}
.dropdown li a:hover { background: rgba(201,168,76,0.15); color: var(--gold-light); padding-left: 1.4rem; }
.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(--gold-light); transition: all 0.3s; }

/* ── Hero ─────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 72px;
}
/* ── Hero Slideshow ───────────────────── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlide 60s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 10s; }
.hero-slide:nth-child(3) { animation-delay: 20s; }
.hero-slide:nth-child(4) { animation-delay: 30s; }
.hero-slide:nth-child(5) { animation-delay: 40s; }
.hero-slide:nth-child(6) { animation-delay: 50s; }

@keyframes heroSlide {
  0%       { opacity: 0; }
  2%       { opacity: 1; }
  16.5%   { opacity: 1; }
  18.5%   { opacity: 0; }
  100%    { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(10,30,90,0.55) 0%,
    rgba(18,45,140,0.45) 40%,
    rgba(37,99,217,0.35) 70%,
    rgba(10,30,90,0.52) 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 4rem 2rem; max-width: 760px; animation: heroFadeUp 1.2s ease both; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-family: var(--font-fine); font-size: 0.95rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; animation: heroFadeUp 1.2s 0.1s ease both; text-shadow: 0 2px 8px rgba(0,0,0,0.7); }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 0.2rem; animation: heroFadeUp 1.2s 0.2s ease both; text-shadow: 0 3px 16px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.5); }
.hero-title em { font-family: var(--font-fine); font-style: italic; color: var(--gold-light); font-weight: 300; font-size: 1.1em; }
.hero-subtitle { font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.4rem); letter-spacing: 0.3em; text-transform: uppercase; color: rgba(232,201,122,0.7); margin-bottom: 1.5rem; animation: heroFadeUp 1.2s 0.3s ease both; text-shadow: 0 2px 8px rgba(0,0,0,0.7); }
.hero-divider { font-size: 1rem; color: var(--gold); letter-spacing: 0.5em; margin: 1.5rem 0; animation: heroFadeUp 1.2s 0.35s ease both; }
.hero-desc { font-family: var(--font-fine); font-size: clamp(1rem, 1.8vw, 1.2rem); color: rgba(245,233,200,0.8); line-height: 1.8; margin-bottom: 2.5rem; animation: heroFadeUp 1.2s 0.4s ease both; text-shadow: 0 2px 8px rgba(0,0,0,0.65); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: heroFadeUp 1.2s 0.5s ease both; }
.hero-scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); color: var(--gold); font-size: 1.4rem; animation: scrollBounce 2s infinite; z-index: 2; }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; } 50% { transform: translateX(-50%) translateY(8px); opacity: 1; } }


/* ── Community Banner ─────────────────── */
.community-banner {
  background: var(--navy-dark);
  padding: 2.5rem 2rem;
}
.community-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  border: 1px solid var(--border-gold);
}
.community-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.community-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,21,38,0.88) 0%, transparent 100%);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 2.5rem 1.5rem 1rem;
  text-align: center;
}

/* ── Intro Section ────────────────────── */
.intro-section { padding: 6rem 0; background: var(--cream); position: relative; }
.intro-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* Intro single col */
.intro-single {
  max-width: 820px;
  margin: 0 auto;
}
.intro-text .section-title { margin-bottom: 1.5rem; }
.intro-text p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.85; }
.intro-text strong { color: var(--navy); }
.intro-text .btn { margin-top: 1rem; }

.img-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; grid-template-rows: auto auto; }
.img-placeholder {
  border-radius: 4px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  border: 1px solid var(--border-gold); box-shadow: var(--shadow);
  transition: transform 0.3s; overflow: hidden;
}
.img-placeholder:hover { transform: translateY(-4px); }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-tall { grid-column: 1; grid-row: 1 / 3; min-height: 320px; }
.img-short { grid-column: 2; grid-row: 1; min-height: 150px; }
.img-icon { font-size: 2.5rem; }
.img-label { font-family: var(--font-fine); font-size: 0.85rem; color: rgba(245,233,200,0.7); letter-spacing: 0.06em; font-style: italic; }

/* ── Heritage / Flags ────────────────── */
.heritage-section {
  padding: 5rem 0;
  background: var(--navy-dark);
  position: relative;
}
.heritage-section::before, .heritage-section::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.heritage-section::before { top: 0; }
.heritage-section::after  { bottom: 0; }

.heritage-section .section-title { color: var(--gold-light); }
.heritage-section .section-sub   { color: rgba(245,233,200,0.6); }

.heritage-flags {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.heritage-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  max-width: 460px;
  flex: 1 1 380px;
  transition: all 0.3s;
}
.heritage-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.flag-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 72px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.25);
}
.flag-svg {
  width: 120px !important;
  height: 72px !important;
  display: block;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.heritage-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.heritage-text p {
  font-family: var(--font-fine);
  font-size: 0.98rem;
  color: rgba(245,233,200,0.72);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

.heritage-divider {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .heritage-flags { flex-direction: column; align-items: stretch; }
  .heritage-divider { text-align: center; }
  .heritage-card { max-width: 100%; }
}
@media (max-width: 500px) {
  .heritage-card { flex-direction: column; text-align: center; }
  .flag-wrap { margin: 0 auto; }
}

/* ── Cards ────────────────────────────── */
.quick-links { padding: 6rem 0; background: var(--parchment); position: relative; }
.quick-links::before, .quick-links::after { content: ''; position: absolute; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.quick-links::before { top: 0; } .quick-links::after { bottom: 0; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card { background: var(--cream); border: 1px solid var(--border-gold); border-radius: 4px; padding: 2.5rem 2rem; transition: all 0.3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--gold)); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-heavy); }
.card:hover::before { transform: scaleX(1); }
.card-img { width: 100%; height: 160px; object-fit: cover; border-radius: 3px; margin-bottom: 1.25rem; }
.card-img-placeholder { width: 100%; height: 160px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 3px; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; }
.card-icon-wrap { width: 56px; height: 56px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; }
.card h3 { font-size: 1rem; margin-bottom: 0.75rem; font-weight: 600; }
.card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem; }
.card-link { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); font-weight: 600; transition: all 0.2s; }
.card-link:hover { color: var(--gold); letter-spacing: 0.12em; }

/* ── Prayer ───────────────────────────── */
.prayer-section { padding: 6rem 0; background: var(--navy-dark); position: relative; overflow: hidden; }
.prayer-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%); }
.prayer-card { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; border: 1px solid rgba(201,168,76,0.3); border-radius: 4px; padding: 4rem 3rem; background: rgba(255,255,255,0.03); }
.prayer-card h2 { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: var(--gold-light); margin-bottom: 2rem; }
.prayer-ornament { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.4em; margin: 1.5rem 0; }
.prayer-text p { font-family: var(--font-fine); font-size: 1.05rem; color: rgba(245,233,200,0.85); line-height: 2; font-style: italic; margin-bottom: 1.25rem; }
.prayer-intercessions { color: var(--gold-light) !important; font-weight: 500; font-style: normal !important; letter-spacing: 0.03em; }
.prayer-amen { font-family: var(--font-display) !important; font-style: normal !important; font-size: 1.1rem !important; color: var(--gold) !important; letter-spacing: 0.1em; }
.prayer-attribution { font-family: var(--font-fine) !important; font-size: 0.82rem !important; color: rgba(245,233,200,0.45) !important; font-style: italic !important; margin-top: 0.75rem !important; letter-spacing: 0.04em; }

/* ── Contact ──────────────────────────── */
.contact-section { padding: 5rem 0; background: var(--warm-mid); border-top: 1px solid rgba(201,168,76,0.2); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.contact-col h3 { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border-gold); }
.contact-col p, .contact-col address { font-size: 0.95rem; color: rgba(245,233,200,0.75); line-height: 1.9; }
.contact-col a { color: rgba(232,201,122,0.85); transition: color 0.2s; }
.contact-col a:hover { color: var(--gold-light); }
.link-list { list-style: none; }
.link-list li { padding: 0.3rem 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
.link-list li:last-child { border-bottom: none; }
.link-list a { font-size: 0.92rem; color: rgba(245,233,200,0.75); }

/* ── Footer ───────────────────────────── */
.site-footer { background: var(--warm-dark); border-top: 1px solid rgba(201,168,76,0.25); padding: 2.5rem 0; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1rem; color: var(--gold-light); margin-bottom: 1rem; }
.footer-copy { font-size: 0.82rem; color: rgba(245,233,200,0.45); margin-bottom: 0.5rem; }
.footer-intercessions { font-family: var(--font-fine); font-size: 0.85rem; font-style: italic; color: rgba(201,168,76,0.55); line-height: 1.9; }

/* ── Inner Pages ──────────────────────── */
.page-hero {
  padding: 7rem 2rem 4rem;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--warm-dark) 100%);
  text-align: center; border-bottom: 1px solid var(--border-gold);
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(201,168,76,0.02) 80px, rgba(201,168,76,0.02) 81px); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--gold-light); position: relative; z-index: 1; }
.page-hero p.page-sub { font-family: var(--font-fine); font-style: italic; font-size: 1.1rem; color: rgba(245,233,200,0.65); margin-top: 0.5rem; position: relative; z-index: 1; }

.page-content { max-width: 820px; margin: 0 auto; padding: 5rem 2rem; }
.page-content h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-gold); }
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.9; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content li { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 0.4rem; line-height: 1.8; }
.info-box { background: var(--parchment); border-left: 4px solid var(--gold); padding: 1.5rem 1.75rem; border-radius: 0 4px 4px 0; margin: 2rem 0; }
.info-box p { margin-bottom: 0; }
.mass-time-card { background: var(--cream); border: 1px solid var(--border-gold); border-radius: 4px; padding: 2rem; margin-bottom: 1.25rem; }
.mass-time-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.3rem; }
.mass-time-card .time { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin-bottom: 0.3rem; }
.mass-time-card p { font-size: 0.92rem; color: var(--text-mid); margin: 0; }

/* ── Responsive ───────────────────────── */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .img-stack { max-width: 500px; margin: 0 auto; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { height: 60px; }

  /* Hide nav by default; shown via JS .open class */
  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--navy-dark);
    border-top: 1px solid var(--border-gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open { display: block; }

  /* Stack top-level items vertically */
  .main-nav > ul {
    display: block !important;
    width: 100%;
    padding: 0.5rem 0;
  }
  .main-nav > ul > li {
    display: block;
    width: 100%;
  }
  .main-nav > ul > li > a {
    display: block;
    width: 100%;
    padding: 0.8rem 1.25rem;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    white-space: normal;
  }

  /* Dropdowns: hidden by default, shown when parent has .open */
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open > .dropdown { display: block !important; }
  .dropdown {
    display: none;
    position: static;
    width: 100%;
    min-width: unset;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .dropdown li { display: block; }
  .dropdown li a {
    display: block;
    padding: 0.65rem 1rem 0.65rem 2rem;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(201,168,76,0.06);
    white-space: normal;
  }

  .nav-toggle { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .prayer-card { padding: 2.5rem 1.5rem; }
  .img-stack { grid-template-columns: 1fr; }
  .img-tall { grid-column: 1; grid-row: 1; min-height: 220px; }
  .img-short { grid-column: 1; grid-row: 2; min-height: 180px; }
  .hero-actions { flex-direction: column; align-items: center; }
}



/* ── Early History Page ───────────────── */
.eh-content { max-width: 860px; }

.eh-photo-banner {
  position: relative; width: 100%; height: 260px;
  border-radius: 4px; overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gold);
}
.eh-photo-banner img { width:100%; height:100%; object-fit:cover; object-position:center 30%; display:block; filter:grayscale(10%); }
.eh-photo-caption {
  position:absolute; bottom:0; left:0; right:0;
  background: linear-gradient(to top, rgba(8,21,38,0.85) 0%, transparent 100%);
  color: var(--gold-light); font-family: var(--font-fine); font-style:italic;
  font-size:0.88rem; padding:1.5rem 1rem 0.75rem;
}

.eh-float-right {
  float: right; margin: 0 0 1.5rem 2rem; text-align:center;
}
.eh-float-left {
  float: left; margin: 0 2rem 1.5rem 0; text-align:center;
}
.eh-portrait {
  width: 160px; height: 200px; object-fit: cover; object-position: center top;
  border-radius: 3px; border: 1px solid var(--border-gold);
  box-shadow: var(--shadow); display:block;
}
.eh-map { height: 140px !important; object-position: center center !important; }
.eh-caption {
  font-family: var(--font-fine); font-style:italic; font-size:0.78rem;
  color: var(--text-light); margin-top:0.4rem;
}
.eh-quote {
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0 1.5rem 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--parchment);
  border-radius: 0 4px 4px 0;
  font-family: var(--font-fine);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.eh-content::after { content:''; display:table; clear:both; }

@media (max-width: 600px) {
  .eh-float-right, .eh-float-left { float:none; margin: 0 auto 1.5rem; display:block; }
  .eh-portrait { width:120px; height:150px; margin:0 auto; }
}

/* ── Interior Photo Strip ─────────────── */
.interior-strip {
  background: var(--navy-dark);
  padding: 2rem 0;
  overflow: hidden;
}
.interior-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.strip-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
}
.strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.strip-photo:hover img { transform: scale(1.04); }
.strip-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,21,38,0.85) 0%, transparent 100%);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.25rem 1rem 0.7rem;
}
@media (max-width: 700px) {
  .interior-strip-grid { grid-template-columns: 1fr; }
  .strip-photo { height: 200px; }
}


/* ── Page Photo Banner ────────────────── */
.page-photo-banner {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gold);
}
.page-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(15%);
}
.page-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,21,38,0.85) 0%, transparent 100%);
  color: var(--gold-light);
  font-family: var(--font-fine);
  font-style: italic;
  font-size: 0.88rem;
  padding: 1.5rem 1rem 0.75rem;
}

/* ── Gallery Page ─────────────────────── */
.gallery-intro {
  font-family: var(--font-fine);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--parchment);
  border: 1px solid var(--border-gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-heavy); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s; }
.gallery-item:hover img { transform: scale(1.04); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,21,38,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-fine);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-pale);
}

.gallery-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
  color: var(--text-light);
  font-family: var(--font-fine);
  font-style: italic;
  font-size: 1.1rem;
}
.gallery-loading span { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 0.75rem; animation: spinPulse 2s infinite; }
@keyframes spinPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

.gallery-empty { text-align: center; padding: 5rem 0; }
.gallery-empty-icon { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: 0.4; }
.gallery-empty p { font-family: var(--font-fine); font-style: italic; color: var(--text-light); font-size: 1.1rem; }

/* ── Lightbox ─────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(4,13,26,0.96);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lb-inner {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lb-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 3px;
  box-shadow: 0 8px 64px rgba(0,0,0,0.8);
  display: block;
  margin: 0 auto;
}
.lb-caption {
  font-family: var(--font-fine);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,233,200,0.7);
  margin-top: 1rem;
}

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: background 0.2s;
  z-index: 9001;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(201,168,76,0.35); }
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.6rem; }
.lb-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; }
}


/* ── Seelos Sidebar ───────────────────── */
.seelos-sidebar {
  background: var(--parchment);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 2rem;
  margin: 2.5rem 0;
  overflow: hidden;
}
.seelos-sidebar-inner { }
.seelos-portrait {
  float: right;
  width: 140px;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
  margin: 0 0 1rem 1.5rem;
}
.seelos-sidebar h3 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  clear: none;
}
.seelos-sidebar p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.seelos-relics {
  background: var(--cream);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.seelos-relics span {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.seelos-relics p {
  margin: 0;
  font-size: 0.88rem;
}
.seelos-sidebar::after { content:''; display:table; clear:both; }
@media (max-width: 500px) {
  .seelos-portrait { float: none; margin: 0 auto 1rem; display: block; width: 120px; height: 150px; }
}

/* ── Footer Social Links ──────────────── */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,201,122,0.7);
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--gold-light); }
.footer-social-link svg { opacity: 0.8; }

/* ── Under Construction ───────────────── */
.under-construction {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.uc-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.under-construction h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--navy-dark);
}
.under-construction p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.uc-divider {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin: 2rem 0;
}
.uc-note {
  font-family: var(--font-fine);
  font-style: italic;
  font-size: 1.1rem !important;
  margin-bottom: 2rem !important;
}

/* ── Mindszenty Page ──────────────────── */
.mindszenty-story p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1rem; }
.mindszenty-lead { font-family: var(--font-fine); font-size: 1.2rem !important; font-style: italic; color: var(--navy-mid) !important; margin-bottom: 1.5rem !important; }
.mindszenty-verdict {
  background: var(--navy-dark);
  color: rgba(245,233,200,0.88);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.75rem;
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
}
.mindszenty-verdict p { color: rgba(245,233,200,0.88) !important; margin-bottom: 0.75rem; }
.mindszenty-verdict p:last-child { margin-bottom: 0; }
.mindszenty-cta { margin: 2rem 0; }

/* ── Video Embed ──────────────────────── */
.video-embed-wrap { margin: 2.5rem 0; }
.video-embed-inner {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 4px; box-shadow: var(--shadow-heavy);
  border: 1px solid var(--border-gold);
}
.video-embed-inner iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: 0;
}
.video-caption {
  font-family: var(--font-fine); font-style: italic;
  font-size: 0.88rem; color: var(--text-light);
  text-align: center; margin-top: 0.6rem;
}

/* ── UMSL Section ─────────────────────── */
.umsl-divider {
  text-align: center;
  margin: 3rem 0 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-gold);
}
.umsl-divider span {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
}
.umsl-divider h2 {
  border: none;
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
}
.umsl-intro {
  background: var(--parchment);
  border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}
.umsl-intro p { font-size: 1rem; color: var(--text-mid); margin-bottom: 0.75rem; line-height: 1.8; }
.umsl-intro p:last-child { margin-bottom: 0; }

.umsl-video-block { display: flex; flex-direction: column; gap: 2.5rem; margin-bottom: 2.5rem; }
.umsl-video-item { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; align-items: start; }
.umsl-video-desc h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.umsl-video-desc p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }

.umsl-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.umsl-project-card {
  background: var(--parchment);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.umsl-project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.umsl-project-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.umsl-project-card h3 { font-size: 0.9rem; margin-bottom: 0.6rem; }
.umsl-project-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin: 0; }

@media (max-width: 768px) {
  .umsl-video-item { grid-template-columns: 1fr; }
  .umsl-projects-grid { grid-template-columns: 1fr; }
}

/* ── Rosary Run Section ───────────────── */
.rosary-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.rosary-hero-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
}
.rosary-logo-wrap { margin-bottom: 1rem; }
.rosary-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  background: #111;
  padding: 6px;
  display: block;
}
.rosary-hero-text h3 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}
.rosary-hero-text p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.rosary-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.rosary-photo {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.rosary-photo img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.rosary-photo:hover img { transform: scale(1.04); }

/* Standalone rosary run page uses rr-photo-grid (same style, new class) */
.rr-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.rr-photo {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.rr-photo img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.rr-photo:hover img { transform: scale(1.04); }

.rosary-quote {
  text-align: center;
  margin: 2rem 0;
  padding: 1.25rem;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.rosary-quote p {
  font-family: var(--font-fine);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}
.rosary-quote span {
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

/* Rosary Run teaser block on Our Living History */
.rr-teaser {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--parchment);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 1.5rem;
  margin: 2rem 0;
}
.rr-teaser-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.rr-teaser-text h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.rr-teaser-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

/* Donate block on Our Living History */
.living-history-donate {
  background: var(--navy-dark);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  margin: 3rem 0 2rem;
  text-align: center;
}
.lhd-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }
.living-history-donate h2 {
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}
.living-history-donate p {
  color: rgba(245,233,200,0.8);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 0.75rem;
}
.lhd-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .rosary-hero { grid-template-columns: 1fr; }
  .rosary-hero-img img { height: 200px; }
  .rosary-photo-grid, .rr-photo-grid { grid-template-columns: 1fr 1fr; }
  .rr-teaser { grid-template-columns: 1fr; }
  .rr-teaser-img img { height: 180px; }
}
@media (max-width: 480px) {
  .rosary-photo-grid, .rr-photo-grid { grid-template-columns: 1fr; }
  .rosary-photo img, .rr-photo img { height: 160px; }
}


/* ── Story card spacing ───────────────── */
.story-card { margin-bottom: 2.5rem; }
.story-card + .story-card { border-top: none; }

/* ── Story invite box ─────────────────── */
.story-invite {
  text-align: center;
  background: var(--navy-dark);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0 1.5rem;
}
.story-invite p { color: rgba(245,233,200,0.85); font-size: 1rem; line-height: 1.8; margin-bottom: 0.5rem; }
.story-invite p:first-child { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.75rem; }
.story-invite p:last-child { margin-bottom: 0; }
.story-invite a { color: var(--gold-light); }
.story-invite a:hover { color: var(--gold); }

/* ── Community Story Cards ────────────── */
.story-card {
  background: var(--cream);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--navy-mid);
  border-radius: 0 4px 4px 0;
  padding: 1.75rem 1.75rem 1.5rem;
  margin-bottom: 1.75rem;
  transition: box-shadow 0.25s;
}
.story-card:hover { box-shadow: var(--shadow); }
.story-card-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.story-card-header h3 {
  font-size: 1.05rem;
  color: var(--navy-dark);
  margin: 0;
}
.story-card-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--navy-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
}
.story-card p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 0.75rem;
}
.story-card-link {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
  font-weight: 600;
  display: inline-block;
  margin-top: 0.25rem;
  transition: color 0.2s;
}
.story-card-link:hover { color: var(--gold); }

/* ── Page Nav Footer ──────────────────── */
.page-nav-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-gold);
  display: flex;
  justify-content: flex-end;
}

/* ── Donation Page ────────────────────── */
.donate-lead {
  font-family: var(--font-fine);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.donate-main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.donate-primary h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.donate-primary h2:first-child { margin-top: 0; }
.donate-primary p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; }
.donate-cta-wrap { margin: 1.5rem 0; }
.donate-btn { font-size: 0.9rem !important; padding: 1rem 2.5rem !important; }
.donate-qr-wrap { margin: 2rem 0; text-align: left; }
.donate-qr {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 2px solid var(--border-gold);
  border-radius: 4px;
  display: block;
}
.donate-qr-caption {
  font-family: var(--font-fine);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem !important;
}
.donate-address {
  font-style: normal;
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-top: 0.5rem;
}

/* Zeffy sidebar card */
.zeffy-card {
  background: var(--navy-dark);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  color: rgba(245,233,200,0.85);
}
.zeffy-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.zeffy-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.zeffy-card p {
  font-size: 0.92rem;
  color: rgba(245,233,200,0.8);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.zeffy-list {
  list-style: none;
  margin: 0.75rem 0;
}
.zeffy-list li {
  font-size: 0.88rem;
  color: rgba(245,233,200,0.78);
  padding: 0.3rem 0;
  line-height: 1.5;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.zeffy-list li:last-child { border-bottom: none; }
.zeffy-learn {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-top: 0.5rem;
}
.zeffy-learn:hover { color: var(--gold-light); }

/* Why it matters card */
.donate-why-card {
  background: var(--parchment);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 1.5rem;
}
.donate-why-card h3 {
  font-size: 0.95rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}
.donate-why-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.donate-why-card em {
  font-family: var(--font-fine);
  font-size: 0.95rem;
  color: var(--navy-mid);
}
.donate-prayer-attr {
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .donate-main { grid-template-columns: 1fr; }
  .donate-qr { width: 150px; height: 150px; }
}
