:root {
  --white: #ffffff;
  --silver: #d5d5d5;
  --orange: #ff5a1f;
  --charcoal: #2b2b2b;
  --black: #000000;
  --ink: var(--black);
  --paper: var(--white);
  --accent: var(--orange);
  --line: rgba(255, 255, 255, 0.25);
  --display: "Archivo Black", sans-serif;
  --sans: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 4vw;
  mix-blend-mode: difference;
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity 700ms ease 150ms,
    transform 800ms cubic-bezier(.2,.75,.2,1) 150ms;
}

body.page-ready .site-header {
  opacity: 1;
  transform: none;
}

.logo {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent);
  margin-left: 3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

nav a {
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--accent);
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 17px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 4vw 6vh;
}

.hero-reel {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
}

.hero-frame {
  position: absolute;
  inset: -5%;
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: reel 15s infinite;
  transform: scale(1.06);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 8, 0.74), transparent 68%);
}

.hero-frame-a {
  background:
    radial-gradient(circle at 73% 31%, rgba(255, 90, 31, 0.72), transparent 13%),
    radial-gradient(circle at 64% 55%, rgba(213, 213, 213, 0.2), transparent 24%),
    linear-gradient(125deg, var(--black) 15%, var(--charcoal) 52%, #777777 100%);
  animation-delay: 0s;
}

.hero-frame-b {
  background:
    radial-gradient(circle at 68% 48%, rgba(255, 255, 255, 0.45), transparent 12%),
    linear-gradient(110deg, var(--black) 15%, var(--charcoal) 48%, var(--orange) 100%);
  animation-delay: 5s;
}

.hero-frame-c {
  background:
    radial-gradient(circle at 70% 40%, rgba(255, 90, 31, 0.58), transparent 18%),
    linear-gradient(120deg, var(--black) 20%, var(--charcoal) 58%, var(--silver) 100%);
  animation-delay: 10s;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 9, 0.9), transparent 45%),
    linear-gradient(to right, rgba(10, 10, 9, 0.4), transparent 50%);
}

@keyframes reel {
  0%, 28% { opacity: 1; transform: scale(1.06); }
  34%, 94% { opacity: 0; transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1.06); }
}

.hero-meta {
  position: absolute;
  top: 110px;
  right: 4vw;
  display: flex;
  gap: 36px;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms ease 650ms,
    transform 800ms cubic-bezier(.2,.75,.2,1) 650ms;
}

.hero-meta span:last-child::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1040px, 88vw);
}

.eyebrow {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 30px;
  font-size: clamp(3.6rem, 9.7vw, 9.2rem);
}

h1 em, h2 em {
  color: var(--accent);
  font-style: normal;
}

.hero-intro {
  width: min(460px, 80vw);
  margin-left: 45%;
  font-size: clamp(1rem, 1.5vw, 1.32rem);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 800ms ease 780ms,
    transform 900ms cubic-bezier(.2,.75,.2,1) 780ms;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 6vh;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 0.67rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 700ms ease 950ms,
    transform 800ms cubic-bezier(.2,.75,.2,1) 950ms;
}

body.page-ready .hero-meta,
body.page-ready .hero-intro,
body.page-ready .scroll-cue {
  opacity: 1;
  transform: none;
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleX(.35); opacity: .5; }
  50% { transform: scaleX(1); opacity: 1; }
}

.marquee {
  overflow: hidden;
  color: var(--paper);
  background: var(--accent);
  border-block: 1px solid var(--ink);
  transform: rotate(-1.2deg) scale(1.02);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 17px 0;
  animation: marquee 24s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 2.4rem);
  text-transform: uppercase;
}

.marquee-track span {
  margin: 0 28px;
}

.marquee-track i {
  font-style: normal;
}

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

.section-shell {
  padding: 150px 4vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 90px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 6.8rem);
}

.section-heading > p:last-child {
  max-width: 310px;
  line-height: 1.6;
}

.category-menu {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(70px, 9vw, 130px) 5vw;
  background: var(--black);
  isolation: isolate;
}

.category-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.category-canvas,
.category-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.category-canvas {
  z-index: -2;
}

.category-glow {
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,90,31,.12), transparent 31%),
    radial-gradient(circle at 82% 72%, rgba(255,90,31,.09), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,.55), transparent 40% 60%, rgba(0,0,0,.55));
  animation: category-glow 8s ease-in-out infinite alternate;
}

@keyframes category-glow {
  to { opacity: .55; transform: scale(1.08); }
}

.category-menu a {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  width: min(920px, 100%);
  max-width: 100%;
  padding: 8px 0;
  color: var(--white);
  transition:
    color 250ms ease,
    transform 500ms cubic-bezier(.16,1,.3,1);
}

.category-menu a span {
  font-family: var(--mono);
  font-size: .62rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 250ms ease, transform 350ms ease;
}

.category-menu a strong {
  min-width: 0;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(2.7rem, 7.2vw, 7rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
  text-align: center;
  text-wrap: balance;
  text-transform: uppercase;
  transition:
    letter-spacing 500ms cubic-bezier(.16,1,.3,1),
    color 250ms ease;
}

.category-menu a i {
  font-family: var(--mono);
  font-size: 1rem;
  font-style: normal;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 250ms ease, transform 350ms ease;
}

.category-menu a:hover,
.category-menu a:focus {
  color: var(--orange);
  transform: translateX(10px);
}

.category-menu a:hover strong,
.category-menu a:focus strong {
  letter-spacing: -.025em;
}

.category-menu a:hover span,
.category-menu a:focus span,
.category-menu a:hover i,
.category-menu a:focus i {
  opacity: 1;
  transform: none;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 110px 24px;
}

.project {
  display: block;
  cursor: pointer;
  outline: none;
}

.project:nth-child(even) {
  margin-top: 130px;
}

.project-wide {
  grid-column: 1 / -1;
  width: 78%;
}

.project-wide + .project {
  margin-top: 160px;
}

.project-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #333;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.project-wide .project-visual {
  aspect-ratio: 16 / 8.5;
}

.project-tall .project-visual {
  aspect-ratio: 4 / 5;
}

.project-visual::before,
.modal-frame::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: inherit;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 700ms ease;
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), transparent 34%),
    linear-gradient(0deg, rgba(0,0,0,.76), transparent 58%);
  pointer-events: none;
}

.project:hover .project-visual,
.project:focus .project-visual {
  transform: translateY(-7px);
}

.project:hover .project-visual::before,
.project:focus .project-visual::before {
  transform: scale(1.09);
  filter: saturate(1.18);
}

.visual-events {
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.28)),
    url("assets/category-posters/events.png") center / cover;
}

.visual-beauty {
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.28)),
    url("assets/category-posters/beauty.png") center / cover;
}

.visual-food {
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.28)),
    url("assets/category-posters/food.png") center / cover;
}

.visual-sports {
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.28)),
    url("assets/category-posters/sports-dance.png") center / cover;
}

.visual-personal {
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.28)),
    url("assets/category-posters/personal.png") center / cover;
}

.visual-corporate {
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.28)),
    url("assets/category-posters/corporate.png") center / cover;
}

.project-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--white);
}

.poster-label {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 3vw, 42px);
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(20px, 3vw, 40px);
  color: var(--white);
  pointer-events: none;
}

.poster-label span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: clamp(.56rem, .72vw, .7rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.poster-label strong {
  display: block;
  max-width: 92%;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.5vw, 5rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.055em;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
  transform: translateY(0);
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
}

.project:not(.project-wide) .poster-label strong {
  font-size: clamp(1.55rem, 3.2vw, 3.3rem);
}

.project:hover .poster-label strong,
.project:focus .poster-label strong {
  transform: translateY(-7px);
}

.play-button {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 3vw, 40px);
  bottom: clamp(20px, 3vw, 40px);
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform 300ms cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}

.project:hover .play-button,
.project:focus .play-button {
  transform: scale(1);
}

.project-info {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 18px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.project-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: -0.04em;
}

.project-info h3 .word {
  transition-duration: 700ms;
}

.project-info p,
.project-info span {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.project-info span {
  font-family: var(--mono);
  text-transform: uppercase;
}

.about {
  color: var(--ink);
  background: var(--silver);
}

.about-index {
  margin-bottom: 80px;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.about-copy {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
}

.about-copy h2 {
  grid-column: 2;
  margin-bottom: 70px;
  font-size: clamp(3rem, 7vw, 7.4rem);
}

.about-copy h2 em {
  color: var(--accent);
}

.about-columns {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.about-columns p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-lead {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.1vw, 2.2rem) !important;
  letter-spacing: -0.04em;
  line-height: 1.35 !important;
}

.capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12vw;
  margin-top: 120px;
  padding-top: 40px;
  border-top: 1px solid rgba(17,17,15,.3);
}

.capabilities ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capabilities li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17,17,15,.18);
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.45rem);
}

.capabilities li span {
  font-family: var(--mono);
  font-size: 0.62rem;
}

.contact {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 110px 4vw 28px;
  color: var(--ink);
  background: var(--orange);
}

.contact::before {
  content: "";
  position: absolute;
  width: 46vw;
  height: 46vw;
  right: -10vw;
  top: -20vw;
  border: 1px solid rgba(17,17,15,.3);
  border-radius: 50%;
}

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

.contact h2 {
  max-width: 1100px;
  margin: 0 0 70px;
  font-size: clamp(3.3rem, 8vw, 8rem);
}

.email-link {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 2px solid currentColor;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 2rem);
  transition: gap 180ms ease;
}

.email-link:hover {
  gap: 38px;
}

.email-link span {
  transition: transform 250ms ease;
}

.email-link:hover span {
  transform: translate(5px, -5px);
}

.contact-orbit {
  position: absolute;
  right: -20px;
  top: 80px;
  width: 190px;
  height: 190px;
  font-family: var(--mono);
  font-size: 0.68rem;
  animation: spin 14s linear infinite;
}

.contact-orbit span {
  position: absolute;
  inset: 0;
  text-align: center;
  letter-spacing: 0.1em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(17,17,15,.45);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

footer div {
  display: flex;
  gap: 24px;
}

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

.project-modal {
  width: min(1100px, 94vw);
  max-height: 90vh;
  padding: 0;
  color: var(--paper);
  background: var(--charcoal);
  border: 1px solid var(--line);
}

.project-modal::backdrop {
  background: rgba(0,0,0,.84);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: sticky;
  z-index: 4;
  top: 18px;
  left: calc(100% - 62px);
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-inner {
  padding: 12px 5vw 70px;
}

.modal-inner h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 6rem);
}

#modal-description {
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.modal-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.modal-frame {
  position: relative;
  aspect-ratio: 9 / 12;
  overflow: hidden;
}

.modal-frame:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
}

.modal-frame span {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(.2,.7,.2,1);
}

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

.text-animate {
  --word-delay: 0ms;
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.09em;
  margin-bottom: -0.09em;
}

.word {
  display: inline-block;
  transform: translateY(112%) rotate(2deg);
  transform-origin: left bottom;
  opacity: 0;
  transition:
    transform 950ms cubic-bezier(.16,1,.3,1),
    opacity 500ms ease;
  transition-delay: calc(var(--word-index) * 65ms + var(--word-delay));
  will-change: transform;
}

.text-animate.is-text-visible .word {
  transform: translateY(0) rotate(0);
  opacity: 1;
}

.hero h1 {
  --word-delay: 240ms;
}

.section-heading h2,
.about-copy h2,
.contact h2 {
  --word-delay: 80ms;
}

.project-info h3 {
  --word-delay: 30ms;
}

.eyebrow,
.project-info p,
.project-info > span,
.about-columns p,
.capabilities li {
  transition:
    opacity 700ms ease,
    transform 800ms cubic-bezier(.2,.75,.2,1);
}

.reveal:not(.visible) .eyebrow,
.reveal:not(.visible) .project-info p,
.reveal:not(.visible) .project-info > span,
.reveal:not(.visible) .about-columns p,
.reveal:not(.visible) .capabilities li {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.visible .capabilities li:nth-child(2) { transition-delay: 70ms; }
.reveal.visible .capabilities li:nth-child(3) { transition-delay: 140ms; }
.reveal.visible .capabilities li:nth-child(4) { transition-delay: 210ms; }

.project-visual {
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 1000ms cubic-bezier(.16,1,.3,1),
    transform 500ms cubic-bezier(.2,.7,.2,1);
}

.project.visible .project-visual {
  clip-path: inset(0 0 0 0);
}

.project-info {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 650ms ease 260ms,
    transform 800ms cubic-bezier(.2,.75,.2,1) 260ms;
}

.project.visible .project-info {
  opacity: 1;
  transform: none;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background: var(--orange);
  transform: translateY(101%);
  transition: transform 420ms cubic-bezier(.76,0,.24,1);
}

body.is-leaving .page-transition {
  transform: translateY(0);
}

@media (max-width: 800px) {
  .site-header {
    align-items: flex-start;
    padding: 18px 16px;
  }

  .site-header nav {
    max-width: 74%;
    justify-content: flex-end;
    gap: 6px 12px;
    flex-wrap: wrap;
    font-size: .58rem;
  }

  .site-header .nav-cta {
    padding: 7px 10px;
  }

  .hero {
    padding: 0 20px 40px;
  }

  .hero-meta {
    top: 90px;
    left: 20px;
    right: auto;
    flex-direction: column;
    gap: 7px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 6rem);
  }

  .hero-intro {
    margin-left: 0;
  }

  .scroll-cue {
    display: none;
  }

  .section-shell {
    padding: 100px 20px;
  }

  .section-heading,
  .about-copy,
  .about-columns,
  .capabilities {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .about-copy h2,
  .about-columns {
    grid-column: 1;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 60px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .category-menu {
    min-height: 78vh;
    padding-inline: 12px;
  }

  .category-menu a {
    grid-template-columns: 20px minmax(0, 1fr) 20px;
    padding: 10px 0;
  }

  .category-menu a strong {
    font-size: clamp(1.9rem, 8.2vw, 3.35rem);
    line-height: .94;
    white-space: normal;
  }

  .category-menu a:nth-of-type(3) strong,
  .category-menu a:nth-of-type(5) strong {
    font-size: clamp(1.75rem, 7.2vw, 2.9rem);
  }

  .project,
  .project:nth-child(even),
  .project-wide,
  .project-wide + .project {
    grid-column: auto;
    width: 100%;
    margin-top: 0;
  }

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

  .poster-label strong,
  .project:not(.project-wide) .poster-label strong {
    font-size: clamp(1.7rem, 9vw, 3.2rem);
  }

  .project-info p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .about-copy h2 {
    margin-bottom: 30px;
  }

  .capabilities {
    gap: 60px;
  }

  .contact {
    min-height: 80vh;
    padding: 90px 20px 24px;
  }

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

  footer div {
    justify-content: flex-end;
  }

  footer p:last-child {
    display: none;
  }

  .modal-media {
    grid-template-columns: 1fr;
  }

  .modal-frame:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .word {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 360px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-header nav {
    order: 2;
    max-width: none;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }

  .hero-meta {
    top: 124px;
  }
}
