:root {
  --ink: #101625;
  --ink-soft: #1a2235;
  --paper: #f7f7f4;
  --white: #ffffff;
  --blue: #556fd3;
  --blue-deep: #405bbd;
  --yellow: #f5c814;
  --line: rgba(16, 22, 37, 0.14);
  --muted: #5f6570;
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 92px;
  padding: 10px max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
  background: rgba(247, 247, 244, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: min-height 220ms ease, border-color 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  min-height: 74px;
  border-bottom-color: var(--line);
  background: rgba(247, 247, 244, 0.97);
}

.brand {
  width: 148px;
  height: 76px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
}

.site-nav a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 48px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.hero {
  width: min(1320px, 100%);
  min-height: 820px;
  margin: 0 auto;
  padding: 132px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
  overflow: hidden;
}

.hero-copy {
  max-width: 680px;
  padding-left: clamp(0px, 2vw, 34px);
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 3px;
  background: var(--yellow);
}

.hero h1,
.section-heading h2,
.services-intro h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.3rem, 7.2vw, 7.8rem);
}

.hero h1 em {
  color: var(--blue);
  font-weight: 500;
}

.hero-lede {
  max-width: 630px;
  margin: 32px 0 0;
  color: #444b58;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.button {
  min-height: 54px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.text-link {
  position: relative;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.45);
}

.hero-facts {
  margin: 56px 0 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  min-width: 0;
}

.hero-facts dt {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -38px;
  right: -18vw;
  bottom: 74px;
  left: 18%;
  background: var(--blue);
  content: "";
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: 24px;
  width: 54%;
  aspect-ratio: 1;
  border: 14px solid var(--yellow);
  content: "";
  transform: rotate(9deg);
}

.hero-image-wrap {
  position: absolute;
  inset: 0 46px 0 0;
  margin: 0;
  overflow: hidden;
  background: #ccd0d8;
  box-shadow: 0 24px 70px rgba(16, 22, 37, 0.25);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual:hover .hero-image-wrap img {
  transform: scale(1.025);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 38px;
  min-width: 214px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-note-number {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.measure-mark {
  position: absolute;
  top: -18px;
  left: -28px;
  height: 110px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.measure-mark span {
  width: 1px;
  height: 32px;
  background: var(--ink);
}

.measure-mark span:nth-child(3) {
  height: 56px;
}

.project-strip {
  min-height: 76px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 62px);
  background: var(--ink);
  color: var(--white);
}

.project-strip p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.project-strip span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--yellow);
  transform: rotate(45deg);
}

.press-band {
  min-height: 190px;
  padding: 38px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(320px, 1fr) minmax(260px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  background: #ecece7;
  border-bottom: 1px solid var(--line);
}

.press-kicker,
.press-copy {
  margin: 0;
}

.press-kicker {
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.press-title {
  padding: 0 clamp(24px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: center;
}

.press-title span,
.press-title small {
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.press-title strong {
  margin: 2px 0 4px;
  font-family: var(--display);
  font-size: clamp(2.45rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.press-copy {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.section {
  padding: 116px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(36px, 8vw, 120px);
}

.section-heading h2,
.services-intro h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(3.2rem, 6vw, 5.7rem);
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.04rem;
}

.project-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(260px, 340px));
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #d5d7da;
  color: var(--white);
}

.project-card-tall {
  grid-row: 1 / span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.project-card:nth-child(2) img {
  object-position: center 72%;
}

.project-card:nth-child(3) img {
  object-position: center 45%;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 22, 37, 0.04) 30%, rgba(16, 22, 37, 0.82));
}

.project-index,
.project-meta,
.project-title,
.project-arrow {
  position: absolute;
  z-index: 1;
}

.project-meta {
  right: 72px;
  bottom: 24px;
  left: 24px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-index {
  top: 20px;
  left: 22px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.project-title {
  right: 72px;
  bottom: 54px;
  left: 24px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.project-arrow {
  right: 24px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-card:hover img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.project-card:hover .project-arrow {
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(45deg);
}

.work-footer {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.work-footer p {
  margin: 0;
  color: var(--muted);
}

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.partnership {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(560px, 1.3fr);
  align-items: start;
  gap: clamp(50px, 8vw, 116px);
  background: #e9eaed;
}

.partnership-copy {
  position: sticky;
  top: 118px;
}

.partnership-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5.5vw, 5.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.partnership-lede {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.partnership-mark {
  margin: 32px 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partnership-mark strong {
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.partnership-mark span {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.55;
  text-transform: uppercase;
}

.partnership-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(270px, 330px));
  gap: 14px;
}

.partner-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background: #cfd1d4;
  color: var(--white);
}

.partner-card-main {
  grid-row: 1 / span 2;
}

.partner-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(9, 14, 24, 0.84));
  content: "";
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.partner-card:nth-child(2) img {
  object-position: center 54%;
}

.partner-card:nth-child(3) img {
  object-position: center 72%;
}

.partner-card > span {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.partner-card strong {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
}

.partner-card small {
  color: #eceef4;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.partner-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.services {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(440px, 1fr);
  gap: clamp(60px, 9vw, 140px);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.services::after {
  position: absolute;
  top: -260px;
  left: -270px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(255, 255, 255, 0.025),
    0 0 0 116px rgba(255, 255, 255, 0.02);
  content: "";
}

.services-intro {
  position: relative;
  z-index: 1;
  align-self: start;
  position: sticky;
  top: 130px;
}

.kicker-light {
  color: var(--yellow);
}

.services-intro p:last-child {
  max-width: 430px;
  margin: 34px 0 0;
  color: #bac0ca;
  font-size: 1.02rem;
}

.service-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  min-height: 164px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 56px minmax(180px, 0.9fr) minmax(220px, 1.1fr);
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-list span {
  align-self: start;
  padding-top: 6px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.service-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
}

.service-list p {
  margin: 0;
  color: #bac0ca;
  font-size: 0.95rem;
}

.about {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 0 clamp(56px, 10vw, 150px);
  align-items: start;
}

.about-stamp {
  width: min(100%, 370px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--ink);
  clip-path: polygon(50% 0%, 90% 12%, 100% 50%, 88% 90%, 50% 100%, 11% 89%, 0 50%, 12% 11%);
  transform: rotate(-4deg);
}

.about-stamp span {
  font-family: var(--display);
  font-size: clamp(4.4rem, 8vw, 7.2rem);
  line-height: 0.9;
}

.about-stamp p {
  margin: 14px 0 0;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 690px;
}

.about-lede {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: clamp(1.16rem, 2vw, 1.44rem);
  line-height: 1.6;
}

.about-copy > p:not(.kicker):not(.about-lede) {
  max-width: 620px;
  color: var(--muted);
}

.about-copy .press-note {
  margin-top: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
  color: var(--ink);
}

.process {
  grid-column: 2;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.process li {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.process li:last-child {
  border-bottom: 1px solid var(--line);
}

.process li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue-deep);
  font-weight: 850;
}

.process h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

.process p {
  margin: 4px 0 0;
  color: var(--muted);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(56px, 9vw, 140px);
  background: var(--blue-deep);
  color: var(--white);
  overflow: hidden;
}

.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.contact-copy,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-copy p:not(.kicker) {
  max-width: 620px;
  margin: 30px 0 34px;
  color: #e5e8f4;
  font-size: 1.08rem;
}

.button-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.button-yellow:hover {
  background: var(--white);
}

.contact-details {
  margin: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-style: normal;
}

.contact-details a {
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--display);
  font-size: clamp(1.28rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  transition: color 180ms ease, padding-left 180ms ease;
}

.contact-details a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-details a:hover {
  padding-left: 10px;
  color: var(--yellow);
}

.contact-details span {
  margin-bottom: 7px;
  color: #cbd1e5;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer {
  min-height: 170px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
  background: #090e18;
  color: #b7bdc8;
  font-size: 0.83rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.footer-brand {
  width: 134px;
  height: 84px;
  display: flex;
  align-items: center;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.08);
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal[data-delay="1"] {
  transition-delay: 100ms;
}

.reveal[data-delay="2"] {
  transition-delay: 180ms;
}

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

@media (max-width: 980px) {
  :root {
    --content: min(100% - 36px, 760px);
  }

  .site-header {
    min-height: 78px;
    padding: 8px 18px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 124px;
    height: 62px;
  }

  .menu-button {
    position: relative;
    z-index: 103;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button span:first-child {
    transform: translateY(-4px);
  }

  .menu-button span:last-child {
    transform: translateY(4px);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    padding: 112px 26px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(2.5rem, 11vw, 4.4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 18px 58px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 14vw, 6.2rem);
  }

  .hero-visual {
    width: min(100%, 680px);
    min-height: 620px;
    justify-self: end;
  }

  .section {
    padding: 88px 24px;
  }

  .section-heading,
  .services,
  .contact {
    grid-template-columns: 1fr;
  }

  .partnership {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .partnership-copy {
    position: relative;
    top: auto;
  }

  .partnership-copy h2 {
    max-width: 760px;
  }

  .press-band {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .press-copy {
    grid-column: 1 / -1;
    max-width: 600px;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading > p {
    max-width: 570px;
  }

  .services-intro {
    position: relative;
    top: auto;
  }

  .service-list li {
    grid-template-columns: 48px minmax(180px, 0.85fr) minmax(200px, 1.15fr);
  }

  .about {
    grid-template-columns: 0.52fr 1fr;
    gap: 40px;
  }

  .process {
    grid-column: 1 / -1;
  }

  .contact {
    gap: 60px;
  }

  .site-footer {
    grid-template-columns: 140px 1fr;
  }

  .site-footer p:last-child {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 62px;
  }

  .hero {
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5rem);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-facts {
    margin-top: 40px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-facts dt {
    font-size: 1.85rem;
  }

  .hero-facts dd {
    font-size: 0.64rem;
  }

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

  .hero-visual::before {
    right: -32vw;
    left: 22%;
  }

  .hero-image-wrap {
    right: 22px;
  }

  .hero-note {
    right: 0;
    bottom: 24px;
    min-width: 196px;
    padding: 14px 16px;
  }

  .measure-mark {
    display: none;
  }

  .project-strip {
    padding: 20px 18px;
    justify-content: flex-start;
    gap: 14px;
    overflow: hidden;
  }

  .project-strip p {
    min-width: max-content;
    font-size: 0.69rem;
  }

  .press-band {
    min-height: auto;
    padding: 46px 18px;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .press-title {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .press-copy {
    grid-column: auto;
  }

  .section {
    padding: 78px 18px;
  }

  .section-heading h2,
  .services-intro h2,
  .about-copy h2,
  .contact-copy h2,
  .partnership-copy h2 {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .partnership-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .partner-card,
  .partner-card-main {
    min-height: 420px;
    grid-row: auto;
  }

  .partner-card:nth-child(2) {
    min-height: 330px;
  }

  .partner-card:nth-child(3) {
    min-height: 390px;
  }

  .project-grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-card,
  .project-card-tall {
    min-height: 460px;
    grid-row: auto;
  }

  .project-card:nth-child(2) {
    min-height: 390px;
  }

  .work-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-footer .button {
    width: 100%;
  }

  .services {
    gap: 58px;
  }

  .service-list li {
    min-height: auto;
    padding: 27px 0;
    grid-template-columns: 42px 1fr;
    gap: 8px 14px;
  }

  .service-list span {
    grid-row: 1 / span 2;
  }

  .service-list p {
    grid-column: 2;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-stamp {
    width: 270px;
    justify-self: center;
  }

  .process {
    grid-column: 1;
    margin-top: 14px;
  }

  .contact-details a {
    overflow-wrap: anywhere;
  }

  .site-footer {
    min-height: auto;
    padding: 38px 18px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer p:last-child {
    grid-column: auto;
  }

  .footer-brand {
    width: 122px;
    height: 76px;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: var(--ink);
    border-top: 1px solid rgba(16, 22, 37, 0.18);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}

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

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

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