@font-face {
  font-family: "Libre Baskerville";
  src: url("/assets/fonts/libre-baskerville-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("/assets/fonts/libre-baskerville-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Libre Franklin";
  src: url("/assets/fonts/libre-franklin-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: oklch(0.982 0.025 91);
  --paper-deep: oklch(0.953 0.045 87);
  --paper-warm: oklch(0.923 0.074 80);
  --surface: oklch(0.995 0.011 93 / 0.88);
  --surface-solid: oklch(0.995 0.011 93);
  --ink: oklch(0.225 0.035 57);
  --ink-soft: oklch(0.405 0.026 63);
  --navy: oklch(0.265 0.09 254);
  --navy-deep: oklch(0.2 0.075 250);
  --gold: oklch(0.68 0.14 77);
  --gold-dark: oklch(0.49 0.11 70);
  --olive: oklch(0.47 0.075 126);
  --line: oklch(0.78 0.075 81 / 0.65);
  --shadow: 0 24px 80px oklch(0.28 0.04 63 / 0.14);
  --shadow-soft: 0 12px 34px oklch(0.28 0.04 63 / 0.1);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-sans: "Libre Franklin", system-ui, -apple-system, sans-serif;
  --content: 74rem;
  --reading: 48rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 20rem;
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, oklch(0.97 0.065 83 / 0.68), transparent 32rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.075rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--navy);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--gold-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.13;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.15rem, 4.7vw, 4.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: white;
  font-weight: 750;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.reading-shell {
  width: min(calc(100% - 2rem), var(--reading));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5.5rem, 11vw, 9rem);
}

.section-tight {
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.75rem;
  height: 1px;
  background: var(--gold);
  content: "";
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow.centered::after {
  width: 2.75rem;
  height: 1px;
  background: var(--gold);
  content: "";
}

.lede {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  line-height: 1.6;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 1.25rem;
}

.section-heading.centered .lede {
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid oklch(0.73 0.07 80 / 0.35);
  background: oklch(0.982 0.025 91 / 0.87);
  backdrop-filter: blur(18px) saturate(1.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.1rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

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

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.7rem;
  box-shadow: 0 4px 14px oklch(0.4 0.1 70 / 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
}

.nav-cta {
  min-height: 2.75rem;
  padding: 0.62rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-solid);
}

.menu-button {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-solid);
  color: var(--ink);
  cursor: pointer;
}

.menu-button svg {
  width: 1.5rem;
}

.hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(6rem, 12vw, 10rem);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
  filter: blur(2px);
  pointer-events: none;
}

.hero::before {
  top: 8%;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  background: oklch(0.86 0.08 81 / 0.38);
}

.hero::after {
  bottom: 7%;
  left: -14rem;
  width: 32rem;
  height: 24rem;
  background: oklch(0.79 0.06 135 / 0.16);
  transform: rotate(-12deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(21rem, 0.75fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(2rem, 6vw, 6rem);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.6rem;
}

.hero h1 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.15rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  gap: 0.7rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  box-shadow: 0 10px 25px oklch(0.25 0.1 254 / 0.22);
  color: white;
}

.button-primary:hover {
  background: var(--navy-deep);
  color: white;
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface-solid);
  color: var(--ink);
}

.button-secondary:hover {
  box-shadow: var(--shadow-soft);
  color: var(--navy);
}

.button svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid oklch(0.78 0.075 81 / 0.5);
  border-radius: 999px;
  background: oklch(1 0 0 / 0.42);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 720;
}

.hero-trust svg {
  width: 1rem;
  color: var(--olive);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.phone-halo {
  position: absolute;
  inset: 8% -12% 8%;
  z-index: -1;
  border: 1px solid oklch(0.65 0.13 77 / 0.22);
  border-radius: 50% 48% 47% 52%;
  background:
    radial-gradient(circle at 50% 48%, oklch(0.98 0.045 87 / 0.76), transparent 57%),
    repeating-radial-gradient(circle at 60% 40%, transparent 0 22px, oklch(0.7 0.1 75 / 0.08) 23px 24px);
  transform: rotate(6deg);
}

.phone {
  width: min(100%, 21.5rem);
  padding: 0.55rem;
  border: 1px solid oklch(0.59 0.07 70 / 0.45);
  border-radius: 3.35rem;
  background: oklch(0.24 0.02 60);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.phone img {
  width: 100%;
  border-radius: 2.85rem;
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  max-width: 13.5rem;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: oklch(0.995 0.012 92 / 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.floating-note svg {
  width: 1.35rem;
  flex: 0 0 auto;
  color: var(--gold-dark);
}

.floating-note.top {
  top: 14%;
  right: -16%;
}

.floating-note.bottom {
  bottom: 12%;
  left: -24%;
}

.purpose-strip {
  position: relative;
  z-index: 3;
  margin-top: -3rem;
}

.purpose-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.35rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
}

.purpose-mark {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-deep);
  color: var(--gold-dark);
}

.purpose-mark svg {
  width: 1.7rem;
}

.purpose-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.purpose-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.purpose-card > svg {
  width: 1.75rem;
  color: var(--gold);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.7) inset;
  counter-increment: step;
}

.step-card::after {
  position: absolute;
  right: -0.2rem;
  bottom: -1.8rem;
  color: oklch(0.66 0.1 76 / 0.13);
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
}

.step-icon {
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 4rem;
  place-items: center;
  border-radius: 1.25rem;
  background: var(--paper-deep);
  color: var(--navy);
}

.step-icon svg {
  width: 2rem;
}

.step-card h3 {
  max-width: 12ch;
  margin-bottom: 0.85rem;
}

.step-card p {
  position: relative;
  z-index: 1;
  color: var(--ink-soft);
}

.faith-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 20%, oklch(0.47 0.1 126 / 0.32), transparent 36rem),
    radial-gradient(circle at 100% 90%, oklch(0.46 0.14 75 / 0.22), transparent 32rem),
    var(--navy-deep);
  color: oklch(0.97 0.025 88);
}

.faith-section .eyebrow {
  color: oklch(0.82 0.12 82);
}

.faith-section .lede {
  color: oklch(0.88 0.025 92);
}

.faith-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.faith-copy h2 {
  margin-bottom: 1.4rem;
}

.faith-copy blockquote {
  margin: 2.1rem 0 0;
  padding-left: 1.3rem;
  border-left: 2px solid var(--gold);
  color: oklch(0.91 0.04 90);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.faith-art-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  transform: rotate(1deg);
}

.faith-art {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid oklch(0.93 0.07 85 / 0.2);
  border-radius: var(--radius-lg);
  background: oklch(0.97 0.035 88);
}

.faith-art:nth-child(even) {
  transform: translateY(1.25rem);
}

.faith-art img {
  width: 100%;
  height: 13.5rem;
  object-fit: contain;
}

.faith-art span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1.2rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 0.65rem;
}

.feature-card p {
  color: var(--ink-soft);
}

.privacy-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.privacy-visual {
  position: relative;
  display: grid;
  min-height: 31rem;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, oklch(0.83 0.1 83), transparent 13rem),
    var(--paper-deep);
}

.privacy-visual::before,
.privacy-visual::after {
  position: absolute;
  border: 1px solid oklch(0.6 0.1 75 / 0.28);
  border-radius: 50%;
  content: "";
}

.privacy-visual::before {
  width: 23rem;
  height: 23rem;
}

.privacy-visual::after {
  width: 17rem;
  height: 17rem;
}

.privacy-seal {
  position: relative;
  z-index: 1;
  display: grid;
  width: 10rem;
  height: 10rem;
  place-items: center;
  border: 1px solid oklch(0.62 0.12 74 / 0.65);
  border-radius: 50%;
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
  color: var(--navy);
}

.privacy-seal svg {
  width: 4rem;
}

.privacy-copy {
  padding: clamp(2.2rem, 6vw, 5.25rem);
}

.privacy-copy h2 {
  margin-bottom: 1.2rem;
}

.check-list {
  display: grid;
  gap: 0.95rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  color: var(--ink-soft);
}

.check-list svg {
  width: 1.25rem;
  margin-top: 0.25rem;
  color: var(--olive);
}

.faq-list {
  display: grid;
  max-width: 54rem;
  margin-inline: auto;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-solid);
}

.faq-list summary {
  position: relative;
  padding: 1.35rem 3.5rem 1.35rem 1.35rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  color: var(--gold-dark);
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 500;
  transform: translateY(-53%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.35rem 1.35rem;
  color: var(--ink-soft);
}

.closing-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
  text-align: center;
}

.closing-section::before {
  position: absolute;
  top: -8rem;
  left: 50%;
  width: 22rem;
  height: 22rem;
  border: 1px solid oklch(0.55 0.1 76 / 0.28);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.closing-section h2 {
  position: relative;
  max-width: 17ch;
  margin: 0 auto 1.25rem;
}

.closing-section .lede {
  margin-inline: auto;
}

.closing-section .hero-actions {
  justify-content: center;
}

.site-footer {
  padding-block: 4rem 2.5rem;
  background: var(--ink);
  color: oklch(0.88 0.025 88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.7fr);
  gap: 3rem;
}

.footer-brand .brand {
  color: white;
}

.footer-brand p {
  max-width: 27rem;
  margin-top: 1rem;
  color: oklch(0.78 0.02 84);
  font-size: 0.92rem;
}

.footer-column h2 {
  margin-bottom: 1rem;
  color: oklch(0.95 0.025 88);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: oklch(0.81 0.025 88);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid oklch(0.9 0.02 90 / 0.14);
  color: oklch(0.68 0.02 84);
  font-size: 0.78rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Information and legal pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 0%, oklch(0.87 0.1 82 / 0.48), transparent 31rem),
    var(--paper-deep);
}

.page-hero::after {
  position: absolute;
  right: 5%;
  bottom: -11rem;
  width: 21rem;
  height: 21rem;
  border: 1px solid oklch(0.61 0.1 75 / 0.25);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.page-hero .lede {
  max-width: 44rem;
}

.updated {
  display: inline-flex;
  margin-top: 1.6rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: oklch(1 0 0 / 0.4);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.document-layout {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.document-nav {
  position: sticky;
  top: 7rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-solid);
}

.document-nav strong {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.document-nav ol {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-nav a {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}

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

.document {
  min-width: 0;
}

.document section {
  padding-block: 0 3rem;
  scroll-margin-top: 7rem;
}

.document section + section {
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.document h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.document h3 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.document p,
.document li {
  color: var(--ink-soft);
}

.document ul,
.document ol {
  padding-left: 1.3rem;
}

.document li + li {
  margin-top: 0.55rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.summary-item {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-solid);
}

.summary-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--font-display);
}

.summary-item span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  min-width: 39rem;
  border-collapse: collapse;
  background: var(--surface-solid);
  font-size: 0.88rem;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.callout {
  margin: 1.75rem 0;
  padding: 1.25rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--paper-deep);
}

.callout strong {
  color: var(--ink);
}

.support-grid,
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.support-card,
.choice-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
}

.support-card.wide,
.choice-card.wide {
  grid-column: 1 / -1;
}

.support-icon,
.choice-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 1rem;
  background: var(--paper-deep);
  color: var(--navy);
}

.support-icon svg,
.choice-icon svg {
  width: 1.6rem;
}

.support-card h2,
.choice-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.support-card p,
.choice-card p {
  color: var(--ink-soft);
}

.support-card .button,
.choice-card .button {
  margin-top: 0.75rem;
}

.support-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-deep);
}

.support-note svg {
  width: 1.5rem;
  margin-top: 0.2rem;
  color: var(--gold-dark);
}

.not-found {
  display: grid;
  min-height: calc(100vh - 13rem);
  place-items: center;
  padding-block: 5rem;
  text-align: center;
}

.not-found-mark {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 11rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.18;
}

.not-found h1 {
  margin: -3rem 0 1rem;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
}

.not-found p {
  max-width: 33rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .hero-grid,
  .faith-grid,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
    text-align: center;
  }

  .hero h1,
  .hero .lede {
    margin-inline: auto;
  }

  .hero .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 33rem);
    margin-inline: auto;
  }

  .floating-note.top {
    right: 0;
  }

  .floating-note.bottom {
    left: 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 18rem;
  }

  .step-icon {
    margin-bottom: 2.5rem;
  }

  .faith-copy {
    text-align: center;
  }

  .faith-copy .eyebrow {
    justify-content: center;
  }

  .faith-copy .eyebrow::after {
    width: 2.75rem;
    height: 1px;
    background: var(--gold);
    content: "";
  }

  .faith-copy .lede {
    margin-inline: auto;
  }

  .faith-copy blockquote {
    max-width: 38rem;
    margin-inline: auto;
    text-align: left;
  }

  .privacy-visual {
    min-height: 21rem;
  }

  .document-layout {
    grid-template-columns: 1fr;
  }

  .document-nav {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 1rem;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-solid);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav a {
    min-height: 3rem;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-sm);
  }

  .site-nav a:hover {
    background: var(--paper-deep);
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-cta {
    border: 0;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.5rem);
  }

  .phone {
    width: min(76vw, 19rem);
    border-radius: 2.7rem;
  }

  .phone img {
    border-radius: 2.25rem;
  }

  .floating-note {
    max-width: 11.5rem;
    padding: 0.7rem 0.8rem;
    font-size: 0.72rem;
  }

  .floating-note.top {
    right: -0.25rem;
  }

  .floating-note.bottom {
    bottom: 9%;
    left: -0.25rem;
  }

  .purpose-card {
    grid-template-columns: auto 1fr;
  }

  .purpose-card > svg {
    display: none;
  }

  .faith-art {
    min-height: 14.5rem;
  }

  .faith-art img {
    height: 11rem;
  }

  .feature-grid,
  .summary-grid,
  .support-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .support-card.wide,
  .choice-card.wide {
    grid-column: auto;
  }

  .feature-card {
    padding-inline: 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  .shell,
  .reading-shell {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .brand span {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust li {
    flex: 1 1 auto;
    justify-content: center;
  }

  .faith-art-grid {
    gap: 0.65rem;
  }

  .faith-art {
    min-height: 11.5rem;
    padding: 0.6rem;
    border-radius: var(--radius-md);
  }

  .faith-art img {
    height: 8.5rem;
  }

  .faith-art span {
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    font-size: 0.66rem;
  }

  .privacy-copy {
    padding: 2rem 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
