
    :root {
      --bg: #f5f7fb;
      --bg-soft: #eef3f9;
      --surface: rgba(255,255,255,.88);
      --surface-strong: #ffffff;
      --ink: #162033;
      --muted: #5a677b;
      --line: #dfe7f1;
      --accent: #1f4f8a;
      --accent-strong: #173d6b;
      --accent-soft: #eaf2fc;
      --shadow: 0 20px 45px rgba(16, 35, 61, .10);
      --radius: 24px;
      --max: 1160px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(31,79,138,.08), transparent 26%),
        radial-gradient(circle at 88% 10%, rgba(31,79,138,.06), transparent 20%),
        linear-gradient(180deg, #fbfcfe 0%, var(--bg) 100%);
      line-height: 1.6;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; }

    .wrap {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: rgba(255,255,255,.86);
      border-bottom: 1px solid rgba(31,79,138,.10);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: .95rem 0;
    }

    .brand {
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      font-size: .9rem;
    }

    .nav {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: .95rem;
      color: var(--muted);
    }

    .nav a {
      text-decoration: none;
      transition: color .2s ease;
    }

    .nav a:hover { color: var(--ink); }

    .hero {
      padding: 3rem 0 2rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr .95fr;
      gap: 1.5rem;
      align-items: stretch;
    }

    .card {
      background: var(--surface);
      border: 1px solid rgba(31,79,138,.10);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .hero-copy {
      padding: 2.5rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .42rem .78rem;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent-strong);
      font-weight: 700;
      font-size: .83rem;
      letter-spacing: .02em;
      margin-bottom: 1rem;
    }

    h1, h2, h3 { line-height: 1.12; margin: 0 0 .8rem; }

    h1 {
      font-size: clamp(2.2rem, 4.1vw, 4.5rem);
      letter-spacing: -.035em;
      max-width: 12ch;
    }

    h2 {
      font-size: clamp(1.55rem, 2.5vw, 2.3rem);
      letter-spacing: -.02em;
    }

    h3 {
      font-size: 1.06rem;
      margin-bottom: .45rem;
    }

    .lead {
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 58ch;
      margin: 0;
    }

    .cta-row {
      display: flex;
      gap: .9rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      border-radius: 999px;
      padding: .92rem 1.2rem;
      font-weight: 700;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .button:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(16,35,61,.12);
    }

    .button.primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-strong));
      color: #fff;
    }

    .button.secondary {
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(31,79,138,.14);
      color: var(--ink);
    }

    .hero-media {
      background: linear-gradient(to bottom, #f4f4f4, #eaeaea);
      padding: 20px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
      min-height: auto;
      border-radius: var(--radius);
      border: 1px solid rgba(31,79,138,.10);
      box-shadow: var(--shadow);
    }

    .hero-media img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center 30%;
      max-height: 520px;
      margin: 0 auto;
    }

    .hero-media::after {
      content: "Holy Family Catholic Parish";
      position: absolute;
      left: 1rem;
      bottom: 1rem;
      background: rgba(16, 35, 61, .76);
      color: #fff;
      padding: .55rem .82rem;
      border-radius: 999px;
      font-size: .82rem;
      letter-spacing: .02em;
    }

    .section {
      padding: 1.15rem 0 2rem;
    }

    .section-head {
      margin-bottom: 1rem;
    }

    .grid-3,
    .grid-2,
    .steps {
      display: grid;
      gap: 1rem;
    }

    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }

    .panel {
      padding: 1.4rem;
      background: var(--surface-strong);
      border: 1px solid var(--line);
      border-radius: 20px;
      box-shadow: 0 10px 24px rgba(16,35,61,.05);
    }

    .panel p,
    .step p,
    details p,
    .image-caption {
      margin: 0;
      color: var(--muted);
    }

    .icon {
      width: 2.4rem;
      height: 2.4rem;
      display: inline-grid;
      place-items: center;
      border-radius: 14px;
      background: var(--accent-soft);
      color: var(--accent-strong);
      font-weight: 800;
      margin-bottom: .8rem;
    }

    .story {
      display: grid;
      grid-template-columns: .98fr 1.02fr;
      gap: 1.2rem;
      align-items: stretch;
    }

    .image-card {
      overflow: hidden;
      min-height: 100%;
    }

    .image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 330px;
    }

    .image-caption {
      margin-top: .75rem;
      font-size: .94rem;
    }

    .cta-band {
      margin-top: .2rem;
      padding: 1.45rem;
      background: linear-gradient(135deg, #173d6b, #1f4f8a);
      color: #fff;
      border-radius: 24px;
      box-shadow: var(--shadow);
    }

    .cta-band p {
      margin: 0 0 1rem;
      color: rgba(255,255,255,.86);
      max-width: 68ch;
    }

    .steps {
      grid-template-columns: repeat(4, 1fr);
      margin-top: 1rem;
    }

    .step {
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 18px;
      padding: 1rem;
    }

    .step-number {
      width: 2rem;
      height: 2rem;
      border-radius: 999px;
      display: inline-grid;
      place-items: center;
      background: rgba(255,255,255,.18);
      font-weight: 800;
      margin-bottom: .7rem;
    }

    .step strong {
      display: block;
      margin-bottom: .35rem;
      font-size: .98rem;
    }

    .step p {
      color: rgba(255,255,255,.86);
      font-size: .95rem;
    }

    .faq {
      display: grid;
      gap: .8rem;
    }

    details {
      background: var(--surface-strong);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 1rem 1.1rem;
      box-shadow: 0 10px 24px rgba(16,35,61,.05);
    }

    summary {
      cursor: pointer;
      font-weight: 700;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      font-size: 1.3rem;
      color: var(--accent);
      line-height: 1;
    }

    details[open] summary::after { content: "–"; }
    details p { margin-top: .8rem; }

    footer {
      padding: 1rem 0 2.6rem;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .story,
      .grid-3,
      .grid-2,
      .steps {
        grid-template-columns: 1fr;
      }

      .hero-copy { padding: 1.6rem; }
      .hero-media {
      background: linear-gradient(to bottom, #f4f4f4, #eaeaea);
      padding: 20px 0;
      display: flex;
      justify-content: center;
      align-items: center; min-height: 300px; }
    }

    @media (max-width: 640px) {
      .topbar-inner { align-items: start; flex-direction: column; }
      .nav { gap: .7rem 1rem; }
      .hero { padding-top: 1.6rem; }
      .button { width: 100%; }
      .cta-row { flex-direction: column; }
    }
  
.info-banner {
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, #dbe6f2, #cfdced);
  border: 1px solid rgba(31,79,138,.18);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(16,35,61,.05);
}
.info-banner p {
  margin: 0;
  color: #2c3e50;
  font-size: 1rem;
}



/* Shared navigation and multi-page site additions */
.brand { color: var(--ink); text-decoration: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-toggle { display: none; }
.nav-dropdown { position: relative; }
.nav-dropbutton {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.nav-dropbutton::after { content: " ▾"; font-size: .8em; }
.nav-dropbutton:hover, .nav-dropdown:focus-within .nav-dropbutton { color: var(--ink); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: .55rem;
  border-radius: 16px;
  border: 1px solid rgba(31,79,138,.14);
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 35px rgba(16,35,61,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .72rem .85rem;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--accent-soft); color: var(--accent-strong); }
.split-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}
.section-lead {
  margin: .2rem 0 0;
  color: var(--muted);
  max-width: 72ch;
}

.deep-dive-band {
  margin-top: .2rem;
  padding: 1.65rem;
  background: linear-gradient(135deg, #eaf2fc, #f7fbff);
  color: var(--ink);
  border: 1px solid rgba(31,79,138,.14);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.deep-dive-band .section-lead {
  color: var(--muted);
}
.deep-dive-band .section-head {
  margin-bottom: 1rem;
}
.deep-dive-band .deep-dive-card {
  background: rgba(255,255,255,.96);
}
.deep-dive-band .deep-dive-card h3 {
  color: var(--ink);
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.deep-dive-card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: 1.25rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(16,35,61,.05);
}
.deep-dive-card h3 { margin-bottom: 0; }
.deep-dive-card p { margin: 0; color: var(--muted); }
.deep-dive-button {
  margin-top: auto;
  min-height: 4.2rem;
  white-space: normal;
  text-align: center;
  line-height: 1.15;
}
.deep-page-hero { padding: 2.2rem 0 1rem; }
.deep-page-card { padding: 2rem; }
.deep-page-card h1 { max-width: none; font-size: clamp(2rem, 3.2vw, 3.35rem); }
.deep-article {
  padding: 1rem 0 2.6rem;
}
.article-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(16,35,61,.05);
}
.article-card p, .article-card li {
  font-size: 1.05rem;
  color: #26344a;
}
.article-card p { margin: 0 0 1rem; }
.article-card h2 {
  margin-top: 1.7rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.article-card ul { margin: .2rem 0 1.1rem 1.25rem; color: #26344a; }
.page-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }

@media (max-width: 900px) {
  
.deep-dive-band {
  margin-top: .2rem;
  padding: 1.65rem;
  background: linear-gradient(135deg, #eaf2fc, #f7fbff);
  color: var(--ink);
  border: 1px solid rgba(31,79,138,.14);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.deep-dive-band .section-lead {
  color: var(--muted);
}
.deep-dive-band .section-head {
  margin-bottom: 1rem;
}
.deep-dive-band .deep-dive-card {
  background: rgba(255,255,255,.96);
}
.deep-dive-band .deep-dive-card h3 {
  color: var(--ink);
}

.deep-dive-grid { grid-template-columns: 1fr; }
  .split-head { align-items: stretch; flex-direction: column; }
}

@media (max-width: 760px) {
  .topbar-inner { align-items: center; flex-direction: row; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    border: 1px solid rgba(31,79,138,.16);
    background: #fff;
    cursor: pointer;
  }
  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--ink);
    border-radius: 99px;
    content: "";
  }
  .nav-toggle-lines { position: relative; }
  .nav-toggle-lines::before { position: absolute; top: -6px; }
  .nav-toggle-lines::after { position: absolute; top: 6px; }
  .nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .55rem);
    padding: .9rem;
    flex-direction: column;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(31,79,138,.14);
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(16,35,61,.14);
  }
  .nav.open { display: flex; }
  .nav a, .nav-dropbutton { padding: .7rem .8rem; text-align: left; }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: .25rem 0 0 .7rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { white-space: normal; }
  .article-card, .deep-page-card { padding: 1.35rem; }
}

@media (max-width: 480px) {
  .wrap { width: min(calc(100% - 1.2rem), var(--max)); }
  .hero-copy { padding: 1.25rem; }
  .cta-band, .deep-dive-band { padding: 1.15rem; }
}


.email-signup {
  width: min(100%, 520px);
  padding: .85rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(31,79,138,.16);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(16,35,61,.05);
}
.substack-custom-form {
  display: flex;
  gap: .55rem;
  align-items: stretch;
}
.substack-custom-form input[type="email"] {
  min-width: 0;
  flex: 1 1 auto;
  border: 1px solid rgba(31,79,138,.20);
  border-radius: 999px;
  padding: .92rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.substack-custom-form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(31,79,138,.10);
}
.substack-custom-form button {
  border: 0;
  border-radius: 999px;
  padding: .92rem 1.15rem;
  font: inherit;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.substack-custom-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(16,35,61,.12);
}
.email-signup-note,
.email-signup-status {
  margin: .55rem .2rem 0;
  color: var(--muted);
  font-size: .9rem;
}
.email-signup-status {
  font-weight: 700;
  color: var(--accent-strong);
}
.hidden-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.page-actions .email-signup {
  flex: 1 1 360px;
  max-width: 520px;
}
.split-head .email-signup {
  flex: 0 1 520px;
}
@media (max-width: 760px) {
  .page-actions .email-signup,
  .split-head .email-signup {
    flex-basis: auto;
    max-width: none;
  }
  .substack-custom-form {
    flex-direction: column;
  }
  .substack-custom-form button {
    width: 100%;
  }
}
