:root {
  --green-950: #012d12;
  --green-900: #01331a;
  --green-700: #1b4e21;
  --green-100: #dfeadb;
  --burgundy-900: #611412;
  --burgundy-800: #701011;
  --gold-400: #f2bf48;
  --cream-100: #fbfaf5;
  --cream-200: #f3f1ed;
  --cream-300: #e7e1d3;
  --ink: #101510;
  --muted: #596258;
  --line: rgba(16, 21, 16, 0.14);
  --shadow-soft: 0 30px 90px rgba(1, 45, 18, 0.18);
  --shadow-hard: 0 18px 0 rgba(97, 20, 18, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display-font: Georgia, "Times New Roman", serif;
  --display-size: clamp(2.55rem, 4.5vw, 4.8rem);
  --display-size-hero: clamp(3rem, 5.8vw, 5.8rem);
  --display-size-compact: clamp(2.35rem, 4.2vw, 4.35rem);
  --display-weight: 500;
  --display-line-height: 0.96;
}


* { box-sizing: border-box; }

html { overflow-x: clip; scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgba(97, 20, 18, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(1, 51, 26, 0.06) 1px, transparent 1px),
    #dedbd2;
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--ink);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button { font: inherit; }

.sr-only,
.skip-link {
  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 {
  z-index: 1000;
  top: 18px;
  left: 18px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--gold-400);
  font-weight: 900;
}

.page-frame {
  width: min(1680px, calc(100% - 36px));
  margin: 18px auto;
  overflow: clip;
  border: 1px solid rgba(16, 21, 16, 0.16);
  background: var(--cream-100);
  box-shadow: 0 34px 120px rgba(16, 21, 16, 0.18);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 245, 0.84);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 68px;
  border-bottom-color: var(--line);
  box-shadow: 0 16px 48px rgba(16, 21, 16, 0.08);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(1, 51, 26, 0.18);
  border-radius: 999px;
  background: #fff;
}

.brand-mark img,
.object-medallion img {
  width: 180%;
  max-width: none;
  height: 180%;
  object-fit: cover;
  object-position: 50% 62%;
  transform: translate(-22%, -24%);
}

.brand-text { min-width: 0; display: grid; line-height: 1; }
.brand-text strong { font-size: 0.98rem; font-weight: 950; }
.brand-text small { margin-top: 6px; color: var(--green-700); font-size: 0.68rem; font-weight: 900; }

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.site-nav a { text-decoration: none; }

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(1, 51, 26, 0.2);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 21, 16, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--green-900);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.is-open .menu-button span:first-child { transform: translateY(3px) rotate(45deg); }
.site-header.is-open .menu-button span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.atlas-hero {
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: 92px minmax(0, 0.9fr) minmax(440px, 1.04fr);
  grid-template-rows: minmax(560px, 1fr) auto;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: 0 clamp(18px, 4vw, 58px) 28px 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(242, 191, 72, 0.22), transparent 24%),
    linear-gradient(120deg, #fbfaf5 0%, #fbfaf5 62%, #f1eadb 100%);
}

.field-rail {
  align-self: stretch;
  display: grid;
  align-items: end;
  justify-items: center;
  gap: 22px;
  padding: 30px 16px;
  background: linear-gradient(180deg, var(--burgundy-800) 0%, var(--green-950) 70%), var(--green-950);
  color: #fff;
}

.rail-kicker,
.rail-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-rail strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 950;
}

.hero-copy { min-width: 0; max-width: 660px; padding: 38px 0; }

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--burgundy-800);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: var(--display-size-hero);
  font-weight: var(--display-weight);
  line-height: var(--display-line-height);
  letter-spacing: 0;
}

.hero-title-fixed,
.hero-title-word-wrap {
  display: block;
}

.hero-title-word-wrap {
  min-height: 1em;
  color: var(--burgundy-800);
}

.hero-title-word {
  display: inline-block;
  vertical-align: bottom;
  white-space: nowrap;
}

.hero-title-word::after {
  content: "";
  display: inline-block;
  width: 0.055em;
  height: 0.74em;
  margin-left: 0.025em;
  background: currentColor;
  transform: translateY(0.08em);
  animation: heroCaret 900ms steps(1, end) infinite;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.34rem);
  font-weight: 650;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 0.84rem;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green-900); color: #fff; }
.button-quiet { border-color: rgba(16, 21, 16, 0.16); background: #fff; color: var(--ink); }
.button-secondary { background: var(--burgundy-800); color: #fff; }

.atlas-object {
  position: relative;
  min-width: 0;
  height: min(720px, 72vh);
  min-height: 540px;
  transform-style: preserve-3d;
  transition: transform 260ms var(--ease);
}

.object-ring {
  position: absolute;
  inset: 9% 12% 12% 9%;
  border: 1px solid rgba(1, 51, 26, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), transparent 34%),
    repeating-radial-gradient(circle at 50% 50%, rgba(1, 51, 26, 0.1) 0 1px, transparent 1px 22px);
  animation: atlasPulse 9s ease-in-out infinite;
}

.object-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 16, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.object-card img { height: 100%; object-fit: cover; }
.object-card-primary { top: 7%; left: 2%; width: 57%; height: 47%; transform: rotate(-3deg); }
.object-card-secondary { top: 23%; right: 1%; width: 47%; height: 48%; transform: rotate(4deg); }
.object-card-proof { left: 20%; bottom: 4%; width: 44%; height: 32%; transform: rotate(2deg); }

.object-medallion img {
  width: 260%;
  max-width: none;
  height: 260%;
  object-fit: cover;
  object-position: 50% 28%;
  transform: translate(-31%, -15%);
}

.object-medallion {
  position: absolute;
  top: 42%;
  left: 42%;
  z-index: 4;
  width: clamp(118px, 13vw, 176px);
  height: clamp(118px, 13vw, 176px);
  overflow: hidden;
  border: 12px solid var(--cream-100);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(16, 21, 16, 0.2);
}

.object-note {
  position: absolute;
  z-index: 5;
  width: fit-content;
  max-width: 220px;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.object-note-top { top: 3%; right: 18%; }
.object-note-bottom { right: 10%; bottom: 9%; background: var(--gold-400); color: #2d1502; }

.partner-ledger {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-hard);
}

.ledger-row {
  min-width: 0;
  min-height: 116px;
  display: grid;
  align-content: start;
  gap: 9px;
  border: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ledger-row:hover,
.ledger-row.is-active { background: var(--green-900); color: #fff; }
.ledger-row span { color: var(--burgundy-800); font-size: 0.78rem; font-weight: 950; }
.ledger-row:hover span,
.ledger-row.is-active span { color: var(--gold-400); }
.ledger-row strong { min-width: 0; font-size: clamp(1rem, 1.3vw, 1.2rem); font-weight: 950; line-height: 1.1; }
.ledger-row em { color: currentColor; font-size: 0.74rem; font-style: normal; font-weight: 750; line-height: 1.35; opacity: 0.7; }

.section { padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 82px); }

.systems-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
  border-top: 1px solid var(--line);
  background: var(--cream-200);
}

.section h2,
.site-footer h2 { font-size: var(--display-size); line-height: var(--display-line-height); }

.section-copy p:not(.section-label),
.ledger-head p,
.advisory-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 650;
}

.systems-board { display: grid; border-top: 1px solid rgba(1, 51, 26, 0.18); }

.systems-board article {
  min-height: 124px;
  display: grid;
  grid-template-columns: 54px minmax(130px, 0.4fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(1, 51, 26, 0.18);
}

.systems-board span,
.entry-index { color: var(--burgundy-800); font-weight: 950; }
.systems-board h3 { margin: 0; font-size: clamp(1.4rem, 2.2vw, 2.1rem); line-height: 1; }
.systems-board p { margin: 0; color: var(--muted); font-size: 0.92rem; font-weight: 650; }

.ledger-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  background: var(--cream-100);
}

.ledger-head { position: sticky; top: 106px; }
.ledger-table { border-top: 1px solid rgba(16, 21, 16, 0.16); }

.ledger-entry {
  width: 100%;
  min-height: 102px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(160px, 0.76fr) 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(16, 21, 16, 0.16);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.ledger-entry:hover,
.ledger-entry.is-active { color: var(--burgundy-800); }
.entry-main { font-size: clamp(1.34rem, 2.8vw, 2.3rem); font-weight: 950; line-height: 1; }
.entry-meta { color: var(--muted); font-size: 0.82rem; font-weight: 850; }
.entry-action { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(16, 21, 16, 0.16); border-radius: 999px; font-weight: 950; }
.ledger-entry.is-active .entry-action { background: var(--burgundy-800); color: #fff; }
.entry-detail { padding: 0 68px 30px 72px; color: var(--muted); font-weight: 650; }

.evidence-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  background: var(--green-950);
  color: #fff;
}

.evidence-section .section-label,
.advisory-section .section-label,
.site-footer .section-label { color: var(--gold-400); }

.evidence-stack { display: grid; grid-template-columns: 1.05fr 0.95fr; grid-auto-rows: minmax(220px, 28vw); gap: 14px; }

.evidence-panel {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.evidence-panel img { height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.evidence-panel:hover img { transform: scale(1.04); }
.panel-tall { grid-row: span 2; }

.evidence-panel figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(251, 250, 245, 0.94);
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 950;
}

.advisory-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.68fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background: radial-gradient(circle at 88% 18%, rgba(242, 191, 72, 0.2), transparent 28%), var(--burgundy-900);
  color: #fff;
}

.advisory-copy p { color: rgba(255, 255, 255, 0.74); }
.advisory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 8px; background: rgba(255, 255, 255, 0.18); }
.advisory-grid span { min-height: 112px; display: flex; align-items: end; padding: 18px; background: rgba(1, 45, 18, 0.38); font-size: 0.92rem; font-weight: 950; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 7vw, 90px) clamp(18px, 5vw, 82px);
  background: var(--ink);
  color: #fff;
}

.site-footer h2 { max-width: 980px; font-size: var(--display-size); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible,
.atlas-hero .reveal { opacity: 1; transform: translateY(0); }

@keyframes atlasPulse {
  0%, 100% { transform: scale(0.98) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.02) rotate(2deg); opacity: 1; }
}

@keyframes heroCaret {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@media (max-width: 1180px) {
  .atlas-hero { grid-template-columns: 74px minmax(0, 1fr); grid-template-rows: auto auto auto; }
  .atlas-object,
  .partner-ledger { grid-column: 2; }
  .partner-ledger { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .systems-section,
  .ledger-section,
  .evidence-section,
  .advisory-section,
  .site-footer { grid-template-columns: 1fr; }
  .ledger-head { position: static; }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: minmax(0, 1fr) 46px; }
  .menu-button { display: block; justify-self: end; }
  .site-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream-100);
    box-shadow: var(--shadow-soft);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 12px; }
  .nav-cta { justify-content: center; border-radius: 8px; background: var(--green-900); color: #fff; }
  .systems-board article,
  .ledger-entry { grid-template-columns: 44px minmax(0, 1fr) 32px; }
  .systems-board article p,
  .entry-meta { grid-column: 2 / -1; }
  .entry-action { grid-column: 3; grid-row: 1; }
  .entry-detail { padding: 0 42px 26px 62px; }
}

@media (max-width: 720px) {
  .page-frame { width: 100%; margin: 0; border: 0; }
  .site-header { min-height: 70px; padding: 12px 16px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-text strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-text small { display: none; }
  .atlas-hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; min-height: auto; gap: 28px; padding: 0 16px 38px; }
  .field-rail { display: flex; min-height: 48px; align-items: center; justify-content: space-between; padding: 11px 14px; border-radius: 999px; }
  .rail-kicker { writing-mode: horizontal-tb; transform: none; min-width: 0; font-size: 0.62rem; white-space: nowrap; }
  .rail-vertical { display: none; }
  .field-rail strong { width: auto; height: auto; border: 0; background: transparent; }
  .hero-copy { padding: 0; }
  .eyebrow,
  .section-label { max-width: 100%; overflow-wrap: anywhere; letter-spacing: 0.04em; line-height: 1.24; }
  .hero-copy h1 { font-size: clamp(2.9rem, 12vw, 4.2rem); overflow-wrap: normal; }
  .hero-copy p:not(.eyebrow) { max-width: 34rem; font-size: 1rem; }
  .hero-actions,
  .hero-actions .button { width: 100%; }
  .hero-actions { display: grid; }
  .atlas-object { grid-column: auto; height: 540px; min-height: 540px; }
  .object-card-primary { width: 68%; height: 38%; }
  .object-card-secondary { top: 30%; width: 62%; height: 35%; }
  .object-card-proof { left: 4%; width: 58%; height: 29%; }
  .object-medallion { top: 42%; left: 34%; width: 116px; height: 116px; border-width: 8px; }
  .object-note-top { top: 0; left: 0; right: auto; }
  .object-note-bottom { left: 0; right: auto; bottom: 0; max-width: 176px; border-radius: 8px; white-space: normal; }
  .partner-ledger {
    grid-column: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 76vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
  }
  .partner-ledger .ledger-row {
    min-height: 108px;
    scroll-snap-align: start;
  }
  .ledger-row { min-height: 82px; }
  .section { padding: 68px 16px; }
  .section h2,
  .site-footer h2 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .systems-board article { min-height: 142px; }
  .ledger-entry { min-height: 90px; gap: 10px; }
  .entry-main { font-size: 1.28rem; }
  .entry-detail { padding: 0 18px 24px 54px; }
  .evidence-stack,
  .advisory-grid { grid-template-columns: 1fr; }
  .evidence-stack { grid-auto-rows: 280px; }
  .panel-tall { grid-row: span 1; }
  .advisory-grid span { min-height: 84px; }
  .site-footer .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-title-word::after { display: none; animation: none !important; }
}

/* Content-complete Field Atlas sections */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-strip div {
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.proof-strip dt {
  margin: 0;
  color: var(--burgundy-800);
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  font-weight: 950;
  line-height: 1;
}

.proof-strip dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.overview-section,
.value-section,
.stories-section,
.founder-section {
  border-top: 1px solid var(--line);
}

.overview-section,
.founder-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: center;
  background: var(--cream-100);
}

.overview-body,
.founder-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  font-weight: 650;
}

.overview-body p,
.founder-copy p { margin: 0 0 18px; }
.overview-callout {
  border-left: 6px solid var(--burgundy-800);
  padding: 18px 0 18px 22px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  font-weight: 950;
  line-height: 1.08;
}

.systems-content { display: grid; gap: 28px; }
.terrain-note {
  border: 1px solid rgba(1, 51, 26, 0.16);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(251, 250, 245, 0.72);
}

.terrain-note h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 950;
  line-height: 1.08;
}

.terrain-note p:not(.section-label) {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

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

.value-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  background: var(--cream-100);
}

.value-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.value-board article {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  background: #fff;
}

.value-board article:first-child { background: var(--green-900); color: #fff; }
.value-board span { color: var(--burgundy-800); font-size: 0.74rem; font-weight: 950; letter-spacing: 0.05em; text-transform: uppercase; }
.value-board article:first-child span { color: var(--gold-400); }
.value-board h3 { margin: 0; font-size: clamp(1.28rem, 2.2vw, 2rem); font-weight: 950; line-height: 1.02; }
.value-board p { margin: 0; color: var(--muted); font-size: 0.94rem; font-weight: 650; }
.value-board article:first-child p { color: rgba(255, 255, 255, 0.76); }

.entry-detail p {
  max-width: 900px;
  margin: 0 0 14px;
}

.partner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.partner-links a,
.footer-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(1, 51, 26, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
  color: var(--green-900);
  font-size: 0.76rem;
  font-weight: 950;
  text-decoration: none;
}

.evidence-intro p:not(.section-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.55vw, 1.14rem);
  font-weight: 650;
}

.stories-section {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  min-height: 820px;
  overflow: hidden;
  background: var(--cream-100);
  color: var(--ink);
}

.stories-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 51, 26, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(97, 20, 18, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
}

.story-rail {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  min-height: 540px;
  border-right: 1px solid rgba(16, 21, 16, 0.13);
  color: var(--burgundy-800);
}

.story-rail strong {
  font-size: 0.8rem;
  font-weight: 950;
}

.story-rail span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--burgundy-800);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-mosaic {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.72fr 0.52fr 0.62fr;
  grid-template-rows: 220px 180px 170px 130px;
  gap: 14px;
  align-self: stretch;
  min-height: 720px;
}

.story-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 16, 0.14);
  background: #121712;
  box-shadow: 0 22px 70px rgba(1, 45, 18, 0.14);
  isolation: isolate;
  animation: storyMaskIn 900ms var(--ease) both;
  animation-delay: var(--delay);
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(1, 45, 18, 0) 46%, rgba(1, 45, 18, 0.84));
}

.story-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.06);
  animation: storyImageDrift 18s ease-in-out infinite alternate;
  transition: filter 700ms var(--ease), transform 700ms var(--ease);
}

.story-photo:hover img {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.08);
}

.story-photo figcaption {
  position: absolute;
  z-index: 3;
  left: 13px;
  right: 13px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}

.story-photo figcaption strong {
  font-size: clamp(0.78rem, 1vw, 1.06rem);
  line-height: 1.05;
}

.story-photo figcaption span {
  color: var(--gold-400);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-hero { grid-column: 1 / 2; grid-row: 1 / 3; border-radius: 0 8px 8px 0; --delay: 80ms; }
.story-tall { grid-column: 2 / 3; grid-row: 1 / 4; --delay: 180ms; }
.story-small-a { grid-column: 3 / 4; grid-row: 1 / 2; --delay: 260ms; }
.story-small-b { grid-column: 3 / 4; grid-row: 2 / 3; --delay: 340ms; }
.story-wide { grid-column: 1 / 2; grid-row: 3 / 5; --delay: 420ms; }
.story-yaden-board { grid-column: 3 / 5; grid-row: 3 / 5; --delay: 500ms; }
.story-spills-garden { grid-column: 4 / 5; grid-row: 1 / 2; --delay: 580ms; }
.story-enterprise-detail { grid-column: 4 / 5; grid-row: 2 / 3; --delay: 660ms; }

.edge-object {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3.5vw, 58px);
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(5, 72px);
  gap: 8px;
  transform: rotate(-1deg);
  animation: storyContactDrift 20s linear infinite alternate;
}

.edge-object div {
  height: 66px;
  padding: 5px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 21, 16, 0.18);
}

.edge-object img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

@keyframes storyMaskIn {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateY(18px); }
  to { opacity: 1; clip-path: inset(0); transform: translateY(0); }
}

@keyframes storyPanelIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes storyImageDrift {
  0% { transform: scale(1.06) translate3d(-1%, 0, 0); }
  100% { transform: scale(1.13) translate3d(1%, -1%, 0); }
}

@keyframes storyContactDrift {
  from { transform: translateX(-16px) rotate(-1deg); }
  to { transform: translateX(16px) rotate(-1deg); }
}

.founder-section { background: linear-gradient(90deg, var(--cream-100), #efe8db); }
.founder-mark {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: radial-gradient(circle, rgba(242, 191, 72, 0.24), transparent 58%), #fff;
}

.founder-mark img {
  width: min(76%, 340px);
  max-height: 280px;
  object-fit: contain;
}

.founder-copy blockquote {
  margin: 26px 0 0;
  border-left: 6px solid var(--green-900);
  padding: 14px 0 14px 22px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 950;
  line-height: 1.14;
}

.site-footer p:not(.section-label) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.footer-link { border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.08); color: #fff; }

@media (max-width: 1180px) {
  .overview-section,
  .value-section,
  .founder-section { grid-template-columns: 1fr; }
  .stories-section { grid-template-columns: 1fr; }
  .story-rail { min-height: 0; grid-template-columns: auto 1fr; justify-items: start; border-right: 0; border-bottom: 1px solid rgba(16, 21, 16, 0.13); }
  .story-rail span { writing-mode: horizontal-tb; }
  .story-mosaic { grid-template-columns: 1fr 0.72fr 0.72fr; grid-template-rows: 240px 190px 170px 150px; }
  .story-hero { grid-column: 1 / 2; grid-row: 1 / 3; }
  .story-tall { grid-column: 2 / 3; grid-row: 1 / 3; }
  .story-small-a { grid-column: 3 / 4; grid-row: 1 / 2; }
  .story-small-b { grid-column: 3 / 4; grid-row: 2 / 3; }
  .story-wide { grid-column: 1 / 2; grid-row: 3 / 5; }
  .story-yaden-board { grid-column: 2 / 4; grid-row: 3 / 4; }
  .story-spills-garden { grid-column: 2 / 3; grid-row: 4 / 5; }
  .story-enterprise-detail { grid-column: 3 / 4; grid-row: 4 / 5; }
  .edge-object { position: relative; right: auto; bottom: auto; grid-template-columns: repeat(5, 1fr); margin-top: 18px; }
}

@media (max-width: 860px) {
  .proof-strip,
  .value-board { grid-template-columns: 1fr; }
  .footer-actions { justify-items: stretch; }
}

@media (max-width: 720px) {
  .proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .overview-callout { font-size: 1.42rem; }
  .terrain-note { padding: 18px; }
  .value-board article { min-height: 220px; }
  .story-mosaic { display: flex; min-height: 0; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; padding-bottom: 12px; }
  .story-photo { flex: 0 0 84%; height: 360px; scroll-snap-align: start; }
  .edge-object { grid-template-columns: repeat(2, 1fr); }
  .founder-mark { min-height: 260px; }
}


/* Mobile overflow guardrails */
@media (max-width: 720px) {
  .atlas-hero > *,
  .hero-copy,
  .field-rail,
  .proof-strip,
  .atlas-object,
  .partner-ledger,
  .section,
  .site-footer {
    min-width: 0;
    max-width: 100%;
  }

  .eyebrow,
  .proof-strip dd,
  .proof-strip dt,
  .hero-copy p:not(.eyebrow),
  .ledger-row strong,
  .ledger-row em {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .proof-strip div { overflow: hidden; }
  .rail-kicker { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
  .atlas-object { overflow: hidden; height: 520px; min-height: 520px; }
  .object-card-primary { left: 0; width: 66%; }
  .object-card-secondary { right: 0; width: 56%; }
  .object-card-proof { left: 5%; width: 60%; }
  .object-note-top { max-width: calc(100% - 32px); }
  .object-note-bottom { max-width: 164px; }
}


/* Mobile viewport width correction */
@media (max-width: 720px) {
  .page-frame,
  .atlas-hero {
    max-width: 100vw;
    overflow: hidden;
  }

  .field-rail,
  .hero-copy,
  .proof-strip,
  .atlas-object,
  .partner-ledger {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .eyebrow {
    max-width: calc(100vw - 32px);
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }

  .proof-strip dd {
    font-size: 0.64rem;
    line-height: 1.2;
  }
}


/* Mobile text line-length correction */
@media (max-width: 720px) {
  .hero-copy h1 { max-width: 11.6ch; }
  .eyebrow { max-width: 34ch; }
  .hero-copy p:not(.eyebrow) {
    max-width: 32ch;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .proof-strip dd {
    max-width: 17ch;
  }
}


/* Review fixes: full logo artwork and hero partner image transitions */
.brand-mark {
  overflow: visible;
  padding: 3px;
}

.brand-mark img,
.object-medallion img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.object-medallion {
  display: grid;
  place-items: center;
  padding: 10px;
  overflow: visible;
}

.object-card img {
  will-change: opacity, transform;
}

.atlas-object.is-switching .object-card img {
  animation: hero-image-exit 180ms ease both;
}

.object-card img.is-entering {
  animation: hero-image-enter 420ms var(--ease) both;
}

@keyframes hero-image-exit {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.96) translateY(8px); }
}

@keyframes hero-image-enter {
  from { opacity: 0; transform: scale(1.04) translateY(-12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}


/* Clarified content fixes */
.brand-mark {
  width: 62px;
  height: 62px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.brand-mark img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.founder-mark {
  margin: 0;
  overflow: hidden;
}

.founder-mark img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 22%;
}

@media (max-width: 720px) {
  .brand-mark {
    width: 50px;
    height: 50px;
  }
}
