:root {
  --ink: #0f1c21;
  --muted: #59666b;
  --paper: #f6f4ef;
  --card: #fffef9;
  --line: #d9ddd8;
  --accent: #e76638;
  --accent-dark: #b64120;
  --forest: #153e3a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(15, 28, 33, 0.12);
  background: rgba(246, 244, 239, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--forest);
  color: white;
  font-size: 0.86rem;
}

.site-nav, .footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a, .footer-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover, .footer-nav a:hover { color: var(--ink); }
.hero, .section, .policy-shell {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 7vw;
  align-items: end;
  min-height: 650px;
  padding: 112px 0 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
h3 { font-size: 1.3rem; letter-spacing: -0.02em; }
.hero-lede, .prose-large, .section-heading > p {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}
.hero-lede { max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover { background: var(--accent-dark); }
.button-secondary { border: 1px solid var(--line); background: var(--card); }
.status-card {
  padding: 30px;
  border-radius: 28px 28px 4px 28px;
  background: var(--forest);
  color: #fff;
  box-shadow: 0 24px 70px rgba(21, 62, 58, 0.2);
}
.status-card span {
  display: inline-block;
  margin-bottom: 45px;
  color: #c5e3d6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.status-card strong { font-size: 1.35rem; line-height: 1.5; }
.section { padding: 100px 0; border-top: 1px solid var(--line); }
.split-section, .identity-section, .section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}
.prose-large p { margin-bottom: 22px; }
.section-heading { align-items: end; margin-bottom: 50px; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
}
.principle-card span {
  display: block;
  margin-bottom: 100px;
  color: var(--accent-dark);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.8rem;
}
.principle-card p { color: var(--muted); line-height: 1.6; }
.support-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  width: min(1260px, 94vw);
  padding: 82px max(24px, 3vw);
  border: 0;
  border-radius: 34px;
  background: var(--forest);
  color: #fff;
}
.support-band p { max-width: 650px; color: #c9d8d4; line-height: 1.7; }
.eyebrow-light { color: #f3a98d !important; }
.support-links { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.support-links a {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 800;
  text-decoration: none;
}
.identity-list { margin: 0; border-top: 1px solid var(--line); }
.identity-list > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.identity-list dt { color: var(--muted); }
.identity-list dd { margin: 0; font-weight: 700; }
.policy-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 760px);
  gap: 8vw;
  padding: 100px 0 130px;
}
.policy-aside { align-self: start; position: sticky; top: 110px; }
.policy-aside p { color: var(--muted); line-height: 1.6; }
.policy-content h1 { margin-bottom: 26px; font-size: clamp(3rem, 6vw, 5.5rem); }
.policy-content .updated { margin-bottom: 55px; color: var(--muted); }
.policy-content section { padding: 34px 0; border-top: 1px solid var(--line); }
.policy-content h2 { margin-bottom: 18px; font-size: 1.65rem; letter-spacing: -0.03em; }
.policy-content p, .policy-content li { color: #3f4c50; line-height: 1.78; }
.policy-content li + li { margin-top: 8px; }
.notice { padding: 22px; border-left: 4px solid var(--accent); background: #fff4ee; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 46px 0 60px;
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 7px 0 0; color: var(--muted); font-size: 0.88rem; }

@media (max-width: 860px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 18px; padding-top: 18px; padding-bottom: 18px; }
  .site-nav { width: 100%; gap: 16px; overflow-x: auto; padding-bottom: 3px; }
  .site-nav a { white-space: nowrap; }
  .hero, .split-section, .identity-section, .section-heading, .support-band, .policy-shell { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 80px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 240px; }
  .principle-card span { margin-bottom: 64px; }
  .policy-aside { position: static; }
  .site-footer { flex-direction: column; }
  .footer-nav { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  h1 { font-size: 3.2rem; }
  .section { padding: 74px 0; }
  .identity-list > div { grid-template-columns: 1fr; gap: 8px; }
}

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