:root {
  --paper: #f8f6f1;
  --paper-cool: #f1f3f1;
  --paper-deep: #e7dfd1;
  --white: #fffefa;
  --ink: #151617;
  --ink-2: #22272c;
  --muted: #686963;
  --line: #ddd7cb;
  --line-dark: rgba(255, 253, 250, 0.17);
  --blue: #315f74;
  --blue-bright: #376f89;
  --brass: #9a7537;
  --sage: #5b7166;
  --clay: #9c604a;
  --dark: #17382e;
  --shadow: 0 24px 70px rgba(21, 22, 23, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 810px;
  font-size: clamp(50px, 6.1vw, 86px);
}

h2 {
  font-size: clamp(34px, 4.6vw, 64px);
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 68px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 250, 0.92);
  border-bottom: 1px solid rgba(21, 22, 23, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(21, 22, 23, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 780;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

nav a,
footer a,
.project-card a,
.pathway-grid a,
.lab-feature a,
.choice-grid a {
  text-decoration: none;
}

nav a,
footer a,
.start-secondary a,
.start-legal a,
.hub-actions a,
.hub-legal a,
.quickstart-legal a,
.intake-grid a,
.quiet-link,
.contact-fallback a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

footer a,
.start-legal a,
.hub-legal a,
.quickstart-legal a {
  padding-left: 8px;
  padding-right: 8px;
}

nav a:hover,
footer a:hover,
.pathway-grid a:hover,
.choice-grid a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 780;
  text-decoration: none;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta,
.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.button.text-link {
  padding-left: 0;
  padding-right: 0;
  color: var(--blue);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.section,
.hero {
  padding-left: clamp(20px, 6vw, 84px);
  padding-right: clamp(20px, 6vw, 84px);
}

.section {
  padding-top: 92px;
  padding-bottom: 92px;
}

[id] {
  scroll-margin-top: 92px;
}

.authority-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.62fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  min-height: calc(92vh - 68px);
  padding-top: 76px;
  padding-bottom: 72px;
  background:
    linear-gradient(90deg, rgba(49, 95, 116, 0.04), rgba(154, 117, 55, 0.06) 48%, rgba(255, 253, 250, 0)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-copy-block {
  max-width: 940px;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: clamp(18px, 1.65vw, 22px);
}

.proof-line {
  max-width: 650px;
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--brass);
  color: var(--muted);
  font-size: 16px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-evidence {
  display: grid;
  gap: 0;
  align-self: stretch;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(21, 22, 23, 0.12);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.72);
  box-shadow: 0 22px 60px rgba(21, 22, 23, 0.08);
}

.portrait-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.hero-portrait {
  aspect-ratio: 1 / 0.88;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  object-position: center 34%;
  box-shadow: 0 16px 40px rgba(21, 22, 23, 0.08);
}

.panel-note {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.panel-label {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-note h2 {
  max-width: 420px;
  font-size: clamp(34px, 3.5vw, 50px);
}

.panel-note p {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.evidence-list {
  display: grid;
  gap: 0;
  padding-top: 12px;
}

.evidence-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 5px 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.evidence-list article:first-child {
  border-top: 0;
}

.evidence-list span {
  grid-row: span 2;
  color: var(--brass);
  font-size: 13px;
  font-weight: 860;
}

.evidence-list strong {
  font-size: 15px;
  text-transform: uppercase;
}

.evidence-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.cred-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0 clamp(20px, 6vw, 84px);
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.cred-band span {
  display: grid;
  align-items: center;
  min-height: 74px;
  padding: 18px 18px;
  border-left: 1px solid var(--line);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.cred-band span:first-child {
  border-left: 0;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 38px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.62fr);
  gap: 44px;
  align-items: end;
}

.split-heading p,
.thesis-copy p,
.proof-intro p,
.topics-intro p,
.bio p,
.book p {
  color: var(--muted);
  font-size: 19px;
}

.thesis {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 74px);
  background: var(--white);
}

.thesis > *,
.bio > * {
  max-width: var(--max);
}

.thesis-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.thesis-copy p {
  margin: 0;
  padding-top: 20px;
  border-top: 2px solid var(--line);
}

.audiences {
  background: var(--paper-cool);
}

.audience-grid,
.pathway-grid,
.topic-list,
.fit-grid,
.deliverable-grid,
.resource-grid,
.notes-grid,
.choice-grid,
.step-grid,
.artifact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.audience-grid article,
.pathway-grid article,
.topic-list article,
.fit-grid article,
.deliverable-grid article,
.resource-grid article,
.notes-grid article,
.choice-grid article,
.step-grid article,
.artifact-grid article,
.faq-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(21, 22, 23, 0.05);
}

.audience-grid p,
.pathway-grid p,
.pathway-grid dd,
.topic-list p,
.lab-feature p,
.lab-list p,
.proof-grid p,
.fit-grid p,
.deliverable-grid p,
.workflow-copy p,
.path-list p,
.support-rows span,
.resource-grid p,
.notes-grid p,
.choice-grid p,
.step-grid p,
.artifact-grid p,
.faq-grid p,
.event-details p,
.event-details li {
  margin: 0;
  color: var(--muted);
}

.starting-point {
  background: var(--white);
}

.choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid article {
  display: grid;
  align-content: start;
  min-height: 320px;
}

.choice-grid a {
  align-self: end;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 820;
}

.proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
  background: var(--dark);
  color: var(--white);
}

.proof .eyebrow {
  color: #d9b16b;
}

.proof-intro {
  position: sticky;
  top: 108px;
}

.proof-intro p {
  color: rgba(255, 253, 250, 0.7);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.04);
}

.proof-grid p {
  color: rgba(255, 253, 250, 0.68);
}

.proof-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.proof-feature img {
  width: 100%;
  border-radius: 8px;
}

.proof-feature h3 {
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.3vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.status,
.project-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.proof .status {
  color: #d9b16b;
}

.active-work {
  background: var(--white);
}

.lab-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.lab-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(21, 22, 23, 0.09);
}

.lab-feature img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.lab-feature div {
  padding: 26px;
}

.lab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lab-list article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pathways {
  background: var(--paper);
}

.pathway-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pathway-grid article {
  display: grid;
  align-content: start;
  min-height: 480px;
}

.path-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 840;
}

.path-summary {
  min-height: 58px;
  font-size: 19px;
}

.pathway-grid dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
}

.pathway-grid dt {
  color: var(--ink);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pathway-grid dd {
  margin: 0 0 10px;
}

.pathway-grid a {
  align-self: end;
  color: var(--blue);
  font-weight: 820;
}

.topics {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  background: var(--paper-cool);
}

.event-fit {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 50px;
  align-items: start;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.event-details {
  display: grid;
  gap: 24px;
  align-content: start;
}

.event-details p {
  font-size: 20px;
}

.event-details ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.topics-intro {
  position: sticky;
  top: 108px;
  align-self: start;
}

.topic-list {
  grid-template-columns: 1fr;
}

.topic-list article {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  box-shadow: none;
}

.bio {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 54px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.bio p {
  margin: 0;
  align-self: end;
}

.inquiry-steps {
  background: var(--paper-cool);
}

.forwardable {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.forwardable-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: var(--max);
  margin: -10px auto 0;
}

.proof-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 18px auto 0;
}

.proof-dossier-image {
  display: block;
  width: min(760px, 100%);
  margin: 0 auto 12px;
}

.proof-signal-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.proof-signal-grid p {
  margin: 0;
  color: var(--muted);
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-grid article {
  min-height: 250px;
}

.step-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 840;
}

.book {
  display: grid;
  place-items: center;
  min-height: 440px;
  text-align: center;
  background: #dce6e4;
  border-top: 1px solid rgba(21, 22, 23, 0.1);
}

.book h2,
.book p {
  max-width: 860px;
}

.book p {
  margin: 22px 0 28px;
}

.contact-fallback {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.book .contact-fallback,
.overview-trust .contact-fallback {
  margin: 18px 0 0;
}

.quiet-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 820;
  text-decoration: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 6vw, 84px);
  background: var(--dark);
  color: rgba(255, 253, 250, 0.82);
}

footer p {
  margin: 0;
}

footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hub-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 0%, rgba(154, 117, 55, 0.1), transparent 30%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.hub-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px) 20px 46px;
}

.hub-hero {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.78);
  box-shadow: var(--shadow);
}

.hub-profile {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  align-items: center;
}

.hub-profile img,
.hub-mark {
  width: 132px;
  aspect-ratio: 1;
  border: 1px solid rgba(21, 22, 23, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(21, 22, 23, 0.1);
}

.hub-profile img {
  object-fit: cover;
}

.hub-mark {
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  font-size: 34px;
  font-weight: 820;
}

.hub-profile h1 {
  max-width: 520px;
  margin-top: 10px;
  font-size: clamp(40px, 7.5vw, 68px);
}

.hub-profile p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 19px;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hub-actions a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.hub-primary,
.hub-proof {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hub-feature,
.hub-card,
.hub-proof a {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
}

.hub-feature {
  border-color: rgba(49, 95, 116, 0.24);
  background:
    linear-gradient(135deg, rgba(49, 95, 116, 0.09), rgba(154, 117, 55, 0.08)),
    var(--paper);
}

.hub-feature strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.hub-feature > span:last-child {
  color: var(--ink-2);
  font-size: 18px;
}

.hub-card span,
.hub-proof span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hub-card strong,
.hub-proof strong {
  max-width: 560px;
  color: var(--ink-2);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}

.hub-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hub-proof a {
  min-height: 138px;
}

.hub-note {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(21, 22, 23, 0.14);
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
}

.hub-note .eyebrow {
  color: rgba(255, 254, 250, 0.68);
}

.hub-note p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 254, 250, 0.82);
  font-size: 19px;
}

.hub-note .button {
  justify-self: start;
  background: var(--white);
  color: var(--ink);
}

.start-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% -8%, rgba(154, 117, 55, 0.13), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(91, 113, 102, 0.15), transparent 30%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.start-shell {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 42px) 18px calc(72px + env(safe-area-inset-bottom));
}

.start-card,
.start-route,
.start-secondary {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.84);
  box-shadow: 0 18px 54px rgba(21, 22, 23, 0.08);
}

.start-identity {
  padding: clamp(18px, 4vw, 28px);
}

.start-profile {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 17px;
  align-items: center;
}

.start-profile img {
  width: 104px;
  aspect-ratio: 1;
  border: 1px solid rgba(21, 22, 23, 0.18);
  border-radius: 10px;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: 0 14px 34px rgba(21, 22, 23, 0.11);
}

.start-profile h1 {
  max-width: 500px;
  font-size: clamp(34px, 6.4vw, 52px);
}

.start-profile p:not(.eyebrow) {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: clamp(15px, 2.3vw, 17px);
  line-height: 1.42;
}

.start-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.start-proof span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 10px 8px;
  color: var(--dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.start-proof span + span {
  border-left: 1px solid var(--line);
}

.start-trust-line {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.start-routes {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.start-section-head {
  padding: 2px 4px 0;
}

.start-section-head h2 {
  max-width: 520px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 4.8vw, 30px);
  font-weight: 820;
  line-height: 1.08;
}

.start-route {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.start-route:hover {
  border-color: rgba(23, 56, 46, 0.34);
  box-shadow: 0 22px 58px rgba(21, 22, 23, 0.1);
  transform: translateY(-1px);
}

.start-route strong {
  max-width: 540px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 5.2vw, 32px);
  font-weight: 500;
  line-height: 1;
}

.start-route > span:not(.status) {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.38;
}

.start-route small {
  color: var(--brass);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.start-route em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 2px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
  font-size: 15px;
  font-style: normal;
  font-weight: 820;
  line-height: 1.1;
}

.start-route em::after {
  content: " \2192";
  margin-left: 4px;
}

.start-route.route-primary {
  border-color: rgba(23, 56, 46, 0.52);
  background:
    linear-gradient(135deg, rgba(23, 56, 46, 0.96), rgba(44, 58, 46, 0.94)),
    var(--dark);
  color: var(--white);
}

.start-route.route-primary strong {
  color: var(--white);
}

.start-route.route-primary > span:not(.status) {
  color: rgba(255, 254, 250, 0.8);
}

.start-route.route-primary .status,
.start-route.route-primary small {
  color: rgba(255, 254, 250, 0.72);
}

.start-route.route-primary em {
  background: var(--white);
  color: var(--dark);
}

.start-secondary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 18px 20px;
  box-shadow: none;
}

.start-secondary p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 680;
}

.start-secondary div {
  display: flex;
  gap: 16px;
  align-items: center;
}

.start-secondary a {
  color: var(--blue);
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
}

.start-legal,
.hub-legal,
.quickstart-legal {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 254, 250, 0.72);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.start-legal p,
.hub-legal p,
.quickstart-legal p {
  margin: 0;
}

.start-legal div,
.hub-legal div,
.quickstart-legal div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.start-legal a,
.hub-legal a,
.quickstart-legal a {
  color: var(--blue);
  font-weight: 820;
  text-decoration: none;
}

.start-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.start-visuals article {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 254, 250, 0.84);
  box-shadow: 0 12px 34px rgba(21, 22, 23, 0.06);
}

.start-visuals img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.start-visuals span {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 9px 8px;
  color: var(--dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 860px) {
  .start-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: min(100%, 1180px);
    padding-top: 48px;
  }

  .start-identity {
    position: sticky;
    top: 24px;
    align-self: start;
    min-height: 620px;
    padding: 34px 32px;
  }

  .start-profile {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .start-profile img {
    width: min(100%, 320px);
    aspect-ratio: 0.86;
    border-radius: 14px;
    justify-self: start;
  }

  .start-profile h1 {
    max-width: 440px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.98;
  }

  .start-profile p:not(.eyebrow) {
    max-width: 420px;
    font-size: 16px;
    line-height: 1.45;
  }

  .start-trust-line {
    margin-top: 28px;
    padding-top: 18px;
  }

  .start-routes {
    margin-top: 0;
  }

  .start-secondary {
    grid-column: 2;
  }
}

.offer-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 86px clamp(20px, 6vw, 84px) 58px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.offer-hero-copy {
  max-width: 760px;
}

.offer-hero h1 {
  color: var(--ink);
  font-size: clamp(44px, 5.6vw, 78px);
}

.offer-hero p {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.offer-hero .engagement-note,
.engagement-note {
  max-width: 650px;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 3px solid var(--brass);
  color: var(--muted);
  font-size: 16px;
}

.offer-hero .button.secondary {
  border-color: var(--line);
  background: var(--paper);
}

.offer-hero img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-proof-strip {
  background: var(--paper);
}

.speaking-visuals {
  background: var(--white);
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.visual-proof-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(21, 22, 23, 0.07);
}

.speaking-visuals .visual-proof-grid article {
  background: var(--paper);
}

.visual-proof-grid img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
}

.visual-proof-grid div {
  padding: 22px;
}

.visual-proof-grid h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.speaking-portrait {
  max-height: 620px;
  aspect-ratio: 0.92;
  object-position: center 36%;
}

.speaking-hero {
  background:
    linear-gradient(90deg, rgba(91, 113, 102, 0.08), rgba(154, 117, 55, 0.08)),
    var(--white);
}

.intake-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.42fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: end;
  padding: 110px clamp(20px, 6vw, 84px) 74px;
  background:
    linear-gradient(90deg, rgba(49, 95, 116, 0.05), rgba(154, 117, 55, 0.06)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.intake-hero-copy {
  max-width: 860px;
}

.intake-hero h1 {
  font-size: clamp(46px, 6vw, 82px);
}

.intake-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: clamp(18px, 1.8vw, 22px);
}

.intake-side-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.72);
  box-shadow: 0 18px 50px rgba(21, 22, 23, 0.08);
}

.intake-side-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.intake-side-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.intake-side-note p {
  margin: 16px 0 0;
  color: var(--muted);
}

.intake-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.intake-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.intake-grid h3 {
  margin-top: 16px;
  font-size: 26px;
}

.intake-grid p {
  color: var(--muted);
}

.intake-grid ul {
  margin: 4px 0 24px;
  padding-left: 20px;
  color: var(--ink-2);
}

.intake-grid a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 820;
  text-decoration: none;
}

.intake-process {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) 1fr;
  gap: clamp(30px, 5vw, 70px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intake-fallback {
  background: var(--paper);
}

.safety-disclosure {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.safety-disclosure h2,
.safety-disclosure p {
  max-width: 850px;
}

.safety-disclosure p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.legal-hero {
  display: grid;
  gap: 20px;
  padding: 110px clamp(20px, 6vw, 84px) 74px;
  background:
    linear-gradient(90deg, rgba(49, 95, 116, 0.05), rgba(154, 117, 55, 0.06)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1,
.legal-hero p {
  max-width: 980px;
}

.legal-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
}

.legal-hero p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: clamp(18px, 1.8vw, 22px);
}

.legal-updated {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}

.legal-content article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(21, 22, 23, 0.05);
}

.legal-content h2 {
  max-width: 820px;
  font-size: clamp(28px, 3vw, 42px);
}

.legal-content p {
  max-width: 900px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.legal-content a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--blue);
  font-weight: 820;
}

.offer-orientation {
  background: var(--paper-cool);
}

.fit-grid,
.deliverable-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-path {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 50px;
  align-items: start;
  background: var(--dark);
  color: var(--white);
}

.workflow-path .eyebrow {
  color: #d9b16b;
}

.workflow-copy {
  position: sticky;
  top: 108px;
}

.workflow-copy p {
  margin-top: 22px;
  color: rgba(255, 253, 250, 0.76);
  font-size: 19px;
}

.path-list {
  display: grid;
  gap: 16px;
}

.path-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px 22px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.05);
}

.path-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d9b16b;
  color: var(--ink);
  font-size: 13px;
  font-weight: 880;
}

.path-list p {
  grid-column: 2;
  color: rgba(255, 253, 250, 0.72);
}

.deliverables {
  background: var(--white);
}

.support-model {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: start;
  background: var(--paper-cool);
}

.support-rows {
  display: grid;
  gap: 12px;
}

.support-rows article {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px;
  border-top: 1px solid rgba(21, 22, 23, 0.16);
}

.support-rows strong {
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
}

.artifact-proof {
  background: var(--white);
}

.artifact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.artifact-grid article {
  min-height: 230px;
}

.offer-proof {
  border-top: 1px solid var(--line);
}

.offer-proof.proof {
  background: var(--white);
  color: var(--ink);
}

.offer-proof .proof-copy p,
.offer-proof .proof-copy li {
  color: var(--muted);
}

.offer-proof .proof-copy ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding-left: 20px;
}

.proof-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq {
  background: var(--paper);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: start;
  background: var(--dark);
  color: var(--white);
}

.trust-section .eyebrow {
  color: #d9b16b;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.05);
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 253, 250, 0.72);
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid article {
  min-height: 210px;
}

.overview-sheet {
  max-width: 1120px;
  margin: 54px auto;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.overview-kicker {
  width: fit-content;
  margin-bottom: 26px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overview-head {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--line);
}

.overview-portrait {
  aspect-ratio: 0.9;
  object-position: center 34%;
  border: 1px solid var(--line);
}

.overview-head h1 {
  font-size: clamp(48px, 7vw, 82px);
}

.overview-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.overview-block {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.overview-block h2 {
  max-width: 780px;
  font-size: clamp(30px, 4vw, 50px);
}

.overview-block p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.overview-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.overview-grid p {
  margin: 0;
  color: var(--muted);
}

.overview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--ink-2);
}

.overview-links a {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 820;
  text-decoration: none;
}

.overview-trust {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 14px;
  }

  nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-cta {
    justify-self: end;
  }

  .authority-hero,
  .thesis,
  .proof,
  .lab-layout,
  .topics,
  .event-fit,
  .bio,
  .offer-hero,
  .intake-hero,
  .intake-process,
  .workflow-path,
  .support-model,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .proof-intro,
  .topics-intro,
  .workflow-copy {
    position: static;
  }

  .cred-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audience-grid,
  .lab-list,
  .artifact-grid,
  .faq-grid,
  .trust-grid,
  .proof-signal-grid,
  .visual-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-heading,
  .proof-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: auto;
  }

  .brand {
    font-size: 17px;
  }

  nav {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    text-align: left;
    white-space: nowrap;
    scrollbar-width: none;
    font-size: 12px;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a[href="#proof"],
  nav a[href="/#proof"],
  nav a[href="#active-work"],
  nav a[href="/#active-work"] {
    display: none;
  }

  .header-cta {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .authority-hero {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(38px, 11.6vw, 52px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button.text-link {
    justify-content: flex-start;
    min-height: 32px;
  }

  .cred-band,
  .audience-grid,
  .proof-grid,
  .lab-list,
  .pathway-grid,
  .topic-list,
  .fit-grid,
  .deliverable-grid,
  .resource-grid,
  .notes-grid,
  .choice-grid,
  .intake-grid,
  .step-grid,
  .artifact-grid,
  .faq-grid,
  .trust-grid,
  .proof-signal-grid,
  .overview-grid,
  .overview-list,
  .visual-proof-grid {
    grid-template-columns: 1fr;
  }

  .cred-band span {
    min-height: 58px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cred-band span:first-child {
    border-top: 0;
  }

  .proof-feature,
  .topic-list article,
  .path-list article,
  .support-rows article {
    grid-template-columns: 1fr;
  }

  .path-list p {
    grid-column: 1;
  }

  .pathway-grid article {
    min-height: auto;
  }

  .path-summary {
    min-height: auto;
  }

  .audience-grid article,
  .lab-list article,
  .pathway-grid article,
  .topic-list article,
  .fit-grid article,
  .deliverable-grid article,
  .resource-grid article,
  .notes-grid article,
  .choice-grid article,
  .intake-grid article,
  .step-grid article,
  .artifact-grid article,
  .faq-grid article {
    min-height: auto;
  }

  .offer-hero {
    min-height: auto;
    padding: 52px 20px 58px;
  }

  .intake-hero {
    padding: 52px 20px 58px;
  }

  .hub-shell {
    padding: 16px 16px 36px;
  }

  .hub-hero {
    gap: 18px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 12px 34px rgba(21, 22, 23, 0.08);
  }

  .hub-profile {
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: start;
  }

  .hub-profile img,
  .hub-mark {
    width: 76px;
  }

  .hub-mark {
    font-size: 22px;
  }

  .hub-profile h1 {
    margin-top: 4px;
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 1.02;
  }

  .hub-profile p:not(.eyebrow) {
    grid-column: 1 / -1;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.46;
  }

  .hub-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hub-actions a {
    display: grid;
    place-items: center;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .hub-proof {
    grid-template-columns: 1fr;
  }

  .hub-proof a {
    min-height: 0;
  }

  .hub-feature,
  .hub-card,
  .hub-proof a,
  .hub-note {
    padding: 20px;
    border-radius: 10px;
  }

  .hub-primary,
  .hub-proof {
    gap: 16px;
    margin-top: 18px;
  }

  .hub-feature {
    background: var(--dark);
    color: var(--white);
  }

  .hub-feature strong {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 23px;
    font-weight: 820;
    line-height: 1.15;
  }

  .hub-feature .status {
    color: rgba(255, 254, 250, 0.7);
  }

  .hub-feature > span:last-child {
    color: rgba(255, 254, 250, 0.8);
    font-size: 15px;
    line-height: 1.45;
  }

  .hub-card strong,
  .hub-proof strong {
    font-size: 17px;
    line-height: 1.35;
  }

  .hub-card span,
  .hub-proof span {
    font-size: 11px;
    line-height: 1.25;
  }

  .hub-note p:not(.eyebrow) {
    font-size: 16px;
  }

  .start-shell {
    padding: 16px 16px calc(120px + env(safe-area-inset-bottom));
  }

  .start-card,
  .start-route,
  .start-secondary {
    border-radius: 10px;
  }

  .start-identity {
    padding: 18px;
  }

  .start-profile {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .start-profile img {
    width: 100%;
    aspect-ratio: 0.93;
    border-radius: 12px;
    object-position: center 28%;
  }

  .start-profile h1 {
    margin-top: 2px;
    font-size: clamp(31px, 8.6vw, 38px);
    line-height: 1;
  }

  .start-profile p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 15px;
  }

  .start-proof {
    margin-top: 18px;
  }

  .start-proof span {
    min-height: 50px;
    padding: 10px 8px;
    font-size: 10px;
  }

  .start-routes {
    gap: 12px;
    margin-top: 16px;
  }

  .start-route {
    gap: 8px;
    padding: 20px;
  }

  .start-route strong {
    font-size: clamp(23px, 6.4vw, 28px);
  }

  .start-route > span:not(.status) {
    font-size: 14px;
    line-height: 1.38;
  }

  .start-route em {
    width: 100%;
    min-height: 44px;
    margin-top: 2px;
    font-size: 14px;
  }

  .start-route.route-primary em {
    order: 3;
    margin-top: 4px;
  }

  .start-route.route-primary > span:not(.status) {
    order: 4;
  }

  .start-route.route-primary small {
    order: 5;
  }

  .start-visuals {
    gap: 10px;
    margin-top: 16px;
  }

  .start-visuals span {
    min-height: 56px;
    padding: 8px 4px;
    font-size: 11px;
  }

  .start-legal {
    font-size: 12px;
  }

  .legal-hero {
    padding: 52px 20px 58px;
  }

  .legal-content article {
    padding: 22px;
  }

  .start-secondary {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
  }

  .overview-sheet {
    margin: 24px 20px;
  }

  .overview-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .overview-portrait {
    width: 132px;
  }

  .overview-head .button {
    grid-column: 1 / -1;
  }

  footer {
    flex-direction: column;
  }

  footer div {
    flex-wrap: wrap;
  }
}
