:root {
  color-scheme: light;
  --ink: #141414;
  --ink-2: #26211d;
  --muted: #6e706d;
  --soft: #f5f6f4;
  --soft-2: #ebece8;
  --line: rgba(20, 20, 20, 0.14);
  --dark: #111312;
  --dark-2: #1a1f1c;
  --green: #0d4f3a;
  --green-2: #0f6b4d;
  --cobalt: #2457c5;
  --copper: #b8723d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(20, 20, 20, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 19, 18, 0.82), rgba(17, 19, 18, 0.38));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  font-size: 13px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
}

.nav-cta svg,
.button svg,
.service-card svg,
.insight svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.button {
  padding: 0 24px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 45px rgba(13, 79, 58, 0.26);
}

.button.primary:hover {
  background: var(--green-2);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  min-height: min(860px, 92vh);
  padding: 148px clamp(22px, 5vw, 72px) 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.98) 0%, rgba(17, 19, 18, 0.94) 55%, rgba(17, 19, 18, 0.82) 100%),
    radial-gradient(circle at 17% 22%, rgba(36, 87, 197, 0.28), transparent 34%),
    radial-gradient(circle at 60% 74%, rgba(184, 114, 61, 0.18), transparent 30%);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(17, 19, 18, 0.98));
}

.hero-content {
  width: min(790px, 100%);
  color: var(--white);
}

.hero-portrait-wrap {
  width: min(100%, 320px);
  aspect-ratio: 4 / 5;
  margin: 0 0 8px auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  filter: saturate(0.96) contrast(0.98);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero .eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.hero .eyebrow span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(74px, 12vw, 168px);
  line-height: 0.86;
}

.name-line {
  display: inline;
}

.hero-role {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(25px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.role-line {
  display: inline;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signal-band {
  padding: 0 clamp(18px, 4vw, 48px);
  background: var(--dark);
  color: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.signal-grid div {
  min-height: 156px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.signal-grid div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.signal-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

.signal-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.signal-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.section {
  padding: 112px clamp(18px, 4vw, 48px);
}

.section-head {
  width: min(760px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2,
.system-copy h2,
.report-copy h2,
.about-copy h2,
.contact-panel h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(39px, 5vw, 72px);
  line-height: 0.95;
}

.section-head p:not(.kicker),
.system-copy > p,
.authority-copy > p,
.report-copy p,
.about-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
}

.expertise-grid,
.authority-grid,
.method-grid,
.insight-grid,
.audience-grid,
.leverage-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-card,
.authority-card,
.method-block,
.insight,
.audience-card,
.pain-card,
.leverage-card,
.faq-item {
  min-height: 286px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(20, 20, 20, 0.05);
}

.service-card svg,
.insight svg,
.pain-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--green);
}

.service-card h3,
.authority-card h3,
.method-block h3,
.insight h3,
.audience-card h3,
.pain-card h3,
.leverage-card h3,
.faq-item h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-card p,
.authority-card p,
.method-block p,
.insight p,
.audience-card p,
.pain-card p,
.leverage-card p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.authority {
  background:
    linear-gradient(180deg, rgba(245, 246, 244, 0.96), rgba(235, 236, 232, 0.98)),
    var(--soft-2);
}

.authority-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.authority-copy h2 {
  margin-bottom: 20px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(39px, 5vw, 70px);
  font-weight: 400;
  line-height: 0.95;
}

.authority-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.authority-card {
  min-height: auto;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.authority-card span {
  grid-row: span 2;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.authority-card h3 {
  margin-bottom: 8px;
}

.audience {
  background: var(--soft-2);
}

.audience-card {
  position: relative;
  min-height: 270px;
  background: var(--dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.audience-card span,
.leverage-card strong {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.audience-card h3 {
  color: var(--white);
}

.audience-card p {
  color: rgba(255, 255, 255, 0.68);
}

.reality,
.comparison {
  background: var(--white);
}

.reality-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.reality-copy h2 {
  margin-bottom: 20px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(39px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.95;
}

.reality-copy p:not(.kicker) {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
}

.pain-grid {
  display: grid;
  gap: 16px;
}

.pain-card {
  min-height: auto;
  background: var(--soft);
  box-shadow: none;
}

.pain-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 22px;
  color: var(--copper);
}

.visual-section,
.about {
  background: var(--white);
}

.system-layout,
.report-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.system-figure,
.report-image,
.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.system-figure {
  aspect-ratio: 16 / 10;
}

.system-figure img,
.report-image img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--ink-2);
  font-weight: 700;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

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

.leverage {
  background: var(--soft);
}

.leverage-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: var(--max);
  margin: -18px auto 32px;
}

.leverage-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.leverage-flow svg {
  width: 18px;
  height: 18px;
  color: var(--copper);
}

.leverage-card {
  min-height: 310px;
}

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

.method-block {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.method-block span {
  display: inline-flex;
  margin-bottom: 64px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.method-block h3 {
  color: var(--white);
}

.method-block p {
  color: rgba(255, 255, 255, 0.62);
}

.stage {
  background: #101312;
  color: var(--white);
}

.stage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.stage-copy h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(39px, 5vw, 70px);
  font-weight: 400;
  line-height: 0.95;
}

.stage-copy > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.7vw, 19px);
}

.stage .kicker {
  color: var(--copper);
}

.stage-topics {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.stage-topics div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.stage-topics span {
  grid-row: span 2;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.stage-topics strong {
  color: var(--white);
  font-size: 17px;
}

.stage-topics p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.stage-media {
  position: relative;
}

.stage-main {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.stage-main {
  aspect-ratio: 16 / 9;
}

.stage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.insights {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 246, 244, 0.96)),
    var(--soft);
}

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

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

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

.comparison-stack {
  display: grid;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.comparison-row h3 {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 20px;
}

.comparison-row p {
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.comparison-row p:last-child {
  border: 1px solid rgba(13, 79, 58, 0.22);
  background: rgba(13, 79, 58, 0.07);
  color: var(--ink);
}

.comparison-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

.report-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.report-copy h2,
.report-copy .kicker,
.report-copy p {
  color: var(--white);
}

.report-copy .kicker {
  color: var(--copper);
}

.report-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.report-image {
  aspect-ratio: 4 / 3;
}

.about-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.about-photo {
  aspect-ratio: 4 / 5;
}

.profile-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.profile-line span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact {
  padding-top: 96px;
  background:
    linear-gradient(135deg, rgba(13, 79, 58, 0.94), rgba(17, 19, 18, 0.98)),
    var(--dark);
  color: var(--white);
}

.contact-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.06);
}

.contact-panel h2,
.contact-panel .kicker,
.contact-panel p {
  max-width: 790px;
  color: var(--white);
}

.contact-panel .kicker {
  color: rgba(255, 255, 255, 0.7);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin: 30px 0;
}

.cta-steps div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.cta-steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 0.7fr);
  gap: 34px;
  align-items: start;
  padding: 42px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.62);
  background: #0a0b0a;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 14px 0 0;
  max-width: 440px;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.legal-note {
  justify-self: end;
  text-align: right;
}

.has-reveal .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    position: fixed;
    top: 12px;
    right: 14px;
    z-index: 30;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(17, 19, 18, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: 850px;
    padding-top: 118px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-portrait-wrap {
    width: min(210px, 54vw);
    margin: 0 auto 0 0;
    order: -1;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 19, 18, 0.82) 0%, rgba(17, 19, 18, 0.72) 45%, rgba(17, 19, 18, 0.98) 100%),
      radial-gradient(circle at 20% 30%, rgba(36, 87, 197, 0.24), transparent 36%);
  }

  .signal-grid,
  .expertise-grid,
  .authority-layout,
  .authority-grid,
  .audience-grid,
  .method-grid,
  .insight-grid,
  .leverage-grid,
  .faq-list,
  .faq-item,
  .system-layout,
  .stage-layout,
  .report-layout,
  .about-layout,
  .site-footer,
  .reality-layout,
  .comparison-row,
  .cta-steps {
    grid-template-columns: 1fr;
  }

  .signal-grid div,
  .signal-grid div:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .system-layout,
  .authority-layout,
  .stage-layout,
  .report-layout,
  .about-layout {
    gap: 34px;
  }

  .stage-media {
    display: grid;
    gap: 14px;
  }

  .report-image {
    order: 2;
  }

  .report-copy {
    order: 1;
  }

  .about-photo {
    max-width: 440px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .legal-note {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .nav-toggle {
    right: auto;
    left: min(332px, calc(100vw - 58px));
  }

  .brand {
    gap: 9px;
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 800px;
    padding: 102px 18px 52px;
  }

  .hero-portrait-wrap {
    width: min(168px, 46vw);
    margin-bottom: 6px;
  }

  .hero-content {
    width: min(350px, calc(100vw - 36px));
    max-width: min(350px, calc(100vw - 36px));
  }

  .hero .eyebrow {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero .eyebrow span {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(58px, 17vw, 72px);
    line-height: 0.9;
    overflow-wrap: normal;
  }

  .name-line {
    display: block;
  }

  .hero-role {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 31px);
    line-height: 1.04;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .role-line {
    display: block;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: break-word;
  }

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

  .button {
    width: 100%;
    min-height: 50px;
  }

  .section-head {
    text-align: left;
  }

  .section-head h2,
  .system-copy h2,
  .report-copy h2,
  .about-copy h2,
  .contact-panel h2 {
    font-size: clamp(39px, 13vw, 56px);
  }

  .service-card,
  .authority-card,
  .method-block,
  .insight,
  .faq-item,
  .stage-topics div {
    min-height: auto;
    padding: 24px;
  }

  .authority-card {
    grid-template-columns: 1fr;
  }

  .authority-card span {
    grid-row: auto;
    margin-bottom: 18px;
  }

  .stage-topics div {
    grid-template-columns: 1fr;
  }

  .stage-topics span {
    grid-row: auto;
    margin-bottom: 18px;
  }

  .method-block span {
    margin-bottom: 38px;
  }

  .audience-card span,
  .leverage-card strong {
    margin-bottom: 38px;
  }

  .leverage-flow {
    justify-content: flex-start;
  }

  .leverage-flow svg {
    display: none;
  }

  .contact-panel {
    padding: 30px 20px;
  }
}
