@font-face {
  font-family: "About Inter";
  src: url("/assets/fonts/inter-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "About JetBrains Mono";
  src: url("/assets/fonts/jetbrains-mono-500-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "About Lora";
  src: url("/assets/fonts/lora-italic-400-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "About Sora";
  src: url("/assets/fonts/sora-600-800-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

:root {
  --navy: #1c3454;
  --navy-soft: #b0b8c3;
  --orange: #b35220;
  --page: #f7f5f0;
  --muted: #eae7df;
  --white: #fff;
  --ink: #1a1916;
  --ink-2: #595550;
  --ink-3: #756f69;
  --stroke: #e5e5e5;
  --control: #8e8a84;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .05);
  --container: 1280px;
  --serif: "Lora", Georgia, serif;
  --heading: "Sora", Inter, system-ui, sans-serif;
  --body: Inter, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font: 15px/1.7 var(--body);
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .22em; }
a:hover { color: var(--orange); }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #d8733e;
  outline-offset: 4px;
  border-radius: 4px;
}

h1, h2, h3, p, blockquote, figure, dl, dd { margin-top: 0; }
h1, h2, h3, .brand, .button, .metric-number { font-family: var(--heading); }
h1 {
  max-width: 1100px;
  margin-bottom: 16px;
  font-size: clamp(2.55rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.14;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -.02em;
  line-height: 1.18;
}
h3 {
  margin-bottom: 12px;
  font-size: 1.125rem;
  line-height: 1.28;
}
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: relative;
  z-index: 100;
  background: var(--page);
}
.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-nav a,
.eyebrow,
.section-label,
.tag,
.metric-label,
.card-number,
.card-type,
.context-card dt,
.artifact-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}
.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink-2);
  text-decoration: none;
}
.desktop-nav a[aria-current="page"] {
  border-bottom: 1px solid var(--orange);
  color: var(--ink);
}
.menu-button {
  display: none;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--control);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: 600 14px var(--heading);
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(28, 52, 84, .72);
  backdrop-filter: blur(5px);
}
.mobile-nav[hidden] { display: none; }
.mobile-panel {
  width: min(88vw, 360px);
  min-height: 100%;
  margin-left: auto;
  padding: 24px;
  background: var(--page);
  box-shadow: -12px 0 40px rgba(0, 0, 0, .16);
}
.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-close {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--control);
  border-radius: 8px;
  background: white;
  font: 600 14px var(--heading);
}
.mobile-links {
  display: grid;
  gap: 8px;
}
.mobile-links a {
  display: flex;
  min-height: 52px;
  align-items: center;
  border-bottom: 1px solid var(--stroke);
  font: 700 1.35rem var(--heading);
  text-decoration: none;
}

.page-hero,
.case-hero {
  background: var(--navy);
  color: white;
}
.hero-inner { padding-block: 32px; }
.home-hero .hero-inner {
  display: grid;
  min-height: 549px;
  grid-template-columns: minmax(0, 736px) 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow { margin-bottom: 4px; color: var(--navy-soft); }
.hero-copy { max-width: 736px; }
.hero-copy p { max-width: 736px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.hero-metrics {
  display: grid;
  gap: 24px;
  justify-items: end;
}
.metric { min-width: 110px; }
.metric-number {
  display: block;
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.hero-metrics .metric-number { color: white; text-align: right; }
.metric-label { display: block; color: var(--ink-2); }
.hero-metrics .metric-label { color: var(--navy-soft); text-align: right; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}
.button-primary { background: var(--navy); color: white; }
.button-secondary { border-color: var(--control); background: white; color: var(--ink); }
.button-ghost { border-bottom-color: white; border-radius: 0; color: white; }
.button:hover { box-shadow: 0 5px 14px rgba(0, 0, 0, .12); color: inherit; }

.case-study-page .case-nav .button-secondary:hover {
  border-color: var(--control);
  background: var(--muted);
  box-shadow: none;
  color: var(--ink);
}

.case-study-page .case-nav .button-ghost:hover {
  border-color: white;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  color: white;
}

.proof-strip {
  background: var(--muted);
  color: var(--ink-2);
}
.proof-inner {
  display: flex;
  min-height: 64px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  padding-block: 12px;
}
.proof-item { white-space: nowrap; }
.case-study-page .proof-item { text-transform: uppercase; }
.proof-separator { color: var(--orange); }

.page-content { padding-block: 48px 96px; }
.section-block + .section-block { margin-top: 96px; }
.section-header { margin-bottom: 48px; }
.section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--ink-3);
}
.section-label::before { content: "—"; color: var(--ink-3); }
.section-header h2 {
  margin-bottom: 0;
  font-size: 28px;
  letter-spacing: -.015em;
  line-height: 1.18;
}
.section-intro {
  max-width: 988px;
  margin-top: -32px;
  margin-bottom: 48px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.leadership-card,
.case-card,
.context-card,
.principle-card {
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.leadership-card { display: flex; min-height: 100%; flex-direction: column; }
.leadership-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.card-body { display: flex; flex: 1; flex-direction: column; gap: 16px; padding: 16px; }
.card-number-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  color: var(--ink-3);
}
.card-description {
  flex: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stroke);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 4px; }
.tag {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--control);
  border-radius: 4px;
  color: var(--ink-2);
}

.case-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.case-card { display: flex; min-height: 100%; flex-direction: column; }
.case-card-image {
  width: 100%;
  height: 180px;
  border-bottom: 1px solid var(--stroke);
  object-fit: cover;
}
.case-card .metrics { display: flex; flex-wrap: wrap; gap: 24px; }
.case-card .metric-number { font-size: 28px; }
.case-card .button { align-self: flex-start; margin-top: auto; }

.testimonial-section {
  margin-inline: calc(50% - 50vw);
  padding: 64px max(24px, calc((100vw - var(--container)) / 2));
  background: white;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  padding: 16px;
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  background: var(--page);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}
.testimonial-card blockquote {
  margin-bottom: 12px;
  font: italic 500 22px/1.55 var(--serif);
}
.testimonial-card cite {
  color: var(--ink-2);
  font: normal 500 11px/1.4 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.case-study-page .testimonial-card {
  margin-top: 32px;
  background: #fff;
}
.case-study-page .testimonial-card blockquote {
  margin-right: 0;
  margin-left: 0;
}
.case-study-page .testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cta {
  padding: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
}
.cta h2 { max-width: 1100px; font-size: clamp(2.2rem, 5vw, 3.5rem); }
.cta p { max-width: 900px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: center; margin-top: 28px; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; color: inherit; }

.work-list { display: grid; gap: 96px; }
.work-card {
  display: grid;
  min-height: 500px;
  grid-template-columns: 450px 1fr;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.work-card > img { width: 100%; height: 100%; object-fit: cover; }
.work-card .card-body { padding: 40px; gap: 20px; }
.work-card h2 { font-size: 40px; }
.work-card .card-description { font-size: 15px; }
.work-card .metrics { display: flex; flex-wrap: wrap; gap: 48px; }

.profile-image {
  width: 242px;
  height: 302px;
  border-radius: 12px;
  object-fit: cover;
}
.measure { max-width: 844px; }
.large-copy { font-size: 17px; line-height: 1.72; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.principle-card { padding: 16px; }
.principle-card .card-number { color: var(--orange); }
.quotes-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.case-layout {
  display: grid;
  grid-template-columns: 302px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.context-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
.context-card header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.context-card header .eyebrow,
.context-card header h3 {
  margin: 0;
}
.context-card dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
.context-card dl > div {
  padding: 0 0 16px;
  border-top: 0;
  border-bottom: 1px solid var(--stroke);
}
.context-card dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.context-card dt { margin-bottom: 12px; color: var(--ink-2); }
.context-card dd { margin: 0; font-size: 13px; line-height: 1.6; }
.context-card dd:has(> .tag) {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
@media (min-width: 1051px) {
  .case-study-page .context-card {
    position: sticky;
    top: 24px;
    align-self: start;
  }
}
.case-main { min-width: 0; }
.case-section {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--stroke);
}
.case-section + .case-section { padding-top: 32px; }
.case-section p,
.case-section li { max-width: 914px; }
.case-section ul { padding-left: 24px; }
.case-section h2 { max-width: 850px; font-size: 28px; }

.artifact {
  margin: 32px 0 0;
}
.artifact img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.artifact-scroll-viewport {
  width: 100%;
}
.artifact-scroll-viewport:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
.artifact-scroll-instruction {
  display: none;
  margin: 8px 0 0;
  color: var(--ink-3);
  font: 400 13px/20.8px var(--body);
}
.desktop-artifact { display: block; }
.mobile-artifact { display: none; }

.matrix {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}
.matrix th {
  padding: 12px 16px;
  background: #ddd;
  text-align: left;
  font: 500 11px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.matrix td { padding: 22px 16px; border-top: 1px solid var(--stroke); vertical-align: top; }
.matrix-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.matrix-tags .tag { background: #e7edf5; color: var(--navy); }
.matrix tr:nth-child(3) .tag { background: #f6e3dc; color: #9d3d27; }
.matrix tr:last-child .tag { background: var(--muted); color: var(--ink); }
.matrix-cards { display: none; }

.diagram-flow,
.diagram-grid {
  display: grid;
  gap: 12px;
}
.diagram-step,
.diagram-callout {
  padding: 16px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}
.diagram-step::after {
  display: block;
  margin: 12px auto -28px;
  color: var(--ink-3);
  content: "↓";
  text-align: center;
}
.diagram-step:last-child::after { content: none; }
.diagram-step strong,
.diagram-callout strong { display: block; font: 700 18px/1.3 var(--heading); }
.diagram-step span,
.diagram-callout span { color: var(--ink-2); }
.case-study-page .mobile-leadership-model .diagram-step::after,
.case-study-page .mobile-operating-rhythm .diagram-step::after {
  content: none;
}
.case-study-page .mobile-operating-rhythm .diagram-card-number {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font: 500 11px/15.4px var(--mono);
}
.case-study-page .mobile-agentic-workflow,
.case-study-page .mobile-figma-flow {
  gap: 0;
}
.case-study-page .mobile-agentic-workflow > .diagram-step::after,
.case-study-page .mobile-figma-flow > .diagram-step::after {
  content: none;
}
.case-study-page .mobile-agentic-workflow .diagram-flow-arrow,
.case-study-page .mobile-figma-flow .diagram-flow-arrow {
  position: relative;
  display: block;
  width: 1px;
  height: 14px;
  margin: 6px auto;
  background: var(--ink-3);
}
.case-study-page .mobile-agentic-workflow .diagram-flow-arrow::after,
.case-study-page .mobile-figma-flow .diagram-flow-arrow::after {
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
  content: "";
  transform: rotate(45deg);
}
.case-study-page .mobile-leadership-model {
  gap: 8px;
}
.case-study-page .mobile-leadership-model .diagram-relationship {
  display: grid;
  justify-items: center;
  gap: 4px;
}
.case-study-page .mobile-leadership-model .relationship-label {
  color: var(--ink-3);
  font: 500 10px/14px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.case-study-page .mobile-leadership-model .relationship-connector {
  position: relative;
  width: 1px;
  height: 20px;
  background: var(--ink-3);
}
.case-study-page .mobile-leadership-model .relationship-connector::after {
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
  content: "";
  transform: rotate(45deg);
}
.case-study-page .mobile-leadership-model .leadership-relationships {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding: 16px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--surface);
}
.case-study-page .mobile-leadership-model .leadership-relationship {
  display: grid;
  gap: 6px;
}
.case-study-page .mobile-leadership-model .leadership-relationship > .relationship-label {
  padding-left: 4px;
}
.diagram-callout { border-left: 3px solid var(--orange); background: #fff8f4; }
.diagram-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.diagram-tags .tag { font-size: 10px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare-card { padding: 20px; border-radius: 12px; background: white; box-shadow: var(--shadow); }
.compare-card h3 { font-size: 24px; }
.compare-card.after h3 { color: var(--navy); }

.case-nav { margin-top: 48px; }
.case-nav .cta { padding: 32px 48px; }
.case-nav .cta h2 { margin-bottom: 12px; }
.site-footer {
  padding: 24px;
  background: var(--navy);
  color: var(--navy-soft);
  text-align: center;
  font-size: 13px;
}
.site-footer-inner {
  display: flex;
  width: 100%;
  min-height: 69px;
  align-items: center;
  justify-content: center;
  padding: 24px 80px;
  font: 400 13px/20.8px var(--body);
}
.case-study-page .site-footer {
  width: 100%;
  height: 69px;
  padding: 0;
}
.case-study-page .site-footer-inner {
  width: 100%;
  height: 69px;
  min-height: 69px;
  padding: 24px 80px;
  color: #b0b8c3;
  font: 400 13px/20.8px var(--body);
}

/* Case-study pages reuse the approved shared desktop header geometry. */
.case-study-page .site-header {
  width: 100%;
  height: 72px;
  background: #f7f5f0;
}
.case-study-page .header-inner {
  width: 1280px;
  min-height: 72px;
  padding: 24px 0;
}
.case-study-page .brand {
  color: #000;
  font: 600 18px/23.04px var(--heading);
  letter-spacing: -.18px;
}
.case-study-page .desktop-nav {
  width: 277px;
  height: 24px;
  justify-content: space-between;
  gap: 0;
}
.case-study-page .desktop-nav a {
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 0;
  color: #595550;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
}
.case-study-page .desktop-nav a:hover {
  border-radius: 4px;
  background: #d9d9d9;
  color: #595550;
}
.case-study-page .desktop-nav a[aria-current="page"] {
  border-bottom: 1px solid #b35220;
  color: #1a1916;
}
.case-study-page .desktop-nav a[aria-current="page"]:hover {
  border-bottom-color: transparent;
}

/* Approved Figma Homepage — desktop frame 54:717 at 1440px. */
.homepage {
  background: #f7f5f0;
}
.homepage .site-header {
  height: 72px;
  background: #f7f5f0;
}
.homepage .header-inner {
  width: 1280px;
  min-height: 72px;
  padding: 24px 0;
}
.homepage .brand {
  color: #000;
  font: 600 18px/23.04px var(--heading);
  letter-spacing: -.18px;
}
.homepage .desktop-nav {
  width: 277px;
  height: 24px;
  justify-content: space-between;
  gap: 0;
}
.homepage .desktop-nav a {
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 0;
  color: #595550;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
}
.homepage .desktop-nav a:hover {
  border-radius: 4px;
  background: #d9d9d9;
  color: #595550;
}
.homepage .desktop-nav a[aria-current="page"] {
  border-bottom: 1px solid #b35220;
  color: #1a1916;
}
.homepage .desktop-nav a[aria-current="page"]:hover {
  border-bottom-color: transparent;
}
.homepage main {
  width: 100%;
}
.homepage .icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.homepage .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-hero {
  width: 100%;
  height: 549px;
  overflow: hidden;
  background: #1c3454;
  color: #fff;
}
.home-hero-inner {
  display: flex;
  width: 1280px;
  height: 549px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 24px;
}
.home-hero-copy {
  display: flex;
  width: 736px;
  height: 549px;
  flex: 0 0 736px;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0;
}
.home-hero-title {
  display: flex;
  width: 736px;
  flex-direction: column;
  gap: 4px;
}
.home-eyebrow,
.home-cta-eyebrow {
  margin: 0;
  color: #b0b8c3;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
}
.home-hero h1 {
  width: 736px;
  margin: 0;
  color: #fff;
  font: 800 56px/64px var(--heading);
  letter-spacing: -1.4px;
}
.home-hero-body {
  display: flex;
  width: 736px;
  flex-direction: column;
  gap: 16px;
}
.home-hero-body p {
  width: 736px;
  margin: 0;
  color: #fff;
  font: 400 15px/25.5px var(--body);
  letter-spacing: 0;
}
.home-hero-actions {
  display: flex;
  width: 736px;
  height: 40px;
  align-items: flex-start;
  gap: 16px;
}
.home-button {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 24px;
  border: 0;
  border-radius: 8px;
  font: 600 14px/21px var(--heading);
  text-decoration: none;
  white-space: nowrap;
}
.home-button:hover {
  color: inherit;
}
.home-button-secondary {
  border: 1px solid #8e8a84;
  background: #fff;
  color: #1a1916;
}
.home-button-secondary:hover {
  border-color: #8e8a84;
  background: #eae7df;
  color: #1a1916;
}
.home-button-primary {
  background: #1c3454;
  color: #fff;
}
.home-button-primary:hover {
  box-shadow: 0 4px 12px rgba(28,52,84,.28);
  color: #fff;
}
.home-button-ghost {
  border-radius: 8px;
  background: transparent;
  color: #fff;
}
.home-button-ghost > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid #fff;
}
.home-button-ghost:hover {
  border: 1px solid #fff;
  color: #fff;
}
.home-hero-metrics {
  display: flex;
  width: 520px;
  height: 549px;
  flex: 0 0 520px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 32px 0 32px 24px;
}
.home-hero-metric-strip {
  display: flex;
  width: 112px;
  height: 255px;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
.home-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.home-hero-metric-strip .home-metric {
  width: 112px;
  align-items: flex-end;
}
.home-metric-value {
  display: block;
  color: #b35220;
  font: 700 28px/33.04px var(--heading);
  letter-spacing: -.42px;
  white-space: nowrap;
}
.home-metric-label {
  display: block;
  color: #595550;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
}
.home-hero-metric-strip .home-metric-value {
  color: #fff;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -.8px;
  text-align: right;
}
.home-hero-metric-strip .home-metric-label {
  width: 112px;
  color: #fff;
  text-align: right;
}

.home-proof-strip {
  width: 100%;
  height: 64px;
  overflow: hidden;
  background: #eae7df;
}
.home-proof-inner {
  display: flex;
  width: 1280px;
  height: 64px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.home-proof-item {
  color: #595550;
  font: 400 15px/25.5px var(--body);
  white-space: nowrap;
}
.home-proof-separator {
  display: flex;
  width: 23px;
  height: 64px;
  flex: 0 0 23px;
  align-items: center;
  justify-content: center;
}
.home-proof-separator img {
  width: 5px;
  height: 5px;
}

.home-page-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 96px;
  padding: 48px 0 96px;
}
.home-section {
  width: 1280px;
  margin: 0 auto;
}
.home-section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}
.home-section-eyebrow {
  display: flex;
  height: 16px;
  align-items: flex-start;
  gap: 4px;
}
.home-section-eyebrow p {
  margin: 0;
  color: #756f69;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
  white-space: nowrap;
}
.home-section-title h2 {
  margin: 0;
  color: #1a1916;
  font: 700 28px/33.04px var(--heading);
  letter-spacing: -.42px;
}
.home-leadership-section {
  display: flex;
  height: 555px;
  flex-direction: column;
  gap: 16px;
}
.home-leadership-grid {
  display: grid;
  width: 1280px;
  height: 477px;
  grid-template-columns: repeat(4, 308px);
  gap: 16px;
}
.home-leadership-card {
  display: flex;
  width: 308px;
  height: 477px;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  padding: 0 0 16px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.home-leadership-card::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid #e5e5e5;
  border-radius: inherit;
  pointer-events: none;
  content: "";
}
.home-leadership-image-frame {
  position: relative;
  width: 308px;
  height: 140px;
  flex: 0 0 140px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.home-leadership-image {
  position: absolute;
  max-width: none;
}
.home-leadership-crop-1 {
  top: -7.68%;
  left: -12.45%;
  width: 130.71%;
  height: 115%;
}
.home-leadership-crop-2 {
  top: -10.28%;
  left: -16.79%;
  width: 133.27%;
  height: 117.24%;
}
.home-leadership-crop-3 {
  top: -5.2%;
  left: -14.14%;
  width: 128.51%;
  height: 113.06%;
}
.home-leadership-crop-4 {
  top: -4.29%;
  left: -11.03%;
  width: 124.1%;
  height: 109.18%;
}
.home-leadership-content {
  display: flex;
  width: 308px;
  height: 297px;
  min-height: 0;
  flex: 0 0 297px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 16px;
}
.home-card-number,
.home-card-type {
  display: block;
  color: #756f69;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
}
.home-leadership-card h3,
.home-case-card h3 {
  margin: 0;
  color: #1a1916;
  font: 600 18px/23.04px var(--heading);
  letter-spacing: -.18px;
}
.home-card-body {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
  color: #595550;
  font: 400 13px/20.8px var(--body);
}
.home-leadership-card .home-card-body {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
}
.home-tag-list {
  display: flex;
  height: 24px;
  align-items: flex-start;
  gap: 4px;
}
.home-leadership-card .home-tag-list {
  width: 100%;
  flex: 0 0 24px;
  margin-top: auto;
}
.homepage .tag {
  display: inline-flex;
  height: 24px;
  min-height: 24px;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid #8e8a84;
  border-radius: 4px;
  background: #fff;
  color: #595550;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-selected-section {
  display: flex;
  height: 705px;
  flex-direction: column;
  gap: 48px;
}
.home-selected-intro {
  display: flex;
  width: 988px;
  height: 108px;
  flex-direction: column;
  gap: 16px;
}
.home-selected-intro > p {
  margin: 0;
  color: #1a1916;
  font: 400 17px/29.24px var(--body);
}
.home-case-grid {
  display: grid;
  width: 1280px;
  height: 549px;
  grid-template-columns: repeat(3, 416px);
  gap: 16px;
}
.home-case-card {
  display: flex;
  width: 416px;
  height: 549px;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  padding: 0 0 16px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.home-case-image {
  width: 414px;
  height: 140px;
  flex: 0 0 140px;
  border-bottom: 1px solid #e5e5e5;
  object-fit: contain;
}
.home-case-content {
  display: flex;
  width: 414px;
  height: 305px;
  flex: 0 0 305px;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}
.home-card-meta {
  display: flex;
  height: 15.4px;
  flex: 0 0 15.4px;
  align-items: flex-start;
  justify-content: space-between;
}
.home-case-card h3 {
  height: 47px;
  flex: 0 0 47px;
}
.home-case-card .home-card-body {
  height: 100px;
  flex: 0 0 100px;
}
.home-case-metrics {
  display: flex;
  width: 382px;
  height: 54px;
  flex: 0 0 54px;
  align-items: flex-start;
  gap: 24px;
}
.home-case-metrics .home-metric {
  height: 54px;
}
.home-case-footer {
  display: flex;
  width: 414px;
  height: 40px;
  flex: 0 0 40px;
  align-items: flex-start;
  padding: 0 16px;
}

.home-testimonials-section {
  display: flex;
  width: 100%;
  height: 533px;
  flex-direction: column;
  gap: 48px;
  padding: 64px 0;
  background: #fff;
}
.home-testimonials-section > .home-section-title,
.home-testimonial-grid {
  width: min(1280px, calc(100% - 160px));
  margin: 0 auto;
}
.home-testimonial-grid {
  display: grid;
  height: 295px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.home-testimonial-card {
  display: flex;
  width: 100%;
  height: 295px;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 16px;
  border-left: 3px solid #b35220;
  border-radius: 0 12px 12px 0;
  background: #f7f5f0;
  box-shadow: 0 1px 4px rgba(0,0,0,.10);
}
.home-testimonial-card blockquote {
  width: 100%;
  flex: 1 1 auto;
  margin: 0;
  color: #000;
  font: italic 400 22px/34.1px var(--serif);
}
.home-testimonial-card figcaption {
  display: flex;
  width: 100%;
  height: 16px;
  align-items: flex-start;
  gap: 4px;
}
.home-testimonial-card cite {
  color: #595550;
  font: normal 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 1440px) {
  .home-testimonial-grid {
    grid-template-columns: repeat(3, 410.6667px);
  }

  .home-testimonial-card {
    width: 410.6667px;
  }

  .home-testimonial-card blockquote,
  .home-testimonial-card figcaption {
    width: 375.6667px;
  }
}

.home-cta-section {
  width: 1280px;
  height: 370px;
  margin: 0 auto;
}
.home-cta-panel {
  display: flex;
  width: 1280px;
  height: 370px;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
  border-radius: 12px;
  background: #1c3454;
  color: #fff;
}
.home-cta-copy {
  display: flex;
  width: 1184px;
  height: 202px;
  flex-direction: column;
  gap: 16px;
}
.home-cta-title {
  display: flex;
  width: 1184px;
  height: 156px;
  flex-direction: column;
  gap: 12px;
}
.home-cta-panel h2 {
  width: 1184px;
  margin: 0;
  color: #fff;
  font: 800 56px/64px var(--heading);
  letter-spacing: -1.4px;
}
.home-cta-copy > p {
  width: 1184px;
  margin: 0;
  color: #fff;
  font: 400 17px/29.24px var(--body);
}
.home-cta-actions {
  display: flex;
  width: 1184px;
  height: 40px;
  align-items: center;
  gap: 40px;
}
.home-cta-link {
  display: inline-flex;
  height: 30px;
  align-items: center;
  gap: 4px;
  color: #fff;
  font: 400 17px/29.24px var(--body);
  text-decoration: none;
}
.home-cta-link:hover {
  color: #fff;
}
.home-linkedin .icon {
  width: 20px;
  flex-basis: 20px;
}

.homepage .site-footer {
  width: 100%;
  height: 69px;
  padding: 0;
}
.homepage .site-footer-inner {
  width: 100%;
  height: 69px;
  min-height: 69px;
  padding: 24px 80px;
  color: #b0b8c3;
  font: 400 13px/20.8px var(--body);
}

/* Approved Figma Work page — desktop frame 116:1394 at 1440px. */
.workpage {
  background: #f7f5f0;
  scrollbar-width: none;
}
.workpage::-webkit-scrollbar {
  display: none;
}
html:has(body.workpage) {
  scrollbar-width: none;
}
html:has(body.workpage)::-webkit-scrollbar {
  display: none;
}
.workpage .site-header {
  width: 100%;
  height: 72px;
  background: #f7f5f0;
}
.workpage .header-inner {
  width: 1280px;
  min-height: 72px;
  padding: 24px 0;
}
.workpage .brand {
  color: #000;
  font: 600 18px/23.04px var(--heading);
  letter-spacing: -.18px;
}
.workpage .desktop-nav {
  width: 277px;
  height: 24px;
  justify-content: space-between;
  gap: 0;
}
.workpage .desktop-nav a {
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 0;
  color: #595550;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
}
.workpage .desktop-nav a:hover {
  border-radius: 4px;
  background: #d9d9d9;
  color: #595550;
}
.workpage .desktop-nav a[aria-current="page"] {
  border-bottom: 1px solid #b35220;
  color: #1a1916;
}
.workpage .desktop-nav a[aria-current="page"]:hover {
  border-bottom-color: transparent;
}
.workpage main {
  width: 100%;
}
.workpage .icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.workpage .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.work-hero {
  width: 100%;
  height: 295px;
  overflow: hidden;
  background: #1c3454;
  color: #fff;
}
.work-hero-inner {
  display: flex;
  width: 1280px;
  height: 295px;
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
}
.work-hero-title {
  display: flex;
  width: 736px;
  height: 148px;
  flex-direction: column;
  gap: 4px;
}
.work-eyebrow,
.work-cta-eyebrow {
  margin: 0;
  color: #b0b8c3;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
}
.work-hero h1 {
  width: 736px;
  margin: 0;
  color: #fff;
  font: 800 56px/64px var(--heading);
  letter-spacing: -1.4px;
}
.work-hero-body {
  width: 736px;
  height: 51px;
  margin: 0;
  color: #fff;
  font: 400 15px/25.5px var(--body);
}
.work-page-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 96px;
  padding: 48px 0 96px;
}
.work-cta-section {
  width: 100%;
  padding: 0 80px;
}

@media (min-width: 1280px) {
  .workpage .work-case-section {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .workpage .work-cta-section {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .workpage .work-cta-panel {
    margin: 0 auto;
  }
  .workpage .work-parity-card {
    display: grid;
    width: 1280px;
    min-height: 0;
    grid-template-columns: 450px 806px;
    column-gap: 24px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 12px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
  }
  .workpage .work-parity-card::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    border: 1px solid #e5e5e5;
    border-radius: inherit;
    pointer-events: none;
    content: "";
  }
  .workpage .work-parity-card-529 {
    height: 529px;
    min-height: 0;
  }
  .workpage .work-parity-card-509 {
    height: 509px;
    min-height: 0;
  }
  .workpage .work-card-image-frame {
    position: relative;
    width: 450px;
    height: 100%;
    align-self: stretch;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-radius: 12px 0 0 12px;
    box-sizing: border-box;
  }
  .workpage .work-card-image-two,
  .workpage .work-card-image-three {
    border-right: 1px solid #e5e5e5;
  }
  .workpage .work-card-image-frame img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    object-fit: fill;
  }
  .workpage .work-card-image-one img {
    width: 293.96%;
  }
  .workpage .work-card-image-two img,
  .workpage .work-card-image-three img {
    width: 296.99%;
  }
  .workpage .work-card-content {
    display: flex;
    width: 806px;
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    overflow: hidden;
    margin: 0;
    padding: 40px;
  }
  .workpage .work-parity-card-529 .work-card-content {
    gap: 20px;
  }
  .workpage .work-card-meta {
    display: flex;
    width: 726px;
    height: 16px;
    flex: 0 0 16px;
    align-items: flex-start;
    justify-content: space-between;
    color: #756f69;
    font: 500 11px/15.4px var(--mono);
    letter-spacing: .88px;
    text-transform: uppercase;
  }
  .workpage .work-parity-card h2 {
    width: 726px;
    height: 88px;
    flex: 0 0 88px;
    margin: 0;
    color: #1a1916;
    font: 700 40px/44px var(--heading);
    letter-spacing: -.8px;
  }
  .workpage .work-card-description {
    width: 726px;
    height: 93px;
    flex: 0 0 93px;
    margin: 0;
    padding: 0 0 16px;
    border-bottom: 1px solid #e5e5e5;
    color: #595550;
    font: 400 15px/25.5px var(--body);
  }
  .workpage .work-card-metrics {
    display: flex;
    height: 64px;
    flex: 0 0 64px;
    align-items: flex-start;
    gap: 48px;
  }
  .workpage .work-metric {
    display: flex;
    height: 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .workpage .work-metric-value {
    color: #b35220;
    font: 700 40px/44px var(--heading);
    letter-spacing: -.8px;
    white-space: nowrap;
  }
  .workpage .work-metric-label {
    color: #595550;
    font: 500 11px/15.4px var(--mono);
    letter-spacing: .88px;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .workpage .work-card-tags {
    display: flex;
    width: 726px;
    height: 24px;
    flex: 0 0 24px;
    align-items: flex-start;
    gap: 8px;
  }
  .workpage .tag {
    display: inline-flex;
    height: 24px;
    min-height: 24px;
    align-items: center;
    overflow: hidden;
    padding: 4px 12px;
    border: 1px solid #8e8a84;
    border-radius: 4px;
    background: #fff;
    color: #595550;
    font: 500 11px/15.4px var(--mono);
    letter-spacing: .88px;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .workpage .work-card-footer {
    display: flex;
    width: 185px;
    height: 64px;
    flex: 0 0 64px;
    align-items: flex-start;
    padding-top: 24px;
  }
}
.work-cta-section {
  height: 370px;
}
.work-cta-panel {
  display: flex;
  width: 1280px;
  height: 370px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 48px;
  border-radius: 12px;
  background: #1c3454;
  color: #fff;
}
.work-cta-copy {
  display: flex;
  width: 1184px;
  height: 202px;
  flex-direction: column;
  gap: 16px;
}
.work-cta-title {
  display: flex;
  width: 1184px;
  height: 156px;
  flex-direction: column;
  gap: 12px;
}
.work-cta-panel h2 {
  width: 1184px;
  margin: 0;
  color: #fff;
  font: 800 56px/64px var(--heading);
  letter-spacing: -1.4px;
}
.work-cta-copy > p {
  width: 1184px;
  margin: 0;
  color: #fff;
  font: 400 17px/29.24px var(--body);
}
.work-cta-actions {
  display: flex;
  width: 1184px;
  height: 40px;
  align-items: center;
  gap: 40px;
}
.work-cta-link {
  display: inline-flex;
  height: 30px;
  align-items: center;
  gap: 4px;
  color: #fff;
  font: 400 17px/29.24px var(--body);
  text-decoration: none;
}
.work-cta-link:hover {
  color: #fff;
}
.work-linkedin .icon {
  width: 20px;
  flex-basis: 20px;
}
.workpage .site-footer {
  width: 100%;
  height: 69px;
  padding: 0;
}
.workpage .site-footer-inner {
  width: 100%;
  height: 69px;
  min-height: 69px;
  padding: 24px 80px;
  color: #b0b8c3;
  font: 400 13px/20.8px var(--body);
}

@media (max-width: 1050px) {
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card-grid .case-card:last-child { grid-column: 1 / -1; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid .testimonial-card:last-child { grid-column: 1 / -1; }
  .work-card { grid-template-columns: minmax(320px, 40%) 1fr; }
  .work-card h2 { font-size: 32px; }
  .principles { gap: 16px; }
  .case-layout { grid-template-columns: 1fr; gap: 32px; }
  .context-card { max-width: 100%; }
}

@media (max-width: 759px) {
  .shell { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 64px; }
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; }
  .home-hero .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .home-hero .hero-inner { padding-block: 48px; }
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: start;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .22);
  }
  .hero-metrics .metric-number,
  .hero-metrics .metric-label { text-align: left; }
  .profile-image { width: min(242px, 75vw); height: auto; aspect-ratio: 242 / 302; }
  .proof-inner { justify-content: flex-start; }
  .proof-separator { display: none; }
  .proof-item { width: calc(50% - 6px); white-space: normal; }
  .page-content { padding-block: 40px 72px; }
  .section-block + .section-block { margin-top: 72px; }
  .section-header { margin-bottom: 32px; }
  .section-intro { margin-top: -20px; margin-bottom: 32px; }
  .leadership-grid,
  .case-card-grid,
  .testimonial-grid,
  .principles,
  .quotes-two { grid-template-columns: 1fr; }
  .case-card-grid .case-card:last-child,
  .testimonial-grid .testimonial-card:last-child { grid-column: auto; }
  .leadership-card img { height: 190px; }
  .testimonial-section { padding-block: 48px; }
  .cta { padding: 32px 24px; }
  .cta-actions { align-items: stretch; flex-direction: column; }
  .cta-actions .button { width: 100%; }
  .work-list { gap: 48px; }
  .work-card { grid-template-columns: 1fr; min-height: 0; }
  .work-card > img { height: auto; aspect-ratio: 16 / 8; }
  .work-card .card-body { padding: 24px; }
  .work-card h2 { font-size: 28px; }
  .work-card .metrics { gap: 24px; }
  .case-section { padding-bottom: 40px; }
  .case-section + .case-section { padding-top: 28px; }
  .matrix { display: none; }
  .matrix-cards { display: grid; gap: 12px; }
  .matrix-card { padding: 16px; border-left: 4px solid var(--navy); border-radius: 12px; background: white; box-shadow: var(--shadow); }
  .matrix-card:nth-child(3) { border-color: #c35b47; }
  .matrix-card:nth-child(4) { border-color: #a9a49a; }
  .matrix-card dl { display: grid; grid-template-columns: 90px 1fr; gap: 8px; margin: 12px 0 0; }
  .matrix-card dt { font: 500 10px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
  .matrix-card dd { margin: 0; }
  .desktop-artifact { display: none; }
  .mobile-artifact { display: block; }
  .compare-grid { grid-template-columns: 1fr; }
  .case-nav .cta { padding: 28px 24px; }
}

@media (max-width: 460px) {
  h1 { font-size: 2.25rem; }
  .hero-metrics { grid-template-columns: 1fr; }
  .proof-item { width: 100%; }
  .leadership-card img { height: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header, .mobile-nav, .skip-link { display: none !important; }
  body { background: white; color: black; }
  .page-hero, .case-hero, .cta, .site-footer { print-color-adjust: exact; }
}

/* About page desktop parity — Figma frame 90:3470 at 1440 × 2446px. */
.aboutpage {
  background: #f7f5f0;
}

.aboutpage main {
  --serif: "About Lora", "Lora", Georgia, serif;
  --heading: "About Sora", "Sora", Inter, system-ui, sans-serif;
  --body: "About Inter", Inter, system-ui, sans-serif;
  --mono: "About JetBrains Mono", "JetBrains Mono", ui-monospace, monospace;
}

.aboutpage :where(h1, h2, h3, p, figure, blockquote) {
  margin: 0;
}

.aboutpage .site-header {
  width: 100%;
  height: 72px;
  background: #f7f5f0;
}

.aboutpage .header-inner {
  width: 1280px;
  min-height: 72px;
  padding: 24px 0;
}

.aboutpage .brand {
  color: #000;
  font: 600 18px/23.04px var(--heading);
  letter-spacing: -.18px;
}

.aboutpage .desktop-nav {
  width: 277px;
  height: 24px;
  justify-content: space-between;
  gap: 0;
}

.aboutpage .desktop-nav a {
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 0;
  color: #595550;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
}

.aboutpage .desktop-nav a:hover {
  border-radius: 4px;
  background: #d9d9d9;
  color: #595550;
}

.aboutpage .desktop-nav a[aria-current="page"] {
  border-bottom: 1px solid #b35220;
  color: #1a1916;
}

.aboutpage .desktop-nav a[aria-current="page"]:hover {
  border-bottom-color: transparent;
}

.aboutpage main {
  width: 100%;
}

.aboutpage .icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aboutpage .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aboutpage .about-hero {
  width: 100%;
  height: 410px;
  overflow: hidden;
  background: #1c3454;
  color: #fff;
}

.aboutpage .about-hero-inner {
  display: flex;
  width: 1280px;
  height: 410px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 48px;
}

.aboutpage .about-hero-copy {
  display: flex;
  width: 736px;
  height: 410px;
  flex: 0 0 736px;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0;
}

.aboutpage .about-hero-title {
  display: flex;
  width: 736px;
  height: 212px;
  flex: 0 0 212px;
  flex-direction: column;
  gap: 4px;
}

.aboutpage .about-eyebrow {
  height: 16px;
  color: #b0b8c3;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
}

.aboutpage .about-hero h1 {
  width: 736px;
  height: 192px;
  color: #fff;
  font: 800 56px/64px var(--heading);
  letter-spacing: -1.4px;
}

.aboutpage .about-hero-body {
  display: flex;
  width: 736px;
  height: 102px;
  flex: 0 0 102px;
  align-items: flex-start;
}

.aboutpage .about-hero-body p {
  width: 736px;
  color: #fff;
  font: 400 15px/25.5px var(--body);
  letter-spacing: -.05px;
}

.aboutpage .about-profile-column {
  display: flex;
  width: 242px;
  height: 410px;
  flex: 0 0 242px;
  align-items: center;
  justify-content: center;
}

.aboutpage .about-profile-frame {
  position: relative;
  width: 242px;
  height: 302px;
  overflow: hidden;
  border-radius: 12px;
}

.aboutpage .about-profile-frame img {
  position: absolute;
  top: -6.5%;
  left: -6.43%;
  width: 112.85%;
  height: 113%;
  max-width: none;
}

.aboutpage .about-page-content {
  display: flex;
  width: 100%;
  height: 1895px;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 0 96px;
}

.aboutpage .about-main-content {
  display: flex;
  width: 100%;
  height: 1751px;
  flex: 0 0 1751px;
  flex-direction: column;
  align-items: flex-start;
  gap: 96px;
}

.aboutpage .about-section-title {
  display: flex;
  height: 62px;
  flex: 0 0 62px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
}

.aboutpage .about-section-eyebrow {
  display: flex;
  height: 16px;
  flex: 0 0 16px;
  align-items: flex-start;
  gap: 4px;
}

.aboutpage .about-section-eyebrow p {
  color: #756f69;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
  white-space: nowrap;
}

.aboutpage .about-section-title h2 {
  height: 34px;
  color: #1a1916;
  font: 700 28px/33.04px var(--heading);
  letter-spacing: -.42px;
  white-space: nowrap;
}

.aboutpage .about-craft-section {
  width: 100%;
  height: 374px;
  flex: 0 0 374px;
}

.aboutpage .about-section-inner {
  display: flex;
  width: 1280px;
  height: 374px;
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.aboutpage .about-craft-copy {
  display: flex;
  width: 844px;
  height: 296px;
  flex: 0 0 296px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.aboutpage .about-craft-copy p {
  width: 844px;
  color: #1a1916;
  font: 400 17px/29.24px var(--body);
}

.aboutpage .about-how-section {
  display: flex;
  width: 1280px;
  height: 404px;
  flex: 0 0 404px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  margin: 0 auto;
  padding: 0;
}

.aboutpage .about-how-copy {
  display: flex;
  width: 884px;
  height: 137px;
  flex: 0 0 137px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.aboutpage .about-how-copy > p {
  width: 884px;
  height: 59px;
  color: #1a1916;
  font: 400 17px/29.24px var(--body);
}

.aboutpage .about-lead-cards {
  display: grid;
  width: 1280px;
  height: 219px;
  flex: 0 0 219px;
  grid-template-columns: repeat(3, 350px);
  column-gap: 115px;
  align-items: start;
  overflow: hidden;
}

.aboutpage .about-lead-card {
  display: flex;
  width: 350px;
  height: 219px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 0 0 16px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.aboutpage .about-lead-card-content {
  display: flex;
  width: 350px;
  height: 203px;
  flex: 0 0 203px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  overflow: hidden;
  padding: 16px;
}

.aboutpage .about-card-number {
  height: 16px;
  flex: 0 0 16px;
  color: #b35220;
  font: 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
}

.aboutpage .about-lead-card h3 {
  width: 318px;
  color: #1a1916;
  font: 600 18px/23.04px var(--heading);
  letter-spacing: -.18px;
}

.aboutpage .about-lead-card-body {
  display: flex;
  width: 318px;
  align-items: flex-start;
  padding-top: 16px;
}

.aboutpage .about-lead-card-body p {
  width: 318px;
  color: #595550;
  font: 400 13px/20.8px var(--body);
}

.aboutpage .about-testimonials-section {
  width: 100%;
  height: 287px;
  flex: 0 0 287px;
  padding: 64px 0;
  background: #fff;
}

.aboutpage .about-testimonial-grid {
  display: grid;
  width: min(1280px, calc(100% - 160px));
  height: 159px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.aboutpage .about-testimonial-card {
  display: flex;
  width: 100%;
  height: 159px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  overflow: hidden;
  padding: 16px;
  border-left: 3px solid #b35220;
  border-radius: 0 12px 12px 0;
  background: #f7f5f0;
}

.aboutpage .about-testimonial-card blockquote {
  width: 100%;
  flex: 1 1 auto;
  color: #000;
  font: italic 400 22px/34.1px var(--serif);
}

.aboutpage .about-testimonial-card figcaption {
  display: flex;
  width: 100%;
  height: 16px;
  flex: 0 0 16px;
  align-items: flex-start;
  gap: 4px;
}

.aboutpage .about-testimonial-card cite {
  color: #595550;
  font: normal 500 11px/15.4px var(--mono);
  letter-spacing: .88px;
  text-transform: uppercase;
  white-space: nowrap;
}

.aboutpage .about-history-section {
  display: flex;
  width: 1280px;
  height: 222px;
  flex: 0 0 222px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 0 auto;
  padding: 0;
}

.aboutpage .about-history-copy {
  display: flex;
  width: 844px;
  height: 144px;
  flex: 0 0 144px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
}

.aboutpage .about-history-copy p {
  width: 844px;
  color: #1a1916;
  font: 400 15px/25.5px var(--body);
}

.aboutpage .about-contact-section {
  display: flex;
  width: 1280px;
  height: 80px;
  flex: 0 0 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 0 auto;
  padding: 0;
}

.aboutpage .about-contact-section h2 {
  width: 1280px;
  height: 24px;
  color: #1a1916;
  font: 600 18px/23.04px var(--heading);
  letter-spacing: -.18px;
}

.aboutpage .about-contact-actions {
  display: flex;
  width: 1280px;
  height: 40px;
  align-items: center;
  gap: 24px;
}

.aboutpage .about-contact-actions .home-button {
  width: 199px;
  flex: 0 0 199px;
}

.aboutpage .about-contact-link {
  display: inline-flex;
  width: 253px;
  height: 30px;
  flex: 0 0 253px;
  align-items: center;
  gap: 4px;
  color: #1a1916;
  font: 400 17px/29.24px var(--body);
  text-decoration: none;
  white-space: nowrap;
}

.aboutpage .about-contact-link:hover {
  color: #1a1916;
}

.aboutpage .about-linkedin {
  width: 92px;
  flex-basis: 92px;
}

.aboutpage .about-linkedin .icon {
  width: 20px;
  flex-basis: 20px;
}

.aboutpage .site-footer {
  width: 100%;
  height: 69px;
  padding: 0;
  color: #b0b8c3;
  font: 400 13px/20.8px var(--body);
}

.aboutpage .site-footer-inner {
  width: 100%;
  height: 69px;
  min-height: 69px;
  padding: 24px 80px;
  color: #b0b8c3;
  font: 400 13px/20.8px var(--body);
}

/* Consolidated responsive layer. Desktop rules above remain authoritative at 1200px+. */
.case-study-page .testimonial-card {
  width: 696px;
  max-width: 100%;
}

@media (max-width: 1199px) {
  :root {
    --page-gutter: 40px;
  }

  .shell,
  :is(.homepage, .workpage, .aboutpage, .case-study-page) .header-inner {
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
    margin-inline: auto;
  }

  :is(.homepage, .workpage, .aboutpage, .case-study-page) .header-inner {
    padding: 14px 0;
  }

  :is(.homepage, .workpage, .aboutpage, .case-study-page) .brand {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  :is(.homepage, .workpage, .aboutpage, .case-study-page) .desktop-nav {
    height: 44px;
    align-items: center;
  }

  :is(.homepage, .workpage, .aboutpage, .case-study-page) .desktop-nav a {
    min-height: 44px;
    align-items: center;
  }

  :is(.homepage, .workpage, .aboutpage, .case-study-page) .home-button {
    min-height: 44px;
    height: auto;
  }

  .homepage .home-cta-link,
  .workpage .work-cta-link,
  .aboutpage .about-contact-link {
    min-height: 44px;
    height: auto;
    align-items: center;
  }

  :is(.homepage, .workpage, .aboutpage, .case-study-page) .site-footer-inner {
    padding-inline: var(--page-gutter);
  }

  /* Homepage */
  .homepage .home-hero {
    height: auto;
  }

  .homepage .home-hero-inner {
    display: grid;
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 32px;
    padding: 48px 0;
  }

  .homepage .home-hero-copy,
  .homepage .home-hero-title,
  .homepage .home-hero-body,
  .homepage .home-hero-body p,
  .homepage .home-hero-actions {
    width: 100%;
    height: auto;
  }

  .homepage .home-hero-copy {
    min-width: 0;
    flex-basis: auto;
    gap: 24px;
    padding: 0;
  }

  .homepage .home-hero h1 {
    width: 100%;
    font-size: 48px;
    line-height: 56px;
  }

  .homepage .home-hero-actions {
    flex-wrap: wrap;
  }

  .homepage .home-hero-metrics {
    width: 160px;
    height: auto;
    flex-basis: auto;
    padding: 0;
  }

  .homepage .home-hero-metric-strip {
    width: 100%;
    height: auto;
  }

  .homepage .home-proof-strip,
  .homepage .home-proof-inner {
    height: auto;
    min-height: 64px;
  }

  .homepage .home-proof-inner {
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    padding: 16px 0;
  }

  .homepage .home-proof-separator {
    width: 16px;
    height: 26px;
    flex-basis: 16px;
  }

  .homepage .home-page-content {
    gap: 64px;
    padding: 48px 0 64px;
  }

  .homepage .home-section,
  .homepage .home-cta-section {
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
  }

  .homepage .home-leadership-grid,
  .homepage .home-case-grid {
    width: 100%;
    margin-inline: auto;
  }

  .homepage .home-leadership-section,
  .homepage .home-selected-section,
  .homepage .home-leadership-grid,
  .homepage .home-case-grid,
  .homepage .home-selected-intro,
  .homepage .home-testimonials-section,
  .homepage .home-testimonial-grid,
  .homepage .home-cta-section,
  .homepage .home-cta-panel,
  .homepage .home-cta-copy,
  .homepage .home-cta-title,
  .homepage .home-cta-actions {
    height: auto;
  }

  .homepage .home-leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage .home-leadership-card,
  .homepage .home-leadership-image-frame,
  .homepage .home-leadership-content {
    width: 100%;
  }

  .homepage .home-leadership-card {
    height: auto;
    min-height: 477px;
  }

  .homepage .home-leadership-image-frame {
    height: auto;
    aspect-ratio: auto;
    flex-basis: auto;
    padding: 12px;
  }

  .homepage .home-leadership-image {
    position: static;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .homepage .home-leadership-content {
    height: auto;
    min-height: 297px;
    flex: 1 1 auto;
  }

  .homepage .home-leadership-card .home-tag-list,
  .homepage .home-tag-list {
    height: auto;
    min-height: 24px;
    flex-basis: auto;
    flex-wrap: wrap;
  }

  .homepage .home-selected-intro {
    width: min(988px, 100%);
  }

  .homepage .home-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage .home-case-card:last-child {
    width: calc((100% - 16px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .homepage .home-case-card,
  .homepage .home-case-image,
  .homepage .home-case-content,
  .homepage .home-case-metrics,
  .homepage .home-case-footer {
    width: 100%;
  }

  .homepage .home-case-card {
    height: auto;
    min-height: 549px;
  }

  .homepage .home-case-content {
    height: auto;
    flex: 1 1 auto;
  }

  .homepage .home-case-card h3,
  .homepage .home-case-card .home-card-body,
  .homepage .home-case-metrics {
    height: auto;
    flex-basis: auto;
  }

  .homepage .home-testimonials-section {
    gap: 40px;
  }

  .homepage .home-testimonials-section > .home-section-title,
  .homepage .home-testimonial-grid {
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
  }

  .homepage .home-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage .home-testimonial-card:last-child {
    width: calc((100% - 24px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .homepage .home-testimonial-card {
    width: 100%;
    height: auto;
    min-height: 260px;
  }

  .homepage .home-cta-panel {
    width: 100%;
    padding: 40px;
  }

  .homepage .home-cta-copy,
  .homepage .home-cta-title,
  .homepage .home-cta-panel h2,
  .homepage .home-cta-copy > p,
  .homepage .home-cta-actions {
    width: 100%;
  }

  .homepage .home-cta-panel h2 {
    font-size: 44px;
    line-height: 52px;
  }

  .homepage .home-cta-actions {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  /* Work page */
  .workpage .work-hero {
    height: auto;
  }

  .workpage .work-hero-inner {
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
    height: auto;
    gap: 24px;
    padding: 48px 0;
  }

  .workpage .work-hero-title,
  .workpage .work-hero-body {
    width: min(736px, 100%);
    height: auto;
  }

  .workpage .work-hero h1 {
    width: 100%;
    font-size: 48px;
    line-height: 56px;
  }

  .workpage .work-page-content {
    gap: 64px;
    padding: 48px 0 64px;
  }

  .workpage .work-case-section,
  .workpage .work-cta-section {
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
    height: auto;
    margin-inline: auto;
    padding: 0;
  }

  .workpage .work-parity-card {
    display: grid;
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(280px, 40%) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  }

  .workpage .work-card-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    margin: 0;
    border-radius: 12px 0 0 12px;
  }

  .workpage .work-card-image-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  .workpage .work-card-content {
    display: flex;
    width: 100%;
    height: auto;
    min-width: 0;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
  }

  .workpage .work-card-meta,
  .workpage .work-parity-card h2,
  .workpage .work-card-description,
  .workpage .work-card-tags {
    width: 100%;
    height: auto;
    flex-basis: auto;
  }

  .workpage .work-card-meta {
    display: flex;
    justify-content: space-between;
    color: #756f69;
    font: 500 11px/15.4px var(--mono);
    letter-spacing: .88px;
    text-transform: uppercase;
  }

  .workpage .work-parity-card h2 {
    margin: 0;
    font: 700 34px/40px var(--heading);
    letter-spacing: -.5px;
  }

  .workpage .work-card-description {
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
    color: #595550;
    font: 400 15px/25.5px var(--body);
  }

  .workpage .work-card-metrics {
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(3, minmax(0, max-content));
    gap: 24px;
  }

  .workpage .work-metric {
    height: auto;
  }

  .workpage .work-metric-value {
    color: #b35220;
    font: 700 36px/40px var(--heading);
  }

  .workpage .work-metric-label {
    color: #595550;
    font: 500 11px/15.4px var(--mono);
    letter-spacing: .88px;
    text-transform: uppercase;
  }

  .workpage .work-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  .workpage .work-card-footer {
    width: auto;
    height: auto;
    flex-basis: auto;
    padding-top: 4px;
  }

  .workpage .work-cta-panel,
  .workpage .work-cta-copy,
  .workpage .work-cta-title,
  .workpage .work-cta-panel h2,
  .workpage .work-cta-copy > p,
  .workpage .work-cta-actions {
    width: 100%;
    height: auto;
  }

  .workpage .work-cta-panel {
    padding: 40px;
  }

  .workpage .work-cta-panel h2 {
    font-size: 44px;
    line-height: 52px;
  }

  .workpage .work-cta-actions {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  /* About page */
  .aboutpage .about-hero {
    height: auto;
  }

  .aboutpage .about-hero-inner {
    display: grid;
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
    height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 242px);
    gap: 32px;
    padding: 48px 0;
  }

  .aboutpage .about-hero-copy,
  .aboutpage .about-hero-title,
  .aboutpage .about-hero-body,
  .aboutpage .about-hero-body p {
    width: 100%;
    height: auto;
    flex-basis: auto;
  }

  .aboutpage .about-hero-copy {
    min-width: 0;
    gap: 24px;
    padding: 0;
  }

  .aboutpage .about-hero h1 {
    width: 100%;
    height: auto;
    font-size: 48px;
    line-height: 56px;
  }

  .aboutpage .about-profile-column {
    width: 100%;
    height: auto;
    flex-basis: auto;
  }

  .aboutpage .about-page-content,
  .aboutpage .about-main-content {
    width: 100%;
    height: auto;
    flex-basis: auto;
  }

  .aboutpage .about-page-content {
    padding: 48px 0 64px;
  }

  .aboutpage .about-main-content {
    gap: 64px;
  }

  .aboutpage .about-craft-section,
  .aboutpage .about-how-section,
  .aboutpage .about-history-section,
  .aboutpage .about-contact-section,
  .aboutpage .about-section-inner {
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
    height: auto;
    flex-basis: auto;
    margin-inline: auto;
  }

  .aboutpage .about-craft-section {
    width: 100%;
  }

  .aboutpage .about-section-title {
    height: auto;
    min-height: 62px;
    flex-basis: auto;
    overflow: visible;
  }

  .aboutpage .about-section-title h2 {
    height: auto;
    white-space: normal;
  }

  .aboutpage .about-craft-copy,
  .aboutpage .about-how-copy,
  .aboutpage .about-how-copy > p,
  .aboutpage .about-history-copy,
  .aboutpage .about-contact-section h2,
  .aboutpage .about-contact-actions {
    width: 100%;
    height: auto;
    flex-basis: auto;
  }

  .aboutpage .about-craft-copy,
  .aboutpage .about-history-copy {
    max-width: 844px;
    overflow: visible;
  }

  .aboutpage .about-craft-copy p,
  .aboutpage .about-history-copy p {
    width: 100%;
  }

  .aboutpage .about-how-section {
    gap: 40px;
  }

  .aboutpage .about-how-copy {
    max-width: 884px;
  }

  .aboutpage .about-lead-cards {
    width: 100%;
    height: auto;
    flex-basis: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
  }

  .aboutpage .about-lead-card,
  .aboutpage .about-lead-card-content,
  .aboutpage .about-lead-card h3,
  .aboutpage .about-lead-card-body,
  .aboutpage .about-lead-card-body p {
    width: 100%;
  }

  .aboutpage .about-lead-card {
    height: auto;
    min-height: 219px;
  }

  .aboutpage .about-lead-card-content {
    height: auto;
    flex-basis: auto;
  }

  .aboutpage .about-lead-card:last-child {
    width: calc((100% - 16px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .aboutpage .about-testimonials-section {
    height: auto;
    flex-basis: auto;
  }

  .aboutpage .about-testimonial-grid {
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
    height: auto;
  }

  .aboutpage .about-testimonial-card {
    height: auto;
    min-height: 159px;
  }

  .aboutpage .about-history-section {
    gap: 16px;
  }

  .aboutpage .about-contact-actions {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  /* Shared case studies */
  .case-study-page .case-hero .hero-inner,
  .case-study-page .proof-inner,
  .case-study-page .page-content {
    width: min(1280px, calc(100% - (2 * var(--page-gutter))));
  }

  .case-study-page .case-hero .hero-inner {
    padding: 48px 0;
  }

  .case-study-page .case-hero .hero-copy,
  .case-study-page .case-hero .hero-copy p {
    width: 100%;
    max-width: 100%;
  }

  .case-study-page .case-hero h1 {
    max-width: 100%;
    font-size: 48px;
    line-height: 56px;
  }

  .case-study-page .proof-inner {
    justify-content: center;
  }

  .case-study-page .page-content {
    padding: 48px 0 64px;
  }

  .case-study-page .case-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .case-study-page .context-card {
    position: static;
    top: auto;
    width: 100%;
    max-width: 100%;
  }

  .case-study-page .case-main,
  .case-study-page .case-section,
  .case-study-page .case-section p,
  .case-study-page .case-section li {
    width: 100%;
    max-width: 100%;
  }

  .case-study-page .testimonial-card {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .workpage .work-parity-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .workpage .work-card-image-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 8;
    border-radius: 12px 12px 0 0;
  }

  .workpage .work-card-image-frame img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: 20px;
  }

  :is(.homepage, .workpage, .aboutpage, .case-study-page) .site-header {
    height: 64px;
  }

  :is(.homepage, .workpage, .aboutpage, .case-study-page) .header-inner {
    min-height: 64px;
    padding: 9px 0;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-panel {
    width: min(88vw, 360px);
    overflow-y: auto;
    padding: 20px;
  }

  .mobile-links a {
    min-height: 52px;
  }

  :is(.homepage, .workpage, .aboutpage, .case-study-page) .site-footer,
  :is(.homepage, .workpage, .aboutpage, .case-study-page) .site-footer-inner {
    height: auto;
    min-height: 69px;
  }

  :is(.homepage, .workpage, .aboutpage, .case-study-page) .site-footer-inner {
    padding: 24px var(--page-gutter);
  }

  /* Homepage */
  .homepage .home-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 40px 0;
  }

  .homepage .home-hero h1 {
    font-size: 38px;
    line-height: 44px;
    letter-spacing: -.8px;
  }

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

  .homepage .home-hero-actions .home-button {
    width: 100%;
    min-height: 44px;
    height: auto;
  }

  .homepage .home-hero-metrics {
    width: 100%;
  }

  .homepage .home-hero-metric-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .homepage .home-hero-metric-strip .home-metric {
    width: 100%;
    align-items: flex-start;
  }

  .homepage .home-hero-metric-strip .home-metric-value {
    font-size: 32px;
    line-height: 38px;
    text-align: left;
  }

  .homepage .home-hero-metric-strip .home-metric-label {
    width: 100%;
    text-align: left;
    white-space: normal;
  }

  .homepage .home-proof-inner {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
  }

  .homepage .home-proof-item {
    width: 100%;
    white-space: normal;
  }

  .homepage .home-proof-separator {
    display: none;
  }

  .homepage .home-page-content {
    gap: 48px;
    padding: 40px 0 48px;
  }

  .homepage .home-leadership-grid,
  .homepage .home-case-grid,
  .homepage .home-testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .homepage .home-case-card:last-child,
  .homepage .home-testimonial-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .homepage .home-leadership-card,
  .homepage .home-case-card,
  .homepage .home-testimonial-card {
    min-height: 0;
  }

  .homepage .home-leadership-content {
    min-height: 0;
  }

  .homepage .home-selected-section {
    gap: 32px;
  }

  .homepage .home-case-image {
    height: auto;
    aspect-ratio: 16 / 6;
  }

  .homepage .home-case-content {
    min-height: 0;
  }

  .homepage .home-testimonials-section {
    gap: 32px;
    padding: 48px 0;
  }

  .homepage .home-testimonial-card {
    height: auto;
    min-height: 0;
  }

  .homepage .home-testimonial-card figcaption,
  .aboutpage .about-testimonial-card figcaption {
    height: auto;
    min-height: 16px;
  }

  .homepage .home-testimonial-card cite,
  .aboutpage .about-testimonial-card cite {
    white-space: normal;
  }

  .homepage .home-cta-panel {
    gap: 24px;
    padding: 32px 24px;
  }

  .homepage .home-cta-panel h2 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -.8px;
  }

  .homepage .home-cta-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .homepage .home-cta-actions .home-button,
  .homepage .home-cta-link {
    width: 100%;
    min-height: 44px;
    height: auto;
    justify-content: flex-start;
  }

  /* Work page */
  .workpage .work-hero-inner {
    padding: 40px 0;
  }

  .workpage .work-hero h1 {
    font-size: 38px;
    line-height: 44px;
    letter-spacing: -.8px;
  }

  .workpage .work-page-content {
    gap: 48px;
    padding: 40px 0 48px;
  }

  .workpage .work-card-content {
    gap: 16px;
    padding: 24px;
  }

  .workpage .work-parity-card h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .workpage .work-card-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .workpage .work-metric-value {
    font-size: 32px;
    line-height: 38px;
  }

  .workpage .work-metric-label {
    white-space: normal;
  }

  .workpage .work-card-footer,
  .workpage .work-card-footer .home-button {
    width: 100%;
  }

  .workpage .work-cta-panel {
    gap: 24px;
    padding: 32px 24px;
  }

  .workpage .work-cta-panel h2 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -.8px;
  }

  .workpage .work-cta-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .workpage .work-cta-actions .home-button,
  .workpage .work-cta-link {
    width: 100%;
    min-height: 44px;
    height: auto;
    justify-content: flex-start;
  }

  /* About page */
  .aboutpage .about-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 40px 0;
  }

  .aboutpage .about-hero h1 {
    font-size: 38px;
    line-height: 44px;
    letter-spacing: -.8px;
  }

  .aboutpage .about-profile-column {
    justify-content: flex-start;
  }

  .aboutpage .about-profile-frame {
    width: 220px;
    height: 274px;
  }

  .aboutpage .about-page-content {
    padding: 40px 0 48px;
  }

  .aboutpage .about-main-content {
    gap: 48px;
  }

  .aboutpage .about-lead-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .aboutpage .about-lead-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .aboutpage .about-lead-card {
    min-height: 0;
  }

  .aboutpage .about-testimonials-section {
    padding: 48px 0;
  }

  .aboutpage .about-testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .aboutpage .about-testimonial-card {
    min-height: 0;
  }

  .aboutpage .about-contact-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .aboutpage .about-contact-actions .home-button,
  .aboutpage .about-contact-link,
  .aboutpage .about-linkedin {
    width: 100%;
    min-height: 44px;
    height: auto;
    flex-basis: auto;
    justify-content: flex-start;
  }

  .aboutpage .about-contact-actions .home-button {
    justify-content: center;
  }

  /* Shared case studies */
  .case-study-page .case-hero .hero-inner {
    padding: 40px 0;
  }

  .case-study-page .case-hero h1 {
    font-size: 38px;
    line-height: 44px;
    letter-spacing: -.8px;
  }

  .case-study-page .proof-inner {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 16px 0;
  }

  .case-study-page .proof-item {
    width: 100%;
    white-space: normal;
  }

  .case-study-page .proof-separator {
    display: none;
  }

  .case-study-page .page-content {
    padding: 40px 0 48px;
  }

  .case-study-page .case-layout {
    gap: 40px;
  }

  .case-study-page .case-section {
    padding-bottom: 40px;
  }

  .case-study-page .case-section + .case-section {
    padding-top: 28px;
  }

  .case-study-page .section-header {
    margin-bottom: 32px;
  }

  .case-study-page .case-section h2 {
    font-size: 26px;
  }

  .case-study-page .testimonial-card {
    width: 100%;
    margin-top: 32px;
  }

  .case-study-page .artifact-scroll {
    width: 100%;
    overflow: visible;
  }

  .case-study-page .artifact-scroll-viewport {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .case-study-page .artifact-scroll-viewport img {
    width: 760px;
    min-width: 760px;
    max-width: none;
  }

  .case-study-page .artifact-scroll-instruction {
    display: block;
  }

  .case-study-page .desktop-artifact {
    display: none;
  }

  .case-study-page .mobile-artifact {
    display: block;
  }

  .case-study-page .diagram-flow,
  .case-study-page .diagram-grid,
  .case-study-page .compare-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-study-page .case-nav {
    margin-top: 40px;
  }

  .case-study-page .case-nav .cta {
    padding: 28px 24px;
  }

  .case-study-page .case-nav .hero-actions {
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .case-study-page .case-nav .button {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 479px) {
  :root {
    --page-gutter: 16px;
  }

  .homepage .home-hero h1,
  .workpage .work-hero h1,
  .aboutpage .about-hero h1,
  .case-study-page .case-hero h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .homepage .home-hero-metric-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .homepage .home-cta-panel h2,
  .workpage .work-cta-panel h2 {
    font-size: 32px;
    line-height: 39px;
  }

  .workpage .work-card-content {
    padding: 20px;
  }

  .workpage .work-parity-card h2 {
    font-size: 27px;
    line-height: 33px;
  }

  .workpage .work-card-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workpage .work-card-metrics .work-metric:last-child {
    grid-column: 1 / -1;
  }

  .aboutpage .about-profile-frame {
    width: 200px;
    height: 250px;
  }

  .case-study-page .case-section h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .case-study-page .testimonial-card blockquote {
    font-size: 20px;
    line-height: 31px;
  }

  .case-study-page .artifact-scroll-viewport img {
    width: 720px;
    min-width: 720px;
  }
}

.homepage .icon.icon-north-east,
.workpage .icon.icon-north-east,
.aboutpage .icon.icon-north-east,
.case-study-page .icon.icon-north-east {
  display: inline-flex;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  align-items: center;
  justify-content: center;
}

.homepage .icon.icon-north-east img,
.workpage .icon.icon-north-east img,
.aboutpage .icon.icon-north-east img,
.case-study-page .icon.icon-north-east img {
  display: block;
  width: 12px;
  height: 12px;
  object-fit: contain;
}
