:root {
  --ink: #050505;
  --ink-soft: #151515;
  --paper: #ffffff;
  --paper-soft: #f2f2f2;
  --mist: #cfcfcf;
  --muted: #7a7a7a;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(0, 0, 0, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 18px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  border-radius: 50%;
}

.brand-text {
  font-size: 0.92rem;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--paper);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--paper);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  appearance: none;
  -webkit-appearance: none;
  isolation: isolate;
}

.nav-toggle::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: transparent;
  content: "";
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 38%;
  filter: grayscale(100%) contrast(1.14);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.54) 42%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 88svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 28px 92px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 7.4rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.32rem;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

.button-light:hover,
.button-light:focus-visible {
  background: transparent;
  color: var(--paper);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.48);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-meta span {
  min-height: 64px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker {
  position: relative;
  height: 62px;
  contain: layout paint;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.ticker-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
}

.ticker span {
  display: flex;
  align-items: center;
  padding: 18px 26px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section-pad {
  padding: 110px 28px;
}

.intro,
.events,
.flow,
.clients {
  background: var(--ink);
}

.intro {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  color: var(--mist);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 52px;
  align-items: end;
}

h2,
h3,
p {
  text-wrap: pretty;
}

.intro h2,
.section-heading h2,
.presence-copy h2,
.video-copy h2,
.clients h2,
.contact h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 4rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.intro p,
.presence-copy p,
.flow-list p,
.contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink);
}

.stats div {
  min-height: 210px;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 4.8rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.stats span {
  display: block;
  max-width: 260px;
  margin-top: 20px;
  color: #424242;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 42px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-left: 0;
}

.event-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.event-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.event-card.large {
  grid-row: span 2;
  min-height: 720px;
}

.event-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.08));
  content: "";
}

.event-card.portrait-card::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.02));
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  transition: transform 400ms ease, filter 400ms ease;
}

.event-card.portrait-card img {
  object-position: center 34%;
}

.event-card.tux-card img {
  object-position: center 26%;
}

.event-card.chair-card img {
  object-position: center 42%;
}

.event-card:hover img {
  filter: grayscale(70%) contrast(1.12);
  transform: scale(1.04);
}

.event-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 28px;
}

.event-card-content span,
.flow-list span {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card h3,
.flow-list h3 {
  margin: 0 0 12px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.event-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.presence {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.presence-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.presence-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  border-radius: 8px;
}

.presence-media img:nth-child(2) {
  height: 430px;
}

.presence-copy {
  max-width: 660px;
}

.presence-copy .eyebrow,
.clients .eyebrow {
  color: var(--muted);
}

.presence-copy p {
  margin-top: 26px;
  color: #3f3f3f;
}

.trait-list {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line-dark);
}

.trait-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.trait-list strong {
  font-family: "Inter", Arial, sans-serif;
  text-transform: uppercase;
}

.trait-list span {
  color: #454545;
}

.video-band {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--ink);
  contain: paint;
  isolation: isolate;
}

.collage-track {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  width: max-content;
  gap: 0;
  align-items: center;
  padding: 64px 0;
  animation: collage-pan 108s linear infinite;
}

.collage-set {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-right: 20px;
}

.collage-photo {
  width: clamp(230px, 20vw, 350px);
  height: clamp(390px, 42vw, 580px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #111;
}

.collage-photo:nth-child(even) {
  transform: translateY(34px);
}

.collage-photo:nth-child(3) {
  transform: translateY(-24px);
}

.collage-photo:nth-child(5n) {
  transform: translateY(-30px);
}

.collage-photo:nth-child(7n) {
  transform: translateY(46px);
}

.collage-photo.wide-photo {
  width: clamp(420px, 42vw, 720px);
  height: clamp(320px, 32vw, 470px);
}

.collage-photo.square-photo {
  width: clamp(300px, 28vw, 440px);
  height: clamp(300px, 28vw, 440px);
}

.collage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
}

.lean-photo img {
  object-position: center 45%;
}

.tux-photo img {
  object-position: center 24%;
}

.point-photo img {
  object-position: center 28%;
}

.turn-photo img {
  object-position: center 38%;
}

.interview-photo img {
  object-position: center 42%;
}

.awards-one-photo img {
  object-position: center 42%;
}

.awards-two-photo img {
  object-position: center 48%;
}

.table-photo img {
  object-position: center 48%;
}

.duo-photo img {
  object-position: center 42%;
}

.stage-photo img {
  object-position: center 46%;
}

.team-photo img {
  object-position: center 42%;
}

.legacy-photo img {
  object-position: center 44%;
}

.dance-live-photo img {
  object-position: center 38%;
}

.video-band::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.66) 38%, rgba(0, 0, 0, 0.22) 72%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05) 48%, rgba(0, 0, 0, 0.42));
  content: "";
}

.video-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 90px 28px;
}

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

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

.flow {
  max-width: var(--max);
  margin: 0 auto;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.flow-list article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0d;
}

.flow-list p {
  font-size: 1rem;
}

.clients {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.client-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.client-cloud span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 48px;
  align-items: end;
  padding: 110px 28px;
  background: var(--paper);
  color: var(--ink);
}

.contact-copy {
  max-width: 740px;
}

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

.contact p {
  max-width: 610px;
  margin-top: 24px;
  color: #424242;
  font-size: 1.12rem;
}

.contact-panel {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.contact-panel > a,
.social-row a {
  min-height: 68px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
}

.contact-panel > a:hover,
.contact-panel > a:focus-visible,
.social-row a:hover,
.social-row a:focus-visible {
  color: #555;
}

.social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.site-footer {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-main {
  background: var(--ink);
}

.portfolio-hero {
  display: grid;
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 28px 70px;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 34px;
  align-items: end;
}

.portfolio-hero-copy {
  padding-bottom: 18px;
}

.portfolio-hero h1,
.portfolio-close h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.portfolio-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.14rem;
}

.portfolio-hero-media {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 16px;
  align-items: end;
}

.portfolio-hero-media img {
  width: 100%;
  height: min(62svh, 650px);
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.portfolio-hero-media img:first-child {
  height: min(48svh, 500px);
  object-position: center 44%;
}

.portfolio-hero-media img:nth-child(2) {
  object-position: center 38%;
}

.portfolio-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink);
}

.portfolio-ledger div {
  min-height: 180px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
}

.portfolio-ledger div:last-child {
  border-right: 0;
}

.portfolio-ledger strong {
  display: block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 3.8rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.portfolio-ledger span {
  display: block;
  max-width: 340px;
  margin-top: 18px;
  color: #424242;
  font-weight: 800;
}

.portfolio-gallery {
  background: var(--ink);
}

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

.portfolio-item {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  grid-column: span 4;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.portfolio-item.wide {
  grid-column: span 8;
}

.portfolio-item.tall {
  min-height: 620px;
  grid-row: span 2;
}

.portfolio-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.24) 56%, rgba(0, 0, 0, 0.04));
  content: "";
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  transition: filter 300ms ease, transform 300ms ease;
}

.portfolio-item:hover img {
  filter: grayscale(68%) contrast(1.12);
  transform: scale(1.035);
}

.portfolio-item-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 26px;
}

.portfolio-item-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-item-copy h3 {
  max-width: 520px;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-close {
  padding: 110px 28px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.portfolio-close .eyebrow {
  color: var(--muted);
}

.portfolio-close h2 {
  max-width: 980px;
  margin-bottom: 34px;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
    position: fixed;
    top: 16px;
    right: 28px;
    z-index: 31;
    flex: 0 0 auto;
    margin-left: auto;
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
    opacity: 1;
  }

  .nav-toggle::before {
    background: var(--paper);
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    width: 100vw;
    display: grid;
    gap: 0;
    padding: 12px 28px 28px;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
  }

  .site-nav a[aria-current="page"] {
    color: var(--paper);
  }

  .hero h1 {
    font-size: 5.4rem;
  }

  .intro-grid,
  .presence,
  .clients,
  .contact {
    grid-template-columns: 1fr;
  }

  .clients {
    gap: 34px;
  }

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

  .event-card.large {
    min-height: 540px;
  }

  .flow-list,
  .stats,
  .portfolio-hero,
  .portfolio-ledger {
    grid-template-columns: 1fr;
  }

  .stats div {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .portfolio-hero {
    min-height: auto;
    padding-top: 124px;
  }

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

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

  .portfolio-item,
  .portfolio-item.wide,
  .portfolio-item.tall {
    min-height: 440px;
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-ledger div {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .portfolio-ledger div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    min-height: 68px;
    padding: 14px 18px;
  }

  .nav-toggle {
    top: 12px;
    right: 18px;
  }

  .brand-text {
    display: none;
  }

  .site-nav {
    top: 68px;
    padding: 10px 18px 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: calc(100svh - 68px);
    padding: 112px 18px 34px;
    justify-content: flex-end;
  }

  .hero-image {
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.38)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 58%);
  }

  .hero h1 {
    max-width: 7ch;
    font-size: 3.55rem;
    overflow-wrap: normal;
  }

  .hero-copy {
    max-width: 28ch;
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .hero-meta {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    margin: 0 18px 24px;
  }

  .hero-meta span {
    min-height: auto;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .ticker {
    height: 56px;
  }

  .ticker-track {
    position: absolute;
    width: max-content;
    height: 100%;
    animation-duration: 25s;
  }

  .ticker span {
    padding: 16px 18px;
    font-size: 0.86rem;
  }

  .section-pad,
  .contact {
    padding: 66px 18px;
  }

  .intro h2,
  .section-heading h2,
  .presence-copy h2,
  .video-copy h2,
  .clients h2,
  .contact h2,
  .portfolio-close h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.55rem);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .stats strong {
    font-size: 3.4rem;
  }

  .event-card,
  .event-card.large {
    min-height: 390px;
  }

  .event-card-content,
  .portfolio-item-copy {
    padding: 20px;
  }

  .event-card h3,
  .flow-list h3,
  .portfolio-item-copy h3 {
    font-size: 1.55rem;
  }

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

  .presence-media img,
  .presence-media img:nth-child(2) {
    height: 340px;
  }

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

  .clients {
    gap: 26px;
  }

  .clients .eyebrow {
    margin-bottom: 12px;
  }

  .client-cloud {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-cloud span {
    min-height: 42px;
    padding: 0 12px;
    border-color: rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(0.72rem, 3.2vw, 0.84rem);
    letter-spacing: 0;
    text-align: center;
  }

  .client-cloud span:nth-child(3),
  .client-cloud span:nth-child(4) {
    grid-column: 1 / -1;
  }

  .video-band {
    min-height: 600px;
    align-items: end;
  }

  .collage-track {
    padding: 52px 0;
    animation-duration: 82s;
  }

  .collage-set {
    gap: 14px;
    padding-right: 14px;
  }

  .collage-photo {
    width: 210px;
    height: 360px;
    transform: none;
  }

  .collage-photo.wide-photo {
    width: 300px;
    height: 230px;
  }

  .collage-photo.square-photo {
    width: 250px;
    height: 250px;
  }

  .collage-photo:nth-child(even),
  .collage-photo:nth-child(3),
  .collage-photo:nth-child(5n),
  .collage-photo:nth-child(7n) {
    transform: translateY(0);
  }

  .video-copy {
    padding: 86px 18px 52px;
  }

  .video-band::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.44)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.56));
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .social-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .contact-panel > a,
  .social-row a {
    font-size: clamp(1rem, 5vw, 1.18rem);
    overflow-wrap: anywhere;
  }

  .portfolio-hero {
    display: flex;
    min-height: auto;
    padding: 112px 18px 56px;
    flex-direction: column;
    gap: 30px;
  }

  .portfolio-hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .portfolio-hero p:not(.eyebrow) {
    margin: 20px 0 28px;
    font-size: 1.04rem;
  }

  .portfolio-hero-media {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .portfolio-hero-media img,
  .portfolio-hero-media img:first-child {
    height: 330px;
  }

  .portfolio-ledger div {
    min-height: auto;
    padding: 26px 18px;
  }

  .portfolio-ledger strong {
    font-size: 3rem;
  }

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

  .portfolio-item,
  .portfolio-item.wide,
  .portfolio-item.tall {
    min-height: 380px;
  }

  .portfolio-close {
    padding: 72px 18px;
  }
}

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

  .collage-track {
    animation: none !important;
    transform: translateX(-10%);
  }
}
