:root {
  --ivory: #f3f0e8;
  --paper: #faf8f2;
  --ink: #18201d;
  --muted: #5f6863;
  --line: rgba(24, 32, 29, 0.14);
  --green: #455d52;
  --green-deep: #263a33;
  --gold: #a48855;
  --gold-soft: #d8c9aa;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --display: 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --page: min(1400px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 82px;
  padding: 0 max(32px, calc((100vw - 1400px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  background: rgba(243, 240, 232, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease;
}
.site-header.scrolled { border-color: var(--line); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand b { font-weight: 400; color: var(--muted); }
.brand-mark {
  width: 29px;
  height: 29px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.brand-mark i { display: block; border-radius: 50%; background: var(--ink); }
.brand-mark i:last-child { background: var(--gold); }
.site-header nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a, footer a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 150ms ease;
}
.site-header nav a:hover, footer a:hover { color: var(--ink); }
.header-cta {
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.section, .hero, footer { width: var(--page); margin-inline: auto; }
.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 88px);
  padding: 68px 0 80px;
}
.eyebrow, .section-label, .section-kicker {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 600;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 28px; height: 1px; background: var(--gold); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.8vw, 89px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.055em;
}
.hero h1 em { color: var(--green); font-weight: 400; }
.hero-intro {
  max-width: 630px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--ink); }
.button-primary:hover { background: var(--green-deep); }
.text-link {
  color: var(--muted);
  font-size: 13px;
  text-underline-offset: 5px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 42px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.trust-row li { color: var(--muted); font-size: 11px; letter-spacing: 0.04em; }
.trust-row li::before { content: '•'; margin-right: 10px; color: var(--gold); }
.hero-visual { position: relative; margin: 0; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(164, 136, 85, 0.28);
  border-radius: 4px;
}
.hero-visual img { width: 100%; aspect-ratio: 1.25; object-fit: cover; border-radius: 3px; }
.hero-visual figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(72%, 430px);
  padding: 22px 24px;
  display: grid;
  gap: 4px;
  color: white;
  background: rgba(24, 32, 29, 0.91);
  backdrop-filter: blur(8px);
}
.hero-visual figcaption span { color: var(--gold-soft); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; }
.hero-visual figcaption strong { font-family: var(--serif); font-size: 19px; font-weight: 400; }

.section { padding: 130px 0; }
.section-kicker { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.bridge-grid { display: grid; grid-template-columns: 1.18fr 0.82fr; gap: 8vw; margin-top: 44px; }
.bridge-grid h2, .section-heading h2, .fit h2, .founder h2, .conversation h2, .safeguard-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.bridge-copy p, .section-heading > p, .founder-copy > p, .conversation-copy > p, .safeguard-intro > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.entry-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 88px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.entry-grid article { min-height: 235px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.entry-grid span, .stage-number { color: var(--gold); font-size: 11px; letter-spacing: 0.12em; }
.entry-grid h3 { margin: 54px 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.entry-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.approach { border-top: 1px solid var(--line); }
.section-heading { max-width: 900px; }
.section-heading > p { max-width: 660px; margin-top: 25px; }
.section-heading.compact { max-width: 760px; }
.stage-list { margin: 76px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.stage-list li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 270px;
  gap: 36px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.stage-status { margin: 0 0 10px; color: var(--green); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.stage-body h3 { margin: 0 0 15px; font-family: var(--serif); font-size: clamp(27px, 2.5vw, 39px); font-weight: 400; }
.stage-body > p:last-child { max-width: 700px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.stage-result { align-self: end; padding: 18px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.5; }
.stage-result span { display: block; margin-bottom: 8px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; font-size: 9px; }

.safeguards {
  width: 100%;
  padding-inline: max(32px, calc((100vw - 1400px) / 2));
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  color: white;
  background: var(--green-deep);
}
.section-label.light { color: var(--gold-soft); }
.safeguard-intro > p { color: rgba(255,255,255,0.65); margin-top: 26px; }
.safeguard-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,0.16); border-left: 1px solid rgba(255,255,255,0.16); }
.safeguard-grid article { min-height: 190px; padding: 26px; border-right: 1px solid rgba(255,255,255,0.16); border-bottom: 1px solid rgba(255,255,255,0.16); }
.safeguard-grid span { color: var(--gold-soft); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; }
.safeguard-grid h3 { margin: 50px 0 0; font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.35; }

.comparison-table { margin-top: 64px; border-top: 1px solid var(--ink); }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.comparison-row > div { padding: 24px 26px; font-size: 16px; }
.comparison-row > div:first-child { color: #858b87; border-right: 1px solid var(--line); }
.comparison-row > div:last-child { color: var(--green-deep); font-weight: 500; }
.comparison-head > div { color: var(--ink) !important; font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; }

.fit { padding-top: 50px; }
.fit-card { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 70px; background: var(--paper); border: 1px solid var(--line); }
.fit-card ul { margin: 0; padding: 0; list-style: none; }
.fit-card li { display: grid; grid-template-columns: 50px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 15px; line-height: 1.55; }
.fit-card li:first-child { border-top: 1px solid var(--line); }
.fit-card li span { color: var(--gold); font-size: 10px; padding-top: 5px; }

.founder { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 9vw; border-top: 1px solid var(--line); }
.founder-note { align-self: start; display: flex; align-items: center; gap: 18px; }
.founder-note p { color: var(--muted); font-size: 12px; }
.founder-monogram { width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; font-family: var(--serif); font-size: 20px; }
.founder-copy > p { max-width: 720px; margin-top: 25px; }
.founder-copy .section-label { margin-top: 0; }

.conversation {
  width: 100%;
  padding-inline: max(32px, calc((100vw - 1400px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  color: white;
  background: var(--ink);
}
.conversation h2 { max-width: 900px; }
.conversation-copy > p { max-width: 670px; color: rgba(255,255,255,0.62); margin-top: 26px; }
.button-light { color: var(--ink); background: var(--ivory); white-space: nowrap; }
.button-light:hover { background: white; }

footer { min-height: 170px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 36px; }
footer > p { color: var(--muted); font-size: 11px; line-height: 1.5; text-align: center; }
footer > div { display: flex; justify-content: flex-end; align-items: center; gap: 24px; color: var(--muted); font-size: 11px; }

@media (max-width: 1050px) {
  :root { --page: min(100% - 40px, 900px); }
  .site-header { padding-inline: 20px; grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .hero-copy { max-width: 760px; }
  .hero-visual img { aspect-ratio: 1.65; }
  .bridge-grid, .safeguards, .fit-card, .founder { grid-template-columns: 1fr; }
  .entry-grid { grid-template-columns: repeat(2, 1fr); }
  .stage-list li { grid-template-columns: 60px 1fr; }
  .stage-result { grid-column: 2; }
  .safeguards, .conversation { padding-inline: 20px; }
  .conversation { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 32px); }
  .site-header { height: 68px; }
  .brand { font-size: 13px; }
  .header-cta { display: none; }
  .hero { padding: 54px 0 68px; gap: 52px; }
  .hero h1 { font-size: clamp(44px, 14vw, 65px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual img { aspect-ratio: 1.05; }
  .hero-visual figcaption { width: 86%; }
  .section { padding: 88px 0; }
  .bridge-grid { gap: 28px; }
  .entry-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .entry-grid article { min-height: 190px; }
  .entry-grid h3 { margin-top: 36px; }
  .stage-list { margin-top: 48px; }
  .stage-list li { grid-template-columns: 38px 1fr; gap: 16px; padding: 38px 0; }
  .stage-result { grid-column: 2; }
  .safeguards { padding: 88px 20px; gap: 52px; }
  .safeguard-grid { grid-template-columns: 1fr; }
  .safeguard-grid article { min-height: 155px; }
  .safeguard-grid h3 { margin-top: 35px; }
  .comparison-row > div { padding: 18px 12px; font-size: 13px; }
  .fit { padding-top: 24px; }
  .fit-card { padding: 38px 24px; }
  .founder { gap: 45px; }
  .conversation { padding: 88px 20px; gap: 34px; }
  .button-light { width: 100%; white-space: normal; }
  footer { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; text-align: left; }
  footer > p { text-align: left; }
  footer > div { justify-content: flex-start; }
}

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