:root {
  --orange: #f47920;
  --orange-dark: #cf5d0c;
  --ink: #191714;
  --ink-soft: #27221d;
  --paper: #fffdf9;
  --sand: #f3eee6;
  --line: #ded7cd;
  --muted: #6e6861;
  --white: #fff;
  --success: #237a4b;
  --error: #b42318;
  --shadow: 0 24px 70px rgba(27, 22, 17, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  transition: transform 0.18s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(244, 121, 32, 0.72);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow,
.section-number {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.55rem, 5.2vw, 5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.65rem); }
h3 { font-size: clamp(1.12rem, 1.8vw, 1.45rem); }
p { margin: 0; }
.lead { font-size: clamp(1.04rem, 1.45vw, 1.24rem); color: var(--muted); }
.accent { color: var(--orange); }
.section { padding: 104px 0; }
.section-sand { background: var(--sand); }
.section-dark { color: var(--white); background: var(--ink); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.button:hover { background: var(--orange-dark); transform: translateY(-2px); }
.button-dark { background: var(--ink); }
.button-dark:hover { background: #000; }
.button-ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(7px);
}
.button-ghost:hover { border-color: var(--white); background: rgba(0, 0, 0, 0.3); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { color: var(--orange-dark); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  color: var(--white);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(13, 11, 9, 0.76), rgba(13, 11, 9, 0));
  pointer-events: none;
}
.nav-wrap {
  width: min(calc(100% - 48px), 1320px);
  min-height: 98px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img {
  width: 124px;
  height: auto;
  filter: brightness(0) invert(1);
}
.main-nav { display: flex; align-items: center; gap: 25px; }
.main-nav > a:not(.button) {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.main-nav > a:not(.button):hover { color: #ffd0ae; }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0,0,0,.2);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
}
.hero-media,
.hero-media::after { position: absolute; inset: 0; }
.hero-media { z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  opacity: 0; transition: opacity .8s ease;
}
.hero-video.is-playing { opacity: 1; }
.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 12, 10, 0.92) 0%, rgba(14, 12, 10, 0.66) 43%, rgba(14, 12, 10, 0.18) 73%, rgba(14, 12, 10, 0.1) 100%),
    linear-gradient(to top, rgba(14, 12, 10, 0.76) 0%, transparent 48%);
}
.hero-content { padding: 168px 0 82px; }
.hero-copy { max-width: 720px; }
.hero h1 { max-width: 13.5ch; color: var(--white); }
.hero .lead { max-width: 65ch; margin-top: 24px; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-note { margin-top: 18px; color: rgba(255,255,255,.66); font-size: 0.8rem; }
.hero-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(520px, 42vw);
  padding: 20px 32px;
  border-left: 1px solid rgba(255,255,255,.2);
  background: rgba(18,15,12,.72);
  backdrop-filter: blur(12px);
}
.hero-strip strong { display: block; color: var(--orange); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-strip span { display: block; margin-top: 4px; font-size: .88rem; color: rgba(255,255,255,.8); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
.intro-copy h2 { max-width: 11ch; }
.intro-copy .lead { max-width: 59ch; margin-top: 25px; }
.fit-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.fit-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.fit-item b { color: var(--orange); font-size: .82rem; }
.fit-item h3 { margin-bottom: 7px; letter-spacing: -.018em; }
.fit-item p { color: var(--muted); }

.method-head {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 54px;
}
.method-head h2 { max-width: 12ch; }
.method-head .lead { max-width: 54ch; }
.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 28px;
}
.method-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.method-image img { width: 100%; height: 100%; object-fit: cover; }
.method-image figcaption {
  position: absolute;
  inset: auto 20px 20px;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(20,17,13,.78);
  font-size: .8rem;
  backdrop-filter: blur(8px);
}
.method-steps { display: grid; gap: 12px; }
.method-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.74);
}
.method-step > span { color: var(--orange); font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.method-step h3 { margin-bottom: 7px; }
.method-step p { color: var(--muted); font-size: .93rem; }

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.scope-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}
.scope-card h3 { margin-bottom: 22px; }
.scope-card ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.scope-card li { position: relative; padding-left: 24px; color: rgba(255,255,255,.74); }
.scope-card li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.scope-card.scope-neutral li::before { content: "—"; color: rgba(255,255,255,.5); }

.process-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.process-head h2 { max-width: 12ch; }
.process-list { counter-reset: process; border-top: 1px solid var(--line); }
.process-item {
  counter-increment: process;
  display: grid;
  grid-template-columns: 64px minmax(190px,.75fr) 1.35fr;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.process-item::before {
  content: counter(process, decimal-leading-zero);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.process-item p { color: var(--muted); }
.process-callout {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 38px;
  padding: 24px;
  border-radius: 14px;
  background: var(--sand);
}
.process-callout img { width: 180px; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.process-callout h3 { margin-bottom: 6px; }
.process-callout p { color: var(--muted); }

.leadership-head { max-width: 740px; margin-bottom: 52px; }
.leadership-head .lead { margin-top: 20px; }
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.leader {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.leader img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.leader:first-child img { object-position: center 38%; }
.leader-body { padding: 30px; }
.leader-role { margin: 8px 0 16px; color: var(--orange-dark); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.leader-body p:last-child { color: var(--muted); }
.founder-quote {
  margin-top: 28px;
  padding: 28px 0 0 30px;
  border-left: 3px solid var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.4;
}

.candidate-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange);
}
.candidate-panel h2 { max-width: 17ch; color: var(--ink); }
.candidate-panel p { max-width: 62ch; margin-top: 14px; color: rgba(25,23,20,.74); }

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(48px, 8vw, 100px);
}
.faq-heading { position: sticky; top: 32px; align-self: start; }
.faq-heading h2 { max-width: 10ch; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  position: relative;
  padding: 22px 44px 22px 0;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 18px; color: var(--orange); font-size: 1.55rem; font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { padding: 0 44px 22px 0; color: var(--muted); }

.contact { background: var(--orange); }
.contact-shell {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(44px, 7vw, 90px);
  align-items: start;
}
.contact-copy h2 { max-width: 11ch; }
.contact-copy > p:not(.section-number) { max-width: 48ch; margin-top: 20px; color: rgba(25,23,20,.72); }
.contact-points { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; font-size: .82rem; font-weight: 800; }
.contact-form { padding: clamp(26px, 4vw, 42px); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; font-size: .8rem; font-weight: 800; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc7bd;
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}
.contact-form textarea { min-height: 112px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { outline: 3px solid rgba(244,121,32,.25); border-color: var(--orange); }
.consent { grid-template-columns: 20px 1fr; gap: 10px !important; align-items: start; font-weight: 500 !important; line-height: 1.4; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; }
.consent a { color: var(--orange-dark); }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-status { min-height: 24px; margin-top: 12px; font-size: .86rem; font-weight: 700; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

.site-footer { padding: 38px 0 26px; color: rgba(255,255,255,.72); background: #0f0d0b; }
.footer-top { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-top img { width: 126px; filter: brightness(0) invert(1); }
.footer-top p { color: var(--orange); font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; font-size: .78rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--orange); }

.subpage-header { position: static; color: var(--white); background: var(--ink); }
.subpage-header::after { display: none; }
.page-hero { padding: 88px 0 76px; color: var(--white); background: var(--ink); }
.page-hero h1 { max-width: 14ch; }
.page-hero .lead { max-width: 68ch; margin-top: 20px; color: rgba(255,255,255,.72); }
.page-content { padding: 82px 0 110px; }
.content-grid { display: grid; grid-template-columns: minmax(0,.7fr) minmax(0,1.3fr); gap: 70px; }
.content-aside { position: sticky; top: 24px; align-self: start; }
.content-aside nav { display: grid; gap: 8px; }
.content-aside a { padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 700; text-decoration: none; }
.content-aside a:hover { color: var(--orange-dark); }
.article-stack { display: grid; gap: 52px; }
.article-section { scroll-margin-top: 20px; }
.article-section h2 { margin-bottom: 18px; font-size: clamp(1.7rem,3vw,2.7rem); }
.article-section h3 { margin: 28px 0 10px; }
.article-section p + p { margin-top: 14px; }
.article-section ul, .article-section ol { display: grid; gap: 10px; padding-left: 22px; }
.checklist { padding: 0; list-style: none; }
.checklist li { position: relative; padding: 16px 16px 16px 46px; border-bottom: 1px solid var(--line); }
.checklist li::before { content: "□"; position: absolute; left: 12px; top: 14px; color: var(--orange); font-size: 1.3rem; }
.notice { padding: 22px 24px; border-left: 4px solid var(--orange); border-radius: 0 10px 10px 0; background: var(--sand); }
.notice strong { display: block; margin-bottom: 5px; }
.legal-copy { max-width: 820px; }
.legal-copy h2 { margin: 42px 0 12px; font-size: 1.45rem; letter-spacing: -.02em; }
.legal-copy p + p, .legal-copy ul + p { margin-top: 12px; }
.legal-copy ul { display: grid; gap: 8px; }

.status-page { min-height: 100vh; display: grid; place-items: center; padding: 28px; background: var(--sand); }
.status-card { width: min(680px,100%); padding: clamp(32px,6vw,64px); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.status-card img { width: 132px; margin-bottom: 34px; }
.status-card h1 { font-size: clamp(2rem,5vw,3.6rem); }
.status-card p { margin: 18px 0 30px; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .main-nav { gap: 16px; }
  .main-nav > a:not(.button) { font-size: .8rem; }
  .hero-strip { display: none; }
  .intro-grid, .method-head, .faq-grid, .contact-shell, .content-grid { grid-template-columns: 1fr; }
  .method-layout { grid-template-columns: 1fr; }
  .method-image { min-height: 480px; }
  .faq-heading, .content-aside { position: static; }
  .content-aside nav { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 24px; }
}

@media (max-width: 820px) {
  .nav-wrap { width: min(calc(100% - 32px), 1320px); min-height: 82px; }
  .brand img { width: 116px; }
  .menu-button { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
    padding: 100px 30px 44px;
    background: rgba(20,17,13,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .site-header.nav-open .main-nav { z-index: 30; opacity: 1; visibility: visible; transform: none; }
  .site-header.nav-open .menu-button { position: relative; z-index: 31; }
  .main-nav > a:not(.button) { font-size: 1.35rem; }
  .scope-grid, .leadership-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 48px 1fr; }
  .process-item p { grid-column: 2; }
  .process-callout { grid-template-columns: 130px 1fr; }
  .process-callout img { width: 130px; }
  .process-callout .button { grid-column: 1 / -1; }
  .candidate-panel { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.4rem, 12vw, 3.7rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.75rem); }
  .hero { min-height: 90svh; }
  .hero-content { padding: 132px 0 48px; }
  .hero-media img,
  .hero-video { object-position: 58% center; }
  .hero-media::after {
    background:
      linear-gradient(to right, rgba(14,12,10,.88), rgba(14,12,10,.36)),
      linear-gradient(to top, rgba(14,12,10,.94) 0%, rgba(14,12,10,.18) 66%);
  }
  .hero .lead { font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .intro-grid { gap: 42px; }
  .method-head { gap: 22px; margin-bottom: 34px; }
  .method-layout { gap: 16px; }
  .method-image { min-height: 360px; margin: 0; }
  .method-step { grid-template-columns: 38px 1fr; padding: 20px 18px; }
  .process-head { align-items: flex-start; flex-direction: column; }
  .process-item { grid-template-columns: 36px 1fr; gap: 12px; }
  .process-callout { grid-template-columns: 1fr; }
  .process-callout img { width: 100%; aspect-ratio: 16/9; }
  .leader-body { padding: 24px; }
  .candidate-panel { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .content-aside nav { grid-template-columns: 1fr; }
  .page-hero { padding: 64px 0 56px; }
  .page-content { padding: 62px 0 86px; }
  .subpage-header .nav-wrap { gap: 12px; }
  .subpage-header .button { min-height: 44px; padding: 10px 12px; font-size: .76rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
