:root {
  --black: #0b0b0d;
  --white: #f7f7f5;
  --paper: #eeeeeb;
  --violet: #6900d7;
  --violet-deep: #5b00e6;
  --violet-soft: #7600c8;
  --line-dark: rgba(255, 255, 255, .18);
  --line-light: rgba(11, 11, 13, .18);
  --pad: clamp(24px, 4.5vw, 76px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
[hidden] { display: none !important; }
:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 92px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition: background .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: var(--black);
  backdrop-filter: none;
  border-bottom: 1px solid var(--line-dark);
}
.brand img { width: 145px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 52px); }
.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 100px;
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover { color: var(--black); background: var(--white); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse 46% 62% at 83% 39%, rgba(105, 0, 215, .18), transparent 64%),
    linear-gradient(118deg, #09090b 0%, #0b0b0d 62%, #130a1c 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: 13%;
  right: -18%;
  width: 70%;
  height: 62%;
  background: linear-gradient(105deg, transparent 5%, rgba(91, 0, 230, .04) 30%, rgba(118, 0, 200, .15) 100%);
  clip-path: polygon(0 50%, 100% 7%, 100% 93%);
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  top: clamp(185px, 26vh, 270px);
  left: var(--pad);
  max-width: 1100px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero .eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet-deep), var(--violet-soft));
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 7.2vw, 112px);
  line-height: .92;
  letter-spacing: -.06em;
}
.hero h1 span {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px var(--violet);
  text-shadow: 0 0 1px rgba(105,0,215,.35);
}
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.hero .button-light {
  color: var(--white);
  background: linear-gradient(110deg, var(--violet-deep), var(--violet-soft));
}
.hero .button-light:hover {
  color: var(--black);
  background: var(--white);
}
.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-light { color: var(--black); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--violet); }
.button-outline { color: var(--white); border: 1px solid var(--line-dark); }
.button-outline:hover { color: var(--black); background: var(--white); }
.text-link, .underlined-link {
  padding-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.text-link b, .underlined-link b, .button b { font-size: 18px; font-weight: 400; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}
.scroll-cue i {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--violet-deep), var(--violet-soft));
}

.light-section { position: relative; background: var(--paper); }
.dark-section { color: var(--white); background: var(--black); }
.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-kicker span {
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.section-kicker p { margin: 0; }

.manifesto {
  min-height: 92vh;
  padding: 110px var(--pad);
  overflow: hidden;
}
.manifesto > .section-kicker {
  position: relative;
  z-index: 2;
}
.manifesto-grid {
  position: relative;
  z-index: 2;
  min-height: 62vh;
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  align-items: center;
  gap: 8vw;
}
.manifesto h2, .section-head h2, .services h2, .process h2, .contact h2 {
  margin: 0;
  font-size: clamp(54px, 8vw, 126px);
  line-height: .9;
  letter-spacing: -.07em;
}
.manifesto-copy { max-width: 510px; padding-top: 12vh; }
.manifesto-copy p {
  margin: 0 0 35px;
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1.22;
  letter-spacing: -.025em;
}
.symbol-pattern {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
  opacity: .055;
  pointer-events: none;
}

.work-section {
  min-height: 100svh;
  padding: 78px var(--pad) 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-head {
  margin-bottom: 26px;
}
.reel-section-label h2 {
  margin: 16px 0 0;
  font-size: clamp(25px, 2.5vw, 40px);
  line-height: 1;
  letter-spacing: -.045em;
}
.section-heading h2 {
  font-size: clamp(56px, 6.4vw, 102px);
  white-space: nowrap;
}
.section-head > .button {
  justify-self: end;
  margin-bottom: 6px;
}
.section-intro {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 16px;
  line-height: 1.4;
}
.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 34px);
}
.project figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #171719;
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88);
  transition: transform .8s var(--ease), filter .8s ease;
}
.project a:hover img { transform: scale(1.035); filter: saturate(1.05); }
.project-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
  font-size: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s var(--ease);
}
.project a:hover .project-arrow { opacity: 1; transform: translateY(0); }
.project-meta {
  min-height: 92px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
}
.project-number {
  display: block;
  margin-bottom: 10px;
  color: var(--violet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.project-meta h3 { margin: 0 0 4px; font-size: 20px; letter-spacing: -.035em; }
.project-meta p, .project-meta > span {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}
.project-meta > span { padding-top: 23px; text-align: right; line-height: 1.45; }
.reel-stage {
  position: relative;
  width: min(100%, 1320px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 50% 50%, rgba(105,0,215,.16), transparent 36%),
    #111114;
}
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.reel-caption {
  width: min(100%, 1320px);
  margin: 14px auto 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
.reel-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.reel-play {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
}
.reel-placeholder-copy {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 15px;
  border-top: 1px solid var(--line-dark);
}
.reel-placeholder-copy p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.reel-placeholder-copy span {
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.services {
  padding: 82px var(--pad) 78px;
  overflow: hidden;
}
.services-intro {
  display: block;
  max-width: 1540px;
}
.services-intro > .section-kicker {
  margin-bottom: 30px;
}
.services-heading {
  display: block;
}
.services-heading h2 {
  margin: 0;
  max-width: 1050px;
  font-size: clamp(50px, 5.6vw, 88px);
  line-height: .92;
  letter-spacing: -.065em;
}
.services-heading > p {
  max-width: 350px;
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.45;
}
.service-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.service-card {
  min-height: 238px;
  padding: 24px 38px 28px 0;
}
.service-card + .service-card {
  padding-right: 0;
  padding-left: 38px;
  border-left: 1px solid var(--line-light);
}
.service-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--violet);
}
.service-card-head b { font-size: 22px; font-weight: 400; }
.service-card-head h3 {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--black);
  font-size: clamp(30px, 3.1vw, 48px);
  letter-spacing: -.045em;
}
.service-card-head h3 span {
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.service-card ul {
  margin: 22px 0 0;
  padding: 0;
  columns: 2;
  column-gap: 30px;
  list-style: none;
}
.service-card li {
  padding: 8px 0;
  break-inside: avoid;
  color: rgba(11,11,13,.65);
  font-size: 14px;
  border-top: 1px solid rgba(11,11,13,.1);
}
.process-panel {
  margin-top: 40px;
  padding: 24px 0 0;
  color: var(--black);
  background: transparent;
  border-bottom: 1px solid var(--line-light);
}
.process-panel-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line-light);
}
.process-panel-head p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.process-panel-head span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
}
.merged-process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}
.merged-process-list li {
  min-height: 128px;
  padding: 20px 24px 22px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: start;
  column-gap: 13px;
  row-gap: 14px;
  border-right: 1px solid var(--line-light);
}
.merged-process-list li:not(:first-child) { padding-left: 24px; }
.merged-process-list li:last-child { border-right: 0; }
.merged-process-list span {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
}
.merged-process-list h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 27px;
  letter-spacing: -.04em;
}
.merged-process-list p {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 235px;
  margin: 0;
  color: rgba(11,11,13,.62);
  font-size: 13px;
  line-height: 1.45;
}

.clients {
  padding: 18px var(--pad);
  overflow: hidden;
  background: #000;
}
.clients-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.clients-head .eyebrow { margin: 0; }
.clients-head > span {
  color: rgba(255,255,255,.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.client-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.client-marquee-track {
  display: flex;
  width: max-content;
  animation: client-marquee 28s linear infinite;
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}
.client-marquee:hover .client-marquee-track { animation-play-state: paused; }
.client-grid {
  flex: none;
  margin: 0;
  padding: 18px 64px 0 0;
  display: flex;
  gap: 64px;
  align-items: center;
  list-style: none;
}
.client-grid li {
  flex: 0 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-grid img {
  width: auto;
  height: 50px;
  max-width: none;
  object-fit: contain;
  object-position: center center;
}
.client-grid .client-wide img { width: auto; height: 42px; }
.client-grid .client-compact img { width: auto; height: 54px; }
.client-grid .client-round img { width: auto; height: 58px; }
.client-grid .client-ultrawide img { width: auto; height: 28px; }
.client-grid .latam-logo {
  width: auto;
  height: 42px;
  max-width: none;
  filter: grayscale(1) brightness(0) invert(1);
}
@keyframes client-marquee {
  to { transform: translateX(-50%); }
}

.contact {
  position: relative;
  min-height: 86vh;
  padding: 110px var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .75fr);
  align-items: center;
  gap: clamp(60px, 8vw, 150px);
  overflow: hidden;
  color: var(--white);
  background: var(--violet);
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,.13), transparent 34%);
}
.contact-symbol {
  position: absolute;
  right: -4vw;
  bottom: -25vh;
  width: min(58vw, 800px);
  opacity: .11;
  filter: brightness(0) invert(1);
}
.contact-copy { position: relative; z-index: 2; }
.contact h2 { font-size: clamp(58px, 7.2vw, 112px); }
.contact h2 span { color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.contact-form-panel {
  position: relative;
  z-index: 2;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(11,11,13,.12);
  backdrop-filter: blur(8px);
}
.form-honeypot {
  position: fixed !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.contact-form-grid label {
  display: grid;
  gap: 10px;
}
.contact-form-grid label > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-form-grid input,
.contact-form-grid textarea {
  width: 100%;
  padding: 5px 0 11px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.48);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 16px;
}
.contact-form-grid textarea {
  min-height: 86px;
  resize: vertical;
}
.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  border-bottom-color: var(--white);
}
.contact-form-message { grid-column: 1 / -1; }
.contact-form-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-form-actions .button {
  min-width: 190px;
  border: 0;
  cursor: pointer;
}
.contact-form-actions p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  line-height: 1.4;
}

footer {
  min-height: 0;
  padding: 14px var(--pad) 13px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto auto;
  align-items: center;
  gap: 0;
  color: var(--white);
  background: var(--black);
  font-size: 11px;
}
footer > img { width: 112px; height: auto; }
.footer-contact {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-content: center;
  gap: 24px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.footer-contact-label {
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.instagram-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.instagram-icon circle:last-child { fill: currentColor; stroke: none; }
.footer-contact,
footer address,
footer > p {
  padding-right: clamp(28px, 3vw, 56px);
  padding-left: clamp(28px, 3vw, 56px);
  border-left: 1px solid var(--line-dark);
  text-align: center;
}
.footer-contact a:hover { color: var(--violet); }
footer address { color: rgba(255,255,255,.55); font-style: normal; line-height: 1.5; }
footer > p { margin: 0; color: rgba(255,255,255,.48); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { height: 74px; }
  .brand img { width: 125px; }
  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border: 0;
    background: none;
    font-size: 12px;
    font-weight: 700;
  }
  .menu-button i, .menu-button i::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }
  .menu-button i::after { transform: translateY(6px); }
  .menu-open .menu-button i { transform: rotate(45deg); }
  .menu-open .menu-button i::after { transform: rotate(-90deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    padding: 130px var(--pad) 60px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    background: var(--black);
  }
  .menu-open .site-nav { display: flex; }
  .site-nav a { font-size: 36px; letter-spacing: -.04em; }
  .site-nav .nav-cta { margin-top: 15px; font-size: 18px; }
  .hero h1 { font-size: clamp(45px, 12vw, 78px); }
  .hero h1 span {
    color: var(--violet) !important;
    -webkit-text-fill-color: var(--violet) !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
  }
  .hero-copy { right: var(--pad); }
  .scroll-cue { display: none; }
  .manifesto, .work-section, .services { padding-top: 88px; padding-bottom: 95px; }
  .manifesto-grid, .section-head, .services-intro { grid-template-columns: 1fr; }
  .services-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .services-heading > p { max-width: 540px; }
  .manifesto-grid { padding-top: 90px; gap: 70px; }
  .manifesto-copy { padding-top: 0; }
  .section-head { margin-top: 0; }
  .section-head .section-intro { max-width: 500px; }
  .section-head > .button { justify-self: start; }
  .project-list { grid-template-columns: 1fr 1fr; }
  .reel-stage { width: min(100%, 1080px); }
  .reel-caption { width: min(100%, 1080px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card + .service-card {
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
  .merged-process-list { grid-template-columns: 1fr 1fr; }
  .merged-process-list li:nth-child(2) { border-right: 0; }
  .merged-process-list li { border-bottom: 1px solid var(--line-light); }
  .contact {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .contact-form-panel { max-width: 680px; }
  footer {
    grid-template-columns: auto 1fr;
    gap: 18px 34px;
  }
}

@media (max-height: 900px) and (min-width: 901px) {
  .reel-stage { width: min(100%, 1080px); }
  .reel-caption { width: min(100%, 1080px); }
}

@media (max-height: 760px) and (min-width: 901px) {
  .reel-stage { width: min(100%, 850px); }
  .reel-caption { width: min(100%, 850px); }
}

@media (max-width: 620px) {
  :root { --pad: 20px; }
  .hero-copy { top: auto; bottom: 72px; }
  .contact h2 span { -webkit-text-stroke-width: 1px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 30px; }
  .eyebrow { max-width: 270px; }
  .manifesto { min-height: 100vh; }
  .manifesto h2, .services h2 { font-size: 52px; }
  .section-heading h2 { white-space: normal; }
  .project-list { grid-template-columns: 1fr; }
  .work-section { min-height: auto; padding-top: 78px; padding-bottom: 70px; }
  .reel-placeholder-copy {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }
  .reel-placeholder-copy span { display: none; }
  .reel-caption { white-space: normal; }
  .project figure { aspect-ratio: 3 / 2; }
  .project-meta { display: block; }
  .project-meta > span { display: block; margin-top: 10px; text-align: left; }
  .service-card { padding-right: 0; }
  .service-card ul { columns: 1; }
  .process-panel { padding: 28px 0 0; }
  .process-panel-head { grid-template-columns: 1fr; gap: 8px; }
  .merged-process-list { grid-template-columns: 1fr; }
  .merged-process-list li, .merged-process-list li:nth-child(2) { min-height: 140px; border-right: 0; }
  .merged-process-list li:not(:first-child) { padding-left: 0; }
  .clients-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .contact { min-height: 0; padding-top: 82px; padding-bottom: 82px; }
  .contact h2 { font-size: 56px; }
  .contact-form-panel { padding: 28px 24px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-form-message { grid-column: auto; }
  .contact-form-actions { align-items: flex-start; flex-direction: column; }
  footer {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 7px 14px;
    font-size: 10px;
  }
  footer > img {
    grid-column: 1 / -1;
    width: 88px;
    height: auto;
  }
  .footer-contact,
  footer address,
  footer > p {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    text-align: left;
  }
  .footer-contact {
    grid-column: 1;
    grid-row: 2 / span 2;
    align-self: start;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  footer address {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    text-align: right;
  }
  footer > p {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
    text-align: right;
  }
  .footer-contact a { gap: 6px; }
  .footer-contact-label { font-size: 8px; }
  footer address { line-height: 1.25; }
}

@media (max-width: 420px) {
  :root { --pad: 18px; }
  .hero h1 { font-size: 42px; }
  .manifesto h2,
  .services h2 { font-size: 46px; }
  .service-card-head h3 { font-size: 27px; }
  .merged-process-list h3 { font-size: 24px; }
  .contact h2 { font-size: 48px; }
  .contact-form-actions,
  .contact-form-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .client-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .client-marquee-track { animation: none !important; transform: none; }
  .client-grid[aria-hidden="true"] { display: none; }
}
