: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: #181714;
  --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;
}

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: 24px;
  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: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);
}

.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: #201f1b;
  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: 0 auto;
}

.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;
  gap: 18px;
}

.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);
}

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

.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: #1b1a17;
  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: #1f2421;
  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: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 2px 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,
  .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 {
    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: 18px;
    width: 100%;
    overflow-x: auto;
    text-align: left;
    white-space: nowrap;
  }

  .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,
  .step-grid,
  .artifact-grid,
  .faq-grid,
  .trust-grid,
  .proof-signal-grid,
  .overview-grid,
  .overview-list {
    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,
  .step-grid article,
  .artifact-grid article,
  .faq-grid article {
    min-height: auto;
  }

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

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

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

  footer {
    flex-direction: column;
  }

  footer div {
    flex-wrap: wrap;
  }
}
