/* =====================================================
   Missionary Diocese of the South and Ozarks
   Design system: deep navy, gold, cream, forest green
   ===================================================== */

:root {
  --navy: #1a2744;
  --navy-dark: #111b35;
  --navy-mid: #243052;
  --gold: #b8923a;
  --gold-light: #d4aa5c;
  --gold-pale: #f5e8c8;
  --cream: #faf7f2;
  --cream-dark: #f0ece2;
  --green: #2d5a27;
  --green-light: #3a7432;
  --text: #1e1e2e;
  --text-muted: #5a5a6e;
  --text-light: #888;
  --border: #e0dbd0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26,39,68,0.08);
  --shadow-md: 0 8px 32px rgba(26,39,68,0.12);
  --shadow-lg: 0 20px 60px rgba(26,39,68,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Source Sans 3', system-ui, sans-serif;
  --transition: 0.2s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* =====================================================
   Layout Utilities
   ===================================================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-alt { background: var(--cream); }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle { margin: 0 auto; }
.section-footer {
  text-align: center;
  margin-top: 48px;
}
.text-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.text-link:hover { color: var(--navy); }

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,146,58,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
}

/* =====================================================
   Navigation
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-shield {
  display: block;
  width: 33px;
  height: 36px;
  flex-shrink: 0;
}
.nav-title { display: flex; flex-direction: column; }
.nav-title-main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}
.nav-title-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-link.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 8px 18px;
}
.nav-link.nav-cta:hover {
  background: var(--gold-light);
  color: var(--white);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* Primary nav dropdowns */
.nav-item { position: relative; }
.nav-submenu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--navy-dark); border: 1px solid var(--gold); border-radius: 4px;
  padding: 8px 0; list-style: none; z-index: 50;
}
.nav-item.has-children:hover .nav-submenu,
.nav-item.has-children:focus-within .nav-submenu { display: block; }
.nav-sublink { display: block; padding: 8px 18px; color: var(--cream); font-size: 0.9rem; }
.nav-sublink:hover { background: var(--navy-mid); color: var(--gold-light); }

@media (hover: none), (pointer: coarse) {
  /* Touch fallback: keep child links reachable inside the mobile menu */
  .nav-submenu { display: block; position: static; min-width: 0; background: transparent; border: 0; padding: 0; }
  .nav-sublink { padding-left: 32px; }
}
/* Independent-parish badge (used in homepage church listings) */
.badge-independent {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--text-muted);
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* =====================================================
   Stat card
   Shared by the homepage Frontispiece mission band's flex
   "stats" row; .stat .n / .stat .l are defined with that band.
   ===================================================== */
.stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
}

/* =====================================================
   News
   ===================================================== */
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.2s ease;
}
.news-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.news-card-featured {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
}
.news-card-featured .news-date { color: rgba(255,255,255,0.55); }
.news-card-featured .news-category { background: rgba(184,146,58,0.25); color: var(--gold-light); }
.news-card-featured .news-title { color: var(--white); }
.news-card-featured .news-excerpt { color: rgba(255,255,255,0.7); }
.news-card-featured .text-link { color: var(--gold-light); }
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.news-date {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}
.news-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 4px;
}
.news-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.news-title a { color: inherit; text-decoration: none; transition: color var(--transition); }
.news-title a:hover { color: var(--gold); }
.news-card-featured .news-title a:hover { color: var(--gold-light); }
.news-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-arms {
  width: 68px;
  height: auto;
  margin-bottom: 18px;
  display: block;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer-nav h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-affiliation a { color: var(--gold-light); }
.footer-affiliation a:hover { color: var(--white); }

/* =====================================================
   Page: About
   ===================================================== */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,146,58,0.06) 0%, transparent 60%);
}
.page-hero-content { position: relative; }
.page-hero-breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0.8;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  line-height: 1.7;
}
.content-section {
  max-width: 780px;
  margin: 0 auto;
}
.content-section h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 48px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 32px;
}
.content-section p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.content-section ul {
  margin: 0 0 20px 20px;
}
.content-section li {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.highlight-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
}
.highlight-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0;
}

/* =====================================================
   Leadership Cards
   ===================================================== */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.leader-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.leader-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.leader-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.leader-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =====================================================
   FAQ / Affiliation
   ===================================================== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-q {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.faq-a {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* =====================================================
   Contact Form
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.contact-note {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,146,58,0.3);
}

/* =====================================================
   Responsive
   ===================================================== */
.hide-mobile { display: block; }

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav { position: fixed; }
  .footer-grid { grid-template-columns: 1fr; }
  .hide-mobile { display: none; }
}

/* ==========================================================================
   Home — "Upcoming in the Diocese" (live events block)
   ========================================================================== */
.home-events-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home-event {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.25rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.home-event:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--gold-light);
}
.home-event-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.6rem 0.4rem;
  box-shadow: inset 0 0 0 1px rgba(212,170,92,0.35);
}
.home-event-badge .he-month {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: var(--gold-light);
}
.home-event-badge .he-day {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1;
  margin-top: 0.1rem;
}
.home-event-body { min-width: 0; }
.home-event-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 0.3rem;
  line-height: 1.25;
}
.home-event-meta {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.home-event-meta .he-loc { color: var(--text-light); }
.home-event-arrow {
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.home-event:hover .home-event-arrow { transform: translateX(4px); }

@media (max-width: 600px) {
  .home-event { grid-template-columns: 56px 1fr; gap: 1rem; padding: 1rem 1.1rem; }
  .home-event-arrow { display: none; }
  .home-event-badge .he-day { font-size: 1.4rem; }
}

/* CMS prose: blockquote (was .highlight-box) + links inside .content-section */
.content-section blockquote {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
}
.content-section blockquote p { margin: 0; color: inherit; font: inherit; }
.content-section a { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold-pale); }
.content-section a:hover { text-decoration-color: var(--gold); }

/* =====================================================
   Homepage — Frontispiece
   ===================================================== */

/* Newsreader reading serif (homepage only) */
:root {
  --font-read: 'Newsreader', 'Iowan Old Style', Palatino, Georgia, serif;
}

/* Shared band utilities */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.fleuron {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--gold);
}
.fleuron::before,
.fleuron::after {
  content: "";
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.fleuron::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.fleuron span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  opacity: 0.9;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HERO — frontispiece band */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 50% 18%, #1d2c4f 0%, var(--navy) 46%, var(--navy-dark) 100%);
  color: var(--cream);
  text-align: center;
  padding: 190px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184, 146, 58, 0.5);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(184, 146, 58, 0.22);
  pointer-events: none;
}
.hero .arms {
  width: 74px;
  height: 82px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 146, 58, 0.45);
  border-radius: 50%;
  background: rgba(184, 146, 58, 0.06);
  overflow: hidden;
}
.hero .arms img {
  width: 48px;
  height: auto;
}
.hero .eyebrow {
  display: block;
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--cream);
  font-size: 4.4rem;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 auto;
}
.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
  font-size: 4.7rem;
  margin-top: 4px;
}
.hero .tag {
  font-family: var(--font-read);
  font-style: italic;
  font-weight: 300;
  font-size: 1.32rem;
  color: rgba(250, 247, 242, 0.86);
  max-width: 640px;
  margin: 30px auto 0;
  line-height: 1.6;
}
.hero .acts {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.fp-btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid var(--gold-light);
}
.fp-btn-fill {
  background: var(--gold-light);
  color: var(--navy-dark);
}
.fp-btn-ghost {
  color: var(--gold-light);
  background: transparent;
}
.hero-fleur {
  margin-top: 54px;
}

/* FOUNDATION — illuminated creed band */
.found {
  padding: 108px 0 96px;
  background: var(--cream);
}
.found .head {
  text-align: center;
  margin-bottom: 54px;
}
.found .head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.7rem;
  color: var(--navy);
  margin-top: 12px;
}
.found-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: start;
}
.lede {
  font-family: var(--font-read);
  font-size: 1.16rem;
  line-height: 1.85;
  color: #33333f;
}
.lede::first-letter {
  font-family: var(--font-serif);
  font-weight: 700;
  float: left;
  font-size: 5.4rem;
  line-height: 0.72;
  padding: 8px 14px 0 0;
  color: var(--gold);
}
.lede p {
  margin-bottom: 1.1rem;
}
.lede .link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
}
.marks {
  border-left: 1px solid var(--border);
  padding-left: 40px;
}
.mark {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.mark:last-child {
  border-bottom: none;
}
.mark .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--gold);
  min-width: 46px;
  line-height: 1;
}
.mark h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.mark p {
  font-family: var(--font-read);
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CONGREGATIONS — register band */
.reg {
  padding: 96px 0;
  background: var(--cream-dark);
}
.reg .head {
  text-align: center;
  margin-bottom: 48px;
}
.reg .head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--navy);
  margin-top: 12px;
}
.reg .head p {
  font-family: var(--font-read);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 1.1rem;
}
.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.parish {
  background: var(--cream);
  padding: 24px 26px;
}
.parish .st {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.parish h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--navy);
  line-height: 1.25;
}
.parish .city {
  font-family: var(--font-read);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-top: 4px;
}

/* MISSION — illuminated antiphon band */
.mission {
  position: relative;
  background: radial-gradient(120% 120% at 50% 0%, #1d2c4f 0%, var(--navy) 50%, var(--navy-dark) 100%);
  color: var(--cream);
  text-align: center;
  padding: 104px 0;
}
.mission .quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.4;
  height: 38px;
  display: block;
}
.mission blockquote {
  font-family: var(--font-read);
  font-style: italic;
  font-weight: 300;
  font-size: 1.86rem;
  line-height: 1.55;
  color: #f2ead9;
  max-width: 860px;
  margin: 0 auto;
}
.mission cite {
  display: block;
  margin-top: 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.stats {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 80px;
}
.stat .n {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 3.1rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat .l {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.7);
  margin-top: 10px;
}

/* CTA band (Frontispiece style) */
.fp-cta {
  background: var(--cream);
  text-align: center;
  padding: 96px 0;
}
.fp-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.fp-cta p {
  font-family: var(--font-read);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.fp-cta .acts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.fp-cta .fp-btn-fill {
  background: var(--gold-light);
  color: var(--navy-dark);
  border-color: var(--gold-light);
}
/* Ghost button uses navy text here because the CTA band sits on a parchment (light) background,
   unlike the hero's dark band where the default ghost uses white text/border. */
.fp-cta .fp-btn-ghost {
  color: var(--navy);
  border-color: var(--navy);
}
.fp-cta .fp-btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* Events + News bands (Frontispiece context) */
.fp-events {
  padding: 96px 0;
  background: var(--cream-dark);
}
.fp-events .head,
.fp-news .head {
  text-align: center;
  margin-bottom: 48px;
}
.fp-events .head h2,
.fp-news .head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--navy);
  margin-top: 12px;
}
.fp-events .head p,
.fp-news .head p {
  font-family: var(--font-read);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 1.1rem;
}
.fp-news {
  padding: 96px 0;
  background: var(--cream);
}
.fp-band-footer { text-align: center; margin-top: 48px; }

/* Frontispiece responsive overrides */
@media (max-width: 900px) {
  .found-grid { grid-template-columns: 1fr; gap: 48px; }
  .reg-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { gap: 40px; }
  .hero h1 { font-size: 3rem; }
  .hero h1 em { font-size: 3.2rem; }
  .mission blockquote { font-size: 1.4rem; }
}
@media (max-width: 600px) {
  .hero { padding: 140px 0 80px; }
  .hero h1 { font-size: 2.2rem; }
  .hero h1 em { font-size: 2.4rem; }
  .reg-grid { grid-template-columns: 1fr; }
  .stats { flex-direction: column; gap: 24px; align-items: center; }
  .mission blockquote { font-size: 1.2rem; }
  .wrap { padding: 0 20px; }
}
