:root {
  --black: #080808;
  --black-2: #111111;
  --ink: #f2f1ee;
  --muted: #888888;
  --line: rgba(242, 241, 238, 0.16);
  --line-strong: rgba(242, 241, 238, 0.28);
  --red: #b2141f;
  --red-dark: #840b12;
  --panel: rgba(255, 255, 255, 0.035);
  --serif: "Didot", "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), var(--line) calc(100% - 1px)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 180px),
    var(--black);
  background-size: min(100%, 1680px) 100%, auto, auto;
  background-position: center top;
  font-family: var(--sans);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: calc(100vw / 12) calc(100vw / 12);
  opacity: 0.22;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(255, 255, 255, 0.055), transparent 60%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main,
.site-header,
.mobile-menu,
.site-footer {
  width: min(100%, 1680px);
  margin-inline: auto;
}

.home-grid {
  display: block;
}

.home-column {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 74px;
  padding: 0 36px;
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.06em;
  font-family: var(--serif);
  font-size: clamp(28px, 2.3vw, 42px);
  line-height: 1;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.brand span {
  display: inline-block;
  color: var(--red);
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(26px, 3vw, 52px);
  padding-right: 34px;
}

.desktop-nav a,
.site-footer nav a,
.header-cta,
.text-link,
.work-list__copy a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-nav a {
  color: var(--ink);
  opacity: 0.82;
}

.desktop-nav a:hover,
.text-link:hover,
.work-list__copy a:hover,
.site-footer a:hover {
  color: var(--red);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--ink);
}

.header-cta:hover,
.button--red:hover {
  background: #cf1724;
  border-color: #cf1724;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  top: 74px;
  left: 50%;
  z-index: 29;
  display: none;
  transform: translateX(-50%);
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(8, 8, 8, 0.97);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: clamp(420px, 54svh, 620px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.62) 39%, rgba(8, 8, 8, 0.14) 74%, rgba(8, 8, 8, 0.76) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.22), rgba(8, 8, 8, 0.76));
}

.hero__media .media-slot {
  min-height: clamp(420px, 54svh, 620px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.045), transparent 35%),
    repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 16px),
    linear-gradient(90deg, #070707, #191919 46%, #050505);
}

.hero__media .media-slot span {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, 92vw);
  padding: clamp(46px, 6vw, 92px) clamp(24px, 5vw, 70px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow {
  color: var(--red);
}

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(58px, 7vw, 132px);
  line-height: 0.9;
}

.hero h1 span,
.contact h2 span {
  color: var(--red);
}

.hero__content > p:not(.eyebrow),
.shopify p,
.case-strip p,
.consistency p,
.process .section-head p,
.about p,
.contact__details,
.case-hero__title p,
.case-copy p {
  max-width: 520px;
  color: rgba(242, 241, 238, 0.74);
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.55;
}

.hero__actions,
.form-row {
  display: flex;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

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

.button--ghost {
  background: rgba(0, 0, 0, 0.22);
}

.button--ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.section-line {
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(34px, 4.6vw, 76px) clamp(24px, 4vw, 54px);
}

.section-head {
  margin-bottom: clamp(24px, 3vw, 42px);
}

.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}

.section-head h2,
.shopify h2,
.case-strip h2,
.consistency h2,
.services h2,
.process h2,
.lab h2,
.about h2,
.contact h2,
.case-hero h1,
.case-gallery h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.8vw, 90px);
  line-height: 0.98;
}

.showreel__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.showreel__frame .media-slot {
  min-height: 280px;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(242, 241, 238, 0.68);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(8, 8, 8, 0.26);
}

.showreel__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showreel__meta span:last-child {
  color: var(--red);
}

.work {
  padding-inline: 0;
}

.work .section-head {
  padding-inline: clamp(24px, 4vw, 54px);
}

.work-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.work-card {
  position: relative;
  min-width: 210px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.88));
  transition: background 0.3s ease;
}

.work-card:hover::after {
  background: linear-gradient(180deg, rgba(178, 20, 31, 0.06), rgba(0, 0, 0, 0.9));
}

.work-card__media,
.work-card > img,
.work-card > video,
.work-card > .media-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.work-card__number,
.work-card strong,
.work-card small {
  position: relative;
  z-index: 2;
}

.work-card__number {
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.work-card strong {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 40px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.work-card small,
.work-list__copy p,
.case-meta dt,
.case-meta dd,
.case-gallery figcaption {
  color: rgba(242, 241, 238, 0.72);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.work-card small {
  margin-top: 14px;
}

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

.work-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  min-height: 270px;
  border-bottom: 1px solid var(--line);
}

.work-list__item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.work-list__visual {
  padding: 22px;
}

.work-list__visual .media-slot {
  min-height: 160px;
  height: 100%;
}

.work-list__copy {
  align-self: center;
  padding: 28px 28px 28px 4px;
}

.work-list__copy span {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.work-list__copy h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(30px, 2.7vw, 52px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.work-list__copy a {
  display: inline-block;
  margin-top: 22px;
  color: var(--red);
}

.shopify__grid,
.case-strip__grid,
.consistency__grid,
.about,
.contact,
.case-hero__title {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: center;
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 34px);
  align-items: center;
}

.phone {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  padding: 10px;
  border: 2px solid rgba(242, 241, 238, 0.56);
  border-radius: 34px;
  background: #050505;
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.45);
}

.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 35%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #050505;
}

.phone .media-slot {
  height: 100%;
  border-radius: 24px;
}

.phone__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 2;
}

.phone__caption strong {
  display: block;
  max-width: 8ch;
  margin-bottom: 12px;
  font-size: clamp(18px, 1.7vw, 30px);
  line-height: 0.98;
}

.phone__caption span {
  font-size: 12px;
  font-weight: 700;
}

.case-strip {
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(34px, 4.6vw, 76px) clamp(24px, 4vw, 54px);
}

.case-strip__grid {
  margin-top: 18px;
}

.case-strip h2 {
  margin-bottom: 24px;
}

.case-strip__media .media-slot {
  min-height: 340px;
}

.text-link {
  color: var(--red);
}

.stage-row,
.fashion-strip,
.language-row,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.language-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stage-row span,
.stage-row article,
.fashion-strip span,
.fashion-strip article,
.language-row span,
.language-row article,
.proof-grid span {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  background: var(--black);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stage-row b,
.stage-row article b,
.fashion-strip b,
.fashion-strip article b {
  margin-bottom: 8px;
  color: var(--red);
}

.slot-tile__media {
  width: 100%;
  margin: -2px 0 12px;
}

.slot-tile__media .media-slot,
.slot-tile__media img,
.slot-tile__media video {
  border: 0;
  border-radius: 0;
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 28px;
  border: 1px solid var(--line);
}

.comparison > div {
  position: relative;
}

.comparison .media-slot {
  border: 0;
  border-radius: 0;
}

.comparison small {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison button {
  z-index: 3;
  width: 48px;
  border: 0;
  border-inline: 1px solid var(--red);
  background: var(--black);
  color: var(--red);
  cursor: ew-resize;
}

.consistency {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0));
}

.consistency h2 span {
  color: rgba(242, 241, 238, 0.44);
}

.proof-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-grid span {
  align-items: center;
  min-height: 96px;
  color: var(--red);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--black);
}

.service-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  color: var(--red);
  font-family: var(--serif);
  font-size: 26px;
}

.service-card h3 {
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card p {
  color: rgba(242, 241, 238, 0.68);
  line-height: 1.45;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.process-list li {
  min-height: 126px;
  padding: 18px 14px;
  background: var(--black);
}

.process-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1;
}

.process-list strong {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.lab-item {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--black);
}

.lab-item .media-slot {
  height: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 0;
}

.lab-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.86));
}

.lab-item > span,
.lab-item h3 {
  position: absolute;
  z-index: 2;
  left: 18px;
}

.lab-item > span {
  bottom: 72px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.lab-item h3 {
  right: 18px;
  bottom: 18px;
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.about {
  padding: 0;
}

.about__portrait,
.about__copy {
  min-height: 680px;
}

.about__copy {
  padding: clamp(34px, 5vw, 84px) clamp(24px, 4vw, 54px);
}

.portrait-placeholder {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: end center;
  padding: 36px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.06), rgba(8, 8, 8, 0.9)),
    radial-gradient(70% 92% at 50% 38%, rgba(242, 241, 238, 0.16), transparent 60%),
    linear-gradient(145deg, #202020, #050505 72%);
  filter: grayscale(1);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.portrait-media {
  min-height: 680px;
  object-position: center;
  filter: grayscale(1);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.portrait-media:hover {
  filter: grayscale(0.86);
  transform: scale(1.015);
}

.portrait-placeholder::before {
  content: "";
  width: min(58%, 300px);
  aspect-ratio: 1 / 1.35;
  border: 1px solid rgba(242, 241, 238, 0.18);
  border-radius: 50% 50% 8px 8px;
  background:
    linear-gradient(180deg, transparent 39%, var(--red) 40% 48%, transparent 49%),
    linear-gradient(135deg, rgba(242, 241, 238, 0.12), rgba(0, 0, 0, 0.8));
}

.portrait-placeholder:hover {
  filter: grayscale(0.86);
  transform: scale(1.015);
}

.portrait-placeholder span {
  position: absolute;
  color: rgba(242, 241, 238, 0.3);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.about__copy h2 {
  margin-bottom: 34px;
}

.signature {
  display: inline-block;
  margin-top: 28px;
  color: rgba(242, 241, 238, 0.8);
  font-family: "Snell Roundhand", "Brush Script MT", cursive;
  font-size: 58px;
  transform: rotate(-8deg);
}

.contact {
  align-items: start;
}

.contact h2 {
  margin-bottom: 34px;
}

.contact__details {
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.contact__details a:hover {
  color: var(--red);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  width: 100%;
}

.contact-form label span {
  color: rgba(242, 241, 238, 0.62);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.025);
  color: var(--ink);
  padding: 15px 17px;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form option {
  background: var(--black);
  color: var(--ink);
}

.contact-form button {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 0 36px;
  border-inline: 1px solid var(--line);
  color: rgba(242, 241, 238, 0.66);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer nav {
  display: flex;
  gap: 28px;
}

.media-slot {
  position: relative;
  aspect-ratio: var(--ratio, 16 / 9);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(242, 241, 238, 0.09), transparent 42%),
    repeating-linear-gradient(110deg, rgba(242, 241, 238, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, #1b1b1b, #070707 65%);
}

.media-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2px solid rgba(178, 20, 31, 0.48);
  opacity: 0.74;
}

.media-slot--wide {
  aspect-ratio: 16 / 9;
}

.media-slot span {
  position: relative;
  z-index: 2;
  max-width: 70%;
  color: rgba(242, 241, 238, 0.46);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.media-slot__grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255, 255, 255, 0.04) 2px 3px),
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(255, 255, 255, 0.03) 3px 4px);
}

.site-cursor {
  position: fixed;
  left: -40px;
  top: -40px;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translate(-80px, -80px);
  border-radius: 50%;
  background: var(--red);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, width 0.18s ease, height 0.18s ease;
}

.site-cursor.is-active {
  width: 50px;
  height: 50px;
  opacity: 0.78;
}

.case-page main {
  border-inline: 1px solid var(--line);
}

.case-hero {
  min-height: calc(100svh - 74px);
  display: grid;
  align-content: end;
  gap: clamp(26px, 4vw, 60px);
  padding: clamp(42px, 6vw, 90px) clamp(24px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
}

.case-hero__title {
  align-items: end;
}

.case-hero h1 {
  max-width: 880px;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.case-meta div {
  padding: 18px;
  background: var(--black);
}

.case-meta dt {
  margin-bottom: 12px;
  color: var(--red);
}

.case-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.case-hero__media .media-slot,
.final-film .media-slot {
  min-height: 420px;
}

.case-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.case-copy article {
  min-height: 310px;
  padding: clamp(24px, 4vw, 54px);
  background: var(--black);
}

.case-copy p:last-child {
  max-width: none;
  font-size: clamp(19px, 1.6vw, 30px);
}

.case-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-gallery figure {
  margin: 0;
}

.case-gallery figcaption {
  margin-top: 10px;
}

.final-film {
  margin-top: 36px;
}

@media (min-width: 1200px) {
  .home-grid {
    display: grid;
    grid-template-columns: 38.7% 33.2% 28.1%;
    align-items: start;
    border-inline: 1px solid var(--line);
  }

  .home-column {
    border-right: 1px solid var(--line);
  }

  .home-column--side {
    border-right: 0;
  }

  .home-grid .hero,
  .home-grid .section-line,
  .home-grid .case-strip,
  .home-grid .about,
  .home-grid .contact {
    border-inline: 0;
  }

  .home-grid .section-line,
  .home-grid .case-strip {
    padding: 26px 28px;
  }

  .hero {
    min-height: 318px;
  }

  .hero__media .media-slot {
    min-height: 318px;
  }

  .hero__content {
    width: auto;
    max-width: 580px;
    padding: 58px 30px 32px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 15px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(54px, 4vw, 74px);
    line-height: 0.94;
  }

  .hero__content > p:not(.eyebrow),
  .shopify p,
  .case-strip p,
  .consistency p,
  .process .section-head p,
  .about p,
  .contact__details,
  .case-hero__title p,
  .case-copy p {
    max-width: 390px;
    font-size: 15px;
    line-height: 1.42;
  }

  .hero__actions {
    gap: 10px;
  }

  .button {
    min-height: 44px;
    padding: 0 22px;
    font-size: 11px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h2,
  .shopify h2,
  .case-strip h2,
  .consistency h2,
  .services h2,
  .process h2,
  .lab h2,
  .about h2,
  .contact h2,
  .case-gallery h2 {
    font-size: clamp(32px, 2.35vw, 48px);
    line-height: 1.02;
  }

  .showreel__frame .media-slot {
    min-height: 126px;
  }

  .play-button {
    width: 48px;
    height: 48px;
    font-size: 12px;
  }

  .showreel__meta {
    padding-top: 10px;
    font-size: 10px;
  }

  .work .section-head {
    padding-inline: 28px;
  }

  .work-rail {
    grid-template-columns: repeat(6, minmax(104px, 1fr));
  }

  .work-card {
    min-width: 0;
    min-height: 228px;
    padding: 12px;
  }

  .work-card strong {
    font-size: clamp(20px, 1.55vw, 28px);
  }

  .work-card small {
    margin-top: 10px;
    font-size: 9px;
  }

  .work-card__number {
    margin-bottom: 10px;
  }

  .work-list {
    display: none;
  }

  .shopify__grid,
  .case-strip__grid,
  .consistency__grid,
  .contact,
  .case-hero__title {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shopify__grid {
    gap: 16px;
  }

  .phone-row {
    gap: 14px;
  }

  .phone {
    padding: 7px;
    border-radius: 28px;
  }

  .phone .media-slot {
    border-radius: 20px;
  }

  .phone__caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .phone__caption strong {
    font-size: clamp(15px, 1.25vw, 21px);
  }

  .case-strip h2 {
    margin-bottom: 14px;
  }

  .case-strip__media .media-slot {
    min-height: 150px;
  }

  .stage-row,
  .fashion-strip,
  .language-row,
  .proof-grid {
    margin-top: 18px;
  }

  .stage-row span,
  .stage-row article,
  .fashion-strip span,
  .fashion-strip article,
  .language-row span,
  .language-row article,
  .proof-grid span {
    min-height: 58px;
    padding: 10px;
    font-size: 9px;
  }

  .comparison {
    margin-top: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .service-card {
    min-height: 128px;
    padding: 14px 12px;
  }

  .service-card > span {
    width: 28px;
    height: 28px;
    margin-bottom: 14px;
    font-size: 18px;
  }

  .service-card h3 {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .service-card p {
    font-size: 11px;
  }

  .process-list {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .process-list li {
    min-height: 74px;
    padding: 10px 7px;
  }

  .process-list span {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .process-list strong {
    font-size: 8px;
  }

  .lab-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lab-item,
  .lab-item .media-slot {
    min-height: 150px;
  }

  .lab-item h3 {
    font-size: 18px;
  }

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

  .about__portrait,
  .portrait-placeholder,
  .portrait-media {
    min-height: 300px;
  }

  .about__copy {
    min-height: auto;
    padding: 28px;
  }

  .about__copy h2,
  .contact h2 {
    margin-bottom: 20px;
  }

  .signature {
    margin-top: 12px;
    font-size: 46px;
  }

  .contact-form {
    gap: 10px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .contact-form textarea {
    min-height: 86px;
  }

  .form-row {
    gap: 10px;
  }
}

@media (max-width: 1120px) {
  .work-list,
  .shopify__grid,
  .case-strip__grid,
  .consistency__grid,
  .about,
  .contact,
  .case-hero__title,
  .case-copy {
    grid-template-columns: 1fr;
  }

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

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

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .site-cursor {
    display: none;
  }
}

@media (max-width: 760px) {
  body::before {
    background-size: 25vw 25vw;
  }

  .site-header {
    min-height: 58px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .menu-open .mobile-menu {
    display: block;
  }

  .mobile-menu {
    top: 58px;
    width: 100%;
  }

  .brand {
    font-size: 25px;
  }

  .hero {
    min-height: clamp(430px, 62svh, 560px);
    align-items: end;
  }

  .hero__media .media-slot {
    min-height: clamp(430px, 62svh, 560px);
  }

  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.42) 42%, rgba(8, 8, 8, 0.94) 100%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.32));
  }

  .hero__content {
    padding: 42px 20px 32px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 58px);
    line-height: 0.96;
  }

  .hero__actions,
  .form-row,
  .section-head--row {
    flex-direction: column;
    align-items: stretch;
  }

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

  .section-line,
  .case-strip,
  .case-hero {
    padding: 28px 20px;
  }

  .section-head h2,
  .shopify h2,
  .case-strip h2,
  .consistency h2,
  .services h2,
  .process h2,
  .lab h2,
  .about h2,
  .contact h2,
  .case-hero h1,
  .case-gallery h2 {
    font-size: clamp(37px, 12vw, 60px);
  }

  .showreel__frame .media-slot,
  .case-strip__media .media-slot,
  .case-hero__media .media-slot,
  .final-film .media-slot {
    min-height: auto;
  }

  .work .section-head {
    padding-inline: 20px;
  }

  .work-rail {
    grid-template-columns: repeat(6, minmax(76vw, 1fr));
  }

  .work-card {
    min-height: calc(100svh - 150px);
  }

  .work-list {
    display: none;
  }

  .phone-row {
    grid-template-columns: repeat(3, minmax(72vw, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .phone {
    border-radius: 28px;
  }

  .stage-row,
  .fashion-strip,
  .language-row,
  .proof-grid,
  .services-grid,
  .process-list,
  .lab-grid,
  .case-meta,
  .case-gallery__grid {
    grid-template-columns: 1fr;
  }

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

  .comparison button {
    width: auto;
    min-height: 44px;
    border: 0;
    border-block: 1px solid var(--red);
    cursor: ns-resize;
  }

  .about__portrait,
  .about__copy,
  .portrait-placeholder,
  .portrait-media {
    min-height: 480px;
  }

  .about__copy {
    padding: 28px 20px;
  }

  .contact__details {
    margin-bottom: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

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