/* =============================================================
   Holy Metropolis of Switzerland — Plan B
   Editorial premium design system, modeled on the reference site.
   ============================================================= */

:root {
  /* Colour */
  --c-ink:        #1a1410;
  --c-ink-soft:   #4b3f36;
  --c-mute:       #8a7a6b;
  --c-mute-2:     #b3a596;
  --c-line:       #e6dccd;
  --c-line-soft:  #efe6d4;
  --c-paper:      #faf6ee;
  --c-paper-2:    #f4ecdf;
  --c-card:       #ffffff;
  --c-crimson:    #6b1f24;
  --c-crimson-2:  #4a1418;
  --c-gold:       #a8773c;
  --c-gold-soft:  #d6b074;
  --c-link:       #6b1f24;
  --c-link-hover: #8a2a30;
  --c-dark:       #0d0805;

  /* Type */
  --font-display: "Cormorant Garamond", "Source Serif Pro", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;

  /* Layout */
  --container:    1240px;
  --container-md: 1040px;
  --container-sm: 760px;
  --radius:       4px;
  --radius-lg:    8px;
  --shadow-sm:    0 1px 2px rgba(26, 20, 16, 0.05), 0 1px 3px rgba(26, 20, 16, 0.04);
  --shadow-md:    0 4px 14px rgba(26, 20, 16, 0.08), 0 1px 3px rgba(26, 20, 16, 0.05);
  --shadow-lg:    0 24px 48px -16px rgba(26, 20, 16, 0.18), 0 10px 20px rgba(26, 20, 16, 0.08);
  --shadow-xl:    0 40px 80px -20px rgba(26, 20, 16, 0.4), 0 16px 40px rgba(26, 20, 16, 0.12);

  --ease:         cubic-bezier(.2, .6, .2, 1);

  --header-h:     76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--c-link); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--c-link-hover); }
a:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--c-ink);
  margin: 0 0 0.5em;
  line-height: 1.14;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 500; line-height: 1.04; letter-spacing: -0.018em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.08; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); line-height: 1.18; }
h4 { font-size: 1.18rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.005em; }
p { margin: 0 0 1.1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  font-weight: 600;
  margin: 0 0 1.2em;
}
.eyebrow.num {
  display: inline-flex; align-items: baseline; gap: 12px;
}
.eyebrow.num::before {
  content: attr(data-num);
  color: var(--c-mute-2);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.lede {
  font-size: 1.2rem; line-height: 1.6; color: var(--c-ink-soft); max-width: 56ch;
}

.container    { width: 100%; max-width: var(--container);    margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }
.container-md { width: 100%; max-width: var(--container-md); margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }
.container-sm { width: 100%; max-width: var(--container-sm); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.container-narrow { /* legacy alias for sacrament dedicated pages */
  width: 100%; max-width: var(--container-sm); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.container-narrow p { max-width: 72ch; }
.container-narrow .prose,
.container-narrow .prose p { max-width: 72ch; }

.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section-sm { padding: clamp(48px, 7vw, 88px) 0; }
.section-tint { background: var(--c-paper-2); }
.section-dark { background: var(--c-dark); color: #ece1d0; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .lede { color: rgba(255,255,255,0.78); }
.section-dark .eyebrow { color: var(--c-gold-soft); }

.section-head { max-width: 64ch; margin-bottom: clamp(48px, 6vw, 76px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 0.4em; }
.section-head .lede { margin: 0; }
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head-row > div:first-child { max-width: 64ch; }
.section-head-row > a {
  font-size: 14px; font-weight: 600; color: var(--c-crimson);
  letter-spacing: 0.005em;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* =============================================================
   Header
   ============================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(250, 246, 238, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.32s var(--ease), border-color 0.32s var(--ease), color 0.2s var(--ease);
}
.site-header .header-inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; transition: color 0.2s var(--ease); }
.brand-mark {
  width: 36px; height: 36px; flex: 0 0 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; line-height: 1;
  background: var(--c-crimson); color: #fff;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-display); font-size: 17px; font-weight: 500;
  letter-spacing: -0.003em;
}
.brand-text span {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

/* Primary nav */
.nav-primary { display: none; }
.nav-primary ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-primary a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.005em;
  padding: 4px 0; position: relative;
  transition: color 0.2s var(--ease);
}
.nav-primary a::after {
  content: ""; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease); opacity: 0.6;
}
.nav-primary a:hover::after, .nav-primary a.active::after { transform: scaleX(1); }

/* Header tools */
.header-tools { display: flex; align-items: center; gap: 10px; }

/* Header — default (light) and over-hero (dark transparent) and scrolled states */
.site-header { color: var(--c-ink-soft); }
.site-header .brand-text strong { color: var(--c-ink); }
.site-header .brand-text span { color: var(--c-mute); }
.site-header .nav-primary a { color: var(--c-ink-soft); }
.site-header .nav-primary a:hover { color: var(--c-crimson); }
.site-header .nav-primary a.active { color: var(--c-crimson); }

.site-header.over-hero {
  color: rgba(255,255,255,0.9);
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0) 100%);
}
.site-header.over-hero .brand-text strong,
.site-header.over-hero .brand-text span,
.site-header.over-hero .nav-primary a { color: rgba(255,255,255,0.95); }
.site-header.over-hero .nav-primary a:hover { color: var(--c-gold-soft); }
.site-header.over-hero .brand-mark {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.site-header.over-hero .lang-button,
.site-header.over-hero .menu-toggle {
  color: #fff; border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.04);
}
.site-header.over-hero .btn-header {
  background: #fff; color: var(--c-crimson); border-color: #fff;
}

.site-header.scrolled {
  background: rgba(250, 246, 238, 0.96);
  border-bottom-color: var(--c-line);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  color: var(--c-ink-soft);
}
.site-header.scrolled .brand-mark { background: var(--c-crimson); color: #fff; box-shadow: none; }
/* Defensive: explicit colors in scrolled state to override anything inherited from over-hero */
.site-header.scrolled .brand-text strong { color: var(--c-ink); }
.site-header.scrolled .brand-text span   { color: var(--c-mute); }
.site-header.scrolled .nav-primary a     { color: var(--c-ink-soft); }
.site-header.scrolled .nav-primary a:hover,
.site-header.scrolled .nav-primary a.active { color: var(--c-crimson); }
.site-header.scrolled .lang-button       { color: var(--c-ink); border-color: var(--c-line); background: transparent; }
.site-header.scrolled .lang-button:hover { border-color: var(--c-gold); }
.site-header.scrolled .menu-toggle       { color: var(--c-ink); border-color: var(--c-line); background: transparent; }
.site-header.scrolled .btn-header        { background: var(--c-crimson); color: #fff; border-color: var(--c-crimson); }
.site-header.scrolled .btn-header:hover  { background: var(--c-crimson-2); border-color: var(--c-crimson-2); }

/* Spacer to push content below the fixed header. Hero pages use page-pad-hero to flex through it. */
.header-spacer { height: var(--header-h); }

@media (min-width: 980px) {
  .nav-primary { display: block; }
}

/* Lang switcher */
.lang-switch { position: relative; }
.lang-button {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--c-line);
  padding: 7px 13px; border-radius: 999px;
  color: inherit; font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  cursor: pointer; letter-spacing: 0.08em;
}
.lang-button:hover { border-color: var(--c-gold); }
.lang-button svg { width: 13px; height: 13px; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 8px; min-width: 200px;
  display: none; z-index: 60;
}
.lang-menu.open { display: block; animation: menu-pop 0.18s ease-out; }
@keyframes menu-pop { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.lang-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 9px 14px; border-radius: 4px; color: var(--c-ink); font-size: 14px;
}
.lang-menu a:hover { background: var(--c-paper-2); color: var(--c-crimson); }
.lang-menu a.current { background: var(--c-paper-2); color: var(--c-crimson); font-weight: 600; }
.lang-menu .code { font-size: 11px; color: var(--c-mute); letter-spacing: 0.06em; }

/* Header CTA */
.btn-header {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--c-crimson); color: #fff;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.005em;
  border: 1px solid var(--c-crimson);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-header:hover { background: var(--c-crimson-2); color: #fff; border-color: var(--c-crimson-2); }
.btn-header svg { width: 13px; height: 13px; }
@media (max-width: 720px) { .btn-header span { display: none; } .btn-header { padding: 9px 11px; } }

/* Mobile toggle */
.menu-toggle {
  background: transparent; border: 1px solid var(--c-line); border-radius: 999px;
  width: 40px; height: 40px;
  display: grid; place-items: center; cursor: pointer; color: inherit;
}
.menu-toggle svg { width: 18px; height: 18px; }
@media (min-width: 980px) { .menu-toggle { display: none; } }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; background: rgba(13, 8, 5, 0.55); opacity: 0; pointer-events: none; z-index: 70; transition: opacity 0.25s var(--ease); }
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute; top: 0; right: 0; width: min(360px, 92vw); height: 100%;
  background: var(--c-paper); transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex; flex-direction: column; padding-bottom: 24px;
}
.drawer.open .drawer-panel { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--c-line); }
.drawer-head strong { font-family: var(--font-display); font-size: 17px; }
.drawer-head .close { background: none; border: 0; cursor: pointer; padding: 6px; color: var(--c-ink); }
.drawer nav { padding: 18px 14px; overflow-y: auto; }
.drawer nav a { display: block; padding: 14px 16px; border-radius: 6px; color: var(--c-ink); font-size: 16px; font-weight: 500; }
.drawer nav a:hover { background: var(--c-paper-2); color: var(--c-crimson); }
.drawer nav .section { padding: 18px 16px 8px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-gold); }

/* =============================================================
   Hero — full bleed, editorial
   ============================================================= */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(620px, 90vh, 920px);
  display: flex; align-items: flex-end;
  color: #fff;
  background: var(--c-dark);
}
.hero-bg {
  position: absolute; inset: -2%;
  background-size: cover; background-position: center;
  filter: brightness(0.58) saturate(108%) contrast(1.04);
  animation: hero-zoom 24s ease-out forwards;
}
@keyframes hero-zoom { from { transform: scale(1.07); } to { transform: scale(1.0); } }
.hero-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 28% 38%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.42) 88%),
    linear-gradient(180deg, rgba(13,8,5,0.4) 0%, rgba(13,8,5,0.05) 30%, rgba(13,8,5,0.65) 75%, rgba(13,8,5,0.9) 100%);
}
.hero-inner {
  position: relative; width: 100%;
  padding: 0 0 clamp(72px, 10vw, 130px);
  opacity: 0;
  animation: hero-fade-in 1.2s 0.2s ease-out forwards;
}
@keyframes hero-fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero .eyebrow { color: var(--c-gold-soft); margin-bottom: 1.4em; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.6vw, 5rem);
  font-weight: 500;
  max-width: 17ch;
  letter-spacing: -0.022em;
  line-height: 1.02;
  text-shadow: 0 2px 36px rgba(0,0,0,0.45);
  margin-bottom: 0.55em;
}
.hero p.lede {
  color: rgba(255,255,255,0.92);
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.55;
  margin-bottom: 2.2em;
  text-shadow: 0 1px 18px rgba(0,0,0,0.4);
}
.hero .trust {
  display: block; margin-top: 1.8em;
  font-size: 13px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  max-width: 64ch;
}

/* Buttons */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--c-crimson); color: #fff;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px; letter-spacing: 0.005em;
  border: 1px solid var(--c-crimson); cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn:hover { background: var(--c-crimson-2); color: #fff; border-color: var(--c-crimson-2); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--c-crimson); border-color: #fff; }
.btn-light:hover { background: var(--c-paper-2); color: var(--c-crimson-2); border-color: var(--c-paper-2); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline { background: transparent; color: var(--c-crimson); border-color: var(--c-crimson); }
.btn-outline:hover { background: var(--c-crimson); color: #fff; }
.btn svg { width: 15px; height: 15px; }

/* Link arrow underline buttons (reference's discover-pattern) */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--c-crimson);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  letter-spacing: 0.01em;
}
.arrow-link svg { width: 13px; height: 13px; transition: transform 0.2s var(--ease); }
.arrow-link:hover svg { transform: translateX(3px); }

/* =============================================================
   Stats band
   ============================================================= */
.stats-band {
  background: var(--c-dark); color: #ece1d0;
  padding: clamp(56px, 7vw, 88px) 0;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--stats-bg);
  background-size: cover; background-position: center;
  opacity: 0.18; filter: saturate(80%);
}
.stats-grid {
  position: relative;
  display: grid; gap: 36px 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat .n {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 4.4rem);
  font-weight: 500; color: #fff;
  line-height: 1; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat .label {
  font-size: 14.5px; color: rgba(255,255,255,0.78);
  line-height: 1.5; max-width: 28ch;
}

/* =============================================================
   Marquee (subtle horizontal scrolling label band)
   ============================================================= */
.marquee {
  background: var(--c-paper-2);
  border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);
  padding: 18px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-family: var(--font-display); font-size: 18px; font-style: italic;
  color: var(--c-ink-soft);
}
.marquee-track span { flex: 0 0 auto; }
.marquee-track .dot { color: var(--c-gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   Numbered "Why" cards
   ============================================================= */
.why-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 44px; } }
.why {
  position: relative; padding-top: 28px;
  border-top: 1px solid var(--c-ink);
}
.why .num {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; color: var(--c-mute-2);
  margin-bottom: 28px;
}
.why h3 { font-size: clamp(1.35rem, 1.9vw, 1.6rem); margin-bottom: 12px; }
.why p { color: var(--c-ink-soft); margin: 0; }

/* =============================================================
   News section — prominent, parallax thumb backgrounds
   ============================================================= */
.news-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .news-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; } }
@media (min-width: 1040px) { .news-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; } }

.news-card {
  display: flex; flex-direction: column;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--c-ink);
  text-decoration: none;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-color 0.32s var(--ease);
  position: relative;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold-soft);
  color: var(--c-ink);
}
.news-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-paper-2);
  position: relative;
}
.news-card .thumb-img {
  position: absolute; inset: -10% 0; /* extra height so parallax can shift */
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.news-card.featured {
  grid-row: span 1;
}
@media (min-width: 720px) {
  .news-card.featured { grid-row: span 2; }
  .news-card.featured .thumb { aspect-ratio: 4/5; }
}
.news-card .body { padding: 22px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.news-card .meta {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-mute); margin-bottom: 12px; font-weight: 600;
}
.news-card .meta .num { color: var(--c-gold); margin-right: 6px; }
.news-card h3 { margin: 0 0 10px; font-size: 1.3rem; line-height: 1.2; }
.news-card.featured h3 { font-size: clamp(1.5rem, 2.2vw, 1.85rem); }
.news-card p { color: var(--c-ink-soft); font-size: 14.5px; line-height: 1.55; margin: 0; flex: 1; }
.news-card .discover {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--c-crimson);
}
.news-card .discover svg { width: 13px; height: 13px; transition: transform 0.2s var(--ease); }
.news-card:hover .discover svg { transform: translateX(3px); }

/* =============================================================
   Sacrament & Parish cards
   ============================================================= */
.card-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (min-width: 1040px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.card-grid.cols-4 { }
@media (min-width: 1040px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card-item {
  display: flex; flex-direction: column;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--c-ink);
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  text-align: left;
  font: inherit;
  text-decoration: none;
  width: 100%;
}
.card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold-soft);
  color: var(--c-ink);
}
.card-item .thumb {
  aspect-ratio: 4/3;
  background-color: var(--c-paper-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  margin: 0;            /* defensive — no whitespace between card edge and image */
  padding: 0;
}
.card-item .thumb img,
.card-item .thumb picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Editorial typographic parish card — no thumbnail, just clean text. */
.parish-card-text {
  display: flex; flex-direction: column;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 28px 30px 26px;
  color: var(--c-ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
  min-height: 240px;
  text-decoration: none;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.parish-card-text:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold-soft);
  color: var(--c-ink);
}
.parish-card-text .meta {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-mute); font-weight: 600;
  margin: 0 0 18px;
}
.parish-card-text .meta .num { color: var(--c-gold); margin-right: 8px; }
.parish-card-text h3 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
  font-weight: 500; line-height: 1.1;
}
.parish-card-text .sub {
  font-family: var(--font-body); font-weight: 500; font-size: 14.5px;
  color: var(--c-ink-soft); margin: 0 0 14px; line-height: 1.4;
}
.parish-card-text .addr {
  font-size: 13.5px; color: var(--c-mute); line-height: 1.5;
  margin: 0 0 18px;
}
.parish-card-text .discover {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--c-line);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--c-crimson);
}
.parish-card-text .discover svg { width: 13px; height: 13px; transition: transform 0.2s var(--ease); }
.parish-card-text:hover .discover svg { transform: translateX(3px); }
.card-item .body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-item .meta {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-mute); margin-bottom: 12px; font-weight: 600;
}
.card-item .meta .num { color: var(--c-gold); margin-right: 8px; }
.card-item h3 { margin: 0 0 10px; font-size: 1.4rem; }
.card-item p { color: var(--c-ink-soft); font-size: 14.5px; line-height: 1.55; margin: 0; }
.card-item .discover {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--c-crimson);
}
.card-item .discover svg { width: 13px; height: 13px; transition: transform 0.2s var(--ease); }
.card-item:hover .discover svg { transform: translateX(3px); }

/* =============================================================
   Leadership (Metropolitan) — large, dignified, commanding
   ============================================================= */
.leader-block {
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .leader-block { grid-template-columns: minmax(380px, 0.95fr) 1.05fr; gap: 80px; }
}
@media (min-width: 1200px) {
  .leader-block { grid-template-columns: minmax(440px, 1fr) 1fr; gap: 100px; }
}
.leader-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  min-height: 480px;
  background: var(--c-ink); background-size: cover; background-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -20px rgba(13, 8, 5, 0.45),
              0 16px 32px rgba(13, 8, 5, 0.18);
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.leader-portrait:hover {
  transform: translateY(-4px);
  box-shadow: 0 50px 100px -20px rgba(13, 8, 5, 0.55),
              0 20px 40px rgba(13, 8, 5, 0.22);
}
.leader-portrait::after {
  content: ""; position: absolute; inset: 16px;
  border: 1px solid rgba(255,255,255,0.16); border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.leader-portrait .portrait-cta {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.78) 100%);
  padding: 80px 26px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: #fff;
  border-bottom-left-radius: calc(var(--radius-lg) - 8px);
  border-bottom-right-radius: calc(var(--radius-lg) - 8px);
}
.leader-portrait .portrait-cta span {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
}
.leader-portrait .portrait-cta svg {
  width: 18px; height: 18px;
  transition: transform 0.25s var(--ease);
}
.leader-portrait:hover .portrait-cta svg { transform: translateX(4px); }
.leader-body .role {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--c-gold); margin-bottom: 18px;
}
.leader-body h3 {
  font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 18px;
}
.leader-body .title-line { color: var(--c-mute); font-size: 15px; margin-bottom: 28px; }
.leader-body blockquote {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.65rem);
  line-height: 1.4;
  color: var(--c-ink); font-style: italic;
  border-left: 3px solid var(--c-gold); padding-left: 26px;
}
.leader-body .facts {
  list-style: none; margin: 0 0 32px; padding: 0;
  display: grid; gap: 10px;
}
.leader-body .facts li {
  font-size: 14.5px; color: var(--c-ink-soft);
  padding-left: 20px; position: relative;
}
.leader-body .facts li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 8px; height: 1px; background: var(--c-gold);
}
.leader-body .facts strong { color: var(--c-ink); font-weight: 600; }

/* =============================================================
   Regions (sectors)
   ============================================================= */
.regions-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .regions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .regions-grid { grid-template-columns: repeat(3, 1fr); } }
.region {
  background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: 30px 30px 26px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.region:hover { border-color: var(--c-gold-soft); transform: translateY(-2px); }
.region h3 { font-size: 1.35rem; margin-bottom: 10px; }
.region p { color: var(--c-ink-soft); font-size: 14.5px; margin: 0 0 16px; }
.region .tag {
  display: inline-block;
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-mute); font-weight: 600;
}
.region .count { color: var(--c-crimson); font-weight: 700; }

/* =============================================================
   FAQ accordion
   ============================================================= */
.faq { max-width: 800px; }
.faq details {
  border-top: 1px solid var(--c-line);
  padding: 24px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--c-line); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-display); font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 500; color: var(--c-ink);
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 auto;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b1f24' stroke-width='2.4' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/><line x1='12' y1='5' x2='12' y2='19'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b1f24' stroke-width='2.4' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
.faq details > div { margin-top: 16px; color: var(--c-ink-soft); font-size: 16px; line-height: 1.65; max-width: 68ch; }

/* =============================================================
   Contact section + form
   ============================================================= */
.contact-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1.25fr; gap: 72px; } }
.contact-meta dl { margin: 0; display: grid; gap: 22px; }
.contact-meta dt {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-mute); font-weight: 600; margin-bottom: 6px;
}
.contact-meta dd { margin: 0; font-size: 16px; color: var(--c-ink); line-height: 1.55; }
.contact-meta dd a { color: var(--c-ink); border-bottom: 1px dotted var(--c-mute); padding-bottom: 1px; }
.contact-meta dd a:hover { color: var(--c-crimson); border-color: var(--c-crimson); }

.contact-form {
  background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form > * + * { margin-top: 16px; }
.contact-form label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute); margin-bottom: 6px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--c-line); border-radius: 6px;
  font-family: inherit; font-size: 15px;
  background: #fff; color: var(--c-ink);
  transition: border-color 0.18s var(--ease);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 0; border-color: var(--c-gold);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .form-row { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-form .form-row > * { flex: 1 1 220px; }
.contact-form .small { font-size: 12.5px; color: var(--c-mute); margin-top: 12px; }

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
  background: var(--c-dark); color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid; gap: 44px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; } }
.footer-about { max-width: 36ch; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand strong { color: #fff; font-family: var(--font-display); font-size: 18px; font-weight: 500; }
.footer-about p { color: rgba(255,255,255,0.62); font-size: 14.5px; line-height: 1.65; }
.site-footer h4 {
  color: rgba(255,255,255,0.92); font-family: var(--font-body); font-size: 12px;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 24px; justify-content: space-between; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

.note-demo {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: rgba(216, 180, 124, 0.16); color: var(--c-gold-soft);
  font-size: 11px; letter-spacing: 0.06em; font-weight: 600;
}

.placeholder-banner {
  background: #fef3e0; border-bottom: 1px solid #f0d8a8;
  color: #7a5320;
  text-align: center; font-size: 13px;
  padding: 10px 16px;
  margin-top: var(--header-h);
}

/* =============================================================
   Side drawer modal — slides in from the right
   ============================================================= */
.modal {
  position: fixed; inset: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  transition: visibility 0s linear 0.5s; /* delay hide until panel finishes sliding out */
}
.modal.open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(13, 8, 5, 0.55);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.42s var(--ease);
}
.modal.open .modal-backdrop { opacity: 1; }

.modal-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(640px, 100vw);
  background: var(--c-paper);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(.22, .68, .22, 1);
  box-shadow: -28px 0 60px -16px rgba(13, 8, 5, 0.5);
  overflow: hidden;
}
.modal.open .modal-panel { transform: translateX(0); }

.modal-close {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  width: 42px; height: 42px;
  background: rgba(13,8,5,0.55); color: #fff;
  border: 0; border-radius: 50%;
  cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(8px);
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.modal-close:hover { background: rgba(13,8,5,0.88); transform: scale(1.04); }
.modal-close svg { width: 18px; height: 18px; }

.modal-image {
  width: 100%; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  background-color: var(--c-paper-2);
  flex-shrink: 0;
}
.modal-image-tall {
  aspect-ratio: 3/4;
}
.modal-content {
  padding: 36px clamp(28px, 4.5vw, 48px) 44px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.modal-content .eyebrow { margin-bottom: 14px; }
.modal-content h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: 14px; line-height: 1.1; }
.modal-content > p { color: var(--c-ink-soft); font-size: 16px; line-height: 1.65; }
.modal-content h4 { font-family: var(--font-body); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--c-gold); margin: 28px 0 12px; }
.modal-content ul.bullets { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 8px; }
.modal-content ul.bullets li { padding-left: 20px; position: relative; font-size: 15.5px; color: var(--c-ink-soft); }
.modal-content ul.bullets li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 1px; background: var(--c-gold); }
.modal-content .label-block {
  display: grid; gap: 6px; margin: 16px 0;
  padding: 16px 20px; background: var(--c-paper-2); border-radius: 6px;
  border-left: 3px solid var(--c-gold);
}
.modal-content .label-block dt {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--c-mute);
}
.modal-content .label-block dd { margin: 0; color: var(--c-ink); font-size: 15px; line-height: 1.5; }

.modal-actions {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.modal-map { margin-top: 16px; }
.modal-map iframe {
  width: 100%; height: 260px;
  border: 1px solid var(--c-line); border-radius: 6px;
}
body.modal-open { overflow: hidden; }

/* =============================================================
   Scroll reveal
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
[data-reveal].in-view { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"].in-view { transition-delay: 0.06s; }
[data-reveal][data-reveal-delay="2"].in-view { transition-delay: 0.12s; }
[data-reveal][data-reveal-delay="3"].in-view { transition-delay: 0.18s; }
[data-reveal][data-reveal-delay="4"].in-view { transition-delay: 0.24s; }
[data-reveal-image] { opacity: 0; transform: scale(1.04); transition: opacity 1.3s var(--ease), transform 1.5s var(--ease); }
[data-reveal-image].in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  [data-reveal], [data-reveal-image] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
}

/* =============================================================
   Legacy / dedicated-page support
   ============================================================= */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  min-height: clamp(380px, 52vh, 520px);
  display: flex; align-items: flex-end;
  background: var(--c-dark);
  margin-top: 0;
}
.page-hero .hero-bg { position: absolute; inset: -2%; background-size: cover; background-position: center; filter: brightness(0.55) saturate(108%); animation: hero-zoom 22s ease-out forwards; }
.page-hero .hero-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,8,5,0.05) 0%, rgba(13,8,5,0.55) 70%, rgba(13,8,5,0.85) 100%); }
.page-hero-inner { position: relative; padding: 90px 0 56px; width: 100%; }
.page-hero h1 { color: #fff; max-width: 22ch; font-size: clamp(2.1rem, 4.4vw, 3.3rem); text-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.page-hero .crumbs { font-size: 13px; color: rgba(255,255,255,0.82); margin-bottom: 18px; letter-spacing: 0.02em; }
.page-hero .crumbs a { color: rgba(255,255,255,0.9); }
.page-hero .crumbs a:hover { color: var(--c-gold-soft); }
.page-hero .eyebrow { color: var(--c-gold-soft); }

/* (kept from V2 — used by dedicated pages) */
.tiles { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .tiles { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.tile {
  display: block; padding: 26px 22px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--c-line); color: var(--c-ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  box-shadow: var(--shadow-sm); position: relative;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-gold-soft); color: var(--c-ink); }
.tile .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--c-paper-2); color: var(--c-crimson); display: grid; place-items: center; margin-bottom: 16px; }
.tile .icon svg { width: 22px; height: 22px; }
.tile h3 { margin: 0 0 6px; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--c-ink); }
.tile p { margin: 0; font-size: 14.5px; color: var(--c-mute); }

.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s var(--ease); box-shadow: var(--shadow-sm); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .thumb {
  aspect-ratio: 4/3;
  background-color: var(--c-paper-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.card .thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.card .meta { font-size: 12.5px; color: var(--c-mute); letter-spacing: .03em; margin-bottom: 8px; }
.card h3 { font-size: 1.25rem; line-height: 1.25; margin: 0 0 10px; }
.card h3 a { color: var(--c-ink); }
.card h3 a:hover { color: var(--c-crimson); }
.card p { color: var(--c-ink-soft); font-size: 15px; margin: 0; }
.card .read-more { margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--c-crimson); display: inline-flex; gap: 6px; align-items: center; }

.fact-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.fact-card h3 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 14px; }
.fact-card .row { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--c-line); }
.fact-card .row:first-of-type { border-top: 0; padding-top: 0; }
.fact-card .row svg { width: 18px; height: 18px; color: var(--c-crimson); flex: 0 0 18px; margin-top: 3px; }
.fact-card .row div { font-size: 14.5px; line-height: 1.5; }
.fact-card .row strong { display: block; color: var(--c-mute); font-weight: 600; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }

.parish-list { display: grid; gap: 14px; grid-template-columns: 1fr; margin: 24px 0 0; }
@media (min-width: 720px) { .parish-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .parish-list { grid-template-columns: repeat(3, 1fr); } }
.parish-row { display: block; padding: 18px 20px; background: #fff; border: 1px solid var(--c-line); border-radius: 10px; color: var(--c-ink); transition: all .2s var(--ease); }
.parish-row:hover { border-color: var(--c-gold); color: var(--c-ink); }
.parish-row .region { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-gold); font-weight: 600; }
.parish-row .name { display: block; font-weight: 600; font-size: 15.5px; margin-top: 4px; }
.parish-row .addr { display: block; color: var(--c-mute); font-size: 13.5px; margin-top: 4px; }

.parish-layout { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .parish-layout { grid-template-columns: 1fr 360px; gap: 56px; } }
.schedule { width: 100%; border-collapse: collapse; margin: 16px 0 8px; }
.schedule td { padding: 12px 0; border-bottom: 1px solid var(--c-line); font-size: 15px; }
.schedule td:first-child { width: 130px; font-weight: 600; color: var(--c-crimson); }
.schedule tr:last-child td { border-bottom: 0; }

.steps { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 28px; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.step .n { width: 36px; height: 36px; border-radius: 50%; background: var(--c-paper-2); color: var(--c-crimson); display: grid; place-items: center; font-family: var(--font-display); font-size: 18px; font-weight: 500; margin-bottom: 14px; }

.checklist { list-style: none; padding: 0; margin: 18px 0 0; }
.checklist li { position: relative; padding: 12px 0 12px 32px; border-top: 1px solid var(--c-line); font-size: 15.5px; }
.checklist li:first-child { border-top: 0; }
.checklist li::before { content: ""; position: absolute; left: 4px; top: 19px; width: 14px; height: 14px; border-radius: 50%; background: var(--c-crimson); box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--c-crimson); }

.prose { max-width: 68ch; }
.prose p { font-size: 1.08rem; line-height: 1.7; color: var(--c-ink); }
.prose ul li, .prose ol li { margin-bottom: 0.5em; }
.prose blockquote { margin: 1.6em 0; padding: 18px 24px; border-left: 4px solid var(--c-gold); background: var(--c-paper-2); font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--c-ink-soft); }

.cta-strip { background: linear-gradient(180deg, #fff 0%, var(--c-paper-2) 100%); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px); margin-top: 36px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-strip .text { flex: 1 1 320px; }
.cta-strip h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 1.5rem; }
.cta-strip p { margin: 0; color: var(--c-ink-soft); }

.article-meta { display: flex; gap: 20px; font-size: 14px; color: var(--c-mute); margin-bottom: 24px; flex-wrap: wrap; }
.article-hero { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg); background-size: cover; background-position: center; margin: 0 0 30px; box-shadow: var(--shadow-md); }

.placeholder-mark {
  display: inline-block; padding: 3px 8px; border-radius: 4px;
  background: rgba(176, 132, 66, 0.15); color: var(--c-gold);
  font-size: 11.5px; letter-spacing: .04em; font-weight: 600;
  text-transform: uppercase;
}
.placeholder-block {
  border: 1.5px dashed var(--c-gold-soft); background: rgba(176, 132, 66, 0.06);
  padding: 26px; border-radius: 10px; color: var(--c-ink-soft);
  font-style: italic;
}

.map-frame {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

.muted { color: var(--c-mute); }
.divider { height: 1px; background: var(--c-line); border: 0; margin: 40px 0; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
