/* ===================================================================
   Ss. George & Alexandra Orthodox Christian Church | Shared Stylesheet
   Palette: ivory / deep liturgical red / muted gold
   Fonts: Cormorant Garamond (headings) + Inter (body) — self-hosted
   =================================================================== */

/* ---------- Self-hosted fonts (Fontsource, OFL-licensed) ---------- */
/* Served from /assets/fonts/ — no third-party request, cached across pages. */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-latin-500-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/inter-latin-700-normal.woff2') format('woff2');
}

/* ---------- Size-adjusted fallbacks (prevent FOUT balloon) ---------- */
/* Render Georgia/Arial at adjusted metrics so the pre-swap text visually
   matches the real web font. When the real font loads, there is no shift. */

@font-face {
  font-family: 'Cormorant Garamond Fallback';
  src: local('Georgia');
  size-adjust: 90%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust: 107.4%;
  ascent-override: 90%;
  descent-override: 22.43%;
  line-gap-override: 0%;
}

:root {
  --ivory: #faf5ec;
  --ivory-dark: #f3ead6;
  --cream-border: #e6d9bc;
  --ink: #2a1f18;
  --muted: #6b5b4d;
  --deep-red: #8b2a2a;
  --deep-red-dark: #6e1f1f;
  --gold: #b8873a;
  --gold-light: #d4a55a;
  --gold-pale: #f1e3c2;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(42, 31, 24, 0.08);
  --shadow-md: 0 4px 14px rgba(42, 31, 24, 0.10);
  --shadow-lg: 0 12px 32px rgba(42, 31, 24, 0.14);
  --radius: 4px;
  --radius-lg: 8px;
  --maxw: 1120px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--deep-red); text-decoration: none; transition: color .18s ease; }
a:hover, a:focus { color: var(--deep-red-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
  margin: 0 0 .5em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1em; }

/* Accessibility: skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--deep-red);
  color: var(--white);
  padding: 10px 16px;
  z-index: 9999;
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus { left: 8px; color: var(--white); text-decoration: none; }

/* ---------- Layout containers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 64px 0; }
section.pad-sm { padding: 40px 0; }
section.pad-lg { padding: 88px 0; }

section.alt-bg { background: var(--ivory-dark); }
section.cream-bg { background: var(--ivory-dark); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-icons {
  display: flex;
  gap: 4px;
}
.brand-icons img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--deep-red);
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Desktop nav */
.nav-primary {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-primary a {
  position: relative;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius);
}
.nav-primary a:hover {
  background: var(--gold-pale);
  text-decoration: none;
  color: var(--deep-red);
}
.nav-primary a.active {
  color: var(--deep-red);
  font-weight: 600;
}
.nav-primary a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Hamburger button (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--cream-border);
  padding: 9px 11px;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--deep-red);
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* Mobile nav panel */
.nav-mobile {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 85vw);
  height: 100vh;
  background: var(--ivory);
  box-shadow: var(--shadow-lg);
  padding: 80px 28px 40px;
  z-index: 110;
  overflow-y: auto;
  transition: right .32s ease;
  border-left: 3px solid var(--gold);
}
.nav-mobile.open { right: 0; }
.nav-mobile a {
  display: block;
  padding: 14px 4px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--cream-border);
}
.nav-mobile a:hover { color: var(--deep-red); text-decoration: none; }
.nav-mobile a.active { color: var(--deep-red); font-weight: 600; }
.nav-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--deep-red);
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 31, 24, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 105;
}
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 31, 24, 0.55) 0%,
    rgba(110, 31, 31, 0.55) 60%,
    rgba(42, 31, 24, 0.70) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
  margin-bottom: 0.3em;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--gold-pale);
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
}
.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-banner {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto 14px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.45));
}

/* Page header (inner pages) */
.page-header {
  position: relative;
  overflow: hidden;
  background-color: var(--deep-red);
  background-image: url('assets/banners/icon-band.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 54px 0 46px;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(30, 10, 10, 0.55) 75%);
  pointer-events: none;
}
.page-header > .container {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.page-header p {
  color: var(--gold-pale);
  margin: 0;
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1.2;
  font-family: inherit;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--deep-red);
  color: var(--white);
  border-color: var(--deep-red);
}
.btn-primary:hover { background: var(--deep-red-dark); color: var(--white); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: #a3762d; color: var(--white); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold-light);
}
.btn-outline:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-ghost {
  background: var(--white);
  color: var(--deep-red);
  border-color: var(--cream-border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--deep-red-dark); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card h3 { color: var(--deep-red); margin-top: 0; }
.card .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

/* Clergy cards */
.clergy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.clergy-card {
  text-align: center;
  padding: 28px 22px;
}
.clergy-card img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  margin: 0 auto 18px;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.clergy-card .role {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.clergy-card h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}
.clergy-card .bio {
  font-size: 0.94rem;
  color: var(--muted);
  margin: 0 0 12px;
}

/* Announcement box */
.announcement {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 26px;
  margin: 40px auto -30px;
  max-width: 820px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  font-size: 0.98rem;
}
.announcement .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-red);
  font-weight: 700;
  margin-bottom: 4px;
}
.announcement h3 {
  font-size: 1.3rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.announcement p:last-child { margin-bottom: 0; }

/* ---------- Embeds (responsive iframes) ---------- */
.embed-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  background: var(--ivory-dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-border);
}
.embed-responsive iframe,
.embed-responsive > div {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.embed-video { padding-bottom: 56.25%; }
.embed-calendar { padding-bottom: 100%; min-height: 420px; }
.embed-map { padding-bottom: 65%; min-height: 320px; }

/* ---------- Homepage specific ---------- */
.home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) {
  .home-grid { grid-template-columns: 1.15fr 1fr; }
}
.home-welcome { }
.home-welcome h2 { color: var(--deep-red); }
.home-welcome .parish-photo {
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-border);
}

.side-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 16px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.side-card h3 {
  color: var(--deep-red);
  margin: 0 0 10px;
  font-size: 1.3rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* Donate card */
.donate-card {
  background: linear-gradient(135deg, var(--white), var(--gold-pale));
  border: 1px solid var(--gold);
  text-align: center;
  padding: 28px 24px;
}
.donate-card img { margin: 0 auto 10px; max-width: 170px; }
.donate-card h3 { border-bottom: none; margin-bottom: 10px; }

/* Search */
.site-search {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.site-search input[type="text"] {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--ivory);
  color: var(--ink);
}
.site-search input[type="text"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 0;
  border-color: var(--gold);
}

/* ---------- Resource list ---------- */
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.resource-list li {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  transition: all .18s ease;
}
.resource-list li:hover { border-left-color: var(--deep-red); box-shadow: var(--shadow-sm); }
.resource-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}
.resource-list a:hover { color: var(--deep-red); }
.resource-list .icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.video-item h3 { color: var(--deep-red); margin-top: 12px; }
.video-item .video-meta {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #2a1f18;
  color: #e0d6c4;
  padding: 56px 0 24px;
  margin-top: 64px;
  border-top: 4px solid var(--gold);
}
.site-footer a { color: var(--gold-light); }
.site-footer a:hover { color: var(--gold-pale); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  color: var(--gold);
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(184, 135, 58, 0.3);
}
.footer-grid p, .footer-grid a { font-size: 0.95rem; line-height: 1.7; }
.footer-quote {
  background: rgba(184, 135, 58, 0.08);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  margin: 0 0 30px;
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  min-height: 86px;
}
.footer-quote cite {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--gold);
  font-family: 'Inter', 'Inter Fallback', sans-serif;
}
.footer-bottom {
  border-top: 1px solid rgba(224, 214, 196, 0.15);
  padding-top: 18px;
  font-size: 0.85rem;
  color: #a89682;
  text-align: center;
}

/* ---------- Festival page ---------- */
.festival-hero-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  box-shadow: var(--shadow-md);
}
.festival-hero-box .when { font-size: 1.4rem; color: var(--deep-red); font-weight: 600; margin-bottom: 4px; font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif; }
.festival-hero-box .time { font-size: 1.1rem; color: var(--ink); margin-bottom: 12px; }
.festival-hero-box .where { color: var(--muted); margin-bottom: 20px; }
.festival-hero-box .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Prose (inner content) ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p { margin-bottom: 1.2em; }
.prose h2 { color: var(--deep-red); margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 8px 22px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1.12rem;
  background: var(--ivory-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose ul { padding-left: 22px; }
.prose ul li { margin-bottom: 6px; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 820px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { color: var(--deep-red); margin-top: 0; }
.contact-info-card .contact-line {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-border);
  align-items: flex-start;
}
.contact-info-card .contact-line:last-child { border-bottom: none; }
.contact-info-card .label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  min-width: 76px;
  padding-top: 4px;
}
.contact-info-card .value { flex: 1; }

/* ---------- Give page ---------- */
.give-hero {
  background: linear-gradient(135deg, var(--ivory-dark), var(--gold-pale));
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold);
  margin-bottom: 40px;
}
.give-hero .big-status {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--deep-red);
  margin: 10px 0 0;
}
.give-hero .sub {
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.3rem;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.timeline li {
  position: relative;
  padding: 10px 0 22px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 18px;
  width: 13px;
  height: 13px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--ivory);
}
.timeline li strong {
  display: block;
  color: var(--deep-red);
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin: 30px 0;
}
.stat {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
}
.stat .num {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 2.1rem;
  color: var(--deep-red);
  display: block;
  line-height: 1.1;
  font-weight: 600;
}
.stat .lbl {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* ---------- Saints page ---------- */
.saint-section {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 780px) {
  .saint-section { grid-template-columns: 220px 1fr; }
}
.saint-section img {
  width: 100%;
  max-width: 220px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.saint-section h2 { color: var(--deep-red); margin: 0 0 4px; }
.saint-section .commem {
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

/* ---------- Responsive: mobile-first adjustments ---------- */
@media (max-width: 880px) {
  .nav-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { font-size: 0.66rem; }
  .brand-icons img { width: 38px; height: 38px; }
  section { padding: 48px 0; }
  .hero { min-height: 420px; }
  .hero-inner { padding: 60px 20px; }
  .hero-banner { max-width: 460px; }
  .announcement { margin: 28px 16px -22px; }
  .container { padding: 0 18px; }
  .page-header { padding: 40px 0 32px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-banner { max-width: 320px; }
  /* On tight phones, shrink both saint icons but keep both visible */
  .brand { gap: 10px; }
  .brand-icons { gap: 3px; }
  .brand-icons img { width: 30px; height: 30px; display: block; }
}

/* ---------- Hero entrance animation (fade + gentle Ken Burns + staggered rise) ---------- */
.hero { overflow: hidden; }

.hero-bg {
  opacity: 0;
  animation: hero-bg-in 2.2s cubic-bezier(.22, .9, .25, 1) both;
  will-change: opacity, transform;
}

.hero-banner,
.hero h1,
.hero .lede,
.hero-cta {
  opacity: 0;
  animation: hero-rise-in 900ms cubic-bezier(.22, .9, .25, 1) both;
  will-change: opacity, transform;
}
.hero-banner { animation-delay: 400ms; }
.hero h1     { animation-delay: 650ms; }
.hero .lede  { animation-delay: 850ms; }
.hero-cta    { animation-delay: 1050ms; }

@keyframes hero-bg-in {
  from { opacity: 0; transform: scale(1.08); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes hero-rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-banner,
  .hero h1,
  .hero .lede,
  .hero-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .nav-mobile, .nav-backdrop,
  .hero-cta, .embed-responsive { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .page-header { background: none; color: #000; border-bottom: 2px solid #000; }
  .hero h1, .page-header h1 { color: #000; text-shadow: none; }
}
