    /* ─── Reset + tokens ─── */
    *,*::before,*::after { box-sizing: border-box; }
    :root {
      --ink: #191617;
      --ink-soft: #3a3536;
      --paper: #ffffff;
      --cream: #f8f5f4;
      --accent: #ea1e25;
      --accent-deep: #b81319;
      --accent-soft: #fde6e7;
      --line: rgba(25,22,23,.12);
      --shadow-soft: 0 14px 44px -22px rgba(25,22,23,.28);
      --shadow-card: 0 28px 70px -32px rgba(25,22,23,.35);
      --max: 1280px;
      --radius: 14px;
      --font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    }
    html, body { margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      color: var(--ink);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.6;
      font-size: 17px;
      overflow-x: hidden;
    }
    body.is-loading { overflow: hidden; }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

    /* ─── Loading splash ─── */
    .splash {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity .8s cubic-bezier(.65,0,.35,1), filter .8s cubic-bezier(.65,0,.35,1), transform .8s cubic-bezier(.65,0,.35,1);
    }
    .splash::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(ellipse 80% 60% at 50% 60%, rgba(234,30,37,.22), transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 30%, rgba(248,245,244,.05), transparent 70%);
      pointer-events: none;
    }
    .splash__inner {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      animation: splashFloat 1.4s cubic-bezier(.2,.8,.2,1) both;
    }
    .splash__logo {
      width: clamp(180px, 28vw, 280px);
      height: auto;
      opacity: 0;
      transform: translateY(8px) scale(.96);
      animation: splashLogo 1.6s cubic-bezier(.2,.8,.2,1) .15s both;
    }
    .splash__bar {
      width: 1px;
      height: 64px;
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,.55), transparent);
      transform-origin: top;
      animation: splashBar 1.8s ease-in-out .35s infinite;
    }
    @keyframes splashLogo {
      0% { opacity: 0; transform: translateY(10px) scale(.96); filter: blur(6px); }
      45% { opacity: 1; transform: none; filter: blur(0); }
      100% { opacity: 1; transform: none; filter: blur(0); }
    }
    @keyframes splashFloat {
      0% { transform: translateY(8px); }
      100% { transform: translateY(0); }
    }
    @keyframes splashBar {
      0%, 100% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); }
      50.01% { transform-origin: bottom; }
    }
    body.is-loaded .splash {
      opacity: 0;
      filter: blur(8px);
      transform: scale(1.06);
      pointer-events: none;
    }

    /* ─── Header ─── */
    .header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px clamp(20px, 4vw, 56px);
      transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
    }
    .header__brand img { height: 28px; width: auto; display: block; }
    .header__brand .logo-dark { display: none; }
    .header__nav {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .header__link {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.92);
      transition: color .2s ease, opacity .2s ease;
      position: relative;
    }
    .header__link::after {
      content: "";
      position: absolute;
      left: 0; right: 100%;
      bottom: -6px;
      height: 1px;
      background: currentColor;
      transition: right .25s ease;
    }
    .header__link:hover::after { right: 0; }
    .header__cta {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      padding: 11px 20px;
      border: 1px solid rgba(255,255,255,.5);
      border-radius: 999px;
      color: #fff;
      transition: background .2s ease, color .2s ease, border-color .2s ease;
    }
    .header__cta:hover { background: #fff; color: var(--ink); border-color: #fff; }

    .header.is-scrolled {
      background: rgba(255,255,255,.96);
      backdrop-filter: saturate(140%) blur(10px);
      -webkit-backdrop-filter: saturate(140%) blur(10px);
      padding-top: 14px;
      padding-bottom: 14px;
      box-shadow: 0 1px 0 var(--line);
    }
    .header.is-scrolled .header__brand .logo-light { display: none; }
    .header.is-scrolled .header__brand .logo-dark { display: block; }
    .header.is-scrolled .header__link { color: var(--ink); }
    .header.is-scrolled .header__cta {
      color: var(--ink);
      border-color: var(--ink);
    }
    .header.is-scrolled .header__cta:hover { background: var(--ink); color: #fff; }

    .header__menu-btn {
      display: none;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .header__menu-btn span {
      position: absolute;
      left: 8px;
      right: 8px;
      height: 1.5px;
      background: #fff;
      transition: transform .3s ease, opacity .2s ease, background .3s ease;
    }
    .header__menu-btn span:nth-child(1) { top: 14px; }
    .header__menu-btn span:nth-child(2) { top: 19px; }
    .header__menu-btn span:nth-child(3) { top: 24px; }
    .header.is-scrolled .header__menu-btn span { background: var(--ink); }
    body.menu-open .header__menu-btn span { background: #fff !important; }
    body.menu-open .header__menu-btn span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    body.menu-open .header__menu-btn span:nth-child(2) { opacity: 0; }
    body.menu-open .header__menu-btn span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

    /* Mobile drawer */
    .drawer {
      position: fixed;
      inset: 0;
      z-index: 40;
      background: var(--ink);
      display: flex;
      flex-direction: column;
      padding: 100px clamp(28px, 8vw, 72px) 60px;
      transform: translateY(-100%);
      transition: transform .55s cubic-bezier(.65,0,.35,1), visibility 0s linear .55s;
      overflow-y: auto;
      visibility: hidden;
      pointer-events: none;
    }
    body.menu-open .drawer { transform: none; visibility: visible; pointer-events: auto; transition: transform .55s cubic-bezier(.65,0,.35,1), visibility 0s linear 0s; }
    .drawer__link {
      display: block;
      font-size: clamp(28px, 7vw, 44px);
      font-weight: 700;
      color: #fff;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      letter-spacing: -.01em;
    }
    .drawer__cta {
      margin-top: 32px;
      align-self: flex-start;
      padding: 16px 30px;
      border: 1px solid rgba(255,255,255,.5);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #fff;
    }
    .drawer__contact {
      margin-top: auto;
      padding-top: 40px;
      color: rgba(255,255,255,.65);
      font-size: 14px;
    }

    /* ─── Hero ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      background: url('/assets/hero.jpg') center 40%/cover no-repeat #1c1614;
      transform: scale(1.04);
      animation: heroPan 22s ease-out both;
      z-index: -2;
    }
    @keyframes heroPan {
      from { transform: scale(1.12); }
      to { transform: scale(1.0); }
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.1) 35%, rgba(0,0,0,.0) 55%, rgba(0,0,0,.45) 100%);
      z-index: -1;
    }
    .hero__inner {
      max-width: 1240px;
      width: 100%;
      padding: 140px clamp(20px, 4vw, 48px) 120px;
      text-align: center;
      position: relative;
    }
    .hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: rgba(255,255,255,.85);
      padding: 8px 16px;
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 999px;
      backdrop-filter: blur(4px);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 1s ease .8s forwards;
    }
    .hero__eyebrow::before {
      content: "";
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #ffd9a8;
      box-shadow: 0 0 12px #ffd9a8;
    }
    .hero__title {
      margin: 0;
      font-weight: 800;
      font-size: clamp(40px, 6.4vw, 76px);
      line-height: 1.02;
      letter-spacing: -.02em;
      text-shadow: 0 6px 40px rgba(0,0,0,.35);
      opacity: 0;
      animation: fadeUp 1.2s cubic-bezier(.2,.8,.2,1) 1s forwards;
    }
    .hero__title em {
      display: block;
      font-style: italic;
      font-weight: 600;
      font-size: clamp(34px, 5.4vw, 64px);
      letter-spacing: -.005em;
      margin-top: 6px;
      color: #ffffff;
    }
    .hero__sub {
      margin: 32px auto 0;
      max-width: 540px;
      font-size: clamp(15px, 1.4vw, 17px);
      color: rgba(255,255,255,.85);
      opacity: 0;
      animation: fadeUp 1.2s ease 1.25s forwards;
    }
    .hero__ctas {
      margin-top: 36px;
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1.2s ease 1.45s forwards;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }
    .btn--primary {
      background: #fff;
      color: var(--ink);
    }
    .btn--primary:hover { background: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px -22px rgba(234,30,37,.55); }
    .btn--ghost {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,.55);
    }
    .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
    .btn--ink { background: var(--ink); color: #fff; }
    .btn--ink:hover { background: #000; transform: translateY(-2px); }
    .btn--outline-ink {
      background: transparent;
      color: var(--ink);
      border: 1px solid var(--ink);
    }
    .btn--outline-ink:hover { background: var(--ink); color: #fff; }

    .hero__scroll-bar {
      position: absolute;
      left: 50%;
      bottom: 28px;
      width: 1px;
      height: 44px;
      background: rgba(255,255,255,.6);
      transform: translateX(-50%) scaleY(0);
      transform-origin: top;
      opacity: 0;
      animation: scrollHint 2s ease-in-out 1.7s infinite, fadeUp 1.2s ease 1.7s forwards;
    }
    @keyframes scrollHint {
      0%, 100% { transform: translateX(-50%) scaleY(0); transform-origin: top; }
      50% { transform: translateX(-50%) scaleY(1); }
      50.01% { transform-origin: bottom; transform: translateX(-50%) scaleY(1); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: none; }
    }

    .hero__socials {
      margin-top: 28px;
      display: flex;
      gap: 14px;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 1.2s ease 1.6s forwards;
    }
    .hero__socials a {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.45);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background .2s ease, border-color .2s ease;
    }
    .hero__socials a:hover { background: rgba(255,255,255,.15); border-color: #fff; }
    .hero__socials svg { width: 16px; height: 16px; fill: #fff; }

    /* ─── Section base ─── */
    .section {
      padding: clamp(80px, 11vw, 140px) clamp(20px, 5vw, 56px);
    }
    .section--cream { background: var(--cream); }
    .section--blush { background: var(--accent); color: #fff; }
    .container { max-width: var(--max); margin: 0 auto; }
    .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--ink-soft);
      padding-bottom: 14px;
      position: relative;
    }
    .eyebrow::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 36px;
      height: 1px;
      background: var(--ink);
    }
    h2.h-display {
      font-size: clamp(36px, 5.6vw, 72px);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -.02em;
      margin: 16px 0 0;
    }
    h2.h-display em {
      font-style: italic;
      font-weight: 600;
      color: var(--accent);
    }

    /* ─── Welcome strip ─── */
    .welcome {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: start;
    }
    .welcome__heading {
      font-size: clamp(28px, 3.4vw, 44px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -.015em;
      margin: 14px 0 24px;
    }
    .welcome__heading span { color: var(--accent); }
    .welcome__copy { color: var(--ink-soft); font-size: 17px; }
    .welcome__copy p + p { margin-top: 14px; }
    .welcome__list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .welcome__list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 22px;
      background: var(--cream);
      border-radius: var(--radius);
      border: 1px solid var(--line);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .welcome__list li:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
    .welcome__list .dot {
      flex-shrink: 0;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent);
      margin-top: 9px;
    }
    .welcome__list strong { display: block; font-weight: 700; }
    .welcome__list span.subtle { color: var(--ink-soft); font-size: 15px; }

    /* ─── Map / Visit section ─── */
    .visit {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      background: #fff;
      border: 1px solid var(--line);
    }
    .visit__map {
      min-height: 460px;
      position: relative;
      background: #eee;
    }
    .visit__map iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      filter: saturate(.85) contrast(1.02);
    }
    .visit__info {
      padding: clamp(36px, 5vw, 64px);
      display: flex;
      flex-direction: column;
      gap: 22px;
    }
    .visit__info h3 {
      margin: 8px 0 0;
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 800;
      letter-spacing: -.015em;
      line-height: 1.05;
    }
    .visit__street { white-space: nowrap; }
    .visit__addr {
      font-size: 17px;
      color: var(--ink-soft);
    }
    .visit__addr strong { color: var(--ink); display: block; font-weight: 700; }
    .visit__row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 0;
      border-top: 1px solid var(--line);
      font-size: 15px;
      color: var(--ink-soft);
    }
    .visit__row svg { width: 18px; height: 18px; flex-shrink: 0; }
    .visit__row a { color: var(--ink); font-weight: 600; }
    .visit__row a:hover { color: var(--accent); }
    .visit__ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 12px;
    }
    .visit__ctas .btn { padding: 14px 22px; font-size: 12px; }

    /* ─── Community / accordion ─── */
    .community {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: center;
    }
    .community__media {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      aspect-ratio: 4/5;
    }
    .community__media img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .community__media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(25,22,23,.25) 100%);
    }
    .community__heading {
      font-size: clamp(48px, 7vw, 88px);
      font-weight: 800;
      line-height: .96;
      letter-spacing: -.02em;
      margin: 18px 0 28px;
    }
    .community__heading em { font-style: italic; font-weight: 600; color: var(--accent); display: block; }
    .community__intro {
      color: var(--ink-soft);
      max-width: 520px;
      font-size: 17px;
      margin-bottom: 32px;
    }
    .accordion__item {
      border-top: 1px solid var(--line);
      padding: 4px 0;
    }
    .accordion__item:last-child { border-bottom: 1px solid var(--line); }
    .accordion__head {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 0;
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 700;
      text-align: left;
      letter-spacing: -.01em;
      transition: color .2s ease;
    }
    .accordion__head:hover { color: var(--accent); }
    .accordion__plus {
      flex-shrink: 0;
      width: 36px; height: 36px;
      position: relative;
      border-radius: 50%;
      border: 1px solid var(--line);
      transition: background .2s ease, transform .35s cubic-bezier(.65,0,.35,1);
    }
    .accordion__plus::before, .accordion__plus::after {
      content: "";
      position: absolute;
      left: 50%; top: 50%;
      width: 14px;
      height: 1.5px;
      background: var(--ink);
      transform: translate(-50%, -50%);
      transition: transform .35s cubic-bezier(.65,0,.35,1), opacity .25s ease;
    }
    .accordion__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
    .accordion__item.is-open .accordion__plus { background: var(--ink); transform: rotate(180deg); }
    .accordion__item.is-open .accordion__plus::before, .accordion__item.is-open .accordion__plus::after {
      background: #fff;
    }
    .accordion__item.is-open .accordion__plus::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
    .accordion__body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .45s cubic-bezier(.65,0,.35,1);
    }
    .accordion__body-inner {
      padding: 0 0 26px;
      color: var(--ink-soft);
      font-size: 16px;
      max-width: 560px;
    }

    /* ─── Quote ─── */
    .quote {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .quote__mark {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 96px;
      line-height: .8;
      color: var(--accent);
      margin-bottom: -16px;
      display: block;
    }
    .quote__text {
      font-size: clamp(28px, 4vw, 50px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -.015em;
      font-style: italic;
    }
    .quote__by {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }
    .quote__by::before {
      content: "";
      display: inline-block;
      width: 28px; height: 1px;
      background: var(--ink);
    }

    /* ─── Pastors ─── */
    .pastors {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: center;
    }
    .pastors__photo {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      aspect-ratio: 4/5;
    }
    .pastors__photo img { width: 100%; height: 100%; object-fit: cover; }
    .pastors__name {
      font-size: clamp(34px, 4.8vw, 60px);
      font-weight: 800;
      letter-spacing: -.02em;
      margin: 14px 0 18px;
      line-height: 1;
    }
    .pastors__role {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      display: inline-block;
    }
    .pastors__copy {
      color: var(--ink-soft);
      font-size: 17px;
      max-width: 520px;
    }
    .pastors__copy p + p { margin-top: 14px; }

    /* ─── Giving ─── */
    .giving {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: stretch;
    }
    .giving__copy h2 { margin-top: 16px; }
    .giving__copy p {
      color: var(--ink-soft);
      max-width: 480px;
      margin-top: 22px;
      font-size: 17px;
    }
    .giving__verse {
      margin-top: 28px;
      padding: 22px 26px;
      border-left: 3px solid var(--accent);
      background: var(--cream);
      font-style: italic;
      color: var(--ink-soft);
      border-radius: 0 8px 8px 0;
    }
    .giving__card {
      background: var(--ink);
      color: #fff;
      padding: clamp(36px, 5vw, 52px);
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      gap: 24px;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .giving__card::before {
      content: "";
      position: absolute;
      top: -40%;
      right: -20%;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(234,30,37,.4), transparent 60%);
      pointer-events: none;
    }
    .giving__card-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--accent-soft);
      position: relative;
    }
    .giving__card h3 {
      margin: 0;
      font-size: clamp(22px, 2.3vw, 28px);
      font-weight: 700;
      letter-spacing: -.01em;
      position: relative;
    }
    .giving__bank {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px 22px;
      padding: 24px 0;
      border-top: 1px solid rgba(255,255,255,.12);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .giving__bank dt {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(253,230,231,.78);
      align-self: center;
    }
    .giving__bank dd {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      font-variant-numeric: tabular-nums;
      letter-spacing: .01em;
    }
    .giving__bank dd .acc {
      font-family: "SF Mono", "JetBrains Mono", ui-monospace, Menlo, monospace;
      font-size: 17px;
      letter-spacing: .03em;
    }
    .giving__buttons {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .btn--giving {
      background: #fff;
      color: var(--ink);
      justify-content: center;
    }
    .btn--giving:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
    .btn--giving-ghost {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,.4);
      justify-content: center;
    }
    .btn--giving-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

    /* ─── Vision band ─── */
    .vision {
      text-align: center;
      max-width: 1100px;
      margin: 0 auto;
    }
    .vision__text {
      font-size: clamp(32px, 5vw, 64px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -.018em;
      margin: 0;
      color: #fff;
    }
    .vision__text em {
      font-style: italic;
      font-weight: 600;
      color: rgba(255,255,255,.78);
    }
    .vision__sig {
      margin-top: 36px;
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: rgba(255,255,255,.78);
      padding: 10px 18px;
      border: 1px solid rgba(255,255,255,.4);
      border-radius: 999px;
    }

    /* ─── Footer ─── */
    .footer {
      background: var(--ink);
      color: rgba(255,255,255,.75);
      padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 56px) 40px;
    }
    .footer__top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
      gap: 40px;
      max-width: var(--max);
      margin: 0 auto;
    }
    .footer__brand img { height: 32px; width: auto; max-width: 180px; margin-bottom: 22px; display: block; }
    .footer__about {
      font-size: 15px;
      max-width: 320px;
      color: rgba(255,255,255,.6);
    }
    .footer__socials {
      margin-top: 24px;
      display: flex;
      gap: 10px;
    }
    .footer__socials a {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.18);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background .2s ease, border-color .2s ease;
    }
    .footer__socials a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
    .footer__socials svg { width: 14px; height: 14px; fill: #fff; }
    .footer__col h4 {
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      margin: 0 0 18px;
    }
    .footer__col ul {
      list-style: none;
      margin: 0; padding: 0;
      display: flex; flex-direction: column;
      gap: 10px;
    }
    .footer__col a {
      font-size: 14px;
      transition: color .2s ease;
    }
    .footer__col a:hover { color: #fff; }
    .footer__bottom {
      max-width: var(--max);
      margin: 70px auto 0;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: rgba(255,255,255,.5);
    }
    .footer__bottom a { color: rgba(255,255,255,.7); }
    .footer__bottom a:hover { color: #fff; }

    /* ─── Mobile ─── */
    @media (max-width: 900px) {
      .header { padding: 16px 20px; }
      .header__nav { display: none; }
      .header__menu-btn { display: inline-flex; }

      .hero__inner { padding-top: 120px; padding-bottom: 130px; }
      .hero__scroll-bar { bottom: 20px; height: 32px; }

      .welcome { grid-template-columns: 1fr; gap: 40px; }
      .visit { grid-template-columns: 1fr; }
      .visit__map { min-height: 320px; }
      .community { grid-template-columns: 1fr; gap: 36px; }
      .community__media { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
      .pastors { grid-template-columns: 1fr; gap: 36px; }
      .pastors__photo { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
      .giving { grid-template-columns: 1fr; gap: 36px; }
      .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer__brand { grid-column: 1 / -1; }
    }

    @media (max-width: 540px) {
      body { font-size: 16px; }
      .footer__top { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
      .footer__brand { grid-column: 1 / -1; }
      .visit__info { padding: 32px 26px; }
      .visit__info h3 { font-size: clamp(22px, 6vw, 26px); }
      .visit__street { white-space: normal; }
      .giving__card { padding: 32px 26px; }
      .giving__bank { grid-template-columns: 1fr; gap: 4px 0; }
      .giving__bank dt { padding-top: 10px; }
      .giving__bank dt:first-of-type { padding-top: 0; }
      .hero__title { font-size: clamp(40px, 11vw, 64px); }
      .visit__ctas .btn { width: 100%; justify-content: center; }
    }

    /* prefers-reduced-motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
      }
      .hero__bg { animation: none !important; transform: none !important; }
    }

    /* ─── Sub-page styles ─── */
    .page-hero {
      position: relative;
      padding: clamp(140px, 16vw, 200px) clamp(20px, 5vw, 56px) clamp(60px, 8vw, 100px);
      background: var(--ink);
      color: #fff;
      overflow: hidden;
      isolation: isolate;
    }
    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 18% 28%, rgba(234,30,37,.22), transparent 60%),
        radial-gradient(ellipse 80% 60% at 82% 78%, rgba(234,30,37,.14), transparent 60%);
      z-index: -1;
      pointer-events: none;
    }
    .page-hero__inner {
      max-width: var(--max);
      margin: 0 auto;
    }
    .page-hero__crumbs {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      margin-bottom: 22px;
    }
    .page-hero__crumbs a { color: rgba(255,255,255,.85); }
    .page-hero__crumbs a:hover { color: #fff; }
    .page-hero__crumbs .sep { margin: 0 10px; opacity: .4; }
    .page-hero__title {
      margin: 0;
      font-weight: 800;
      font-size: clamp(40px, 6vw, 80px);
      line-height: 1.02;
      letter-spacing: -.02em;
    }
    .page-hero__title em { font-style: italic; font-weight: 600; color: var(--accent-soft); }
    .page-hero__sub {
      max-width: 640px;
      margin: 24px 0 0;
      font-size: clamp(16px, 1.4vw, 19px);
      color: rgba(255,255,255,.78);
      line-height: 1.55;
    }

    /* Service times card (Sunday Services page) */
    .times-card {
      background: var(--cream);
      border-radius: var(--radius);
      padding: clamp(36px, 5vw, 60px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(28px, 4vw, 56px);
      align-items: center;
      box-shadow: var(--shadow-soft);
    }
    .times-card__block { display: flex; flex-direction: column; gap: 8px; }
    .times-card__block strong {
      font-size: clamp(38px, 4.6vw, 56px);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -.02em;
    }
    .times-card__block strong em { font-style: italic; font-weight: 600; color: var(--accent); }
    .times-card__block span {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }
    .times-card__detail { color: var(--ink-soft); font-size: 16px; }

    /* Card grid (What to expect / Group types / Event types) */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-soft);
      border-color: rgba(234,30,37,.25);
    }
    .card__num {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .3em;
      color: var(--accent);
      text-transform: uppercase;
    }
    .card__title {
      font-size: clamp(20px, 2vw, 24px);
      font-weight: 700;
      letter-spacing: -.01em;
      margin: 0;
    }
    .card__copy { color: var(--ink-soft); font-size: 16px; line-height: 1.55; margin: 0; }

    /* Highlighted CTA banner (sub-page footer CTAs) */
    .cta-banner {
      background: var(--ink);
      color: #fff;
      border-radius: var(--radius);
      padding: clamp(40px, 5vw, 64px);
      display: grid;
      grid-template-columns: 1.4fr auto;
      gap: 36px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 70% at 90% 50%, rgba(234,30,37,.25), transparent 60%);
      pointer-events: none;
    }
    .cta-banner h3 {
      margin: 0 0 10px;
      font-size: clamp(24px, 2.4vw, 32px);
      font-weight: 800;
      letter-spacing: -.015em;
      position: relative;
    }
    .cta-banner p { margin: 0; color: rgba(255,255,255,.75); font-size: 16px; max-width: 560px; position: relative; }
    .cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
    .btn--accent { background: var(--accent); color: #fff; }
    .btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); }
    .btn--white-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
    .btn--white-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

    /* Featured event (Breakthrough Conference) */
    .featured-event {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(36px, 5vw, 80px);
      align-items: center;
      padding: clamp(40px, 5vw, 64px);
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
      color: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .featured-event::before {
      content: "";
      position: absolute;
      top: -30%;
      right: -10%;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(255,255,255,.15), transparent 60%);
      pointer-events: none;
    }
    .featured-event__tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: rgba(255,255,255,.85);
      padding: 6px 14px;
      border: 1px solid rgba(255,255,255,.4);
      border-radius: 999px;
      margin-bottom: 18px;
      position: relative;
    }
    .featured-event h3 {
      margin: 0;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 800;
      letter-spacing: -.02em;
      line-height: 1.05;
      position: relative;
    }
    .featured-event__meta {
      margin: 24px 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 15px;
      color: rgba(255,255,255,.85);
      position: relative;
    }
    .featured-event__meta strong { color: #fff; font-weight: 700; }
    .featured-event__copy {
      color: rgba(255,255,255,.85);
      max-width: 480px;
      font-size: 16px;
      line-height: 1.55;
      margin-bottom: 24px;
      position: relative;
    }
    .featured-event__cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 26px;
      background: #fff;
      color: var(--ink);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      transition: transform .2s ease;
      position: relative;
    }
    .featured-event__cta:hover { transform: translateY(-2px); }
    .featured-event__visual {
      position: relative;
      aspect-ratio: 4/3;
      border-radius: 10px;
      overflow: hidden;
      background: rgba(0,0,0,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px;
    }
    .featured-event__visual-text {
      font-size: clamp(48px, 6vw, 88px);
      font-weight: 800;
      letter-spacing: -.03em;
      line-height: .9;
      color: rgba(255,255,255,.92);
      text-align: center;
      font-style: italic;
    }

    /* About page — Pastors hero portrait */
    .about-portrait {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: center;
    }
    .about-portrait__photo {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }
    .about-portrait__photo img { width: 100%; height: 100%; object-fit: cover; }
    .about-portrait__copy { color: var(--ink-soft); font-size: 17px; line-height: 1.65; max-width: 560px; }
    .about-portrait__copy h2 {
      color: var(--ink);
      margin: 8px 0 18px;
      font-size: clamp(34px, 4.6vw, 56px);
      font-weight: 800;
      letter-spacing: -.02em;
      line-height: 1;
    }
    .about-portrait__copy p + p { margin-top: 14px; }

    /* Sub-page mobile rules */
    @media (max-width: 900px) {
      .times-card { grid-template-columns: 1fr; gap: 24px; }
      .cta-banner { grid-template-columns: 1fr; gap: 24px; }
      .featured-event { grid-template-columns: 1fr; }
      .featured-event__visual { aspect-ratio: 16/9; }
      .about-portrait { grid-template-columns: 1fr; gap: 32px; }
      .about-portrait__photo { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
    }

    /* Page-hero with photo background variant */
    .page-hero--photo {
      background: var(--ink);
    }
    .page-hero--photo::before {
      background:
        linear-gradient(180deg, rgba(25,22,23,.55) 0%, rgba(25,22,23,.62) 50%, rgba(25,22,23,.78) 100%),
        var(--page-hero-image, none) center/cover no-repeat;
      opacity: 1;
    }

    /* Featured photo strip (between sections) */
    .feature-photo {
      position: relative;
      max-width: 1480px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 56px);
    }
    .feature-photo__frame {
      position: relative;
      aspect-ratio: 21/9;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }
    .feature-photo__frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .feature-photo__caption {
      position: absolute;
      left: clamp(28px, 4vw, 56px);
      bottom: clamp(28px, 4vw, 48px);
      max-width: 480px;
      color: #fff;
      z-index: 2;
    }
    .feature-photo__frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(25,22,23,.6) 100%);
      pointer-events: none;
    }
    .feature-photo__caption span {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--accent-soft);
      margin-bottom: 8px;
    }
    .feature-photo__caption strong {
      display: block;
      font-size: clamp(20px, 2.4vw, 30px);
      font-weight: 700;
      letter-spacing: -.01em;
      line-height: 1.15;
    }
    @media (max-width: 720px) {
      .feature-photo__frame { aspect-ratio: 4/5; }
    }

    /* Card with photo */
    .card--photo {
      padding: 0;
      overflow: hidden;
    }
    .card--photo img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }
    .card--photo__body {
      padding: 28px 28px 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    /* Two-column intro split (used on Connect Groups + About pages) */
    .split-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: center;
    }
    @media (max-width: 900px) {
      .split-2col { grid-template-columns: 1fr; gap: 32px; }
      .split-2col .community__media,
      .split-2col > div:has(img) { max-width: 480px; margin: 0 auto; aspect-ratio: 4/5; }
    }

    /* ─── Connect form (homepage #connect) ─── */
    .connect__grid {
      display: grid;
      grid-template-columns: 0.85fr 1fr;
      gap: clamp(40px, 6vw, 88px);
      align-items: start;
      max-width: 1080px;
      margin: 48px auto 0;
    }
    .connect__intro p {
      margin: 20px 0 0;
      color: var(--ink-soft);
      font-size: 17px;
    }
    .connect__intro .connect__email {
      display: inline-block;
      margin-top: 24px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: .01em;
    }
    .connect__form {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-card);
      padding: clamp(28px, 4vw, 44px);
    }
    .field { margin-bottom: 22px; }
    .field:last-of-type { margin-bottom: 26px; }
    .field label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 10px;
    }
    .field label .opt { font-weight: 600; letter-spacing: .04em; text-transform: none; color: rgba(58,53,54,.6); }
    .field input,
    .field textarea {
      width: 100%;
      font: inherit;
      font-size: 16px;
      color: var(--ink);
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 14px 16px;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .field input::placeholder,
    .field textarea::placeholder { color: rgba(58,53,54,.5); }
    .field input:focus,
    .field textarea:focus {
      outline: none;
      background: #fff;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-soft);
    }
    .field textarea { min-height: 132px; resize: vertical; }
    .connect__form .btn { width: 100%; justify-content: center; border: 0; }
    .connect__success {
      text-align: center;
      padding: 12px 0;
    }
    .connect__success h3 {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -.01em;
      margin: 0 0 10px;
    }
    .connect__success p { margin: 0; color: var(--ink-soft); }
    @media (max-width: 820px) {
      .connect__grid { grid-template-columns: 1fr; gap: 36px; }
    }
