:root {
  --ink: #08111b;
  --ink-soft: #111e2a;
  --ink-muted: #334351;
  --paper: #f4f0e8;
  --paper-bright: #fbf8f1;
  --line: rgba(8, 17, 27, 0.16);
  --line-dark: rgba(255, 255, 255, 0.14);
  --gold: #cba968;
  --gold-bright: #e2c789;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
button, textarea { font: inherit; }
img { max-width: 100%; }

.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 {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--paper-bright);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 2px;
}

.skip-link:focus { transform: translateY(0); }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: 128px 0; }

.section-dark {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(203, 169, 104, 0.1), transparent 30%),
    var(--ink);
  color: var(--paper);
}

.kicker,
.eyebrow {
  margin: 0 0 22px;
  color: #5a4a30;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.kicker-gold { color: var(--gold-bright); }

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

h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 17, 27, 0.94);
  box-shadow: 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand strong,
.brand small { display: block; line-height: 1.1; }
.brand strong { font-size: 1rem; letter-spacing: 0.08em; }
.brand small { margin-top: 4px; color: var(--gold-bright); font-size: 0.59rem; letter-spacing: 0.14em; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
}

.brand-mark svg { width: 42px; height: 42px; overflow: visible; }
.mark-book { fill: none; stroke: rgba(255, 255, 255, 0.82); stroke-width: 1.45; stroke-linejoin: round; }
.mark-path { fill: none; stroke: var(--gold-bright); stroke-width: 1.6; stroke-linecap: round; }
.mark-light { fill: var(--gold-bright); }

.site-nav { display: flex; align-items: center; gap: 30px; }

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold-bright);
  transition: right 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: #fff; }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 0;
  background: transparent;
  color: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 160ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--ink);
}

.hero-image,
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; object-position: 50% center; }

.hero-veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 10, 17, 0.94) 0%, rgba(4, 10, 17, 0.78) 38%, rgba(4, 10, 17, 0.08) 76%),
    linear-gradient(0deg, rgba(4, 10, 17, 0.74) 0%, transparent 42%);
}

.hero-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 590px);
  width: 1px;
  background: linear-gradient(transparent 8%, rgba(203, 169, 104, 0.5) 26%, rgba(203, 169, 104, 0.08) 88%, transparent);
}

.hero-content {
  align-self: center;
  padding-top: 120px;
  padding-bottom: 120px;
}

.eyebrow { color: var(--gold-bright); }

.hero h1 {
  max-width: 800px;
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.hero h1 span { display: block; color: var(--gold-bright); font-style: italic; font-size: 0.72em; line-height: 1.14; }

.hero-copy {
  max-width: 640px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.91rem;
  font-weight: 730;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, textarea:focus-visible, .choice:focus-visible { outline: 3px solid #f1dcae; outline-offset: 3px; }
.button-primary { background: var(--gold-bright); color: var(--ink); }
.button-primary:hover { background: #efd9a6; }
.button-gold { background: var(--gold-bright); color: var(--ink); }
.button-quiet { border-color: rgba(255, 255, 255, 0.26); background: transparent; color: rgba(255, 255, 255, 0.78); }

.text-link {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
  text-underline-offset: 6px;
}

.text-link span { color: var(--gold-bright); margin-left: 5px; }

.hero-citation {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.hero-citation strong { margin-top: 6px; color: var(--gold-bright); font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; }

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 148px);
  align-items: start;
}

.section-intro { position: sticky; top: 130px; }
.manifesto-copy { max-width: 640px; }
.manifesto-copy > p { color: var(--ink-muted); font-size: 1.03rem; }
.manifesto-copy .lead { color: var(--ink); font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2.15rem); line-height: 1.45; }

blockquote {
  margin: 58px 0;
  padding: 8px 0 8px 34px;
  border-left: 2px solid var(--gold);
}

blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.7rem); line-height: 1.22; }

.not-list { margin-top: 54px; padding-top: 32px; border-top: 1px solid var(--line); }
.not-list-title { margin-bottom: 14px; font-size: 0.78rem; font-weight: 780; letter-spacing: 0.13em; text-transform: uppercase; }
.not-list ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.not-list li { position: relative; padding-left: 26px; color: var(--ink-muted); }
.not-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

.source-heading,
.seven-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.source-heading > p,
.seven-heading > p { margin-bottom: 4px; color: rgba(255, 255, 255, 0.62); }
.seven-heading > p { color: var(--ink-muted); }

.source-ladder { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }

.source-ladder li {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.source-number { color: var(--gold-bright); font-family: var(--serif); font-style: italic; }
.source-ladder strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 400; }
.source-ladder p { margin: 0; color: rgba(255, 255, 255, 0.56); }

.human-lenses {
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(8, 17, 27, 0.06) 50%, transparent calc(50% + 0.5px)),
    var(--paper);
}

.lenses-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
  margin-bottom: 76px;
}

.lenses-intro .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.lenses-intro > p:last-child { margin-bottom: 0; color: var(--ink-muted); }

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.discipline-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.68);
}

.discipline-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: var(--gold);
}

.discipline-philosophy::before { background: #6d7f8f; }
.discipline-sociology::before { background: #7d6d56; }
.discipline-topline { display: flex; justify-content: space-between; align-items: center; }
.discipline-topline span { color: #75613e; font-family: var(--serif); font-style: italic; }
.discipline-topline small { color: #75613e; font-size: 0.69rem; font-weight: 780; letter-spacing: 0.14em; }
.discipline-card h3 { margin: 52px 0 12px; font-family: var(--serif); font-size: clamp(2.1rem, 3vw, 3rem); font-weight: 400; }
.discipline-question { min-height: 64px; color: #6c5835; font-family: var(--serif); font-size: 1.12rem; font-style: italic; line-height: 1.45; }
.discipline-card ul { display: grid; gap: 15px; margin: 22px 0 30px; padding: 0; list-style: none; }
.discipline-card li { position: relative; padding-left: 18px; color: var(--ink-muted); font-size: 0.92rem; line-height: 1.6; }
.discipline-card li::before { content: ""; position: absolute; top: 0.72em; left: 0; width: 7px; height: 1px; background: var(--gold); }
.discipline-card li strong { color: var(--ink); }
.discipline-boundary { margin: auto 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-muted); font-size: 0.84rem; }
.discipline-boundary strong { color: var(--ink); }

.four-reading {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  margin-top: 84px;
  padding: clamp(34px, 6vw, 72px);
  background: var(--ink);
  color: var(--paper);
}

.four-reading-heading h3 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.55rem); font-weight: 400; line-height: 1.08; }
.case-line { margin: 0; color: rgba(255, 255, 255, 0.58); font-family: var(--serif); font-size: 1.05rem; font-style: italic; }
.reading-steps { border-top: 1px solid var(--line-dark); }
.reading-steps div { display: grid; grid-template-columns: 116px 1fr; gap: 22px; padding: 21px 0; border-bottom: 1px solid var(--line-dark); }
.reading-steps span { color: var(--gold-bright); font-size: 0.7rem; font-weight: 780; letter-spacing: 0.13em; }
.reading-steps p { margin: 0; color: rgba(255, 255, 255, 0.68); }
.synthesis { grid-column: 1 / -1; margin: 0; padding: 24px 28px; border-left: 2px solid var(--gold-bright); background: rgba(203, 169, 104, 0.09); color: rgba(255, 255, 255, 0.74); }
.synthesis strong { color: var(--gold-bright); }

.seven { background: var(--paper-bright); }
.seven-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }

.measure-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
  transition: background 160ms ease, color 160ms ease;
}

.measure-card::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 30px;
  width: 38px;
  height: 1px;
  background: var(--gold);
  transition: width 180ms ease;
}

.measure-card:hover { background: var(--ink); color: var(--paper); }
.measure-card:hover::after { width: 72px; }
.measure-card span { color: #8a744c; font-size: 0.76rem; font-weight: 760; letter-spacing: 0.15em; }
.measure-card .measure-lens { float: right; margin-top: 2px; color: #8a744c; font-size: 0.63rem; font-weight: 760; letter-spacing: 0.09em; }
.measure-card h3 { clear: both; margin: 42px 0 18px; font-family: var(--serif); font-size: 2.3rem; font-weight: 400; }
.measure-card p { max-width: 34ch; margin: 0; color: var(--ink-muted); }
.measure-card:hover p { color: rgba(255, 255, 255, 0.63); }
.measure-card-wide { grid-column: span 3; min-height: 240px; }
.measure-card-wide p { max-width: 70ch; }

.weigh {
  background:
    linear-gradient(120deg, rgba(203, 169, 104, 0.08), transparent 28%),
    var(--ink-soft);
  color: #fff;
}

.weigh-shell { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: clamp(48px, 9vw, 120px); align-items: start; }
.weigh-intro { position: sticky; top: 126px; }
.weigh-intro p:not(.kicker) { color: rgba(255, 255, 255, 0.62); }
.weigh-intro h2 { margin-bottom: 30px; }
.weigh-intro .privacy-note { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: rgba(255, 255, 255, 0.48); font-size: 0.84rem; }

.weigh-form { padding: clamp(26px, 4vw, 50px); border: 1px solid var(--line-dark); background: rgba(4, 9, 15, 0.3); }
.decision-label { display: block; margin-bottom: 10px; color: var(--gold-bright); font-size: 0.8rem; font-weight: 760; letter-spacing: 0.12em; text-transform: uppercase; }

.weigh-form textarea {
  width: 100%;
  resize: vertical;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  line-height: 1.6;
}

.weigh-form textarea::placeholder { color: rgba(255, 255, 255, 0.36); }
.scale-list { margin-top: 36px; border-top: 1px solid var(--line-dark); }

.scale-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  margin: 0;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
}

.scale-label strong { display: block; font-family: var(--serif); font-size: 1.28rem; font-weight: 400; }
.scale-label small { color: rgba(255, 255, 255, 0.48); font-size: 0.75rem; }

.choice-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.choice-group input { position: absolute; opacity: 0; pointer-events: none; }

.choice {
  display: grid;
  place-items: center;
  width: 41px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 760;
  cursor: pointer;
}

.choice-group input:checked + .choice { border-color: var(--gold-bright); background: var(--gold-bright); color: var(--ink); }
.choice-group input:focus-visible + .choice { outline: 3px solid #f1dcae; outline-offset: 3px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }

.result { margin-top: 30px; padding: 26px; border-left: 3px solid var(--gold-bright); background: rgba(203, 169, 104, 0.09); }
.result h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.result p { margin-bottom: 0; color: rgba(255, 255, 255, 0.7); }
.result strong { color: var(--gold-bright); }
.result-meter { display: grid; grid-template-columns: repeat(14, 1fr); gap: 4px; margin: 18px 0; }
.result-meter span { display: block; height: 5px; background: rgba(255, 255, 255, 0.12); }
.result-meter span.is-on { background: var(--gold-bright); }
.result-lenses { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.result-lenses h4 { margin: 0 0 16px; color: var(--paper); font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.result-lenses ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.result-lenses li { display: grid; grid-template-columns: 92px 1fr; gap: 14px; }
.result-lenses li strong { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.result-lenses li span { color: rgba(255, 255, 255, 0.66); font-size: 0.88rem; line-height: 1.55; }

.verses-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(60px, 10vw, 144px); }
.verses-heading p:last-child { max-width: 55ch; margin-top: 30px; color: var(--ink-muted); }
.verse-list { border-top: 1px solid var(--line); }
.verse-list article { display: grid; grid-template-columns: 130px 1fr auto; gap: 28px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line); }
.verse-list span { color: #7f6a42; font-size: 0.72rem; font-weight: 780; letter-spacing: 0.12em; }
.verse-list p { margin: 0; color: var(--ink-muted); }
.verse-list strong { white-space: nowrap; font-family: var(--serif); font-size: 0.95rem; font-weight: 400; }

.project-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(60px, 10vw, 144px); }
.project-heading { position: sticky; top: 126px; align-self: start; }
.project-copy > p { color: rgba(255, 255, 255, 0.6); }
.project-copy .lead-dark { color: var(--paper); font-family: var(--serif); font-size: clamp(1.45rem, 2.4vw, 2.05rem); line-height: 1.45; }
.project-copy em { color: var(--gold-bright); font-family: var(--serif); font-size: 1.08em; }

.project-pillars { display: grid; grid-template-columns: 1fr 1fr; margin-top: 54px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.project-pillars div { min-height: 180px; padding: 24px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.project-pillars span { color: var(--gold-bright); font-size: 0.72rem; letter-spacing: 0.13em; }
.project-pillars strong { display: block; margin: 24px 0 7px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.project-pillars p { margin: 0; color: rgba(255, 255, 255, 0.48); font-size: 0.87rem; }

.closing {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--paper-bright);
  text-align: center;
}

.closing-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 92px;
  background: linear-gradient(var(--gold), transparent);
}

.closing-inner { display: grid; justify-items: center; }
.closing h2 { max-width: 980px; }
.closing p:not(.kicker) { max-width: 700px; margin: 32px auto; color: var(--ink-muted); }

.site-footer { padding: 42px 0; background: #050b12; color: rgba(255, 255, 255, 0.55); font-size: 0.82rem; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 38px; align-items: center; }
.footer-inner strong { color: #fff; letter-spacing: 0.12em; }
.footer-inner p { margin: 4px 0 0; }
.footer-inner a { color: var(--gold-bright); text-underline-offset: 4px; }

@media (max-width: 900px) {
  :root { --wrap: min(100% - 36px, 720px); }
  .section, .section-dark { padding: 92px 0; }
  .hero-content { padding-top: 138px; }
  .hero-citation { display: none; }
  .hero-rule { left: 18px; }

  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    background: rgba(8, 17, 27, 0.98);
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms;
  }

  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { padding: 16px 6px; border-bottom: 1px solid var(--line-dark); font-size: 1rem; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }

  .manifesto-grid,
  .source-heading,
  .lenses-heading,
  .seven-heading,
  .weigh-shell,
  .verses-grid,
  .project-grid { grid-template-columns: 1fr; gap: 48px; }

  .section-intro,
  .weigh-intro,
  .project-heading { position: static; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline-card { min-height: auto; }
  .discipline-boundary { margin-top: 20px; }
  .four-reading { grid-template-columns: 1fr; gap: 40px; }
  .seven-grid { grid-template-columns: 1fr 1fr; }
  .measure-card-wide { grid-column: span 2; }
  .verse-list article { grid-template-columns: 110px 1fr; }
  .verse-list strong { grid-column: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > p { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --wrap: calc(100% - 30px); }
  .site-header { min-height: 70px; padding: 0 15px; }
  .site-nav { top: 70px; }
  .brand small { display: none; }
  .hero { min-height: 820px; }
  .hero-image { object-position: 66% center; }
  .hero-veil { background: linear-gradient(90deg, rgba(4, 10, 17, 0.96) 0%, rgba(4, 10, 17, 0.7) 70%, rgba(4, 10, 17, 0.36)), linear-gradient(0deg, rgba(4, 10, 17, 0.82), transparent 55%); }
  .hero h1 { font-size: clamp(3.55rem, 17vw, 5.3rem); }
  .hero-copy { font-size: 1rem; }
  .section, .section-dark { padding: 74px 0; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .source-ladder li { grid-template-columns: 48px 1fr; }
  .discipline-card { padding: 28px; }
  .four-reading { margin-top: 60px; padding: 30px 24px; }
  .reading-steps div { grid-template-columns: 1fr; gap: 7px; }
  .seven-grid { grid-template-columns: 1fr; }
  .measure-card, .measure-card-wide { grid-column: auto; min-height: 260px; padding: 28px; }
  .weigh-form { padding: 22px 18px; }
  .scale-row { grid-template-columns: 1fr; }
  .choice-group { width: 100%; }
  .choice { width: 100%; height: 42px; }
  .result-lenses li { grid-template-columns: 1fr; gap: 3px; }
  .verse-list article { grid-template-columns: 1fr; gap: 8px; }
  .verse-list strong { grid-column: auto; }
  .project-pillars { grid-template-columns: 1fr; }
  .closing { padding: 110px 0 90px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-inner > p { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
