/*
 * LA Churches parish detail + adoration index. Split from theme-lachurches.css
 * so no single stylesheet exceeds 500 lines. Loaded after theme-lachurches.css
 * on church.html and adoration.html only.
 *
 * Authored 2026-04-18 per docs/DESIGN_SPEC.md §2 and §8.
 */

/* ── Parish detail surfaces ───────────────────────────────────── */

.lac-parish {
  max-width: var(--lac-col-wide);
  margin: 0 auto;
  padding: var(--lac-space-6) var(--lac-space-5);
  background: var(--lac-bg);
  color: var(--lac-ink);
}

.lac-parish-backlink {
  display: inline-block;
  font-family: var(--lac-display);
  font-size: var(--lac-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lac-ink-2);
  text-decoration: none;
  margin-bottom: var(--lac-space-5);
}
.lac-parish-backlink:hover { color: var(--lac-gold-deep); }

/* Aerial hero locator. Full-bleed within the column, gently inset, with a
   warm parchment vignette at the foot so the H1 reads cleanly beneath it. */
.lac-parish-hero {
  margin: 0 0 var(--lac-space-5);
  border-radius: var(--lac-radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18), 0 10px 30px rgba(0, 0, 0, 0.12);
  background: var(--lac-bg-warm);
}
.lac-parish-hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 360;
  height: auto;
  object-fit: cover;
}
/* A real photo of the church gets a slightly taller, more generous frame than
   the flat aerial — it's the subject, not a locator. */
.lac-parish-hero-img.is-photo {
  aspect-ratio: 16 / 9;
  object-position: center 38%;
}
@media (min-width: 760px) {
  .lac-parish-hero-img.is-photo { aspect-ratio: 21 / 9; }
}
/* Bottom scrim so the caption reads and the hero seats into the page. */
.lac-parish-hero-scrim {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  pointer-events: none;
}
/* Gold map-pin centred on the parish coordinates so a visitor sees WHICH
   building, not just a neighbourhood. Drop shape + soft shadow. */
.lac-parish-hero-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -22px 0 0 -9px; /* tip of the pin sits on the exact centre */
  background: var(--lac-gold);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.lac-parish-hero-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--lac-bg-warm);
  border-radius: 50%;
}
.lac-parish-hero-cap {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-family: var(--lac-serif);
  font-style: italic;
  font-size: 11px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
}

.lac-parish-pills {
  display: flex;
  gap: var(--lac-space-2);
  flex-wrap: wrap;
  margin-bottom: var(--lac-space-3);
}
.lac-parish-pill {
  font-family: var(--lac-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lac-ink-2);
  border: 1px solid var(--lac-rule);
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--lac-bg-warm);
}

.lac-parish-title {
  font-family: var(--lac-display);
  font-size: clamp(26px, 6.2vw, 42px);
  letter-spacing: 0.01em;
  line-height: 1.06;
  color: var(--lac-ink);
  margin: 0 0 var(--lac-space-2);
  font-weight: 700;
  /* Long dedications (e.g. "Immaculate Conception") must never clip the
     viewport on a narrow phone; wrap and, only if a single word is still too
     wide, break it rather than force horizontal scroll. */
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.lac-parish-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--lac-serif);
  font-size: var(--lac-text-md);
  color: var(--lac-ink);
  margin: 0 0 var(--lac-space-4);
}
.lac-parish-meta a { color: var(--lac-ink); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--lac-gold) 55%, transparent); padding-bottom: 1px; }
.lac-parish-meta a:hover { color: var(--lac-gold-deep); border-bottom-color: var(--lac-gold); }

/* Gold-dot separator between meta segments; rendered only between present
   values, so a missing address can never leak a leading stray dot. */
.lac-meta-sep {
  flex: none;
  width: 3px;
  height: 3px;
  margin: 0 12px;
  border-radius: 50%;
  background: var(--lac-gold);
  opacity: 0.85;
}

.lac-parish-actions {
  display: flex;
  gap: var(--lac-space-3);
  flex-wrap: wrap;
  margin: var(--lac-space-4) 0 var(--lac-space-6);
}
/* On a phone the three actions share the row evenly and wrap to a second line
   rather than clipping "Website" off the right edge. */
@media (max-width: 480px) {
  .lac-parish-actions { gap: var(--lac-space-2); }
  .lac-parish-actions .lac-btn,
  .lac-parish-actions .lac-btn-ghost {
    flex: 1 1 auto;
    min-width: 0;
    padding-left: var(--lac-space-3);
    padding-right: var(--lac-space-3);
    letter-spacing: 0.1em;
    text-align: center;
    justify-content: center;
  }
}

/* S-tier action buttons. Primary (Directions) is filled gold-on-ink; the
   secondaries (Call, Website) are quiet but legible, with a gold lift on hover.
   Min 44px tap target. Scoped to the parish page so the rest of the site's
   .lac-btn is untouched. */
.lac-parish-actions .lac-btn,
.lac-parish-actions .lac-btn-ghost {
  min-height: 44px;
  padding: 11px 22px;
  letter-spacing: 0.16em;
  border-radius: var(--lac-radius-md);
  transition: background 140ms ease, color 140ms ease,
              border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}
.lac-parish-actions .lac-btn {
  background: var(--lac-gold);
  border-color: var(--lac-gold);
  color: var(--lac-bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.lac-parish-actions .lac-btn:hover {
  background: var(--lac-gold-deep);
  border-color: var(--lac-gold-deep);
  color: var(--lac-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}
.lac-parish-actions .lac-btn-ghost {
  background: var(--lac-bg-warm);
  border: 1px solid var(--lac-rule);
  color: var(--lac-ink);
}
.lac-parish-actions .lac-btn-ghost:hover {
  border-color: var(--lac-gold);
  color: var(--lac-gold-deep);
  background: var(--lac-bg-warm);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.lac-parish-desc {
  font-family: var(--lac-serif);
  font-size: var(--lac-text-lg);
  line-height: var(--lac-leading-loose);
  color: var(--lac-ink);
  max-width: var(--lac-col-prose);
  margin: 0 0 var(--lac-space-6);
  hyphens: auto;
}
.lac-parish-desc p + p { margin-top: var(--lac-space-4); }

.lac-parish-desc > p:first-child::first-letter {
  font-family: var(--lac-display);
  color: var(--lac-red);
  float: left;
  font-size: 62px;
  line-height: 50px;
  padding: 2px 8px 0 0;
  font-weight: 700;
}

.lac-languages-line {
  font-family: var(--lac-display);
  font-size: var(--lac-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lac-ink-2);
  margin: var(--lac-space-5) 0 var(--lac-space-3);
}
.lac-languages-line strong {
  color: var(--lac-ink);
  font-weight: 700;
}

/* ── Mass week grid ───────────────────────────────────────────── */

.lac-section-heading {
  font-family: var(--lac-display);
  font-size: var(--lac-text-2xl);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lac-ink);
  margin: var(--lac-space-7) 0 var(--lac-space-4);
  padding-bottom: var(--lac-space-2);
  border-bottom: 1px solid var(--lac-gold);
  font-weight: 700;
}

.lac-week-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--lac-rule);
  border-radius: var(--lac-radius-md);
  background: var(--lac-bg);
  margin-bottom: var(--lac-space-5);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.lac-day-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--lac-rule);
  min-height: 104px;
}
.lac-day-col:last-child { border-right: none; }

.lac-day-col.is-sunday { background: var(--lac-bg-warm); }
.lac-day-col.is-today {
  box-shadow: inset 0 3px 0 var(--lac-gold);
  background: var(--lac-bg-warm);
}

.lac-day-header {
  font-family: var(--lac-display);
  font-size: var(--lac-text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: var(--lac-space-3) var(--lac-space-2);
  text-align: center;
  color: var(--lac-ink-2);
  border-bottom: 1px solid var(--lac-rule);
  background: var(--lac-bg);
}
.lac-day-col.is-sunday .lac-day-header { background: var(--lac-bg-warm); color: var(--lac-ink); }
.lac-day-col.is-today .lac-day-header { color: var(--lac-gold-deep); }

/* Times centre vertically inside the column so a single early Mass no longer
   floats at the top while Sunday runs long, balancing the uneven grid. */
.lac-day-masses {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: var(--lac-space-2) 0;
}

.lac-day-mass {
  padding: var(--lac-space-1) var(--lac-space-2);
  text-align: center;
  font-family: var(--lac-serif);
}
.lac-day-mass.is-next {
  background: var(--lac-bg-warm);
  border-radius: var(--lac-radius-sm);
  box-shadow: inset 2px 0 0 var(--lac-gold);
}

.lac-day-mass time {
  display: block;
  font-variant-numeric: tabular-nums;
  font-size: var(--lac-text-lg);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--lac-ink);
}
.lac-day-mass.is-next { padding-top: 6px; padding-bottom: 6px; }
.lac-day-mass.is-next time { color: var(--lac-gold-deep); font-weight: 700; }

/* Empty day: a single quiet hairline dot, vertically centred. Replaces the
   stray "." text that previously sat orphaned at the top of the column. */
.lac-day-empty {
  flex: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lac-day-empty::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lac-rule);
}

.lac-lang-badge {
  display: inline-block;
  margin-top: 2px;
  font-family: var(--lac-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lac-ink-2);
  text-transform: uppercase;
}
/* 2026-05-06: removed `.lac-lang-badge.is-spa { color: var(--lac-red) }` — DESIGN_SPEC §4.3
   reserves red for drop cap, vigil, countdown, season only. Spanish badges keep ink-2. */

.lac-vigil-label {
  font-family: var(--lac-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--lac-red);
  display: block;
}

.lac-no-mass {
  font-family: var(--lac-serif);
  font-style: italic;
  color: var(--lac-ink-2);
  padding: var(--lac-space-4) 0;
  font-size: var(--lac-text-sm);
}

@media (max-width: 760px) {
  .lac-week-grid {
    grid-template-columns: 1fr;
    border-left: none;
    border-right: none;
  }
  .lac-day-col {
    border-right: none;
    border-bottom: 1px solid var(--lac-rule);
    min-height: 0;
    flex-direction: row;
    align-items: center;
    gap: var(--lac-space-3);
    padding: var(--lac-space-2) var(--lac-space-3) var(--lac-space-2) 0;
  }
  .lac-day-col.is-today { box-shadow: inset 3px 0 0 var(--lac-gold); }
  .lac-day-col:last-child { border-bottom: none; }
  .lac-day-header {
    width: 72px;
    flex: none;
    text-align: left;
    border-bottom: none;
    border-right: 1px solid var(--lac-rule);
    padding: var(--lac-space-2) var(--lac-space-3);
    background: transparent;
  }
  .lac-day-masses {
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: var(--lac-space-2) var(--lac-space-3);
    padding: var(--lac-space-2) 0;
  }
  .lac-day-mass {
    padding: 0;
    text-align: left;
    min-width: 64px;
  }
  .lac-day-mass.is-next { background: transparent; box-shadow: none; border-left: 2px solid var(--lac-gold); padding-left: 8px; }
  .lac-day-empty { flex: none; justify-content: flex-start; padding-left: var(--lac-space-3); }
}

/* ── Confession + Adoration cards ─────────────────────────────── */

.lac-sacrament-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lac-space-5);
  margin-top: var(--lac-space-6);
}
@media (max-width: 680px) {
  .lac-sacrament-grid { grid-template-columns: 1fr; gap: var(--lac-space-4); }
}

.lac-card {
  border: 1px solid var(--lac-rule);
  border-top: 3px solid var(--lac-gold);
  border-radius: var(--lac-radius-md);
  padding: var(--lac-space-5);
  margin-bottom: 0;
  background: var(--lac-bg-warm);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.lac-card:hover {
  border-color: var(--lac-rule);
  border-top-color: var(--lac-gold-deep);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.lac-card h3 {
  font-family: var(--lac-display);
  font-size: var(--lac-text-xl);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lac-ink);
  margin: 0 0 var(--lac-space-4);
  padding-bottom: var(--lac-space-2);
  border-bottom: 1px solid var(--lac-rule);
  font-weight: 700;
}

.lac-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--lac-serif);
}
.lac-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--lac-space-4);
  padding: 8px 0;
  border-bottom: 1px dotted var(--lac-rule);
  font-variant-numeric: tabular-nums;
}
.lac-card-list li:last-child { border-bottom: none; padding-bottom: 0; }
.lac-card-list .day {
  color: var(--lac-ink-2);
  font-style: italic;
}
.lac-card-list .lac-card-time {
  color: var(--lac-ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.lac-byappt {
  font-family: var(--lac-serif);
  font-style: italic;
  color: var(--lac-ink-2);
  margin: 0;
  line-height: var(--lac-leading-loose);
}
/* A card whose only child is an empty-state note sits a touch quieter so real
   schedules carry the visual weight. */
.lac-card:has(> .lac-byappt:only-of-type) {
  background: var(--lac-bg);
  border-top-color: var(--lac-rule);
}
.lac-card:has(> .lac-byappt:only-of-type):hover { border-top-color: var(--lac-gold); }

/* ── Footer "Suggest an edit" link ────────────────────────────── */
.lac-suggest-edit {
  margin-top: var(--lac-space-7);
  padding-top: var(--lac-space-5);
  border-top: 1px solid var(--lac-rule);
  text-align: center;
}
.lac-suggest-edit a {
  font-family: var(--lac-display);
  font-size: var(--lac-text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lac-ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--lac-rule);
  padding-bottom: 2px;
  transition: color 140ms ease, border-color 140ms ease;
}
.lac-suggest-edit a:hover {
  color: var(--lac-gold-deep);
  border-bottom-color: var(--lac-gold);
}

/* ── Adoration index page ─────────────────────────────────────── */

.lac-adoration-index {
  max-width: var(--lac-col-wide);
  margin: 0 auto;
  padding: var(--lac-space-6) var(--lac-space-5);
}

.lac-region-block { margin-bottom: var(--lac-space-7); }
.lac-region-block h2 {
  font-family: var(--lac-display);
  font-size: var(--lac-text-xl);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lac-ink);
  padding-bottom: var(--lac-space-2);
  border-bottom: 1px solid var(--lac-gold);
  margin-bottom: var(--lac-space-4);
  font-weight: 700;
}

.lac-chapel-list { list-style: none; padding: 0; margin: 0; }
.lac-chapel-list > li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lac-space-4);
  padding: var(--lac-space-3) 0;
  border-bottom: 1px solid var(--lac-rule);
}
.lac-chapel-list .name {
  font-family: var(--lac-display);
  font-size: var(--lac-text-md);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.lac-chapel-list .name a { color: var(--lac-ink); text-decoration: none; }
.lac-chapel-list .name a:hover { color: var(--lac-gold-deep); }
.lac-chapel-list .city {
  font-family: var(--lac-serif);
  font-style: italic;
  font-size: var(--lac-text-sm);
  color: var(--lac-ink-2);
  margin-top: 2px;
}
.lac-chapel-list .hours {
  font-family: var(--lac-serif);
  font-size: var(--lac-text-sm);
  color: var(--lac-ink);
}
.lac-chapel-list .perpetual { color: var(--lac-red); font-style: italic; }

@media (max-width: 680px) {
  .lac-chapel-list > li { grid-template-columns: 1fr; gap: var(--lac-space-1); }
}

/* ──────────────────────────────────────────────────────────────────
   Parish-detail components per docs/DESIGN_SPEC.md §2. Relocated here
   from theme-lachurches.css (2026-05-28) so they live with the pages
   that consume them (church.html, adoration.html) and the site-wide
   theme stays lean. Forward components from the 2026-S1 tokens audit §C.
   ────────────────────────────────────────────────────────────────── */

/* §2.1 meta line: Deanery 8 . Region . Founded 2002 with 4px gold dot. */
.lac-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--lac-serif);
  font-style: italic;
  font-size: var(--lac-text-sm);
  color: var(--lac-ink-2);
}
.lac-meta-line > span:not(.sep)::before { content: ""; }
.lac-meta-line .sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--lac-gold);
  border-radius: 50%;
  margin: 0 2px;
  vertical-align: middle;
}

/* §2.1 pill action: typographic, no fill, 44px tap target. */
.lac-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--lac-space-2);
  min-height: 44px;
  padding: 10px 24px;
  font-family: var(--lac-display);
  font-size: var(--lac-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lac-ink);
  background: transparent;
  border: 1px solid var(--lac-rule);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 120ms ease, color 120ms ease;
}
.lac-pill:hover {
  border-color: var(--lac-gold);
  color: var(--lac-gold-deep);
}

/* §2.4 confession countdown: red italic 24px, the live ticker. */
.lac-rubric-countdown {
  font-family: var(--lac-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--lac-red);
}

/* §2.6 history pull quote: italic 22px with gold left rule. */
.lac-pullquote {
  border-left: 2px solid var(--lac-gold);
  padding: var(--lac-space-2) 0 var(--lac-space-2) var(--lac-space-4);
  margin: var(--lac-space-5) 0;
  font-family: var(--lac-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--lac-ink);
}

/* §4.3 liturgical season marker: red italic small caps. */
.lac-rubric-season {
  font-family: var(--lac-display);
  font-style: italic;
  font-size: var(--lac-text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lac-red);
}

/* ---- Server-rendered church profile (crawler + S-tier first paint) ---- */
/* Visible in raw HTML for SEO; replaced by interactive UI on hydration. */
/* Contrast: --lac-ink-3 is a darker subtle ink that meets WCAG AA (>=4.5:1). */
.lac-parish-ssr {
  --lac-ink-3: #5b5347; /* AA-compliant subtle text on parchment */
  max-width: var(--lac-col-prose);
  margin: 0 auto;
  padding: var(--lac-space-5) var(--lac-space-4) var(--lac-space-7);
  color: var(--lac-ink);
  font-family: var(--lac-serif);
  line-height: var(--lac-leading-loose);
}
/* Breadcrumb: accessible ordered list */
.lac-parish-ssr .lac-breadcrumb { font-size: var(--lac-text-sm); color: var(--lac-ink-3); margin-bottom: var(--lac-space-4); }
.lac-parish-ssr .lac-breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0 var(--lac-space-1); }
.lac-parish-ssr .lac-breadcrumb li { border: 0; padding: 0; display: inline-flex; align-items: center; }
.lac-parish-ssr .lac-breadcrumb li + li::before { content: "\203A"; color: var(--lac-ink-3); margin: 0 var(--lac-space-1); }
.lac-parish-ssr .lac-breadcrumb a { color: var(--lac-pacific); text-decoration: none; }
.lac-parish-ssr .lac-breadcrumb a:hover { text-decoration: underline; }
.lac-parish-ssr h1 {
  font-family: var(--lac-display);
  font-size: var(--lac-text-2xl);
  color: var(--lac-red);
  margin: var(--lac-space-3) 0 var(--lac-space-2);
  line-height: 1.1;
}
.lac-parish-ssr h2 {
  font-family: var(--lac-display);
  font-size: var(--lac-text-lg);
  color: var(--lac-gold-deep);
  margin: var(--lac-space-5) 0 var(--lac-space-2);
  border-bottom: 1px solid var(--lac-rule);
  padding-bottom: var(--lac-space-1);
}
/* S-tier hero figure */
.lac-parish-ssr .lac-parish-photo-fig { margin: 0 0 var(--lac-space-3); }
.lac-parish-ssr .lac-parish-photo {
  width: 100%; aspect-ratio: 1200 / 630; height: auto; object-fit: cover;
  border-radius: 10px; box-shadow: 0 1px 3px rgba(40,30,15,.18), 0 8px 24px rgba(40,30,15,.10);
  display: block; background: var(--lac-bg-warm);
}
.lac-parish-ssr .lac-photo-cap { font-size: var(--lac-text-xs); color: var(--lac-ink-3); margin-top: var(--lac-space-1); font-style: italic; }
.lac-parish-ssr .lac-parish-sub { color: var(--lac-ink-3); font-size: var(--lac-text-md); }
.lac-parish-ssr .lac-parish-rating { color: var(--lac-gold-deep); font-size: var(--lac-text-sm); }
.lac-parish-ssr .lac-admin-flag { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; background: var(--lac-red); color: #fff; border-radius: 3px; padding: 0 5px; margin-left: var(--lac-space-1); }
.lac-parish-ssr .lac-approx, .lac-parish-ssr .lac-note { color: var(--lac-ink-3); font-size: var(--lac-text-xs); font-style: italic; }
.lac-parish-ssr ul { list-style: none; padding: 0; margin: 0; }
.lac-parish-ssr li { padding: var(--lac-space-2) 0; border-bottom: 1px dotted var(--lac-rule); }
.lac-parish-ssr a { color: var(--lac-pacific); }
/* Schedule rows: time set off, day labeled, tags as quiet pills */
.lac-parish-ssr .lac-sched li { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--lac-space-1) var(--lac-space-2); }
.lac-parish-ssr .lac-sched .lac-day { min-width: 5.5em; font-weight: 600; color: var(--lac-ink); }
.lac-parish-ssr .lac-sched .lac-time { font-variant-numeric: tabular-nums; color: var(--lac-ink); }
.lac-parish-ssr .lac-tag { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; background: var(--lac-bg-warm); color: var(--lac-gold-deep); border: 1px solid var(--lac-gold); border-radius: 3px; padding: 0 5px; }
.lac-parish-ssr .lac-sched-disclaimer { margin: var(--lac-space-3) 0 0; padding: var(--lac-space-2) var(--lac-space-3); background: var(--lac-bg-warm); border-left: 3px solid var(--lac-gold); border-radius: 0 6px 6px 0; font-size: var(--lac-text-sm); color: var(--lac-ink-2); }
.lac-parish-ssr .lac-sched-disclaimer a { color: var(--lac-pacific); }
.lac-parish-ssr .lac-nearby-list li { display: flex; justify-content: space-between; gap: var(--lac-space-2); align-items: baseline; }
.lac-parish-ssr .lac-nearby-dist { color: var(--lac-ink-3); font-size: var(--lac-text-xs); white-space: nowrap; }
.lac-parish-ssr .lac-dir-city { color: var(--lac-ink-3); font-size: var(--lac-text-xs); }

/* ---- /churches directory + city/feature landing pages ---- */
.lac-directory .lac-dir-wrap {
  max-width: var(--lac-col-wide);
  margin: 0 auto;
  padding: var(--lac-space-5) var(--lac-space-4) var(--lac-space-7);
  color: var(--lac-ink);
  font-family: var(--lac-serif);
}
.lac-directory h1 {
  font-family: var(--lac-display);
  font-size: var(--lac-text-2xl);
  color: var(--lac-red);
  margin: var(--lac-space-3) 0 var(--lac-space-2);
}
.lac-directory h2 {
  font-family: var(--lac-display);
  font-size: var(--lac-text-lg);
  color: var(--lac-gold-deep);
  margin: var(--lac-space-5) 0 var(--lac-space-2);
}
.lac-directory h2 a { color: inherit; text-decoration: none; }
.lac-directory h2 a:hover { text-decoration: underline; }
.lac-dir-lede { font-size: var(--lac-text-md); color: var(--lac-ink-2); line-height: var(--lac-leading-loose); max-width: var(--lac-col-prose); }
.lac-dir-count { font-size: var(--lac-text-xs); color: var(--lac-ink-2); font-family: var(--lac-serif); }
.lac-dir-features, .lac-dir-cityindex { display: flex; flex-wrap: wrap; gap: var(--lac-space-2); margin: var(--lac-space-4) 0; }
.lac-dir-feature {
  display: inline-block; padding: var(--lac-space-1) var(--lac-space-3);
  background: var(--lac-bg-warm); border: 1px solid var(--lac-gold);
  border-radius: 999px; color: var(--lac-gold-deep); text-decoration: none;
  font-size: var(--lac-text-sm);
}
.lac-dir-feature:hover { background: var(--lac-gold); color: #fff; }
.lac-dir-cityindex a { color: var(--lac-pacific); text-decoration: none; font-size: var(--lac-text-sm); }
.lac-dir-cityindex a:hover { text-decoration: underline; }
.lac-directory-list { list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2px var(--lac-space-4); }
.lac-directory-list li { padding: var(--lac-space-1) 0; border-bottom: 1px dotted var(--lac-rule); }
.lac-directory-list a { color: var(--lac-pacific); text-decoration: none; }
.lac-directory-list a:hover { text-decoration: underline; }
.lac-dir-city { color: var(--lac-ink-2); font-size: var(--lac-text-xs); margin-left: var(--lac-space-1); }
.lac-badge {
  display: inline-block; margin-left: var(--lac-space-1); padding: 0 6px;
  font-size: 10px; border-radius: 3px; background: var(--lac-bg-warm);
  color: var(--lac-gold-deep); border: 1px solid var(--lac-gold);
}
.lac-dir-back { margin-top: var(--lac-space-5); }
.lac-dir-back a { color: var(--lac-pacific); }
.lac-breadcrumb { font-size: var(--lac-text-sm); color: var(--lac-ink-2); }
.lac-breadcrumb a { color: var(--lac-pacific); text-decoration: none; }
