:root {
  --carbon: #222121;
  --black: #000;
  --white: #fff;
  --gray: #808080;
  --light-gray: #e8e8e8;
  --highlighter: #c7ed29;
  --citrus: #fe673f;
  --lipstick: #eb6191;
  --buoy: #2cc4a7;
  --cobalt: #3a87ff;
  --grape: #c470e1;
  --max: 1180px;
  --stage: 1480px;
  --stage-wide: 1560px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--carbon);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px max(clamp(20px, 4vw, 48px), calc((100vw - var(--stage-wide)) / 2 + 28px));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(34, 33, 33, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(132px, 16vw, 210px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 4px;
  background: var(--highlighter);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 2px solid var(--carbon);
  font-weight: 800;
  text-transform: uppercase;
}

.nav-cta {
  background: var(--carbon);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--carbon);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 5px auto;
  background: var(--carbon);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.95fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  width: min(100%, var(--stage-wide));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 74px) clamp(20px, 5vw, 70px);
  overflow: hidden;
}

.hero-copy,
.section-heading,
.services-intro,
.people-copy {
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.case-feature-copy h2,
.case-card h2,
.story-lead h2,
.origin-band h2,
.culture-copy h2,
.matrix-title h2,
.team-lab-copy h2,
.belief-grid h2,
.section-heading h2,
.services-intro h2,
.people-copy h2,
.contact h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(5.2rem, 10vw, 10.9rem);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  width: min(100%, var(--stage-wide));
  min-height: 76vh;
  margin: 0 auto;
  padding: clamp(58px, 9vw, 120px) clamp(20px, 5vw, 70px);
  background: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(5rem, 10.5vw, 10.75rem);
}

.page-hero > p {
  margin: 0 0 clamp(10px, 4vw, 34px);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 700;
}

.work-page-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 58%, rgba(255, 255, 255, 0.18)),
    url("assets/meeting-bw.png") right center / min(58vw, 860px) auto no-repeat;
}

.about-page-hero {
  color: var(--white);
  background:
    linear-gradient(rgba(34, 33, 33, 0.76), rgba(34, 33, 33, 0.82)),
    url("assets/team-couch.jpg") center / cover;
}

.about-page-hero .eyebrow {
  color: var(--highlighter);
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
}

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

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

.button-light {
  background: var(--white);
  color: var(--carbon);
}

.hero-media {
  position: relative;
  min-height: clamp(470px, 36vw, 560px);
}

.hero-media::before {
  position: absolute;
  top: 28px;
  right: 8px;
  width: min(58%, 470px);
  height: min(54%, 320px);
  background: var(--highlighter);
  content: "";
}

.hero-media::after {
  position: absolute;
  right: -10px;
  bottom: 70px;
  width: min(34%, 260px);
  height: min(26%, 160px);
  background: var(--grape);
  content: "";
}

.hero-photo {
  position: absolute;
  top: 72px;
  right: 46px;
  z-index: 2;
  width: min(86%, 700px);
  height: clamp(350px, 26vw, 430px);
  object-fit: cover;
  filter: contrast(1.07);
}

.hero-mark {
  position: absolute;
  top: 18px;
  left: clamp(4px, 4vw, 64px);
  z-index: 3;
  width: clamp(92px, 8vw, 138px);
  mix-blend-mode: multiply;
}

.hero-stat {
  position: absolute;
  bottom: 24px;
  left: clamp(20px, 8vw, 120px);
  z-index: 4;
  width: min(360px, 76%);
  padding: 22px;
  background: var(--carbon);
  color: var(--white);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  font-size: 1.25rem;
}

.hero-stat span {
  color: var(--highlighter);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.belief-band {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(rgba(34, 33, 33, 0.88), rgba(34, 33, 33, 0.9)),
    url("assets/pattern-dark.png") center / cover;
}

.belief-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(24px, 7vw, 90px);
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  max-width: var(--max);
  margin-inline: auto;
  color: var(--highlighter);
}

.belief-grid h2,
.case-feature-copy h2,
.case-card h2,
.story-lead h2,
.origin-band h2,
.culture-copy h2,
.matrix-title h2,
.team-lab-copy h2,
.section-heading h2,
.services-intro h2,
.people-copy h2,
.contact h2 {
  font-size: clamp(3.2rem, 6.6vw, 6.9rem);
}

.belief-grid p,
.people-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 600;
}

.theory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 82px) clamp(20px, 5vw, 0px);
}

.theory article {
  min-height: 250px;
  padding: clamp(22px, 4vw, 42px);
  border: 2px solid var(--carbon);
}

.theory article + article {
  border-left: 0;
}

.theory span,
.copy-grid span,
.work-item span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theory h3,
.team-strip h3 {
  margin: 22px 0 8px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
}

.theory article:nth-child(2) {
  background: var(--highlighter);
}

.theory article:nth-child(3) {
  background: var(--carbon);
  color: var(--white);
}

.message-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--stage-wide));
  margin: 0 auto;
  border-block: 2px solid var(--carbon);
  background: var(--white);
}

.message-ribbon span {
  display: flex;
  min-height: 106px;
  align-items: center;
  padding: 20px clamp(18px, 3vw, 34px);
  border-right: 2px solid var(--carbon);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.message-ribbon span:nth-child(2) {
  background: var(--highlighter);
}

.message-ribbon span:nth-child(3) {
  background: var(--citrus);
}

.message-ribbon span:last-child {
  border-right: 0;
  background: var(--grape);
}

.work,
.copy {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 70px);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto clamp(28px, 5vw, 58px);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.work-item {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  background: var(--carbon);
  color: var(--white);
}

.work-item strong {
  display: block;
  max-width: 620px;
  margin-top: 10px;
  font-size: clamp(1.4rem, 3vw, 3rem);
  line-height: 1.02;
}

.work-large {
  min-height: 578px;
  grid-row: span 2;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.18)),
    url("assets/working-board.jpg") center / cover;
}

.accent-cobalt {
  background: var(--cobalt);
}

.accent-citrus {
  background: var(--citrus);
  color: var(--black);
}

.image-backed {
  min-height: 360px;
  grid-column: 1 / -1;
}

.image-backed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.image-backed::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
  content: "";
}

.image-backed span,
.image-backed strong {
  position: relative;
  z-index: 1;
}

.services {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1fr);
  gap: clamp(30px, 5vw, 82px);
  width: min(100%, var(--stage));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 70px);
  background: var(--light-gray);
  box-shadow: 0 0 0 100vmax var(--light-gray);
  clip-path: inset(0 -100vmax);
}

.service-list {
  display: grid;
  align-self: start;
  border-top: 2px solid var(--carbon);
}

.service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 2px solid var(--carbon);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 800;
}

.service-list a::after {
  color: var(--citrus);
  content: "+";
  font-size: 2rem;
}

.people {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(340px, 1.25fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  width: min(100%, var(--stage));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 70px);
}

.people-copy p {
  margin: 24px 0 30px;
}

.people-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 110px;
  gap: 14px;
}

.people-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-collage img:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
  filter: grayscale(1);
}

.people-collage img:nth-child(2) {
  grid-column: 3 / 7;
  grid-row: 1 / 3;
}

.people-collage img:nth-child(3) {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
}

.people-collage img:nth-child(4) {
  grid-column: 5 / 7;
  grid-row: 3 / 6;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 2px solid var(--carbon);
}

.team-strip article {
  min-width: 0;
  padding: 22px;
  border-right: 2px solid var(--carbon);
  background: var(--white);
}

.team-strip article:nth-child(even) {
  background: var(--highlighter);
}

.team-strip article:last-child {
  border-right: 0;
}

.team-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: bottom;
}

.team-strip h3 {
  margin-top: 16px;
}

.team-strip p {
  margin: 0;
  color: var(--carbon);
  font-size: 0.88rem;
  font-weight: 600;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.copy-grid a {
  min-height: 260px;
  padding: 28px;
  border: 2px solid var(--carbon);
}

.copy-grid a:nth-child(2) {
  background: var(--lipstick);
}

.copy-grid a:nth-child(3) {
  background: var(--buoy);
}

.copy-grid strong {
  display: block;
  margin-top: 42px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.08;
}

.contact {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(rgba(34, 33, 33, 0.9), rgba(34, 33, 33, 0.9)),
    url("assets/pattern-dark.png") center / cover;
  text-align: center;
}

.contact .eyebrow {
  color: var(--highlighter);
}

.contact h2 {
  max-width: 980px;
  margin: 0 auto 34px;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  width: min(100%, var(--stage-wide));
  min-height: 620px;
  margin: 0 auto;
  color: var(--white);
  background:
    linear-gradient(rgba(34, 33, 33, 0.92), rgba(34, 33, 33, 0.92)),
    url("assets/pattern-dark.png") center / cover;
  box-shadow: 0 0 0 100vmax var(--carbon);
  clip-path: inset(0 -100vmax);
}

.case-feature-media {
  min-height: 420px;
  padding: clamp(20px, 4vw, 54px);
}

.case-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.case-feature-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 74px);
  overflow: hidden;
}

.case-c-mark {
  position: absolute;
  top: clamp(18px, 4vw, 42px);
  right: clamp(16px, 4vw, 58px);
  width: clamp(84px, 12vw, 150px);
  opacity: 0.42;
}

.case-feature-copy .eyebrow {
  color: var(--highlighter);
}

.case-feature-copy p {
  max-width: 610px;
  margin: 22px 0;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 600;
}

.case-feature-copy dl {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
}

.case-feature-copy dt {
  color: var(--highlighter);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-feature-copy dd {
  margin: 0;
}

.case-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 70px);
  border-bottom: 2px solid var(--carbon);
}

.case-filter span {
  margin-right: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-filter button {
  min-height: 38px;
  padding: 8px 14px;
  border: 2px solid var(--carbon);
  background: var(--white);
  color: var(--carbon);
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
}

.case-filter button.is-selected {
  background: var(--highlighter);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(100%, var(--stage));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 74px) clamp(20px, 5vw, 70px);
}

.case-card {
  min-height: 390px;
  padding: clamp(24px, 3vw, 34px);
  border: 2px solid var(--carbon);
  background: var(--white);
}

.case-card span,
.story-grid span,
.matrix-list strong,
.results-band span {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card h2 {
  margin: 34px 0 16px;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.case-card p {
  margin: 0;
  font-weight: 650;
}

.image-case {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.image-case img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.image-case::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.16));
  content: "";
}

.image-case > div {
  position: relative;
  z-index: 1;
}

.accent-case {
  background: var(--cobalt);
  color: var(--white);
}

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

.wide-case {
  grid-column: span 2;
}

.results-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 2px solid var(--carbon);
}

.results-band div {
  min-height: 210px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 2px solid var(--carbon);
}

.results-band div:nth-child(2) {
  background: var(--highlighter);
}

.results-band div:last-child {
  border-right: 0;
  background: var(--grape);
}

.results-band strong {
  display: block;
  margin-top: 28px;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  line-height: 1.05;
}

.story-lead,
.culture-section,
.values-matrix {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  width: min(100%, var(--stage));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 70px);
}

.story-lead img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.story-lead h2,
.culture-copy h2,
.matrix-title h2 {
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.story-lead p,
.culture-copy p {
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  font-weight: 650;
}

.origin-band {
  padding: clamp(58px, 9vw, 126px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(rgba(34, 33, 33, 0.9), rgba(34, 33, 33, 0.9)),
    url("assets/pattern-dark.png") center / cover;
}

.origin-band .eyebrow {
  color: var(--highlighter);
}

.origin-band h2 {
  max-width: 1180px;
  font-size: clamp(3.5rem, 10vw, 9rem);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid var(--carbon);
}

.story-grid article {
  min-height: 280px;
  padding: clamp(26px, 4vw, 42px);
  border-right: 2px solid var(--carbon);
}

.story-grid article:nth-child(2) {
  background: var(--highlighter);
}

.story-grid article:nth-child(3) {
  border-right: 0;
  background: var(--citrus);
}

.story-grid p {
  margin: 34px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
}

.culture-section {
  background: var(--light-gray);
  box-shadow: 0 0 0 100vmax var(--light-gray);
  clip-path: inset(0 -100vmax);
}

.culture-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 118px;
  gap: 14px;
}

.culture-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-photos img:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.culture-photos img:nth-child(2) {
  grid-column: 5 / 7;
  grid-row: 1 / 4;
}

.culture-photos img:nth-child(3) {
  grid-column: 2 / 7;
  grid-row: 3 / 5;
  filter: grayscale(1);
}

.values-matrix {
  align-items: start;
}

.matrix-list {
  display: grid;
  border-top: 2px solid var(--carbon);
}

.matrix-list div {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 2px solid var(--carbon);
}

.matrix-list span {
  font-weight: 650;
}

.team-lab {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  width: min(100%, var(--stage));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 70px);
  border-block: 2px solid var(--carbon);
  background: var(--white);
  overflow: hidden;
}

.about-team-lab {
  border-top: 0;
}

.team-lab-copy {
  max-width: 620px;
}

.team-lab-copy h2 {
  font-size: clamp(3.5rem, 8vw, 7.8rem);
}

.team-lab-copy p {
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 700;
}

.team-system {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  align-items: end;
  min-height: 0;
  padding-top: 74px;
}

.team-c-mark {
  position: absolute;
  top: 0;
  right: 8%;
  z-index: 0;
  width: clamp(100px, 13vw, 178px);
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.team-note {
  position: relative;
  z-index: 1;
}

.team-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
  background: transparent;
}

.team-card img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
  object-position: bottom;
}

.team-card span,
.team-note strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0;
  padding: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.team-card p,
.team-note span {
  margin: 0;
  padding: 6px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.team-card span {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 3px 8px;
  background: var(--highlighter);
  color: var(--carbon);
}

.lead-card {
  grid-column: auto;
  grid-row: auto;
}

.cobalt-card {
  grid-column: auto;
  grid-row: auto;
}

.lime-card {
  grid-column: auto;
  grid-row: auto;
}

.team-note {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: var(--carbon);
  color: var(--white);
}

.team-note span {
  padding: 8px 0 0;
  color: var(--highlighter);
}

.small-card {
  grid-column: auto;
  grid-row: auto;
}

.dark-card {
  grid-column: auto;
  grid-row: auto;
  background: transparent;
  color: var(--carbon);
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px max(clamp(20px, 5vw, 70px), calc((100vw - var(--stage-wide)) / 2 + 28px));
  border-top: 2px solid var(--carbon);
}

.footer img {
  width: 170px;
}

.footer p {
  margin: 16px 0 0;
  color: var(--gray);
  font-size: 0.92rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    background: var(--white);
    border-bottom: 2px solid var(--carbon);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-cta {
    margin-top: 18px;
  }

  .hero,
  .page-hero,
  .case-feature,
  .story-lead,
  .culture-section,
  .values-matrix,
  .team-lab,
  .belief-grid,
  .services,
  .people {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 520px;
  }

  .theory,
  .case-grid,
  .results-band,
  .story-grid,
  .message-ribbon,
  .copy-grid,
  .team-strip {
    grid-template-columns: 1fr;
  }

  .message-ribbon span {
    min-height: 86px;
    border-right: 0;
    border-bottom: 2px solid var(--carbon);
  }

  .message-ribbon span:last-child {
    border-bottom: 0;
  }

  .page-hero {
    min-height: 0;
  }

  .work-page-hero {
    background:
      linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.92)),
      url("assets/meeting-bw.png") center / cover;
  }

  .case-feature-media {
    min-height: 340px;
  }

  .wide-case {
    grid-column: auto;
  }

  .results-band div,
  .story-grid article {
    border-right: 0;
    border-bottom: 2px solid var(--carbon);
  }

  .matrix-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .team-system {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    min-height: 0;
    padding-top: 64px;
  }

  .team-c-mark {
    top: 0;
    left: auto;
    right: 4%;
    width: 120px;
  }

  .lead-card,
  .cobalt-card,
  .lime-card,
  .team-note,
  .small-card,
  .dark-card {
    grid-column: auto;
    grid-row: auto;
  }

  .theory article + article,
  .team-strip article {
    border-left: 2px solid var(--carbon);
  }

  .theory article + article {
    border-top: 0;
  }

  .team-strip article {
    border-right: 2px solid var(--carbon);
    border-bottom: 2px solid var(--carbon);
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-large {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(4.4rem, 24vw, 7rem);
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-photo {
    top: 58px;
    right: 22px;
    width: 92%;
    height: 310px;
  }

  .hero-stat {
    left: 0;
    bottom: 0;
  }

  .people-collage {
    grid-auto-rows: 90px;
  }

  .team-system {
    grid-template-columns: 1fr;
  }

  .team-card img {
    max-height: 340px;
  }

  .footer {
    flex-direction: column;
  }
}
