:root {
  --bone: #f5efe5;
  --bone-deep: #ece2d5;
  --ink: #041d1e;
  --ink-soft: #173031;
  --muted: #6e6760;
  --line: rgba(4, 29, 30, 0.14);
  --teal: #013739;
  --teal-soft: #0b5557;
  --magenta: #b31d67;
  --violet: #5c3c9b;
  --gold: #d7a537;
  --white: #fffaf2;
  --shadow: 0 30px 80px rgba(4, 29, 30, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--magenta); color: var(--white); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 16px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  z-index: 999;
}

.section-shell {
  width: min(100% - 44px, 1180px);
  margin: 0 auto;
}

.mono {
  font-family: "Space Mono", ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.04em;
  font-size: 19px;
  display: inline-flex;
  flex-direction: column;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 58px);
  background: linear-gradient(to bottom, rgba(245,239,229,0.96), rgba(245,239,229,0.72), rgba(245,239,229,0));
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled { background: rgba(245,239,229,0.92); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); margin-left: auto; margin-right: 28px; }
.nav a,
.mobile-menu a,
.site-footer nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.nav a:hover,
.site-footer nav a:hover { color: var(--magenta); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(4,29,30,0.38);
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 1px; background: var(--ink); }

.mobile-menu {
  position: fixed;
  top: 82px;
  right: 22px;
  z-index: 60;
  display: none;
  flex-direction: column;
  min-width: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  padding: 17px 27px;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #062b2d; }
.button-small { padding: 14px 24px; }
.button-ghost { border-color: var(--line); }
.button-ghost:hover { border-color: var(--ink); }

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 126px;
  padding-bottom: 66px;
}
.broadcast-line {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(4,29,30,0.58);
  font-size: 10px;
  margin-bottom: 26px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 8px rgba(179,29,103,0.08);
}
.time { padding-left: 18px; border-left: 1px solid var(--line); }
.witness-bg {
  position: absolute;
  top: 108px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(150px, 26vw, 390px);
  letter-spacing: -0.11em;
  line-height: 0.73;
  color: var(--ink);
  opacity: 0.98;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(330px, 0.92fr);
  align-items: end;
  min-height: calc(100svh - 210px);
  gap: clamp(28px, 4vw, 72px);
}
.hero-copy { padding-top: clamp(130px, 17vw, 230px); }
.micro-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 700;
}
.micro-rule::before { content: ""; width: 44px; height: 1px; background: var(--ink); }
h1 {
  margin: 0;
  max-width: 650px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.066em;
  font-size: clamp(58px, 8.5vw, 116px);
  line-height: 0.9;
}
h1 em,
.mission h2 em,
.tool-card h3 em { font-style: italic; font-weight: 500; }
h1 em {
  position: relative;
  display: inline-block;
}
h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 3%;
  bottom: 0.03em;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), rgba(179,29,103,0.34));
  transform: rotate(-1.2deg);
}
.hero-subcopy {
  max-width: 395px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 16px;
}
.hero-actions-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 40px; }

.hero-media {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.image-frame {
  position: relative;
  overflow: hidden;
  background: #ddd1c2;
  box-shadow: var(--shadow);
}
.portrait-frame {
  width: min(100%, 435px);
  aspect-ratio: 0.94;
  z-index: 2;
}
.portrait-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 25%, rgba(255,255,255,0.54), transparent 18%),
    linear-gradient(115deg, #4d4035 0%, #c3b6a6 42%, #1f3836 100%);
}
.portrait-placeholder::before {
  content: "";
  position: absolute;
  left: 18%;
  top: 12%;
  width: 48%;
  height: 72%;
  border-radius: 52% 48% 42% 42%;
  background:
    radial-gradient(circle at 44% 18%, #0f1919 0 38%, transparent 39%),
    linear-gradient(#6a4b3c, #3e2a24);
  filter: blur(0.3px);
  opacity: .86;
}
.portrait-placeholder::after {
  content: "";
  position: absolute;
  inset: auto -8% -8% auto;
  width: 54%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(4,29,30,.88), rgba(4,29,30,0) 65%);
  transform: rotate(-20deg);
}
.portrait-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(65deg, transparent 35%, rgba(255,250,242,.2) 36% 48%, transparent 49%);
  mix-blend-mode: soft-light;
}
.portrait-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 8px;
  color: rgba(255,250,242,.55);
}
.gradient-seal {
  position: absolute;
  z-index: 4;
  left: 3%;
  top: 47%;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: conic-gradient(from 160deg, var(--magenta), var(--violet), var(--teal), var(--magenta));
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 22px 60px rgba(4,29,30,.18);
}
.gradient-seal::before {
  content: "REAL FAITH • REAL LIFE • REAL IMPACT •";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: .22em;
  color: rgba(255,250,242,.92);
}
.gradient-seal span { position: relative; z-index: 2; font-size: 31px; }
.tile {
  position: absolute;
  z-index: 1;
  width: 180px;
  height: 120px;
  bottom: -28px;
}
.tile-deep {
  right: 210px;
  background: radial-gradient(circle at 25% 20%, #17484a, var(--ink));
}
.tile-bright {
  right: 0;
  background: linear-gradient(135deg, var(--magenta), #34254f);
}
.purpose {
  position: absolute;
  z-index: 5;
  left: 15%;
  bottom: 44px;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 700;
}
.purpose::after {
  content: "";
  display: block;
  width: 1px;
  height: 74px;
  background: var(--ink);
  position: absolute;
  left: 88px;
  top: 0;
}

.mission {
  display: grid;
  grid-template-columns: 150px 1fr 280px;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: 88px 0 70px;
  border-top: 1px solid var(--line);
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
}
.section-label::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 12px;
  background: var(--ink);
}
.mission h2,
.section-intro h2,
.resource-copy h2,
.journal-header h2,
.join-copy h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.mission h2 { font-size: clamp(34px, 4.3vw, 56px); max-width: 660px; }
.mission-statement p,
.section-intro p,
.resource-copy p,
.join-copy p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 16px;
}
.mission-statement p { max-width: 620px; margin-top: 24px; }
.mission-note {
  border-left: 1px solid var(--line);
  padding-left: 40px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  line-height: 1.16;
}
.mission-note::after {
  content: "";
  display: block;
  width: 96px;
  height: 34px;
  margin-top: 22px;
  border-top: 2px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.tools { padding: 70px 0 54px; }
.section-intro {
  display: grid;
  grid-template-columns: 150px minmax(0, 620px);
  gap: clamp(28px, 5vw, 76px);
  margin-bottom: 46px;
}
.section-intro h2 { font-size: clamp(38px, 5vw, 66px); }
.section-intro p { max-width: 620px; }
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.tool-card {
  min-height: 310px;
  padding: clamp(24px, 3.4vw, 40px);
  border-right: 1px solid var(--line);
  background: rgba(255,250,242,0.28);
}
.tool-card:last-child { border-right: 0; }
.tool-topline { display: flex; justify-content: space-between; align-items: flex-start; }
.tool-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 28px;
}
.icon-teal { background: var(--teal); }
.icon-violet { background: linear-gradient(135deg, var(--magenta), var(--violet)); }
.icon-gold { background: var(--gold); }
.tool-number,
.resource-list span,
.journal-grid span { font-family: "Space Mono", monospace; color: var(--muted); font-size: 13px; }
.tool-card h3 {
  margin: 34px 0 16px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  line-height: .92;
  letter-spacing: -0.035em;
}
.tool-card p { color: var(--muted); line-height: 1.55; font-size: 14px; max-width: 265px; }
.tool-card a {
  display: inline-flex;
  gap: 32px;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
}

.topics { padding: 36px 0 48px; border-top: 1px solid var(--line); }
.topic-row {
  display: grid;
  grid-template-columns: repeat(6, max-content) 1fr;
  gap: 0;
  align-items: center;
  margin-top: 22px;
}
.topic-row a:not(.circle-link) {
  padding: 0 28px;
  border-left: 1px solid var(--line);
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 7px;
}
.topic-row a:first-child { padding-left: 0; border-left: 0; }
.circle-link {
  justify-self: end;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.resources { padding: 42px 0 64px; }
.resource-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 52px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.resource-feature::after {
  content: "";
  position: absolute;
  inset: auto -16% -45% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179,29,103,.34), transparent 58%);
}
.resource-copy h2 { margin-top: 24px; font-size: clamp(42px, 5vw, 74px); }
.resource-copy p { color: rgba(255,250,242,.72); max-width: 460px; }
.resources .section-label { color: var(--white); }
.resources .section-label::after { background: var(--gold); }
.resource-list { position: relative; z-index: 2; display: grid; gap: 12px; }
.resource-list div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,250,242,.16);
}
.resource-list p { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: 24px; line-height: 1.15; }

.journal { padding: 56px 0 60px; }
.journal-header { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.journal-header h2 { margin-top: 22px; font-size: clamp(38px, 4.8vw, 68px); max-width: 660px; }
.journal-header > a { font-family: "Space Mono", monospace; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; font-weight: 700; }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.journal-grid article { padding: 30px 30px 34px; border-right: 1px solid var(--line); }
.journal-grid article:first-child { padding-left: 0; }
.journal-grid article:last-child { border-right: 0; }
.journal-grid p { font-size: 10px; color: var(--magenta); font-weight: 700; }
.journal-grid h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; font-size: 28px; line-height: 1.05; letter-spacing: -0.03em; min-height: 120px; }

.join { padding: 40px 0 54px; }
.join-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 190px 1fr minmax(360px, .9fr);
  gap: 42px;
  align-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at 84% 15%, rgba(179,29,103,.35), transparent 25%),
    linear-gradient(110deg, #123c3d, var(--ink) 70%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.join-card::after {
  content: "";
  position: absolute;
  inset: 14% -8% auto auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,250,242,.14);
  border-radius: 50%;
}
.still-life { position: relative; height: 160px; }
.vase {
  position: absolute;
  left: 24px;
  bottom: 4px;
  width: 70px;
  height: 88px;
  border-radius: 42% 42% 20% 20%;
  background: linear-gradient(135deg, #b9ad9a, #f1e4d2);
}
.book {
  position: absolute;
  left: 76px;
  bottom: 8px;
  width: 100px;
  height: 16px;
  background: #ded2c1;
  box-shadow: 0 -12px 0 #a79682;
}
.stem {
  position: absolute;
  width: 2px;
  height: 110px;
  left: 58px;
  bottom: 76px;
  background: #283f2d;
  transform-origin: bottom;
}
.stem-one { transform: rotate(-32deg); }
.stem-two { transform: rotate(22deg); }
.stem::after {
  content: "";
  position: absolute;
  top: 16px;
  left: -18px;
  width: 40px;
  height: 18px;
  background: #49613c;
  border-radius: 50%;
  transform: rotate(-22deg);
}
.join-copy h2 { font-size: clamp(34px, 4.4vw, 58px); }
.join-copy p { color: rgba(255,250,242,.74); max-width: 360px; }
.signup-form { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr max-content; align-items: start; }
.signup-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255,250,242,.55);
  background: var(--white);
  color: var(--ink);
  padding: 0 20px;
  outline: none;
}
.signup-form button {
  min-height: 58px;
  border: 1px solid rgba(255,250,242,.55);
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  color: var(--white);
  padding: 0 22px;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  cursor: pointer;
}
.signup-form p { grid-column: 1 / -1; margin: 12px 0 0; color: rgba(255,250,242,.6); font-size: 11px; }

.site-footer {
  padding: 34px 0 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.site-footer nav { display: flex; gap: clamp(24px, 5vw, 70px); }
.socials { justify-self: end; display: flex; gap: 22px; font-size: 24px; }
.socials a { width: 28px; height: 28px; display: grid; place-items: center; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding-top: 120px; }
  .hero-media { min-height: 460px; justify-content: center; }
  .mission, .section-intro { grid-template-columns: 1fr; }
  .mission-note { padding-left: 0; border-left: 0; }
  .tool-grid, .journal-grid { grid-template-columns: 1fr; }
  .tool-card, .journal-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .journal-grid article:first-child { padding-left: 30px; }
  .topic-row { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .topic-row a:not(.circle-link) { padding: 0 18px 0 0; border-left: 0; }
  .circle-link { justify-self: start; }
  .resource-feature, .join-card { grid-template-columns: 1fr; }
  .signup-form { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav, .socials { justify-self: start; flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .section-shell { width: min(100% - 30px, 1180px); }
  .site-header { height: 74px; padding: 0 16px; }
  .button-small { display: none; }
  .hero { padding-top: 100px; }
  .witness-bg { top: 96px; font-size: 145px; }
  h1 { font-size: clamp(58px, 17vw, 88px); }
  .hero-copy { padding-top: 94px; }
  .hero-actions-row { flex-direction: column; align-items: flex-start; }
  .hero-media { min-height: 380px; }
  .portrait-frame { width: 82%; }
  .gradient-seal { width: 82px; height: 82px; left: 0; }
  .tile { width: 120px; height: 80px; }
  .tile-deep { right: 120px; }
  .join-card, .resource-feature { padding: 28px; }
}
