:root {
  --ink: #111413;
  --ink-soft: #303633;
  --paper: #f4f6f3;
  --surface: #ffffff;
  --surface-dark: #111413;
  --line: #cfd6d1;
  --line-dark: #39413d;
  --green: #0d604d;
  --green-light: #d7ece4;
  --blue: #315bd5;
  --blue-light: #dde5ff;
  --coral: #d75c47;
  --coral-light: #f6dfda;
  --yellow: #efc454;
  --muted: #68716c;
  --shell: 1240px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
strong {
  line-height: 1.12;
}

h1,
h2,
h3,
h4,
p,
li,
dd,
a {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  hyphens: auto;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(64px, 8.4vw, 126px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 70px);
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

h4 {
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.section-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.section-space {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--green);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: #ffffff;
  background: rgba(17, 20, 19, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  width: min(var(--shell), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  gap: 28px;
}

.monogram {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #d9deda;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--compact {
  min-height: 42px;
  margin-left: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 14px;
}

.button--primary {
  color: var(--ink);
  background: var(--yellow);
}

.button--primary:hover,
.button--primary:focus-visible,
.button--compact:hover,
.button--compact:focus-visible {
  background: #f5d16f;
}

.button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button--light {
  color: var(--ink);
  background: #ffffff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #ffffff;
}

.mobile-nav {
  position: fixed;
  z-index: 95;
  top: var(--header-height);
  right: 0;
  left: 0;
  padding: 18px 24px 28px;
  color: #ffffff;
  background: var(--surface-dark);
  border-bottom: 1px solid var(--line-dark);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #ffffff;
  background: var(--surface-dark);
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(var(--shell), calc(100% - 48px));
  min-height: 760px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 78px) 0 48px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__media {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
}

.hero-shot {
  position: absolute;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot--main {
  top: 126px;
  right: -80px;
  width: min(64vw, 900px);
  aspect-ratio: 16 / 10;
  transform: rotate(-2deg);
}

.hero-shot--secondary {
  right: 130px;
  bottom: -130px;
  width: min(42vw, 600px);
  aspect-ratio: 16 / 10;
  transform: rotate(4deg);
}

.hero__veil {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #111413 0%, rgba(17, 20, 19, 0.98) 40%, rgba(17, 20, 19, 0.64) 66%, rgba(17, 20, 19, 0.18) 100%);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--yellow);
}

.hero .eyebrow {
  max-width: 680px;
}

.hero__statement {
  max-width: 700px;
  margin-bottom: 12px;
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 750;
  line-height: 1.14;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #c9d0cb;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__facts {
  display: grid;
  width: min(760px, 100%);
  margin: 54px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero__facts div {
  min-width: 0;
  padding: 18px 18px 0 0;
}

.hero__facts div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero__facts dt {
  margin-bottom: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
}

.hero__facts dd {
  margin: 0;
  color: #aeb8b2;
  font-size: 13px;
}

.proof-band {
  color: var(--ink);
  background: var(--yellow);
  border-bottom: 1px solid #d9ae40;
}

.proof-band__inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
}

.proof-band p {
  margin: 0;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.proof-band p + p {
  border-left: 1px solid rgba(17, 20, 19, 0.25);
}

.section-heading {
  display: grid;
  margin-bottom: 54px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 56px;
  align-items: end;
}

.section-heading > *,
.profile-panel > *,
.case-card__body,
.experience-layout > *,
.contact-layout > * {
  min-width: 0;
}

.section-heading h2 {
  max-width: 800px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--compact {
  display: block;
  max-width: 860px;
}

.profile-section {
  background: var(--paper);
}

.profile-tabs {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-tabs__controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-tab {
  min-height: 88px;
  padding: 16px 22px;
  border: 0;
  border-bottom: 4px solid transparent;
  background: transparent;
  cursor: pointer;
  font-weight: 750;
  text-align: left;
}

.profile-tab + .profile-tab {
  border-left: 1px solid var(--line);
}

.profile-tab span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.profile-tab:hover,
.profile-tab:focus-visible {
  background: #edf0ed;
}

.profile-tab.is-active {
  color: var(--green);
  background: var(--surface);
  border-bottom-color: var(--green);
}

.profile-panel {
  display: grid;
  min-height: 390px;
  padding: 48px 0;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  background: var(--surface);
}

.profile-panel__intro {
  padding: 0 44px;
}

.profile-panel__number {
  margin-bottom: 34px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
}

.profile-panel__intro h3 {
  max-width: 480px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.profile-panel__intro > p:last-child {
  max-width: 500px;
  color: var(--muted);
  font-size: 17px;
}

.profile-panel__details {
  display: grid;
  padding: 0 44px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-content: center;
}

.profile-panel__details > div {
  padding-top: 20px;
  border-top: 3px solid var(--green);
}

.profile-panel__details > div:last-child {
  border-color: var(--blue);
}

.profile-panel__details ul,
.flagship-case ul,
.career-timeline,
.method-flow {
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-panel__details li {
  position: relative;
  margin-top: 14px;
  padding-left: 18px;
  color: var(--ink-soft);
}

.profile-panel__details li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.method-section {
  color: #ffffff;
  background: var(--surface-dark);
}

.method-section .section-heading h2 {
  color: #ffffff;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.method-flow li {
  min-height: 250px;
  padding: 28px 28px 32px;
}

.method-flow li + li {
  border-left: 1px solid var(--line-dark);
}

.method-flow span {
  display: block;
  margin-bottom: 68px;
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.method-flow strong {
  display: block;
  margin-bottom: 12px;
  font-size: 21px;
}

.method-flow p {
  margin: 0;
  color: #aeb8b2;
}

.cases-section {
  background: #ffffff;
}

.flagship-case {
  display: grid;
  min-height: 680px;
  margin-bottom: 34px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  color: #ffffff;
  background: var(--green);
}

.flagship-case__visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #dbe9e4;
}

.flagship-case__visual img {
  position: absolute;
  top: 47%;
  left: 50%;
  width: auto;
  max-width: none;
  height: 106%;
  border: 1px solid rgba(17, 20, 19, 0.18);
  box-shadow: 0 28px 60px rgba(17, 20, 19, 0.23);
  transform: translate(-42%, -50%);
}

.flagship-case__content {
  padding: 54px 46px;
}

.case-label {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.flagship-case .case-label {
  color: var(--yellow);
}

.flagship-case h3 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.case-lead {
  color: #dbe7e2;
  font-size: 17px;
}

.case-metrics {
  display: grid;
  margin: 32px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.case-metrics div {
  padding: 18px 12px 18px 0;
}

.case-metrics div + div {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.case-metrics dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
}

.case-metrics dd {
  margin: 4px 0 0;
  color: #c8d8d1;
  font-size: 12px;
}

.case-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.case-columns h4 {
  color: var(--yellow);
}

.case-columns li {
  position: relative;
  margin-top: 8px;
  padding-left: 14px;
  color: #e3ebe7;
  font-size: 14px;
}

.case-columns li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.case-columns p {
  color: #d5e1dc;
  font-size: 14px;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--yellow);
  color: #ffffff;
  font-weight: 750;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-card__media {
  height: 250px;
  overflow: hidden;
  background: #e6ebe7;
  border-bottom: 1px solid var(--line);
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case-card__index {
  display: flex;
  height: 250px;
  padding: 26px;
  align-items: flex-end;
  color: #ffffff;
  background: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 84px;
}

.case-card__index--blue {
  background: var(--blue);
}

.case-card__index--coral {
  background: var(--coral);
}

.case-card__body {
  padding: 30px;
}

.case-card__body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.case-card__body > p:not(.case-label) {
  min-height: 100px;
  color: var(--muted);
}

.tag-list {
  display: flex;
  margin: 24px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tag-list li {
  padding: 6px 9px;
  color: var(--green);
  background: var(--green-light);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.experience-section {
  background: var(--paper);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.experience-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
}

.experience-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.experience-note {
  margin-top: 34px;
  padding: 22px;
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
}

.experience-note strong {
  display: block;
  margin-bottom: 8px;
}

.experience-note p {
  margin: 0;
  color: var(--ink-soft);
}

.career-timeline {
  border-top: 1px solid var(--line);
}

.career-timeline li {
  display: grid;
  padding: 30px 0;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 26px;
  border-bottom: 1px solid var(--line);
}

.career-timeline time {
  color: var(--green);
  font-weight: 800;
}

.career-timeline h3 {
  font-size: 22px;
}

.career-timeline p {
  margin: 0;
  color: var(--muted);
}

.toolkit-section {
  background: #ffffff;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.toolkit-grid section {
  min-height: 220px;
  padding: 28px 24px;
}

.toolkit-grid section + section {
  border-left: 1px solid var(--line);
}

.toolkit-grid section:nth-child(1) {
  border-top: 4px solid var(--green);
}

.toolkit-grid section:nth-child(2) {
  border-top: 4px solid var(--blue);
}

.toolkit-grid section:nth-child(3) {
  border-top: 4px solid var(--coral);
}

.toolkit-grid section:nth-child(4) {
  border-top: 4px solid var(--yellow);
}

.toolkit-grid h3 {
  font-size: 18px;
}

.toolkit-grid p {
  margin: 0;
  color: var(--muted);
}

.credentials-line {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.credentials-line p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.credentials-line strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.contact-section {
  padding: 100px 0;
  color: #ffffff;
  background: var(--green);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.contact-layout h2 {
  max-width: 800px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-details > a:not(.button) {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 750;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-details p {
  margin: 12px 0 26px;
  color: #c9ddd6;
}

.site-footer {
  color: #aeb8b2;
  background: var(--surface-dark);
  border-top: 1px solid var(--line-dark);
}

.site-footer .section-shell {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .hero-shot--main {
    right: -220px;
    width: 78vw;
  }

  .hero-shot--secondary {
    right: 20px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
    gap: 36px;
  }

  .profile-panel {
    gap: 30px;
  }

  .profile-panel__intro {
    padding: 0 28px;
  }

  .profile-panel__details {
    padding-right: 28px;
  }

  .flagship-case {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  }

  .toolkit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toolkit-grid section:nth-child(3) {
    border-left: 0;
  }

  .toolkit-grid section:nth-child(n + 3) {
    border-top-width: 4px;
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .section-shell,
  .nav-shell,
  .hero__inner {
    width: min(100% - 32px, var(--shell));
  }

  .section-space {
    padding: 78px 0;
  }

  .main-nav,
  .button--compact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .hero__inner {
    min-height: 720px;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 48px);
    justify-content: flex-start;
  }

  .hero__media {
    top: 320px;
  }

  .hero-shot--main {
    top: 110px;
    right: -110px;
    width: 86vw;
  }

  .hero-shot--secondary {
    right: auto;
    bottom: -60px;
    left: 18px;
    width: 64vw;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, #111413 0%, #111413 43%, rgba(17, 20, 19, 0.92) 61%, rgba(17, 20, 19, 0.18) 100%);
  }

  .hero__lead {
    max-width: 600px;
  }

  .hero__facts {
    margin-top: 32px;
  }

  .proof-band__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px 0;
  }

  .proof-band p {
    min-height: 42px;
    display: grid;
    place-items: center;
  }

  .proof-band p:nth-child(odd) {
    border-left: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .profile-tabs__controls {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .profile-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .profile-panel__details {
    padding: 0 28px;
  }

  .method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-flow li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .method-flow li:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

  .flagship-case {
    grid-template-columns: 1fr;
  }

  .flagship-case__visual {
    min-height: 460px;
  }

  .flagship-case__visual img {
    top: 47%;
    height: 104%;
    transform: translate(-50%, -50%);
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card__body > p:not(.case-label) {
    min-height: 0;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .experience-intro {
    position: static;
  }

  .credentials-line {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(46px, 14.6vw, 64px);
  }

  h2 {
    font-size: clamp(31px, 9.4vw, 38px);
  }

  h3 {
    hyphens: auto;
  }

  .hero,
  .hero__inner {
    min-height: 750px;
  }

  .hero__media {
    top: 390px;
  }

  .hero__statement {
    font-size: 22px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    flex: 1 1 150px;
  }

  .hero__facts {
    display: none;
  }

  .hero-shot--main {
    top: 80px;
    right: -150px;
    width: 116vw;
  }

  .hero-shot--secondary {
    bottom: 8px;
    left: -30px;
    width: 84vw;
  }

  .proof-band__inner {
    grid-template-columns: 1fr;
  }

  .proof-band p + p {
    border-top: 1px solid rgba(17, 20, 19, 0.2);
    border-left: 0;
  }

  .profile-tab {
    min-height: 76px;
  }

  .profile-panel__intro h3 {
    font-size: 30px;
  }

  .profile-panel__details {
    grid-template-columns: 1fr;
  }

  .method-flow {
    grid-template-columns: 1fr;
  }

  .method-flow li {
    min-height: auto;
  }

  .method-flow li + li {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .method-flow span {
    margin-bottom: 34px;
  }

  .flagship-case__visual {
    min-height: 330px;
  }

  .flagship-case__content {
    padding: 34px 24px;
  }

  .flagship-case h3 {
    font-size: 34px;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .case-metrics div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .case-columns {
    grid-template-columns: 1fr;
  }

  .case-card__media,
  .case-card__index {
    height: 210px;
  }

  .career-timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .toolkit-grid {
    grid-template-columns: 1fr;
  }

  .toolkit-grid section + section {
    border-left: 0;
  }

  .contact-details > a:not(.button) {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .hero,
  .hero__inner {
    min-height: 696px;
  }

  .hero__media {
    top: 370px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
