/* ==========================================================================
   The Father's House, All Nations Church — Port Moresby, Papua New Guinea
   Design: "The charter of a praying house" — an editorial, print-inspired
   system. Ink-violet night for the hero and interludes; warm paper for the
   record of the house, typeset as ten numbered articles.
   ========================================================================== */

:root {
  /* Night (ink) */
  --ink: #171028;
  --ink-2: #1f1636;
  --ink-line: rgba(196, 181, 253, 0.16);
  --night-text: #efe9f9;
  --night-soft: #b5aacb;
  --night-faint: #837796;

  /* Paper */
  --paper: #f7f2e7;
  --paper-2: #f1eadb;
  --paper-3: #fdfaf2;
  --paper-line: rgba(43, 30, 71, 0.14);
  --paper-line-soft: rgba(43, 30, 71, 0.08);

  /* Text on paper */
  --text: #2b1e47;
  --text-soft: #5c5174;
  --text-faint: #75698a;

  /* Brand */
  --violet: #6d28d9;
  --violet-bright: #8b5cf6;
  --violet-soft: #c4b5fd;
  --gold: #8a691c;        /* on paper */
  --gold-bright: #d9b45c; /* on ink */
  --gold-line: rgba(201, 162, 75, 0.5);

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --nav-h: 72px;
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  font-weight: 400;
  font-optical-sizing: auto;
  background: var(--paper);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: rgba(139, 92, 246, 0.28); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--violet); color: #fff; padding: 0.6rem 1rem;
  border-radius: 0 0 6px 0; font-family: var(--font-sans);
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 300;
  margin-bottom: 1.3rem;
  max-width: 24ch;
}
h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--violet);
}
.center h2 { margin-left: auto; margin-right: auto; }

h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 0.6rem; }

.lead {
  font-size: 1.14rem;
  color: var(--text-soft);
  max-width: 58ch;
  margin-bottom: 1.5rem;
}
.body-copy {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 60ch;
}

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.link {
  color: var(--violet);
  text-decoration: none;
  border-bottom: 1px solid rgba(109, 40, 217, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.link:hover { color: var(--violet-bright); border-color: var(--violet-bright); }

/* ---------- Layout ---------- */

.container { width: min(1140px, 92vw); margin: 0 auto; }
.container.narrow, .narrow { max-width: 720px; }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--tint {
  background: var(--paper-2);
  border-top: 1px solid var(--paper-line-soft);
  border-bottom: 1px solid var(--paper-line-soft);
}
.section__cta { margin-top: 2.6rem; }
.center .section__cta { display: flex; justify-content: center; }

/* ---------- Kicker (article heading) ---------- */

.kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
  font-family: var(--font-sans);
}
.kicker__no {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}
.kicker__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
}
.kicker__rule { flex: 1; height: 1px; background: var(--paper-line); }
.kicker--center { justify-content: center; }
.kicker--dark .kicker__no { border-color: var(--gold-bright); color: var(--gold-bright); }
.kicker--dark .kicker__label { color: var(--night-text); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn--primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.28);
}
.btn--primary:hover {
  background: var(--violet-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(109, 40, 217, 0.34);
}
.btn--gold {
  background: linear-gradient(120deg, #c9a24b, #e2c273);
  color: #241a38;
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.25);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 162, 75, 0.35);
}
.btn--ghost {
  color: var(--night-text);
  border-color: rgba(196, 181, 253, 0.4);
}
.btn--ghost:hover {
  border-color: var(--violet-soft);
  background: rgba(196, 181, 253, 0.08);
  transform: translateY(-2px);
}
.btn--ghost-ink {
  color: var(--text);
  border-color: rgba(43, 30, 71, 0.35);
}
.btn--ghost-ink:hover {
  border-color: var(--violet);
  color: var(--violet);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(247, 242, 231, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--paper-line-soft);
  box-shadow: 0 8px 30px rgba(23, 16, 40, 0.06);
}
.nav__inner {
  width: min(1240px, 94vw);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--night-text);
  transition: color 0.35s ease;
}
.nav.is-scrolled .nav__brand { color: var(--text); }
.nav__logo { width: 40px; height: auto; }
.nav__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.nav__name em {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 2px;
  transition: color 0.35s ease;
}
.nav.is-scrolled .nav__name em { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-sans);
}
.nav__links a {
  color: var(--night-soft);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--night-text); }
.nav.is-scrolled .nav__links a { color: var(--text-soft); }
.nav.is-scrolled .nav__links a:hover { color: var(--text); }
.nav__links a.nav__cta {
  color: #241a38;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #c9a24b, #e2c273);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav.is-scrolled .nav__links a.nav__cta { color: #241a38; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.3s ease;
}
.nav__toggle { color: var(--night-text); transition: color 0.35s ease, border-color 0.35s ease; }
.nav.is-scrolled .nav__toggle { color: var(--text); border-color: var(--paper-line); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--night-text);
  background:
    radial-gradient(90% 60% at 50% -5%, rgba(139, 92, 246, 0.22), transparent 62%),
    radial-gradient(60% 45% at 50% 0%, rgba(217, 180, 92, 0.14), transparent 60%),
    linear-gradient(180deg, #100b1e 0%, var(--ink) 55%, #1b1230 100%);
}
/* engraved light shafts */
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% 0;
  background: repeating-conic-gradient(
    from -14deg at 50% -12%,
    transparent 0deg 3.4deg,
    rgba(217, 180, 92, 0.05) 3.4deg 3.9deg,
    transparent 3.9deg 7deg,
    rgba(196, 181, 253, 0.045) 7deg 7.5deg
  );
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 55%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 55%, transparent 88%);
  pointer-events: none;
}
.hero__art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.hero__arch {
  width: min(760px, 84vw);
  height: auto;
  color: rgba(217, 180, 92, 0.35);
  margin-bottom: -4vh;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3.5rem) 1.2rem 2rem;
  width: min(880px, 94vw);
}
.hero__place {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 2rem;
}
.hero__title {
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: 2rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, var(--violet-soft) 10%, #e2c273 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__verse { margin: 0 auto 1.2rem; max-width: 620px; }
.hero__verse p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.55;
  color: var(--night-text);
}
.hero__verse strong { color: var(--gold-bright); font-weight: 500; }
.hero__verse cite {
  display: inline-block;
  margin-top: 0.9rem;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--night-faint);
  padding: 0.35rem 1rem;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.hero__stand {
  font-size: 1.02rem;
  color: var(--night-soft);
  margin-bottom: 2.4rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}
.hero__seal {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.1rem 1.2rem calc(1.1rem + env(safe-area-inset-bottom, 0px));
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--night-faint);
  border-top: 1px solid var(--ink-line);
}

/* ---------- Countdown ---------- */

.countdown { position: relative; z-index: 1; }
.countdown__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--night-faint);
  margin-bottom: 0.7rem;
}
.countdown__grid {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(0.5rem, 1.6vw, 1rem);
}
.countdown__cell {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.2ch;
}
.countdown__cell > span {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 300;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: var(--night-text);
}
.countdown__cell small {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 0.2rem;
}
.countdown__sep {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--night-faint);
  transform: translateY(-0.4rem);
}
.countdown__when {
  margin-top: 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--night-soft);
}

/* ---------- Split ---------- */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

/* ---------- The Record ---------- */

.record {
  position: relative;
  background: var(--ink);
  color: var(--night-text);
  padding: 2.4rem 2.2rem 2.2rem;
  border-radius: var(--radius);
  box-shadow: 0 34px 80px rgba(23, 16, 40, 0.35);
  overflow: hidden;
}
.record::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 190px; height: 190px;
  background: url("../img/logo.svg") center / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.record__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.4rem;
}
.record__rows { display: grid; }
.record__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--ink-line);
}
.record__row dt {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--night-faint);
  padding-top: 0.25rem;
}
.record__row dd { font-size: 0.98rem; line-height: 1.55; color: var(--night-soft); }

/* ---------- Pillars ---------- */

.pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.pillars li {
  border-top: 2px solid var(--text);
  padding-top: 1.2rem;
  display: grid;
  gap: 0.4rem;
  align-content: start;
}
.pillars__no {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.pillars strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--text);
}
.pillars li > span:last-child { color: var(--text-soft); font-size: 0.99rem; }

/* ---------- Creed ---------- */

.creed {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  margin-top: clamp(2.5rem, 5vw, 3.6rem);
}
.creed li {
  position: relative;
  background: var(--paper-3);
  border: 1px solid var(--paper-line-soft);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.8rem 4.6rem;
  box-shadow: 0 18px 44px rgba(23, 16, 40, 0.05);
}
.creed__no {
  position: absolute;
  left: 1.7rem;
  top: 1.9rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
}
.creed h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.creed p { color: var(--text-soft); font-size: 1rem; }
.creed p em { font-style: italic; color: var(--gold); }

/* ---------- Verse ---------- */

.verse {
  margin: 1.8rem 0;
  padding: 1.6rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(201, 162, 75, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.verse p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--text);
}
.verse cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.verse--center {
  margin: 2.8rem auto 0;
  max-width: 640px;
  text-align: center;
  border-left: none;
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
}

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.card {
  display: flex;
  flex-direction: column;
  padding: 2.1rem 1.9rem;
  border: 1px solid var(--paper-line-soft);
  border-radius: var(--radius);
  background: var(--paper-3);
  box-shadow: 0 18px 44px rgba(23, 16, 40, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-line);
  box-shadow: 0 28px 60px rgba(23, 16, 40, 0.1);
}
.card p { color: var(--text-soft); font-size: 0.99rem; }
.card__kicker {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.9rem;
}
.card__kicker--gold { color: var(--gold-bright); }
.card__icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  color: var(--violet);
}
.card__icon svg { width: 24px; height: 24px; }
.card__go {
  margin-top: auto;
  padding-top: 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
}
.card--link:hover .card__go { color: var(--violet-bright); }

/* ---------- Gather ---------- */

.gather {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.gather__main {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.6rem 2.4rem;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(139, 92, 246, 0.25), transparent 60%),
    var(--ink);
  color: var(--night-soft);
  box-shadow: 0 34px 80px rgba(23, 16, 40, 0.35);
}
.gather__main h3 { color: var(--night-text); font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 400; }
.gather__main .gather__time { color: var(--gold-bright); }
.gather__cell {
  padding: 1.9rem 1.8rem;
  border: 1px solid var(--paper-line-soft);
  border-radius: var(--radius);
  background: var(--paper-3);
  box-shadow: 0 18px 44px rgba(23, 16, 40, 0.05);
}
.gather__cell h3 { font-size: 1.18rem; }
.gather__cell p { color: var(--text-soft); font-size: 0.96rem; }
.gather__icon {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  margin-bottom: 1rem;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  color: var(--violet);
}
.gather__icon svg { width: 22px; height: 22px; }
.gather__time {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ---------- Accordion ---------- */

.accordion {
  border-top: 1px solid var(--paper-line);
  margin-top: 0.5rem;
}
.accordion__item { border-bottom: 1px solid var(--paper-line); }
.accordion__trigger {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  width: 100%;
  padding: 1.6rem 0.4rem;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.accordion__trigger:hover { background: rgba(43, 30, 71, 0.03); }
.accordion__trigger:focus-visible { outline: 2px solid var(--violet); outline-offset: -2px; }
.accordion__no {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  align-self: start;
  padding-top: 0.55rem;
}
.accordion__heading { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }
.accordion__heading strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.25;
}
.accordion__summary {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-faint);
  line-height: 1.5;
}
.accordion__chevron {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--paper-line);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.accordion__chevron::before,
.accordion__chevron::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--text);
  transition: transform 0.3s ease, background 0.3s ease;
}
.accordion__chevron::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.accordion__chevron::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.accordion__item.is-open .accordion__chevron { border-color: var(--gold); background: rgba(201, 162, 75, 0.1); }
.accordion__item.is-open .accordion__chevron::before,
.accordion__item.is-open .accordion__chevron::after { background: var(--gold); }
.accordion__item.is-open .accordion__chevron::after { transform: translate(-50%, -50%) scaleY(0); }

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel[hidden] { display: grid; }
.accordion__body {
  overflow: hidden;
  min-height: 0;
  padding: 0 0.4rem 0 3.2rem;
}
.accordion__item.is-open .accordion__body { padding-bottom: 1.8rem; }
.accordion__body p {
  color: var(--text-soft);
  font-size: 1.02rem;
  max-width: 66ch;
  margin-bottom: 1rem;
}
.accordion__body p:last-child { margin-bottom: 0; }
.accordion__body p strong { color: var(--text); font-weight: 500; }
.accordion__source { font-size: 0.85rem !important; color: var(--text-faint) !important; font-family: var(--font-sans); }
.accordion__source a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.accordion__source a:hover { color: var(--violet); }
.accordion__cta { margin-top: 1.2rem !important; }

/* ---------- Interlude (Begin Here) ---------- */

.interlude {
  position: relative;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background:
    radial-gradient(70% 90% at 50% 110%, rgba(139, 92, 246, 0.2), transparent 65%),
    radial-gradient(50% 40% at 50% 0%, rgba(217, 180, 92, 0.08), transparent 60%),
    var(--ink);
  color: var(--night-text);
  text-align: center;
}
.interlude .kicker { margin-bottom: 2rem; }
.interlude h2 { margin-left: auto; margin-right: auto; }
.interlude h2 em { color: var(--violet-soft); }
.interlude__prayer {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.6;
  color: #e9ddb9;
  max-width: 46ch;
  margin: 1.6rem auto 1.8rem;
}
.interlude__note {
  color: var(--night-soft);
  font-size: 1.05rem;
  max-width: 58ch;
  margin: 0 auto;
}
.interlude .section__cta { display: flex; justify-content: center; }

/* ---------- Contact / Connect ---------- */

.split--form { align-items: start; }
.contact-list {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
}
.contact-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-top: 1px solid var(--paper-line-soft);
  color: var(--text-soft);
  font-size: 0.98rem;
}
.contact-list li span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.contact-list a { color: var(--violet); text-decoration: none; }
.contact-list a:hover { color: var(--violet-bright); }

.connect-form {
  padding: 2.3rem;
  border: 1px solid var(--paper-line-soft);
  border-radius: var(--radius);
  background: var(--paper-3);
  box-shadow: 0 24px 60px rgba(23, 16, 40, 0.07);
  display: grid;
  gap: 1.2rem;
}
.connect-form label { display: grid; gap: 0.45rem; }
.connect-form label span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.connect-form input,
.connect-form textarea {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text);
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.connect-form input::placeholder,
.connect-form textarea::placeholder { color: var(--text-faint); }
.connect-form input:focus,
.connect-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.connect-form__hint {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-faint);
  text-align: center;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: var(--night-soft);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
}
.footer__seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding-bottom: 3.2rem;
  margin-bottom: 3.2rem;
  border-bottom: 1px solid var(--ink-line);
  text-align: center;
}
.seal {
  width: 150px;
  height: 150px;
  color: var(--gold-bright);
  animation: seal-turn 60s linear infinite;
}
.seal__text {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: currentColor;
}
@keyframes seal-turn {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.footer__motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--night-soft);
}
.footer__motto strong { color: var(--gold-bright); font-weight: 500; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--night-text);
}
.footer__tag {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--night-faint);
  margin-top: 0.8rem;
  max-width: 34ch;
}
.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 2rem;
  align-content: start;
  font-family: var(--font-sans);
}
.footer__links a {
  color: var(--night-soft);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--night-text); }
.footer__meta { font-size: 0.95rem; line-height: 1.8; }
.footer__social {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-top: 1.2rem;
  border-radius: 50%;
  border: 1px solid var(--ink-line);
  color: var(--night-soft);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__social:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.footer__copy {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--night-faint);
  padding-top: 2rem;
  border-top: 1px solid var(--ink-line);
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .seal { animation: none; }
  .accordion__panel { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 4vw 1.6rem;
    background: rgba(23, 16, 40, 0.98);
    border-bottom: 1px solid var(--ink-line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a,
  .nav.is-scrolled .nav__links a {
    color: var(--night-soft);
    padding: 0.95rem 0.4rem;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--ink-line);
    white-space: normal;
  }
  .nav__links a:hover,
  .nav.is-scrolled .nav__links a:hover { color: var(--night-text); }
  .nav__links a.nav__cta,
  .nav.is-scrolled .nav__links a.nav__cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none;
    color: #241a38;
  }
}

@media (max-width: 900px) {
  .split, .footer__inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .creed { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 1.6rem; }
  .gather { grid-template-columns: 1fr; }
  .gather__main { grid-row: auto; padding: 2.2rem 1.9rem; }
  .record { order: 2; }
}

@media (max-width: 600px) {
  .kicker { gap: 0.8rem; }
  .kicker__no { min-width: 38px; height: 38px; font-size: 0.95rem; }
  .kicker__label { letter-spacing: 0.22em; }
  .accordion__trigger { grid-template-columns: 1fr auto; gap: 0.9rem; padding: 1.3rem 0.2rem; }
  .accordion__no { display: none; }
  .accordion__heading strong { font-size: 1.15rem; }
  .accordion__body { padding-left: 0.2rem; }
  .record { padding: 1.9rem 1.5rem; }
  .record__row { grid-template-columns: 1fr; gap: 0.15rem; }
  .hero__actions .btn { width: 100%; }
  .countdown__grid { gap: 0.4rem; }
}
