:root {
  --bg: #0b0d0c;
  --surface: #111411;
  --surface-2: #171b17;
  --surface-3: #20251f;
  --text: #f0f3ee;
  --muted: #aeb6ac;
  --subtle: #737b72;
  --accent: #b6d96b;
  --accent-dark: #18200c;
  --line: rgba(232, 240, 229, 0.12);
  --line-strong: rgba(232, 240, 229, 0.2);
  --radius: 24px;
  --radius-inner: 19px;
  --container: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-layer: 20;
  --menu-layer: 15;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 73% 9%, rgba(182, 217, 107, 0.055), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-160%);
  transition: transform 350ms var(--ease);
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: relative;
}

.nav-island {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: var(--nav-layer);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 40px), 1160px);
  min-height: 68px;
  padding: 8px 10px 8px 22px;
  border: 1px solid rgba(232, 240, 229, 0.14);
  border-radius: 999px;
  background: rgba(15, 18, 15, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 54px rgba(2, 8, 3, 0.22);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand span,
.footer-brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  transition: color 420ms var(--ease);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 7px 8px 7px 20px;
  border: 0;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 600ms var(--ease), background-color 600ms var(--ease), transform 600ms var(--ease), box-shadow 600ms var(--ease);
}

.nav-cta {
  background: var(--text);
  color: #141814;
  font-size: 13px;
  font-weight: 650;
}

.nav-cta:hover,
.button-primary:hover {
  box-shadow: 0 10px 34px rgba(182, 217, 107, 0.14);
  transform: translateY(-2px);
}

.nav-cta:active,
.button:active {
  transform: scale(0.98);
}

.button-orbit {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 13, 10, 0.08);
  transition: transform 600ms var(--ease), background-color 600ms var(--ease);
}

.nav-cta:hover .button-orbit,
.button:hover .button-orbit {
  transform: translate(3px, -2px) scale(1.04);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
}

.menu-line {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 520ms var(--ease);
}

.menu-line:nth-child(2) {
  transform: translateY(-3px);
}

.menu-line:nth-child(3) {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--menu-layer);
  background: rgba(8, 10, 8, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-links {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  width: min(calc(100% - 48px), 520px);
  margin-inline: auto;
}

.mobile-menu-links a {
  font-size: clamp(2.1rem, 11vw, 4.2rem);
  font-weight: 550;
  line-height: 1.05;
  letter-spacing: -0.045em;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease), color 350ms var(--ease);
}

.mobile-menu.is-open .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu-links a:nth-child(2) {
  transition-delay: 55ms;
}

.mobile-menu.is-open .mobile-menu-links a:nth-child(3) {
  transition-delay: 110ms;
}

.mobile-menu.is-open .mobile-menu-links a:nth-child(4) {
  color: var(--accent);
  transition-delay: 165ms;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  min-height: 100dvh;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 72px;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, var(--bg) 0%, var(--bg) 26%, rgba(11, 13, 12, 0.96) 39%, rgba(11, 13, 12, 0.72) 54%, rgba(11, 13, 12, 0.08) 78%, transparent 100%),
    linear-gradient(180deg, rgba(11, 13, 12, 0.78) 0%, transparent 17%, transparent 70%, var(--bg) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
  align-self: center;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(78vw, 1240px);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 6%, #000 22%, #000 82%, rgba(0, 0, 0, 0.4) 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 6%, #000 22%, #000 82%, rgba(0, 0, 0, 0.4) 92%, transparent 100%);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, var(--bg) 0%, rgba(11, 13, 12, 0.98) 14%, rgba(11, 13, 12, 0.86) 28%, rgba(11, 13, 12, 0.56) 39%, rgba(11, 13, 12, 0.2) 48%, transparent 56%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
  opacity: 0.94;
  filter: saturate(0.78) contrast(1.05) brightness(0.92);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 5%, #000 15%, #000 72%, rgba(0, 0, 0, 0.45) 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 5%, #000 15%, #000 72%, rgba(0, 0, 0, 0.45) 86%, transparent 100%);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.hero h1,
.section-heading h2,
.manifesto h2,
.approach-heading h2,
.fit-statement h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 520;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3.25rem, 6.8vw, 7rem);
  line-height: 0.94;
}

.hero h1 em {
  display: inline-block;
  padding-bottom: 0.07em;
  color: var(--accent);
  font-family: inherit;
  font-style: italic;
  line-height: 1.1;
}

.hero-intro {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

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

.button {
  min-height: 58px;
  padding-left: 24px;
  font-weight: 650;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-dark);
}

.button-primary .button-orbit {
  background: rgba(10, 14, 8, 0.11);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button-secondary .button-orbit {
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: rgba(232, 240, 229, 0.32);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.experience {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 8% 32%, rgba(182, 217, 107, 0.09), transparent 30rem),
    rgba(255, 255, 255, 0.012);
}

.experience-layout {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
}

.experience-lead {
  display: flex;
  min-width: 0;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px clamp(34px, 4.8vw, 82px) 48px;
  border-right: 1px solid var(--line-strong);
}

.experience-lead strong {
  color: var(--accent);
  font-size: clamp(5rem, 8vw, 8.6rem);
  font-weight: 620;
  font-variant-numeric: tabular-nums;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.experience-lead p {
  max-width: 390px;
  margin: 38px 0 0;
  color: #d8ddd5;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.45;
}

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

.experience-stat {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px clamp(26px, 3.2vw, 56px) 48px;
}

.experience-stat + .experience-stat {
  border-left: 1px solid var(--line);
}

.experience-stat strong {
  color: var(--accent);
  font-size: clamp(2.8rem, 4vw, 4.35rem);
  font-weight: 620;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.experience-stat span {
  max-width: 220px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.proof {
  overflow: hidden;
  padding: 28px 0 34px;
  border-bottom: 1px solid var(--line);
}

.proof-label {
  margin-bottom: 25px;
  color: var(--subtle);
  font-size: 12px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 44s infinite linear;
}

.company-row {
  display: flex;
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
  padding-right: clamp(44px, 7vw, 110px);
  color: #c8cec5;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.services {
  padding-top: 152px;
  padding-bottom: 152px;
}

.section-heading {
  max-width: 850px;
}

.section-heading h2,
.approach-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 1;
}

.section-heading > p,
.approach-heading > p {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "large accent"
    "large dark"
    "career career";
  gap: 18px;
  margin-top: 76px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition: border-color 600ms var(--ease), transform 700ms var(--ease), background-color 600ms var(--ease);
}

.service-card:hover {
  border-color: rgba(182, 217, 107, 0.34);
  transform: translateY(-5px);
}

.service-card-large {
  grid-area: large;
  min-height: 598px;
  background:
    radial-gradient(circle at 90% 10%, rgba(182, 217, 107, 0.13), transparent 16rem),
    var(--surface-2);
}

.service-card-accent {
  grid-area: accent;
  background: var(--accent);
  color: var(--accent-dark);
}

.service-card-dark {
  grid-area: dark;
  background: #11180f;
}

.service-card-career {
  grid-area: career;
  display: grid;
  min-height: 260px;
  grid-template-columns: 0.25fr 1fr;
  align-items: end;
  column-gap: 48px;
  background:
    linear-gradient(120deg, rgba(182, 217, 107, 0.06), transparent 45%),
    var(--surface);
}

.card-index {
  color: var(--subtle);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.service-card-accent .card-index {
  color: rgba(20, 28, 12, 0.52);
}

.service-card h3 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 3.35rem);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.service-card p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-card-accent p {
  color: rgba(20, 28, 12, 0.72);
}

.service-mark {
  color: rgba(240, 243, 238, 0.08);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 700;
  line-height: 0.7;
  letter-spacing: -0.09em;
}

.signal-lines {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 54px;
  margin-top: 26px;
}

.signal-lines span {
  width: 7px;
  height: 30%;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.45;
  transform-origin: bottom;
}

.signal-lines span:nth-child(2) {
  height: 58%;
}

.signal-lines span:nth-child(3) {
  height: 100%;
  opacity: 0.82;
}

.signal-lines span:nth-child(4) {
  height: 70%;
}

.signal-lines span:nth-child(5) {
  height: 42%;
}

.manifesto {
  display: grid;
  min-height: 74dvh;
  place-content: center;
  padding-top: 140px;
  padding-bottom: 140px;
}

.manifesto p {
  margin: 0 0 26px;
  color: var(--subtle);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.manifesto h2 {
  max-width: 1060px;
  font-size: clamp(3.25rem, 7.5vw, 8.3rem);
  line-height: 0.96;
}

.approach {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(56px, 9vw, 150px);
  padding-top: 152px;
  padding-bottom: 152px;
}

.approach-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.approach-flow {
  display: grid;
  gap: 70px;
}

.approach-item {
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.approach-item > span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 650;
}

.approach-item h3 {
  max-width: 670px;
  margin: 22px 0 0;
  font-size: clamp(1.65rem, 3vw, 3.15rem);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.approach-item p {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
}

.fit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(56px, 9vw, 150px);
  padding-top: 152px;
  padding-bottom: 152px;
}

.fit-statement h2 {
  position: sticky;
  top: 130px;
  max-width: 560px;
  font-size: clamp(2.75rem, 5vw, 5.6rem);
  line-height: 0.98;
}

.fit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px 40px;
  align-content: start;
}

.fit-item {
  min-height: 180px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}

.fit-item span {
  font-size: 18px;
  font-weight: 650;
}

.fit-item p {
  margin: 18px 0 0;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(56px, 9vw, 150px);
  padding-top: 152px;
  padding-bottom: 152px;
  border-top: 1px solid var(--line);
}

.about-name {
  margin: 0 0 26px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 650;
}

.about-copy h2 {
  max-width: 730px;
}

.about-body {
  align-self: end;
  padding-bottom: 8px;
}

.about-body p {
  max-width: 570px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
}

.text-link,
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(182, 217, 107, 0.42);
  color: var(--accent);
  font-weight: 650;
  transition: border-color 400ms var(--ease), gap 400ms var(--ease);
}

.text-link:hover,
.contact-link:hover {
  gap: 12px;
  border-color: var(--accent);
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(34px, 6vw, 84px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 0% 0%, rgba(182, 217, 107, 0.1), transparent 25rem),
    var(--surface-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.contact-copy h2 {
  max-width: 580px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 9px;
}

.field label {
  color: #d8ddd5;
  font-size: 13px;
  font-weight: 650;
}

.field label span {
  color: var(--subtle);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(232, 240, 229, 0.18);
  border-radius: 14px;
  outline: 0;
  background: rgba(7, 10, 7, 0.58);
  color: var(--text);
  transition: border-color 420ms var(--ease), background-color 420ms var(--ease), box-shadow 420ms var(--ease);
}

.field input,
.field select {
  height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 136px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(232, 240, 229, 0.3);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(7, 10, 7, 0.8);
  box-shadow: 0 0 0 3px rgba(182, 217, 107, 0.12);
}

.field [aria-invalid="true"] {
  border-color: #f2937f;
  box-shadow: 0 0 0 3px rgba(242, 147, 127, 0.1);
}

.field-error {
  min-height: 18px;
  color: #f7a692;
  font-size: 12px;
  line-height: 1.4;
}

.submit-button {
  justify-self: start;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.66;
}

.form-status {
  min-height: 24px;
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status.is-success {
  color: var(--accent);
}

.form-status.is-error {
  color: #f7a692;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 36px;
  padding-top: 44px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 13px;
}

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

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.footer-links a {
  transition: color 400ms var(--ease);
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: clamp(3rem, 6.4vw, 5.5rem);
  }

  .approach,
  .fit,
  .about,
  .contact-panel {
    gap: 64px;
  }
}

@media (max-width: 820px) {
  .section-shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-island {
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 7px 8px 7px 18px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: max(820px, 100dvh);
    align-items: start;
    padding-top: 138px;
    padding-bottom: 88px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, var(--bg) 0%, rgba(11, 13, 12, 0.94) 42%, rgba(11, 13, 12, 0.38) 100%),
      linear-gradient(180deg, var(--bg) 0%, rgba(11, 13, 12, 0.88) 28%, rgba(11, 13, 12, 0.28) 62%, var(--bg) 100%);
  }

  .hero-copy {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-media {
    inset: 20% -24% -6% 7%;
    width: auto;
  }

  .hero-media img {
    object-position: 53% 42%;
    opacity: 0.64;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.1rem, 12vw, 6rem);
  }

  .hero-intro {
    max-width: 540px;
  }

  .experience-layout {
    grid-template-columns: 1fr;
  }

  .experience-lead {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .experience-support {
    min-height: 190px;
  }

  .services,
  .approach,
  .fit,
  .about {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "large" "accent" "dark" "career";
    margin-top: 56px;
  }

  .service-card-large,
  .service-card-accent,
  .service-card-dark,
  .service-card-career {
    min-height: 350px;
  }

  .service-card-career {
    display: flex;
  }

  .manifesto {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .approach,
  .fit,
  .about,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .approach-heading,
  .fit-statement h2 {
    position: static;
  }

  .approach-flow {
    gap: 54px;
  }

  .fit-list {
    margin-top: 6px;
  }

  .about-body {
    padding-bottom: 0;
  }

  .footer {
    grid-template-columns: 1fr auto;
  }

  .footer > p:not(.copyright) {
    display: none;
  }

  .footer-links {
    order: 3;
  }

  .copyright {
    order: 4;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .section-shell {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .hero-media {
    inset: 24% -42% -4% -2%;
  }

  .hero-media img {
    object-position: 57% 42%;
    opacity: 0.58;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13.7vw, 4.6rem);
  }

  .hero-intro {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .experience-lead {
    min-height: 240px;
    padding: 34px 20px 38px;
  }

  .experience-lead strong {
    font-size: clamp(5rem, 27vw, 7rem);
  }

  .experience-lead p {
    max-width: 330px;
    margin-top: 34px;
    font-size: 17px;
  }

  .experience-support {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .experience-stat {
    min-height: 130px;
    padding: 26px 20px 30px;
  }

  .experience-stat + .experience-stat {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .experience-stat strong {
    font-size: clamp(2.7rem, 13vw, 3.5rem);
  }

  .experience-stat span {
    margin-top: 10px;
    font-size: 13px;
  }

  .proof {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .services,
  .approach,
  .fit,
  .about {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading h2,
  .approach-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .section-heading > p,
  .approach-heading > p,
  .about-body p,
  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .service-grid {
    gap: 12px;
    margin-top: 44px;
  }

  .service-card {
    padding: 26px;
  }

  .service-card-large,
  .service-card-accent,
  .service-card-dark,
  .service-card-career {
    min-height: 320px;
  }

  .service-mark {
    font-size: 4.9rem;
  }

  .manifesto {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .manifesto h2 {
    font-size: clamp(2.75rem, 13vw, 4.8rem);
  }

  .fit-statement h2 {
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }

  .fit-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fit-item {
    min-height: auto;
  }

  .contact {
    width: 100%;
    padding: 48px 12px;
  }

  .contact-panel {
    gap: 46px;
    padding: 28px 20px;
    border-radius: var(--radius);
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .submit-button {
    width: 100%;
    justify-content: space-between;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .copyright {
    order: 5;
  }
}

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

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

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

  .marquee-track {
    width: auto;
    transform: none;
  }

  .marquee-track .company-row[aria-hidden="true"] {
    display: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav-island,
  .mobile-menu {
    background: #111411;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
