@font-face {
  font-family: "Bebas Neue";
  src: url("/fonts/bebas-neue.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Allison";
  src: url("/fonts/allison.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #070707;
  --paper: #e4dfda;
  --paper-bright: #fbfaf7;
  --muted: #aaa7a0;
  --line: rgba(7, 7, 7, 0.25);
  --orange: #e24a12;
  --orange-soft: #ff4500;
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --script: "Allison", cursive;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.045;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
}

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

svg {
  width: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

main {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding: clamp(6px, 0.7vw, 12px);
  background: var(--ink);
}

section {
  position: relative;
  overflow: visible;
}

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

.dark-section {
  background: var(--ink);
  color: var(--paper-bright);
}

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

.hero {
  min-height: max(880px, 100svh);
  overflow: visible;
  border-radius: 28px 28px 0 0;
}

.site-header {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 18px clamp(24px, 4vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.brand-mark {
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.brand-name {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.3vw, 56px);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
footer a {
  position: relative;
}

.desktop-nav a::after,
footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right 280ms ease;
}

.desktop-nav a:hover::after,
footer a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 250ms ease, background-color 250ms ease, color 250ms ease;
}

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

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

.button-dark:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.button-outline {
  background: transparent;
}

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

.header-cta,
.header-cta.button-dark {
  min-width: 168px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.header-cta:hover,
.header-cta:focus-visible,
.header-cta.button-dark:hover,
.header-cta.button-dark:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.menu-button {
  display: grid;
  place-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: white;
  transition: transform 250ms ease, opacity 250ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero-inner {
  position: relative;
  min-height: calc(max(880px, 100svh) - 96px);
  padding: 22px clamp(24px, 4vw, 72px) 220px;
}

.eyebrow,
.micro-heading {
  font-size: clamp(0.58rem, 0.75vw, 0.76rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 92%;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(8.6rem, 16.2vw, 19.2rem);
  line-height: 0.74;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 0.02em;
}

.hero-line-make {
  z-index: 25;
  width: fit-content;
  font-size: 0.78em;
  letter-spacing: -0.03em;
}

.hero-line-unmissable {
  z-index: 12;
  width: fit-content;
  margin-top: -0.04em;
  font-size: 1em;
  letter-spacing: -0.055em;
}

.hero-word {
  display: block;
}

.hero-script {
  position: absolute;
  z-index: 26;
  top: 28%;
  left: 1.5%;
  color: var(--orange);
  font-family: var(--script);
  font-size: clamp(6.4rem, 12.4vw, 14.6rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.02em;
  text-transform: none;
  white-space: nowrap;
  pointer-events: none;
  transform: rotate(-7deg);
  transform-origin: left center;
}

.hero-visual {
  position: absolute;
  z-index: 22;
  top: -4%;
  right: -1%;
  width: min(54vw, 860px);
  height: calc(100% + 48px);
  overflow: visible;
  pointer-events: none;
}

.hero-platform {
  position: absolute;
  z-index: 11;
  right: 2%;
  bottom: -6%;
  width: min(58%, 500px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 16px rgba(0, 0, 0, 0.3));
}

.hero-robot-frame {
  position: absolute;
  z-index: 13;
  inset: 0;
}

.hero-robot {
  position: absolute;
  right: 4%;
  bottom: 17%;
  width: 85%;
  height: 104%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 8px 6px rgba(0, 0, 0, 0.1));
}

.callout {
  position: absolute;
  z-index: 14;
  min-width: 86px;
  padding: 7px 16px;
  border: 1px solid rgba(7, 7, 7, 0.55);
  border-radius: 99px;
  background: rgba(251, 250, 247, 0.9);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.callout::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 58px;
  height: 1px;
  background: rgba(7, 7, 7, 0.5);
}

.callout-direct {
  top: 11%;
  right: 6%;
}

.callout-direct::before {
  width: 42px;
  transform: rotate(-18deg);
  transform-origin: right center;
}

.callout-record {
  top: 36%;
  right: -1%;
}

.callout-deliver {
  left: 4%;
  bottom: 30%;
}

.callout-deliver::before {
  left: 100%;
  right: auto;
  width: 54px;
}

.hero-bottom {
  position: absolute;
  z-index: 26;
  left: clamp(24px, 4vw, 72px);
  bottom: clamp(188px, 20vw, 248px);
  width: min(420px, 38vw);
}

.hero-bottom > p {
  max-width: 300px;
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  line-height: 1.35;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-shell {
  position: relative;
  z-index: 26;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(150px, 13vw, 210px) clamp(24px, 3.2vw, 58px) clamp(120px, 10vw, 180px);
}

.section-heading,
.micro-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.5vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-heading svg,
.micro-heading svg {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
}

.heading-line {
  flex: 1 1 32px;
  min-width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.services {
  min-height: 850px;
  overflow: visible;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 40px);
  margin-top: 48px;
}

.media-card {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 560px;
  overflow: hidden;
  border-radius: 22px;
  background: #121212;
}

.service-image,
.project-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-image {
  position: absolute;
  inset: 0;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 38%, transparent 58%, rgba(0, 0, 0, 0.72) 100%);
}

.service-image img,
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.media-card:first-child .service-image img {
  object-position: 38% 50%;
}

.media-card:last-child .service-image img {
  object-position: 50% 42%;
}

.service-title {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-number {
  font-family: var(--display);
  font-size: clamp(5.6rem, 10vw, 10.5rem);
  line-height: 0.78;
}

.service-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.2vw, 5rem);
  font-weight: 400;
  line-height: 0.78;
  text-transform: uppercase;
}

.tag-list {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  gap: 8px;
}

.tag-list span {
  flex: 1;
  min-width: 0;
  padding: 9px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.72);
  color: var(--paper-bright);
  font-size: clamp(0.46rem, 0.6vw, 0.64rem);
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.work {
  overflow: visible;
}

.micro-heading {
  margin-bottom: 36px;
  font-weight: 500;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 22px 26px;
  min-height: min(72vh, 760px);
}

.work-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.work-large {
  grid-row: 1 / 3;
}

.project-image {
  position: relative;
  flex: 1;
  height: auto;
  min-height: 240px;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.work-large .project-image {
  min-height: 0;
}

.work-large .project-image img {
  object-position: 32% 48%;
}

.work-small:nth-child(2) .project-image img {
  object-position: 50% 38%;
}

.work-small:nth-child(3) .project-image img {
  object-position: 50% 46%;
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 0;
  font-size: clamp(0.78rem, 1.15vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.project-meta span {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.project-meta button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.project-meta button svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  stroke: none;
}

.project-meta button:hover {
  background: var(--orange);
  transform: scale(1.08);
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(78vh, 820px);
  overflow: visible;
}

.studio-copy {
  position: relative;
  z-index: 26;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(110px, 12vw, 170px) clamp(28px, 4vw, 64px) clamp(140px, 14vw, 190px);
}

.studio-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.6rem, 8.4vw, 9.6rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.studio-copy p {
  margin: 28px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.studio-copy .button {
  margin-top: auto;
}

.studio-image {
  position: relative;
  z-index: 2;
  min-height: 100%;
  overflow: hidden;
}

.studio-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.process {
  overflow: visible;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  padding-bottom: 28px;
}

.process-item {
  position: relative;
  min-height: 250px;
  padding: 8px clamp(18px, 2.1vw, 36px) 12px;
  border-left: 1px solid var(--line);
}

.process-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.process-number {
  display: block;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7.2vw, 7.2rem);
  line-height: 0.78;
}

.process-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 28px 0 12px;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
}

.process-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.35;
}

.process-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.process-item p {
  max-width: 250px;
  margin: 0;
  font-size: clamp(0.62rem, 0.76vw, 0.76rem);
  line-height: 1.65;
}

.network {
  overflow: visible;
}

.network .section-shell {
  padding-bottom: 180px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.network-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 268px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  transition: border-color 250ms ease, transform 250ms ease;
}

.network-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
}

.network-image {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  background: #1b1b1b;
}

.network-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.network-card:last-child .network-image img {
  object-position: 52% 48%;
}

.network-copy {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 24px;
}

.network-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 3.8vw, 4.4rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.network-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.network-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.network-copy > span svg {
  width: 0.95rem;
  height: 0.95rem;
}

.contact {
  overflow: visible;
  border-radius: 0 0 28px 28px;
}

.contact-title {
  position: relative;
  z-index: 26;
  min-height: 640px;
  padding: clamp(140px, 12vw, 200px) clamp(28px, 5vw, 84px) 80px;
}

.contact-title h2 {
  width: min(92%, 11.2em);
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.8rem, 10.6vw, 13.2rem);
  font-weight: 400;
  line-height: 0.74;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.contact-orb {
  position: absolute;
  top: 18%;
  right: clamp(6%, 9vw, 12%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: clamp(160px, 16vw, 268px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.15vw, 2.7rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 350ms ease;
}

.contact-orb span {
  text-align: left;
}

.contact-orb svg {
  width: 0.85em;
  height: 0.85em;
}

.contact-orb:hover {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 0 14px rgba(226, 74, 18, 0.16);
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  margin: 0 clamp(24px, 4vw, 70px);
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand span {
  font-family: var(--display);
  font-size: 1.4rem;
}

footer nav,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 36px);
}

.footer-links {
  justify-content: flex-end;
}

.cloud-transition {
  --cloud-shift: 46%;
  position: absolute;
  z-index: 24;
  left: 50%;
  bottom: 0;
  width: 128%;
  overflow: visible;
  pointer-events: none;
  transform: translate(-50%, var(--cloud-shift));
  transform-origin: center center;
}

.hero > .cloud-transition {
  --cloud-shift: 50%;
  z-index: 23;
}

.cloud-layer {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    position: absolute;
    top: 82px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-width: 210px;
    padding: 24px;
    border-radius: 16px;
    background: var(--ink);
    color: white;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 250ms ease, transform 250ms ease;
  }

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

  .hero-title {
    font-size: clamp(7.4rem, 18vw, 12rem);
    line-height: 0.74;
  }

  .hero-script {
    top: 26%;
    font-size: clamp(5.4rem, 12vw, 11rem);
  }

  .hero-visual {
    right: -4%;
    width: 62vw;
  }

  .callout-direct,
  .callout-record {
    right: 5%;
  }

  .media-card {
    min-height: 460px;
    aspect-ratio: 4 / 5;
  }

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

  .studio-image {
    min-height: 460px;
  }

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

  .network-image {
    min-height: 190px;
  }

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

  footer nav,
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  main {
    padding: 4px;
  }

  .hero {
    min-height: 820px;
    border-radius: 18px 18px 0 0;
  }

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

  .brand-name,
  .header-cta {
    display: none;
  }

  .brand-mark {
    font-size: 2.4rem;
  }

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

  .hero-inner {
    min-height: 742px;
    padding: 20px 18px 130px;
  }

  .hero-title {
    width: 100%;
    margin-top: 18px;
    font-size: clamp(5.6rem, 23vw, 8.6rem);
    line-height: 0.74;
  }

  .hero-script {
    top: 24%;
    left: 0;
    font-size: clamp(4.2rem, 20vw, 6.8rem);
  }

  .hero-visual {
    top: 96px;
    right: -18%;
    width: 96vw;
    height: 70%;
    opacity: 0.98;
  }

  .hero-platform {
    right: 6%;
    bottom: 2%;
    width: 72%;
  }

  .hero-robot {
    right: 2%;
    bottom: 16%;
    width: 90%;
    height: 100%;
  }

  .callout {
    display: none;
  }

  .hero-bottom {
    right: 18px;
    bottom: 168px;
    left: 18px;
    width: auto;
  }

  .hero-bottom > p {
    max-width: 230px;
    font-size: 0.85rem;
  }

  .hero-buttons {
    gap: 8px;
  }

  .button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.56rem;
  }

  .section-shell {
    padding: 120px 18px 130px;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading h2 {
    font-size: clamp(3.4rem, 15vw, 5.7rem);
  }

  .services-grid,
  .network-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 440px;
  }

  .service-number {
    font-size: 6.5rem;
  }

  .service-title h3 {
    font-size: 3rem;
  }

  .tag-list {
    flex-wrap: wrap;
  }

  .tag-list span {
    flex: 1 1 40%;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .work-large {
    grid-row: auto;
  }

  .work-large .project-image,
  .project-image {
    flex: none;
    height: 260px;
  }

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

  .studio-copy {
    padding: 88px 18px 130px;
  }

  .studio-copy h2 {
    font-size: clamp(5.4rem, 22vw, 8rem);
  }

  .studio-copy .button {
    margin-top: 28px;
  }

  .studio-image {
    min-height: 390px;
    margin-left: 0;
    border-radius: 0;
  }

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

  .process-item:nth-child(3) {
    border-left: 0;
  }

  .process-item {
    min-height: 220px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .process-number {
    font-size: 4.5rem;
  }

  .process-icon,
  .process-icon svg {
    width: 26px;
    height: 26px;
  }

  .network-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .network-image {
    min-height: 210px;
  }

  .network-copy {
    padding: 20px;
  }

  .network-copy h3 {
    font-size: 2.8rem;
  }

  .contact-title {
    min-height: 530px;
    padding: 130px 18px 100px;
  }

  .contact-title h2 {
    width: 100%;
    font-size: clamp(4.4rem, 18vw, 7.4rem);
  }

  .contact-orb {
    top: auto;
    right: 28px;
    bottom: 24px;
    width: 148px;
    color: var(--ink);
  }

  footer {
    margin: 0 18px;
    padding-bottom: 28px;
  }

  .cloud-transition {
    width: 168%;
    --cloud-shift: 46%;
  }

  .hero > .cloud-transition {
    --cloud-shift: 52%;
  }
}

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

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