@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&display=swap");

:root {
  --ink: #111111;
  --paper: #f7f7f2;
  --white: #ffffff;
  --yellow: #fdd302;
  --plum: #7b1f62;
  --blue: #174e86;
  --orange: #f47a19;
  --line: 2px solid var(--ink);
  --radius: 18px;
  --shadow: 7px 7px 0 var(--ink);
  --page: min(1180px, calc(100% - 40px));
  --font-display: "Poppins", Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  color: var(--ink);
  background: var(--yellow);
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  border-radius: 999px;
  font-weight: 700;
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  width: 100%;
  background: transparent;
}

.nav-wrap {
  width: var(--page);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 47px;
  height: 47px;
}

.brand--header {
  gap: 12px;
}

.brand--header .brand-wordmark {
  width: 148px;
  height: auto;
}

.site-header--dark .brand-wordmark {
  filter: brightness(0) invert(1);
}

.site-header--dark .nav-list > li > a:not(.nav-cta) {
  color: var(--white);
}

.site-header--dark .nav-list .nav-cta,
.site-header--dark .nav-list .nav-cta:hover,
.site-header--dark .nav-list .nav-cta[aria-current="page"] {
  color: var(--ink);
  background: var(--yellow);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--yellow);
}

.nav-list .nav-cta {
  margin-left: 6px;
  color: var(--white);
  background: var(--ink);
}

.nav-list .nav-cta:hover,
.nav-list .nav-cta[aria-current="page"] {
  color: var(--ink);
  background: var(--yellow);
}

.menu-button {
  position: relative;
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  display: block;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button span {
  transform: translate(-50%, -50%);
}

.menu-button::before {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-button::after {
  transform: translate(-50%, calc(-50% + 6px));
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

main {
  min-height: 70vh;
}

.section {
  padding: 100px 0;
}

.section--tight {
  padding: 72px 0;
}

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

.section--yellow {
  background: var(--yellow);
  border-block: var(--line);
}

.container {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  content: "";
  background: var(--yellow);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.section--yellow .eyebrow::before {
  background: var(--white);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 9vw, 8.2rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.muted {
  color: #5d5d59;
}

.section--ink .muted {
  color: #c7c7c0;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: stretch;
  background: var(--yellow);
  border-bottom: var(--line);
}

.hero-grid {
  width: var(--page);
  margin-inline: auto;
  padding: 143px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: center;
  gap: 60px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7.2vw, 6.5rem);
}

.hero-copy .lead {
  max-width: 620px;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--ink);
  border: var(--line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button::after {
  content: "↗";
  font-size: 1.05rem;
}

.button:hover {
  box-shadow: 4px 4px 0 var(--plum);
  transform: translate(-2px, -2px);
}

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

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

.hero-art {
  position: relative;
  min-height: 560px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 11px 11px 0 var(--ink);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--one {
  z-index: 2;
  top: 12px;
  right: 0;
  width: 86%;
  aspect-ratio: 16 / 10;
  transform: rotate(2.5deg);
}

.hero-card--two {
  z-index: 1;
  bottom: 6px;
  left: 0;
  width: 78%;
  aspect-ratio: 16 / 10;
  transform: rotate(-4deg);
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 18px;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--plum);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-bottom: var(--line);
}

.ticker-track {
  width: max-content;
  padding: 14px 0;
  display: flex;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticker-track span::after {
  margin-left: 28px;
  color: var(--yellow);
  content: "●";
}

.section-heading {
  margin-bottom: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 50px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
}

.work-card {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.work-card--wide {
  grid-column: span 12;
}

.work-card-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #d9d9d2;
  border-bottom: var(--line);
}

.work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.work-card:hover .work-card-media img {
  transform: scale(1.025);
}

.work-card-body {
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
}

.work-card-body p {
  margin: 0;
  font-size: 0.95rem;
}

.work-card-number {
  font-family: var(--font-display);
  font-weight: 900;
}

.tag-list {
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.process-card {
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
}

.service-card:nth-child(2) {
  background: var(--yellow);
}

.service-card:nth-child(3) {
  color: var(--white);
  background: var(--plum);
}

.service-card-number,
.process-card-number {
  margin-bottom: 64px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card p,
.process-card p {
  margin-bottom: 0;
}

.service-list {
  margin: 16px 0 0;
  padding-left: 19px;
}

.service-list li + li {
  margin-top: 7px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 80px;
}

.image-frame {
  overflow: hidden;
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
}

.facts {
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: var(--line);
  border-radius: var(--radius);
}

.fact {
  padding: 22px;
}

.fact:nth-child(odd) {
  border-right: var(--line);
}

.fact:nth-child(n + 3) {
  border-top: var(--line);
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.fact span {
  margin-top: 4px;
  font-size: 0.86rem;
}

.page-hero {
  padding: 170px 0 78px;
  background: var(--yellow);
  border-bottom: var(--line);
}

.page-hero h1 {
  max-width: 1100px;
  margin-bottom: 20px;
  font-size: clamp(3.8rem, 10vw, 9rem);
}

.page-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  align-items: end;
  gap: 60px;
}

.page-hero-row .lead {
  padding-bottom: 14px;
}

.work-list {
  display: grid;
  gap: 86px;
}

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 52px;
}

.project:nth-child(even) .project-media {
  order: 2;
}

.project-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-meta {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.project p:last-child {
  margin-bottom: 0;
}

.offer-list {
  border-top: var(--line);
}

.offer-row {
  padding: 36px 0;
  display: grid;
  grid-template-columns: 75px minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  border-bottom: var(--line);
}

.offer-row > span {
  font-family: var(--font-display);
  font-weight: 900;
}

.offer-row h3,
.offer-row p {
  margin-bottom: 0;
}

.process-line {
  position: relative;
  display: grid;
  gap: 18px;
}

.process-step {
  padding: 34px;
  display: grid;
  grid-template-columns: 95px minmax(250px, 0.52fr) minmax(0, 1fr);
  gap: 34px;
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
}

.process-step:nth-child(2) {
  background: var(--yellow);
}

.process-step:nth-child(4) {
  color: var(--white);
  background: var(--plum);
}

.process-step-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 900;
}

.process-step h3,
.process-step p {
  margin-bottom: 0;
}

.contact-stage {
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.contact-grid {
  width: var(--page);
  margin-inline: auto;
  padding: 158px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  align-items: center;
  gap: 80px;
}

.contact-stage h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--yellow);
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-link {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-link:hover {
  background: var(--yellow);
  transform: translateX(-5px);
}

.contact-link span {
  font-family: var(--font-display);
  font-weight: 800;
}

.contact-link small {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
}

.cta-panel {
  padding: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  background: var(--yellow);
  border: var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel p {
  margin-bottom: 0;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
  border-top: 2px solid #343434;
}

.footer-main {
  width: var(--page);
  margin-inline: auto;
  padding: 58px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(2, minmax(140px, 0.28fr));
  gap: 50px;
}

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

.footer-main p {
  max-width: 440px;
  margin: 18px 0 0;
  color: #bcbcb6;
}

.footer-links h3 {
  margin-bottom: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: #cecec8;
  text-decoration: none;
}

.footer-links a + a {
  margin-top: 8px;
}

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

.footer-bottom {
  width: var(--page);
  margin-inline: auto;
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #8e8e88;
  border-top: 1px solid #363636;
  font-size: 0.8rem;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 900px) {
  :root {
    --page: min(100% - 30px, 720px);
  }

  .menu-button {
    display: grid;
  }

  .nav-list {
    position: absolute;
    top: 78px;
    right: 15px;
    left: 15px;
    padding: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    background: var(--paper);
    border: var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 6px 6px 0 var(--ink);
  }

  .nav-list[data-open] {
    display: flex;
  }

  .nav-list a {
    width: 100%;
    justify-content: center;
  }

  .site-header--dark .nav-list > li > a:not(.nav-cta) {
    color: var(--ink);
  }

  .nav-list .nav-cta {
    margin-left: 0;
  }

  .hero-grid,
  .split,
  .page-hero-row,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-art {
    min-height: 480px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card-number {
    margin-bottom: 40px;
  }

  .project,
  .project:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .project:nth-child(even) .project-media {
    order: initial;
  }

  .offer-row,
  .process-step {
    grid-template-columns: 70px 1fr;
  }

  .offer-row p,
  .process-step p {
    grid-column: 2;
  }

  .cta-panel {
    padding: 42px;
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 24px);
    --shadow: 5px 5px 0 var(--ink);
  }

  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding: 56px 0;
  }

  .brand span {
    display: none;
  }

  .hero-grid {
    padding: 122px 0 58px;
  }

  .brand--header .brand-wordmark {
    width: 126px;
  }

  .hero-copy h1,
  h1,
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.8rem);
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-card--one {
    width: 92%;
  }

  .hero-card--two {
    width: 85%;
  }

  .hero-stamp {
    width: 105px;
    height: 105px;
    font-size: 0.65rem;
  }

  .work-card,
  .work-card--wide {
    grid-column: span 12;
  }

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

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

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

  .fact + .fact {
    border-top: var(--line);
  }

  .offer-row,
  .process-step {
    padding: 26px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .offer-row p,
  .process-step p {
    grid-column: 1;
  }

  .process-step {
    padding: 24px;
  }

  .contact-grid {
    gap: 44px;
  }

  .contact-link {
    padding: 18px;
  }

  .cta-panel {
    padding: 30px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@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;
  }
}

/* 2026 studio direction: one visual system from feed to field */
:root {
  --ink: #101010;
  --paper: #eef0ec;
  --white: #ffffff;
  --yellow: #fdd302;
  --plum: #7b1f62;
  --blue: #174e86;
  --orange: #f47a19;
  --line: 2px solid var(--ink);
  --radius: 0;
  --shadow: none;
  --page: min(1280px, calc(100% - 64px));
  --font-display: "Poppins", Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-utility: "Arial Narrow", Arial, Helvetica, sans-serif;
}

html {
  background: var(--ink);
}

body {
  color: var(--ink);
  background: var(--white);
}

a,
button {
  outline-offset: 5px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
}

.section {
  padding: 118px 0;
}

.section--tight {
  padding: 78px 0;
}

.container,
.footer-main,
.footer-bottom,
.nav-wrap {
  width: var(--page);
}

.site-header {
  position: absolute;
  background: transparent;
}

.nav-wrap {
  min-height: 98px;
}

.brand--header {
  gap: 12px;
}

.brand--header .brand-symbol {
  width: 48px;
  height: 48px;
}

.brand--header .brand-wordmark {
  width: 148px;
}

.nav-list {
  gap: 18px;
}

.nav-list a {
  position: relative;
  min-height: 44px;
  padding: 9px 0;
  border-radius: 0;
  font-family: var(--font-utility);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-list a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: transparent;
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-list .nav-cta {
  min-width: 108px;
  justify-content: center;
  margin-left: 2px;
  padding-inline: 18px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
}

.nav-list .nav-cta:hover,
.nav-list .nav-cta[aria-current="page"] {
  color: var(--ink);
  background: var(--yellow);
}

.hero {
  min-height: auto;
  overflow: hidden;
  background: var(--yellow);
  border-bottom: 0;
}

.hero-grid {
  width: 100%;
  padding: 160px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 76px;
}

.hero-copy {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 30px;
  font-family: var(--font-utility);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  width: 12px;
  height: 12px;
  border-width: 2px;
}

.hero-copy h1 {
  max-width: 1280px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(4.9rem, 9.6vw, 9.7rem);
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.hero-copy h1 > span:nth-child(2) {
  margin-left: 9vw;
}

.hero-copy h1 .hero-impact {
  width: max-content;
  margin-top: 0.08em;
  margin-left: 20vw;
  padding: 0.02em 0.12em 0.1em;
  color: var(--white);
  background: var(--ink);
  transform: rotate(-1.25deg);
}

.hero-intro {
  max-width: 1090px;
  margin-top: 52px;
  margin-left: auto;
  padding-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 46px;
  border-top: var(--line);
}

.hero-intro .lead {
  max-width: 650px;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.hero-actions {
  margin-top: 0;
  flex-wrap: nowrap;
}

.button {
  min-height: 56px;
  padding: 13px 20px;
  border-radius: 0;
  font-family: var(--font-utility);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
  transform: translateY(-3px);
}

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

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

.scroll-test {
  min-height: 320px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  color: var(--white);
  background: var(--ink);
  border-top: var(--line);
  border-bottom: var(--line);
}

.scroll-test__meta {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border-right: 1px solid #3b3b3b;
}

.scroll-test__meta strong {
  max-width: 150px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.scroll-test__meta span {
  max-width: 130px;
  color: #bdbdb7;
  font-family: var(--font-utility);
  font-size: 0.76rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-test__window {
  min-width: 0;
  overflow: hidden;
}

.scroll-test__track {
  width: max-content;
  display: flex;
  animation: scroll-test 28s linear infinite;
}

.scroll-test__window:hover .scroll-test__track {
  animation-play-state: paused;
}

.scroll-test__group {
  padding-right: 16px;
  display: flex;
  gap: 16px;
}

.scroll-test figure {
  position: relative;
  width: 360px;
  height: 318px;
  margin: 0;
  flex: 0 0 auto;
  overflow: hidden;
  border-right: 1px solid #3b3b3b;
}

.scroll-test img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 500ms ease;
}

.scroll-test figure:hover img {
  transform: scale(1.035);
}

.scroll-test figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.ticker {
  color: var(--ink);
  background: var(--paper);
  border-bottom: var(--line);
}

.ticker-track {
  width: var(--page);
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  font-family: var(--font-utility);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.ticker-track span {
  padding: 20px 18px;
  text-align: center;
}

.ticker-track span + span {
  border-left: 1px solid #aeb0aa;
}

.ticker-track span::after {
  display: none;
}

.section-heading {
  margin-bottom: 62px;
  padding-top: 22px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: start;
  border-top: var(--line);
}

.section-heading .eyebrow {
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.work-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 54px 20px;
}

.work-card,
.work-card--wide {
  grid-column: span 5;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.work-card--wide {
  grid-column: span 7;
}

.work-card:nth-child(3) {
  grid-column: 3 / span 8;
}

.work-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: var(--line);
}

.work-card-media img {
  transition: transform 400ms ease;
}

.work-card:hover .work-card-media img {
  transform: scale(1.025);
}

.work-card-body {
  padding: 22px 0 0;
  display: block;
  border-top: 0;
}

.work-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.7vw, 2.7rem);
}

.work-card p {
  max-width: 620px;
}

.tag-list {
  gap: 7px;
}

.tag-list li {
  padding: 7px 9px;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 0;
  font-family: var(--font-utility);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.section--ink .section-heading {
  border-color: #4b4b4b;
}

.service-grid {
  gap: 0;
  border-top: 1px solid #4b4b4b;
  border-bottom: 1px solid #4b4b4b;
}

.service-card {
  min-height: 390px;
  padding: 48px 36px 40px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-right: 1px solid #4b4b4b;
  border-radius: 0;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:nth-child(1) {
  border-top: 9px solid var(--plum);
}

.service-card:nth-child(2) {
  border-top: 9px solid var(--blue);
}

.service-card:nth-child(3) {
  border-top: 9px solid var(--orange);
}

.service-card-number {
  margin-bottom: auto;
  color: #c8c8c2;
  font-family: var(--font-utility);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 80px;
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
}

.service-card p {
  color: #c8c8c2;
}

.section--yellow {
  background: var(--yellow);
}

.split {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 72px;
}

.facts {
  margin-top: 48px;
  border-top: var(--line);
  border-bottom: var(--line);
}

.fact {
  padding: 20px 0;
}

.fact:nth-child(odd) {
  padding-right: 24px;
}

.fact:nth-child(even) {
  padding-left: 24px;
}

.image-frame,
.project-media {
  border-radius: 0;
  box-shadow: none;
}

.image-frame {
  border: var(--line);
}

.cta-panel {
  padding: 64px;
  color: var(--white);
  background: var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.cta-panel .eyebrow::before {
  background: var(--yellow);
  border-color: var(--yellow);
}

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

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

.page-hero {
  padding: 184px 0 108px;
  background: var(--yellow);
  border-bottom: 0;
}

.page-hero .eyebrow {
  margin-bottom: 54px;
}

.page-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(5.2rem, 13vw, 13rem);
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.page-hero-row {
  padding-top: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.32fr);
  border-top: var(--line);
}

.work-list {
  gap: 0;
}

.project,
.project:nth-child(even) {
  padding: 98px 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  gap: 72px;
  border-bottom: var(--line);
}

.project:first-child {
  padding-top: 0;
}

.project:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project:nth-child(even) {
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1.08fr);
}

.project-media {
  border: var(--line);
}

.project h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.7rem);
}

.project-meta {
  padding-bottom: 10px;
  border-bottom: 1px solid #aeb0aa;
  font-family: var(--font-utility);
  letter-spacing: 0.09em;
}

.contact-stage {
  min-height: 100vh;
  padding-top: 0;
}

.contact-grid {
  padding: 178px 0 100px;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.68fr);
  gap: 88px;
}

.contact-stage h1 {
  font-size: clamp(4.6rem, 9vw, 8.8rem);
  line-height: 0.85;
}

.contact-link {
  padding: 24px;
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 0;
}

.contact-link span,
.contact-link strong {
  color: var(--white);
}

.contact-link:hover {
  background: var(--yellow);
  transform: translateX(-7px);
}

.contact-link:hover span,
.contact-link:hover strong {
  color: var(--ink);
}

.site-footer {
  border-top-color: #3b3b3b;
}

.footer-main {
  padding-top: 70px;
}

.footer-links h3,
.footer-bottom {
  font-family: var(--font-utility);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 32px, 760px);
  }

  .nav-wrap {
    min-height: 86px;
  }

  .nav-list {
    top: 86px;
    right: 16px;
    left: 16px;
    padding: 14px;
    gap: 6px;
    color: var(--ink);
    background: var(--paper);
    border: var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-list a,
  .site-header--dark .nav-list > li > a:not(.nav-cta) {
    color: var(--ink);
  }

  .nav-list .nav-cta,
  .site-header--dark .nav-list .nav-cta,
  .site-header--dark .nav-list .nav-cta:hover,
  .site-header--dark .nav-list .nav-cta[aria-current="page"] {
    color: var(--white);
    background: var(--ink);
  }

  .hero-grid {
    padding-top: 132px;
    gap: 54px;
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 12.7vw, 7.4rem);
  }

  .hero-copy h1 > span:nth-child(2) {
    margin-left: 4vw;
  }

  .hero-copy h1 .hero-impact {
    margin-left: 10vw;
  }

  .hero-intro {
    margin-top: 40px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .scroll-test {
    grid-template-columns: 1fr;
  }

  .scroll-test__meta {
    padding: 20px 16px;
    flex-direction: row;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid #3b3b3b;
  }

  .scroll-test__meta strong,
  .scroll-test__meta span {
    max-width: none;
  }

  .section-heading,
  .page-hero-row,
  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .work-card,
  .work-card--wide,
  .work-card:nth-child(3) {
    grid-column: span 12;
  }

  .work-card:nth-child(3) {
    margin-top: 0;
  }

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

  .service-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #4b4b4b;
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-card h3 {
    margin-top: 58px;
  }

  .project,
  .project:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .project:nth-child(even) .project-media {
    order: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 24px);
  }

  .brand--header {
    gap: 8px;
  }

  .brand--header .brand-symbol {
    width: 40px;
    height: 40px;
  }

  .brand--header .brand-wordmark {
    width: 114px;
  }

  .menu-button {
    width: 44px;
    height: 40px;
  }

  .section {
    padding: 82px 0;
  }

  .hero-grid {
    padding-top: 118px;
    gap: 44px;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
    line-height: 0.87;
  }

  .hero-copy h1 > span:nth-child(2) {
    margin-left: 0;
  }

  .hero-copy h1 .hero-impact {
    margin-left: 0;
    font-size: 8.2vw;
    line-height: 0.95;
  }

  .hero-intro {
    margin-top: 34px;
    gap: 26px;
  }

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

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

  .scroll-test__meta strong {
    font-size: 1.2rem;
  }

  .scroll-test figure {
    width: 280px;
    height: 238px;
  }

  .scroll-test__group {
    padding-right: 12px;
    gap: 12px;
  }

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

  .ticker-track span {
    padding: 16px 8px;
  }

  .ticker-track span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #aeb0aa;
  }

  .ticker-track span:nth-child(4) {
    border-top: 1px solid #aeb0aa;
  }

  .section-heading {
    margin-bottom: 42px;
    gap: 18px;
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .work-grid {
    gap: 48px 0;
  }

  .work-card,
  .work-card--wide {
    min-width: 0;
  }

  .work-card-media {
    aspect-ratio: 1 / 1;
  }

  .service-card {
    padding: 36px 22px 34px;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .split {
    gap: 48px;
  }

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

  .fact:nth-child(odd),
  .fact:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .fact + .fact {
    border-top: var(--line);
  }

  .cta-panel {
    padding: 34px 24px;
  }

  .page-hero {
    padding: 142px 0 74px;
  }

  .page-hero .eyebrow {
    margin-bottom: 40px;
  }

  .page-hero h1 {
    font-size: clamp(3.3rem, 17vw, 6.2rem);
  }

  .project,
  .project:nth-child(even) {
    padding: 68px 0;
  }

  .contact-grid {
    padding: 142px 0 78px;
    gap: 52px;
  }

  .contact-stage h1 {
    font-size: clamp(3.2rem, 17vw, 5.8rem);
  }

  .contact-link {
    padding: 20px;
  }

  .footer-main {
    padding-top: 54px;
  }
}
