:root {
  --olive: #202b24;
  --olive-dark: #17201b;
  --olive-soft: #344238;
  --paper: #ebe9de;
  --paper-deep: #d8dac8;
  --ink: #253029;
  --white: #f8f6ef;
  --cyan: #28afd9;
  --data-number: var(--cyan);
  --line: rgba(248, 246, 239, 0.22);
  --line-dark: rgba(37, 48, 41, 0.22);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background: var(--olive);
  color: var(--white);
  font-family: "Outfit", Arial, sans-serif;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  max-width: 100%;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.shell {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.skip-link {
  background: var(--cyan);
  color: var(--olive-dark);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: absolute;
  top: -4rem;
  z-index: 3;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(32, 43, 36, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 2;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 5.25rem;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
}

.brand img,
.site-footer img {
  display: block;
  height: auto;
  width: 9.25rem;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1.65rem;
}

.site-nav a {
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}

.site-nav a:hover {
  color: var(--cyan);
}

.nav-contact {
  border: 1px solid var(--line);
  padding: 0.6rem 0.85rem;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  display: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 0.65rem;
  padding: 0.5rem 0;
}

.menu-icon {
  display: grid;
  gap: 0.25rem;
  width: 1.3rem;
}

.menu-icon i {
  background: currentColor;
  display: block;
  height: 1px;
  transition: transform 0.3s var(--ease);
  width: 100%;
}

.hero {
  background: var(--olive);
}

.hero-stage {
  isolation: isolate;
  min-height: calc(100dvh - 5.25rem);
  overflow: hidden;
  padding: clamp(4rem, 7vw, 8rem) 0 0;
  position: relative;
}

.hero-stage::after {
  background:
    linear-gradient(90deg, rgba(23, 32, 27, 0.76) 0%, rgba(23, 32, 27, 0.62) 47%, rgba(23, 32, 27, 0.48) 100%),
    linear-gradient(0deg, rgba(23, 32, 27, 0.2), rgba(23, 32, 27, 0.2));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-video {
  inset: 0;
  min-height: 100%;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero-grid {
  display: block;
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding-bottom: clamp(4rem, 8vw, 8rem);
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 0.65rem;
  letter-spacing: 0.13em;
  margin: 0 0 2.1rem;
  text-transform: uppercase;
}

.eyebrow span,
.signal {
  background: var(--cyan);
  display: inline-block;
  height: 0.68rem;
  width: 0.68rem;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(8rem, 16.5vw, 15rem);
  font-weight: 700;
  line-height: 0.75;
  margin-bottom: 3.25rem;
}

h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-intro {
  color: rgba(248, 246, 239, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.5;
  max-width: 37rem;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.button,
.text-link,
.contact-action,
.evidence-projects {
  align-items: center;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 0.65rem;
  letter-spacing: 0.035em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.ui-arrow {
  display: inline-block;
  flex: 0 0 auto;
  height: 0.78em;
  position: relative;
  width: 0.78em;
}

.ui-arrow::before,
.ui-arrow::after {
  content: "";
  position: absolute;
}

.ui-arrow::before {
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  height: 0.42em;
  right: 0;
  top: 0;
  width: 0.42em;
}

.ui-arrow::after {
  background: currentColor;
  height: 1.5px;
  right: 0.03em;
  top: 0.35em;
  transform: rotate(-45deg);
  transform-origin: right center;
  width: 0.72em;
}

.ui-arrow-down {
  transform: rotate(135deg);
}

.ui-arrow-up {
  transform: rotate(-45deg);
}

.ui-arrow-ne {
  transform: none;
}

.button {
  padding: 0.95rem 1.15rem;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button:active,
.text-link:active,
.contact-action:active,
.evidence-projects:active {
  transform: translateY(1px);
}

.text-link {
  border-bottom: 1px solid var(--cyan);
  padding-bottom: 0.25rem;
}

.evidence-rail {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr 0.55fr;
  margin-top: clamp(3.5rem, 6vw, 6.75rem);
}

.evidence-item,
.evidence-number,
.evidence-projects {
  border-right: 1px solid var(--line);
  min-height: 11rem;
  padding: 1.35rem 1.15rem 1.15rem 0;
}

.evidence-item {
  display: flex;
  gap: 0.7rem;
}

.evidence-item p,
.evidence-number p {
  font-size: 0.84rem;
  letter-spacing: 0.045em;
  line-height: 1.38;
  margin: 0;
  text-transform: uppercase;
}

.evidence-number {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  padding-left: 1.25rem;
}

.evidence-number strong {
  font-size: clamp(3.9rem, 6vw, 6.5rem);
  font-weight: 700;
  grid-column: 2;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.evidence-number p {
  align-self: end;
  grid-column: 2;
  max-width: 16rem;
}

.evidence-projects {
  align-items: flex-end;
  border-right: 0;
  justify-content: flex-end;
  padding-left: 1.15rem;
  text-transform: uppercase;
}

.community-rail {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(3.5rem, 6vw, 6.75rem);
}

.community-lead,
.community-pillar,
.community-link {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 12.5rem;
  padding: 1.35rem;
}

.community-lead {
  grid-column: span 2;
  grid-row: span 2;
  padding-right: clamp(2rem, 5vw, 5rem);
}

.community-lead .eyebrow {
  margin-bottom: 1.35rem;
}

.community-lead h2 {
  font-size: clamp(2.25rem, 3.7vw, 4.4rem);
  font-weight: 600;
  line-height: 0.91;
  margin-bottom: 1.1rem;
}

.community-lead > p:last-child {
  color: rgba(248, 246, 239, 0.72);
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0;
  max-width: 24rem;
}

.community-pillar {
  display: flex;
  flex-direction: column;
}

.community-pillar span {
  color: var(--cyan);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.community-pillar h3 {
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 600;
  line-height: 0.94;
  margin: auto 0 0.85rem;
}

.community-pillar p {
  color: rgba(248, 246, 239, 0.69);
  font-size: 0.85rem;
  line-height: 1.42;
  margin-bottom: 0;
}

.pillar-culture {
  grid-column: 3;
}

.pillar-outreach,
.pillar-assessment {
  border-right: 0;
}

.community-link {
  align-items: flex-end;
  border-bottom: 0;
  border-right: 0;
  display: flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 0.65rem;
  grid-column: 1 / -1;
  justify-content: flex-end;
  letter-spacing: 0.035em;
  min-height: 6rem;
  text-transform: uppercase;
}

.community-link:hover {
  color: var(--cyan);
}

.delivery-data {
  background: var(--paper-deep);
  border-top: 1px solid var(--line-dark);
  color: var(--ink);
  padding: clamp(3.25rem, 6vw, 6.25rem) 0;
}

.delivery-data .delivery-wall {
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: minmax(19rem, 0.92fr) minmax(0, 1.7fr);
}

.delivery-data .delivery-data-heading {
  border-color: var(--line-dark);
  border-right: 1px solid var(--line-dark);
  padding: 1.35rem clamp(1.5rem, 4vw, 4rem) 1.6rem 0;
}

.delivery-data-heading .eyebrow {
  margin-bottom: clamp(2.25rem, 6vw, 6.5rem);
}

.delivery-data-heading h2 {
  font-size: clamp(3.8rem, 5.9vw, 7.1rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.8;
  margin-bottom: 1.35rem;
  max-width: 32rem;
}

.delivery-data .delivery-data-heading > p:last-child {
  color: rgba(37, 48, 41, 0.76);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 26rem;
}

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

.delivery-wall > *,
.delivery-metrics > *,
.argument-grid > *,
.audience-grid > *,
.services-heading > *,
.proof-heading > *,
.proof-grid > *,
.engagement-heading > *,
.engagement-list > *,
.territory-grid > *,
.team-grid > *,
.team-member > *,
.studios-grid > *,
.studios-locations > *,
.contact-grid > *,
.footer-inner > * {
  min-width: 0;
}

.delivery-data .delivery-metric {
  border-bottom: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 10.25rem;
  padding: 1.35rem;
}

.delivery-metric:nth-child(3n) {
  border-right: 0;
}

.delivery-metric:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.delivery-data .delivery-metric strong {
  color: var(--data-number);
  display: block;
  font-size: clamp(3.1rem, 4.25vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.delivery-metric p {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin: 0.8rem 0 0;
  text-transform: uppercase;
}

.section {
  padding: clamp(5.5rem, 10vw, 10rem) 0;
}

.argument,
.origin,
.territory {
  border-top: 1px solid var(--line);
}

.argument-grid,
.audience-grid,
.services-heading,
.proof-heading,
.engagement-heading,
.territory-grid,
.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 8vw, 9rem);
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1.65fr);
}

.section-label {
  align-items: flex-start;
  display: flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--cyan);
}

.section-label p {
  margin: 0;
}

.argument-copy h2,
.audience-copy h2,
.services-heading h2,
.proof-heading h2,
.engagement-heading h2,
.territory-copy h2,
.contact-copy h2 {
  font-size: clamp(2.7rem, 5.2vw, 6rem);
  font-weight: 600;
  line-height: 0.94;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  max-width: 60rem;
}

.audience-copy h2 span {
  display: block;
}

.argument-columns {
  display: grid;
  gap: clamp(1.5rem, 5vw, 5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 66rem;
}

.argument-columns p,
.services-heading > div:last-child > p,
.case-content p,
.contact-copy p {
  color: rgba(248, 246, 239, 0.76);
  font-size: 1.08rem;
  line-height: 1.55;
}

.statement {
  border-top: 1px solid var(--line);
  font-size: clamp(1.45rem, 2.4vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.13;
  margin: clamp(3rem, 6vw, 6rem) 0 0;
  max-width: 51rem;
  padding-top: 1.2rem;
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.services {
  border-top: 1px solid var(--line-dark);
}

.audience {
  border-top: 1px solid var(--line-dark);
}

.audience-columns {
  display: grid;
  gap: clamp(1.5rem, 5vw, 5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 66rem;
}

.audience-columns > p,
.audience-callout > p,
.audience-detail {
  color: rgba(37, 48, 41, 0.76);
  font-size: 1.08rem;
  line-height: 1.55;
}

.audience-callout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.audience-callout > p {
  margin-bottom: 0;
}

.audience-data-point {
  align-items: flex-end;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding-top: 1.15rem;
}

.audience-data-point strong {
  color: var(--data-number);
  font-size: clamp(3.25rem, 5vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.audience-data-point span {
  color: rgba(37, 48, 41, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  padding-bottom: 0.15rem;
  text-transform: uppercase;
}

.audience-detail {
  border-top: 1px solid var(--line-dark);
  margin: clamp(3rem, 6vw, 6rem) 0 0;
  max-width: 54rem;
  padding-top: 1.2rem;
}

.section-label-dark span {
  color: var(--cyan);
}

.services-heading h2 {
  margin-bottom: 1.5rem;
}

.services-heading > div:last-child > p {
  color: rgba(37, 48, 41, 0.72);
  max-width: 35rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 8rem);
}

.service {
  border-top: 1px solid var(--line-dark);
  min-height: 19rem;
  padding: 1.15rem clamp(1rem, 4vw, 3.5rem) 2rem 0;
}

.service:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
  padding-right: clamp(1rem, 4vw, 3.5rem);
}

.service:nth-child(even) {
  padding-left: clamp(1rem, 4vw, 3.5rem);
}

.service span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.service h3 {
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  font-weight: 600;
  line-height: 0.98;
  margin: clamp(3rem, 6vw, 5.25rem) 0 1.1rem;
  max-width: 19rem;
}

.service p {
  color: rgba(37, 48, 41, 0.76);
  line-height: 1.48;
  margin-bottom: 0;
  max-width: 30rem;
}

.paper-line {
  border-top: 1px solid var(--line-dark);
  margin-top: 1px;
  padding: clamp(2.25rem, 5vw, 5.5rem) 0 clamp(3rem, 7vw, 7.5rem);
}

.paper-line h3 {
  font-size: clamp(3.45rem, 7.5vw, 8.25rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.86;
  margin: 0 0 0 clamp(2.5rem, 8vw, 10rem);
  max-width: 61rem;
}

.paper-line h3 span {
  display: inline;
}

.paper-line h3 span:last-child {
  color: var(--cyan);
  margin-left: 0.18em;
}

.proof-heading h2 {
  margin-bottom: 1.4rem;
  max-width: 48rem;
}

.proof {
  border-top: 1px solid var(--line);
}

.proof-heading > div:last-child > p {
  color: rgba(248, 246, 239, 0.76);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 36rem;
}

.proof-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.case {
  aspect-ratio: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 0;
  padding: clamp(1.4rem, 2.5vw, 2.5rem);
}

.case-tone-olive,
.case-tone-cyan,
.case-tone-blue,
.case-tone-paper {
  color: var(--white);
}

.case-tone-olive {
  background: var(--olive-soft);
}

.case-tone-cyan {
  background: #205060;
}

.case-tone-blue {
  background: #ae762d;
  color: #fff;
}

.case-tone-paper {
  background: #9e493d;
  color: #fff;
}

.case-label {
  display: flex;
  font-size: 0.77rem;
  font-weight: 600;
  justify-content: space-between;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-content {
  max-width: 32rem;
  place-self: end start;
}

.case-content h3 {
  font-size: clamp(2.1rem, 3.55vw, 4rem);
  font-weight: 600;
  line-height: 0.92;
  margin-bottom: 1rem;
}

.case-content p {
  color: rgba(248, 246, 239, 0.78);
  margin-bottom: 0;
  max-width: 27rem;
}

.case-tone-blue .case-content p {
  color: #fff;
}

.case-tone-paper .case-content p {
  color: #fff;
}

.case-tone-paper,
.case-tone-paper .case-label,
.case-tone-paper .case-label span,
.case-tone-paper .case-content h3,
.case-tone-paper .case-content p,
.case-tone-paper .case-footer {
  color: #fff !important;
}

.case-footer {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.5rem;
  letter-spacing: 0.075em;
  margin: 1.6rem 0 0;
  text-transform: uppercase;
}

.case-footer[href] {
  border-bottom: 1px solid var(--cyan);
  width: fit-content;
}

.case-footer[href]:hover {
  color: var(--cyan);
}

@media (min-width: 621px) {
  .case-content {
    margin-top: clamp(7rem, 12vw, 10.5rem);
    place-self: start start;
  }
}

.section-review {
  background: var(--paper-deep);
  color: var(--ink);
}

.engagement-heading h2 {
  margin-bottom: 1.5rem;
}

.engagement-heading > div:last-child > p {
  color: rgba(37, 48, 41, 0.77);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 40rem;
}

.engagement-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 8rem);
}

.engagement-step {
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  padding: 1.15rem clamp(1rem, 4vw, 3.5rem) 2.2rem 0;
}

.engagement-step:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
  padding-right: clamp(1rem, 4vw, 3.5rem);
}

.engagement-step:nth-child(even) {
  padding-left: clamp(1rem, 4vw, 3.5rem);
}

.engagement-step > span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.engagement-step h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-weight: 600;
  line-height: 0.96;
  margin: clamp(2.5rem, 5vw, 4.75rem) 0 0.9rem;
  max-width: 22rem;
}

.engagement-meta {
  color: var(--cyan);
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.38;
  margin-bottom: 1.25rem;
  max-width: 30rem;
}

.engagement-step > p:last-child {
  color: rgba(37, 48, 41, 0.77);
  line-height: 1.48;
  margin-bottom: 0;
  max-width: 32rem;
}

.after-review {
  align-items: end;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 1.3fr) auto;
  padding-top: clamp(2.5rem, 5vw, 5rem);
}

.after-review h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  font-weight: 600;
  line-height: 0.98;
  margin: 1.3rem 0 0;
  max-width: 18rem;
}

.after-review > p {
  color: rgba(37, 48, 41, 0.77);
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 40rem;
}

.button-dark {
  background: var(--olive);
  color: var(--white);
  margin-top: 1.5rem;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--olive-soft);
}

.signal-dark {
  background: var(--cyan);
}

.territory-grid {
  align-items: start;
}

.territory-copy h2 {
  margin-bottom: 1.5rem;
  max-width: 46rem;
}

.territory-copy p {
  color: rgba(248, 246, 239, 0.76);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 52rem;
}

.team {
  border-top: 1px solid var(--line-dark);
}

.team-grid {
  display: grid;
  gap: clamp(2.5rem, 8vw, 9rem);
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1.65fr);
}

.team-copy h2 {
  font-size: clamp(2.7rem, 5.2vw, 6rem);
  font-weight: 600;
  line-height: 0.94;
  margin-bottom: 1.5rem;
  max-width: 52rem;
}

.team-copy > p {
  color: rgba(37, 48, 41, 0.76);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 46rem;
}

.team-list {
  border-top: 1px solid var(--line-dark);
  margin-top: clamp(3rem, 6vw, 6rem);
}

.team-member {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  padding: clamp(1.25rem, 2.8vw, 2.5rem) 0;
}

.team-member + .team-member {
  border-top: 1px solid var(--line-dark);
}

.team-portrait {
  aspect-ratio: 1;
  background: var(--paper-deep);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.team-portrait::before {
  background: var(--cyan);
  content: "";
  height: 0.65rem;
  left: 1rem;
  position: absolute;
  top: 1rem;
  width: 0.65rem;
  z-index: 1;
}

.team-portrait-image {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.team-portrait-image-melanie {
  transform: translateY(-4%) scale(1.62);
  transform-origin: center top;
}

.team-role {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.team-member h3 {
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  font-weight: 600;
  line-height: 0.96;
  margin: 0.65rem 0 1.15rem;
}

.team-member-copy > p:last-child {
  color: rgba(37, 48, 41, 0.77);
  line-height: 1.52;
  margin-bottom: 0;
  max-width: 44rem;
}

.studios {
  border-top: 1px solid var(--line-dark);
}

.studios-grid {
  display: grid;
  gap: clamp(2.5rem, 8vw, 9rem);
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1.65fr);
}

.studios-copy h2 {
  font-size: clamp(2.7rem, 5.2vw, 6rem);
  font-weight: 600;
  line-height: 0.94;
  margin-bottom: 1.5rem;
  max-width: 56rem;
}

.studios-copy > p {
  color: rgba(37, 48, 41, 0.76);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 45rem;
}

.studios-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 6rem);
}

.studios-locations article {
  border-top: 1px solid var(--line-dark);
  min-height: 14rem;
  padding: 1.15rem clamp(1rem, 4vw, 3.5rem) 1.5rem 0;
}

.studios-locations article + article {
  border-left: 1px solid var(--line-dark);
  padding-left: clamp(1rem, 4vw, 3.5rem);
}

.studios-locations span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.studios-locations h3 {
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  font-weight: 600;
  line-height: 0.98;
  margin: clamp(2.5rem, 5vw, 4.25rem) 0 1rem;
}

.studios-locations p {
  color: rgba(37, 48, 41, 0.75);
  line-height: 1.48;
  margin-bottom: 0;
  max-width: 26rem;
}

.contact {
  border-top: 1px solid var(--line);
  padding-bottom: clamp(7rem, 13vw, 13rem);
}

.contact-grid {
  align-items: end;
  grid-template-columns: minmax(10rem, 0.32fr) minmax(0, 1.25fr) minmax(12rem, 0.43fr);
}

.contact-copy h2 {
  margin-bottom: 1.5rem;
}

.contact-copy p {
  margin-bottom: 0;
  max-width: 44rem;
}

.contact-action {
  border-bottom: 1px solid var(--cyan);
  justify-content: space-between;
  padding-bottom: 0.55rem;
}

.site-footer {
  background: var(--olive-dark);
  padding: clamp(4rem, 7vw, 6.5rem) 0 1.5rem;
}

.footer-inner {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(9rem, 0.72fr) minmax(0, 1.4fr) minmax(10rem, 0.65fr);
}

.footer-brand img {
  display: block;
  width: 7.25rem;
}

.footer-brand > p,
.footer-meta > p,
.footer-bottom p,
.footer-meta a {
  color: rgba(248, 246, 239, 0.68);
  font-size: 0.84rem;
  line-height: 1.45;
  margin: 0;
}

.footer-brand > p {
  margin-top: 1.4rem;
  max-width: 14rem;
}

.footer-addresses {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-label {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.footer-addresses address {
  color: rgba(248, 246, 239, 0.82);
  font-size: 0.93rem;
  font-style: normal;
  line-height: 1.48;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer-meta > p:not(.footer-label) {
  max-width: 15rem;
}

.footer-meta a {
  align-items: center;
  border-bottom: 1px solid var(--cyan);
  display: inline-flex;
  gap: 0.55rem;
  margin-top: auto;
  padding-bottom: 0.35rem;
  width: fit-content;
}

.footer-meta a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: clamp(3rem, 5vw, 5rem);
  padding-top: 1.15rem;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: reveal 0.7s var(--ease) both;
  }

  .reveal-delay {
    animation-delay: 0.12s;
  }

}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-items: flex-start;
    background: var(--olive-dark);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 1rem 1.5rem 1.5rem;
    position: absolute;
    right: 0;
    top: 5.25rem;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 0;
    width: 100%;
  }

  .nav-contact {
    border: 0;
  }

  .hero-copy h1 {
    font-size: clamp(7.5rem, 18vw, 12.5rem);
  }

  .evidence-rail {
    grid-template-columns: 1fr 1fr;
  }

  .evidence-projects {
    border-right: 0;
  }

  .community-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-lead {
    grid-column: span 2;
    grid-row: auto;
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .pillar-culture {
    grid-column: auto;
  }

  .community-link {
    border-bottom: 0;
    grid-column: span 2;
    min-height: 6rem;
  }

  .delivery-data .delivery-wall {
    grid-template-columns: 1fr;
  }

  .delivery-data .delivery-data-heading {
    border-bottom: 1px solid var(--line-dark);
    border-right: 0;
    padding: 1.35rem 0 2.5rem;
  }

  .delivery-data-heading .eyebrow {
    margin-bottom: 3.25rem;
  }

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

  .delivery-data .delivery-metric:nth-child(3n) {
    border-right: 1px solid var(--line-dark);
  }

  .delivery-data .delivery-metric:nth-child(2n) {
    border-right: 0;
  }

  .delivery-data .delivery-metric:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line-dark);
  }

  .delivery-data .delivery-metric:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .argument-grid,
  .audience-grid,
  .services-heading,
  .proof-heading,
  .engagement-heading,
  .territory-grid,
  .team-grid,
  .studios-grid,
  .contact-grid {
    gap: 2.25rem;
    grid-template-columns: 1fr;
  }

  .section-label {
    max-width: 16rem;
  }

  .after-review {
    align-items: start;
    grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.3fr);
  }

  .after-review .button {
    grid-column: 2;
  }

  .contact-action {
    max-width: 17rem;
  }

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

  .footer-addresses {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-meta {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 620px) {
  .shell {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .hero-stage {
    padding-top: 3.25rem;
  }

  .hero-copy,
  .hero-intro {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(4.9rem, 20vw, 7.25rem);
  }

  .evidence-rail {
    grid-template-columns: 1fr;
  }

  .evidence-item,
  .evidence-number,
  .evidence-projects {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
    padding: 1.1rem 0;
  }

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

  .evidence-projects {
    justify-content: flex-start;
  }

  .community-rail {
    grid-template-columns: 1fr;
  }

  .community-lead,
  .community-pillar,
  .pillar-culture,
  .community-link {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    grid-column: auto;
    min-height: auto;
    padding: 1.25rem 0;
  }

  .community-lead {
    padding-bottom: 2.5rem;
  }

  .community-pillar h3 {
    margin-top: 2.75rem;
  }

  .community-link {
    justify-content: flex-start;
  }

  .delivery-data-heading h2 {
    font-size: clamp(4rem, 17vw, 6.5rem);
  }

  .delivery-data .delivery-wall {
    border-top: 0;
    width: 100%;
  }

  .delivery-data .delivery-data-heading {
    padding-top: 0;
  }

  .delivery-data .delivery-metrics {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .delivery-data .delivery-metric,
  .delivery-data .delivery-metric:nth-child(3n),
  .delivery-data .delivery-metric:nth-child(2n),
  .delivery-data .delivery-metric:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
    border-right: 0;
    min-height: auto;
    padding: 1.4rem 0;
    width: 100%;
  }

  .delivery-data .delivery-metric:last-child {
    border-bottom: 0;
  }

  .delivery-data .delivery-metric strong {
    font-size: clamp(3.5rem, 15vw, 5.5rem);
    max-width: 100%;
  }

  .paper-line h3 {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
    margin-left: 0;
    max-width: 100%;
  }

  .argument-columns,
  .audience-columns,
  .service-list,
  .proof-grid,
  .studios-locations,
  .engagement-list,
  .after-review {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: auto;
    padding: 1.15rem 0 2.4rem;
  }

  .service:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .service:nth-child(even) {
    padding-left: 0;
  }

  .service h3 {
    margin-top: 2.75rem;
  }

  .engagement-step {
    min-height: auto;
    padding: 1.15rem 0 2.7rem;
  }

  .engagement-step:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .engagement-step:nth-child(even) {
    padding-left: 0;
  }

  .engagement-step h3 {
    margin-top: 2.75rem;
  }

  .after-review {
    align-items: start;
    padding-top: 2.5rem;
  }

  .after-review .button {
    grid-column: auto;
    justify-self: start;
    margin-top: 0;
  }

  .studios-locations article,
  .studios-locations article + article {
    border-left: 0;
    min-height: auto;
    padding: 1.15rem 0 2.4rem;
  }

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

  .team-portrait {
    min-height: 12rem;
  }

  .case {
    aspect-ratio: auto;
    min-height: 28rem;
    width: 100%;
  }

  .case-label {
    flex-wrap: wrap;
    min-height: 0;
  }

  .case-label {
    gap: 0.8rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-inner,
  .footer-addresses {
    grid-template-columns: 1fr;
  }

  .footer-addresses,
  .footer-meta {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-meta {
    gap: 1rem;
    min-height: auto;
  }

  .footer-meta a {
    margin-top: 0.75rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }
}
