:root {
  color-scheme: dark;
  --black: #061923;
  --white: #f7fffb;
  --paper: #d9cbae;
  --navy: #073449;
  --green: #0c3f31;
  --muted: #a9c8c0;
  --line: rgba(255, 255, 255, 0.16);
  --serif: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { background: var(--black); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, video { display: block; max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }

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

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.noise {
  content: "";
  position: absolute;
  z-index: 20;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.18;
  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='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  animation: grain 240ms steps(2) infinite;
  mix-blend-mode: soft-light;
}

@keyframes grain {
  0% { transform: translate(1%, -1%); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(2%, 0); }
  75% { transform: translate(0, 2%); }
  100% { transform: translate(-2%, -1%); }
}

.crt-screen::after {
  content: "";
  position: absolute;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, 0.24) 4px);
  mix-blend-mode: multiply;
}

.site-header {
  --page-progress: 0;
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  min-height: calc(78px + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) clamp(24px, 2.8vw, 54px) 0;
  border-bottom: 1px solid rgba(24, 25, 22, .16);
  background: #f2f2ee;
  color: #181916;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #19705b;
  transform: scaleX(var(--page-progress));
  transform-origin: left;
}

.site-header.is-solid,
.site-header.on-light { color: #181916; background: #f2f2ee; }

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 3px;
  width: max-content;
  font-family: var(--sans);
  font-size: clamp(26px, 1.8vw, 32px);
  font-weight: 800;
  line-height: .92;
}

.brand-word { transform: translateY(1px); }
.brand-mark { width: clamp(32px, 2.15vw, 38px); height: auto; flex: none; margin-right: 7px; transform-origin: 50% 50%; will-change: transform; }
.brand sup { align-self: flex-start; margin-top: 1px; font-size: 7px; font-weight: 500; }

@keyframes brand-mark-turn {
  0% { transform: rotate(0deg) scale(1); }
  54% { transform: rotate(205deg) scale(.92); }
  100% { transform: rotate(360deg) scale(1); }
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand-mark { animation: brand-mark-turn 820ms cubic-bezier(.16, 1, .3, 1) both; }
}

@media (prefers-reduced-motion: reduce) {
  .brand:hover .brand-mark { animation: none; }
}

.main-nav { display: flex; align-items: center; justify-self: center; gap: clamp(30px, 3.1vw, 56px); }

.main-nav a {
  position: relative;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease-out;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="location"]::after { transform: scaleX(1); transform-origin: left; }

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #181916;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 160ms ease-out, background-color 160ms ease-out;
}
.header-contact span { transition: transform 160ms ease-out; }
.header-contact:hover { background: #181916; color: #f2f2ee; }
.header-contact:hover span { transform: translate(2px, -2px); }
.menu-button { display: none; }

.hero {
  --mx: 0px;
  --my: 0px;
  --hero-scroll: 0;
  --hero-scale: 1.02;
  --hero-shift-x: 0vw;
  --hero-shift-y: 0vh;
  --hero-copy-opacity: 1;
  --hero-cue-opacity: 1;
  --hero-screen-blend: 0;
  position: relative;
  height: 190svh;
  background: #071f2c;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: #071f2c;
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 15;
  inset: 0;
  pointer-events: none;
  background: #06110d;
  opacity: var(--hero-screen-blend);
}

.hero-visual {
  position: absolute;
  z-index: -3;
  top: 50%;
  left: 50%;
  width: max(100vw, calc(100svh * 1.7768));
  height: max(100svh, calc(100vw / 1.7768));
  transform: translate(calc(-50% + var(--mx) + var(--hero-shift-x)), calc(-50% + var(--my) + var(--hero-shift-y))) scale(var(--hero-scale));
  transform-origin: 71.9% 43.7%;
}

.hero-visual picture,
.hero-visual picture img { width: 100%; height: 100%; }
.hero-visual picture img { max-width: none; object-fit: fill; filter: sepia(.08) hue-rotate(132deg) saturate(.78) contrast(1.06) brightness(.96); }

.crt-screen {
  position: absolute;
  left: 62.3%;
  top: 30.6%;
  width: 19.2%;
  height: 26.2%;
  overflow: hidden;
  border-radius: 17% 18% 14% 15% / 19% 20% 17% 20%;
  clip-path: polygon(4% 2%, 94% 1%, 100% 96%, 1% 91%);
  background: #12251a;
  box-shadow: inset 0 0 30px #b6ffd3, 0 0 25px rgba(185, 255, 217, 0.6);
  transform: rotate(0.7deg);
}

.crt-game { width: 100%; height: 100%; max-width: none; image-rendering: pixelated; filter: sepia(.08) saturate(.88) contrast(1.1) brightness(.9); }

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,28,39,.7) 0%, rgba(3,28,39,.25) 46%, transparent 76%), linear-gradient(180deg, rgba(3,28,39,.28), transparent 28%, rgba(3,28,39,.2));
}

.hero-stage > .noise { z-index: 10; }

.hero-copy {
  position: absolute;
  z-index: 3;
  left: clamp(34px, 6.6vw, 126px);
  top: 51%;
  width: min(57vw, 1050px);
  opacity: var(--hero-copy-opacity);
  transform: translateY(calc(-42% + var(--hero-copy-y, 0px)));
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7.4vw, 142px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.048em;
  color: #f5f0e8;
  text-shadow: -1px 0 rgba(125,211,255,.72), 1px 0 rgba(94,229,180,.68), 0 0 7px rgba(255,255,255,.48);
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(42px);
  transition: transform 760ms ease-out, opacity 620ms ease-out;
}

body:not(.is-loading) .hero-line { opacity: 1; transform: none; }
.hero-line:nth-child(2) { transition-delay: 70ms; }
.hero-line:nth-child(3) { transition-delay: 140ms; }
.hero-line:nth-child(4) { transition-delay: 210ms; }

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: clamp(34px, 6.6vw, 126px);
  bottom: clamp(34px, 7vh, 82px);
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.25vw, 23px);
  text-shadow: -1px 0 rgba(116,207,255,.7), 1px 0 rgba(114,239,189,.7);
  opacity: 0;
  transform: translateY(18px);
  transition: transform 700ms ease-out 280ms;
}

body:not(.is-loading) .scroll-cue { opacity: var(--hero-cue-opacity); transform: none; }

.scroll-line { display: block; width: 1px; height: 30px; background: currentColor; transform-origin: top; animation: point 1.1s var(--ease) infinite alternate; animation-play-state: paused; }
.hero.is-in-view .scroll-line { animation-play-state: running; }
@keyframes point { to { transform: scaleY(1.5); } }

.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: transform 720ms ease-out, opacity 560ms ease-out;
}

.has-motion [data-reveal="headline"] { transform: translateY(52px) scale(.985); }
.has-motion [data-reveal="film"] { transform: translateY(64px) rotateX(4deg); transform-origin: center top; }
.has-motion [data-reveal="paper"] { transform: translateY(-22px); }
.has-motion [data-reveal].is-visible { opacity: var(--reveal-opacity, 1); transform: none; }

.work {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(130px, 11vw, 190px) 0 clamp(84px, 8vw, 140px);
  background: var(--green);
  color: var(--white);
}

.work > .noise,
.contact > .noise { opacity: 0.13; }

.noise { animation-play-state: paused; }
.hero.is-in-view .hero-stage > .noise,
.work.is-in-view > .noise,
.contact.is-in-view > .noise { animation-play-state: running; }

.work-heading {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 5vw, 96px) 30px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 8.2vw, 150px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.055em;
  text-align: center;
  text-shadow: -1px 0 rgba(113,218,255,.44), 1px 0 rgba(94,229,180,.46), 0 0 8px rgba(255,255,255,.18);
}

.project-meta {
  position: relative;
  z-index: 4;
  min-height: 110px;
  padding: 12px clamp(24px, 5vw, 96px) 0;
  text-align: center;
}

.project-meta h3 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 82px); font-weight: 500; line-height: 1; }

.project-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(38px, 66px));
  justify-content: center;
  gap: 2px;
  margin-top: 8px;
}

.project-progress button {
  position: relative;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.project-progress button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  left: 5px;
  height: 2px;
  background: rgba(255, 255, 255, .28);
  transform: scaleX(.55);
  transition: transform 180ms ease-out, opacity 180ms ease-out;
}

.project-progress button.is-active::after { background: var(--white); transform: scaleX(1); }
.project-progress button:focus-visible { outline-offset: -4px; }

.film-viewport {
  position: relative;
  z-index: 3;
  height: clamp(390px, 47vw, 760px);
  overflow: hidden;
  cursor: grab;
  perspective: 1400px;
  touch-action: pan-y;
  user-select: none;
}

.film-viewport:active { cursor: grabbing; }
.film-viewport:focus-visible { outline: 1px solid rgba(255, 255, 255, .8); outline-offset: -3px; }
.film-viewport.is-dragging .film-track { transition: none; }

.film-track {
  --track-x: 13vw;
  --drag-x: 0px;
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
  width: max-content;
  height: 100%;
  transform: translate3d(calc(var(--track-x) + var(--drag-x)), 0, 0) rotateX(1.5deg);
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.film-slide {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  flex: 0 0 min(72vw, 1120px);
  height: min(39vw, 630px);
  padding: clamp(38px, 3.6vw, 62px) clamp(28px, 3vw, 50px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 32px 90px rgba(0,0,0,.42);
  opacity: 0.38;
  transform: scale(.88) rotateY(-7deg);
  transition: opacity 180ms ease-out, transform 180ms ease-out, filter 180ms ease-out;
  filter: saturate(.58) brightness(.66);
  transform-style: preserve-3d;
}

.film-slide:nth-child(3) { transform: scale(.88) rotateY(7deg); }
.film-slide.is-active { z-index: 2; opacity: 1; transform: scale(1) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); filter: none; }

.film-app-icon { position: absolute; z-index: 8; top: 42px; left: 24px; width: clamp(42px, 4vw, 66px); height: clamp(42px, 4vw, 66px); border-radius: 22%; object-fit: cover; box-shadow: 0 10px 26px rgba(0,0,0,.3); transform: translateZ(72px); }

.film-slide::before,
.film-slide::after {
  content: "";
  position: absolute;
  z-index: 5;
  right: 0;
  left: 0;
  height: 24px;
  background: repeating-linear-gradient(90deg, #050505 0 18px, transparent 18px 31px, #050505 31px 49px);
}

.film-slide::before { top: 7px; }
.film-slide::after { bottom: 7px; }

.film-media { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: clamp(12px, 2vw, 30px); width: 100%; height: 100%; overflow: hidden; transform-style: preserve-3d; }
.film-media img { width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 20px 34px rgba(0,0,0,.28)); -webkit-user-drag: none; }
.film-media img:nth-child(1) { transform: translateZ(24px) rotate(-2deg) translateY(3%); }
.film-media img:nth-child(2) { transform: translateZ(48px) translateY(-2%); }
.film-media img:nth-child(3) { transform: translateZ(24px) rotate(2deg) translateY(3%); }
.film-sezgi { background: #0b211b; }
.film-terazi { background: #e7f3ef; }
.film-emsal { background: #dceef5; }

.about {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 11vw, 210px) clamp(18px, 3.2vw, 62px) clamp(110px, 9vw, 170px);
  background: #10271f;
  color: #17130b;
  isolation: isolate;
}

.about::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: .09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.newspaper-sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: clamp(46px, 5vw, 88px) clamp(30px, 5vw, 92px) clamp(54px, 6vw, 104px);
  border: 1px solid rgba(67, 46, 21, .46);
  background: #d5c29d url("./assets/newsprint-paper.jpg") center / cover no-repeat;
  box-shadow: 0 38px 90px rgba(0, 0, 0, .48), 0 7px 14px rgba(0, 0, 0, .3), inset 0 0 65px rgba(72, 43, 16, .16);
  transform: rotate(-.22deg);
}

.newspaper-sheet::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.newspaper-sheet > * { position: relative; z-index: 1; }

.paper-masthead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 7px 24px;
  padding: 10px 0 9px;
  border-top: 5px double currentColor;
  border-bottom: 4px double currentColor;
  font-family: "Times New Roman", Times, serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.paper-masthead strong {
  grid-column: 1 / -1;
  margin: 5px 0 10px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(44px, 5.6vw, 92px);
  font-style: normal;
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.065em;
  text-align: center;
  text-shadow: .6px 0 rgba(34, 22, 11, .7), -.5px .4px rgba(103, 59, 25, .4);
  text-transform: uppercase;
}

.paper-masthead span:last-child { justify-self: end; }

.paper-rules {
  display: grid;
  grid-template-columns: 2fr 1fr 3fr;
  gap: 8px;
  margin: 9px 0 clamp(44px, 4.4vw, 72px);
}

.paper-rules i { display: block; height: 5px; background: #783425; opacity: .82; }
.paper-rules i:nth-child(2) { background: #38655b; }
.paper-rules i:nth-child(3) { background: #21190f; }

.eyebrow { position: relative; z-index: 1; color: currentColor; opacity: .58; }

.about-grid {
  display: block;
  margin-top: clamp(32px, 3.3vw, 52px);
}

.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(65px, 8.3vw, 159px);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.07em;
  text-shadow: -1px 0 rgba(8,122,157,.28), 1px 0 rgba(152,52,28,.22);
}

.about h2 {
  max-width: 1220px;
  margin-inline: auto;
  padding-bottom: clamp(28px, 3vw, 44px);
  border-bottom: 5px double currentColor;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(58px, 7.2vw, 128px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.065em;
  text-align: center;
  text-shadow: .7px 0 rgba(31, 20, 9, .65), -.5px .4px rgba(107, 64, 28, .34);
}

.paper-deck {
  max-width: 1080px;
  margin: clamp(24px, 2.5vw, 40px) auto 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(20px, 1.7vw, 29px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.paper-byline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(28px, 3vw, 44px);
  padding: 9px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  font-family: "Times New Roman", Times, serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-copy {
  max-width: none;
  margin-top: clamp(34px, 3.5vw, 58px);
  columns: 3;
  column-gap: clamp(24px, 2.6vw, 42px);
  column-rule: 1px solid rgba(23, 19, 11, .5);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(17px, 1.28vw, 22px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.012em;
  text-align: justify;
  text-shadow: .35px 0 rgba(0, 0, 0, .42);
}

.about-copy p { margin: 0; break-inside: avoid; }
.about-copy p + p { margin-top: 1.25em; }
.about-copy p:first-child::first-letter { float: left; margin: .08em .1em 0 0; font-size: 4.2em; font-weight: 700; line-height: .72; }
.about-copy h3 {
  margin: 1.15em 0 .38em;
  break-after: avoid;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(22px, 1.8vw, 31px);
  font-weight: 900;
  line-height: .94;
}

.paper-quote {
  margin: clamp(44px, 4.8vw, 76px) 0 0;
  padding: clamp(24px, 2.6vw, 40px) clamp(18px, 3vw, 48px);
  border-top: 5px double currentColor;
  border-bottom: 5px double currentColor;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(34px, 3.8vw, 66px);
  font-weight: 900;
  line-height: .92;
  text-align: center;
  text-shadow: .5px 0 rgba(0, 0, 0, .45);
}

.paper-briefs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(38px, 4vw, 64px);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.paper-briefs article { padding: clamp(22px, 2.5vw, 38px); }
.paper-briefs article + article { border-left: 1px solid currentColor; }
.paper-briefs span { font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.paper-briefs h3 { margin: 12px 0 10px; font-family: "Times New Roman", Times, serif; font-size: clamp(28px, 2.6vw, 45px); line-height: .94; }
.paper-briefs p { margin: 0; font-family: "Times New Roman", Times, serif; font-size: clamp(16px, 1.2vw, 20px); font-weight: 600; line-height: 1.25; text-align: justify; }

.paper-colophon {
  margin: clamp(54px, 5.5vw, 88px) 0 0;
  padding-top: 12px;
  border-top: 4px double currentColor;
  font-family: "Times New Roman", Times, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-align: right;
  text-transform: uppercase;
}

.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(160px, 11vw, 210px) clamp(24px, 5vw, 96px) 55px;
  background: #f2f2ee;
  color: #181916;
  isolation: isolate;
}

.contact > .noise { opacity: .035; mix-blend-mode: multiply; }

.paper-shred {
  position: absolute;
  z-index: 20;
  inset: -2px 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  height: clamp(135px, 17vw, 270px);
  overflow: hidden;
  pointer-events: none;
}

.paper-shred i {
  display: block;
  height: 100%;
  background: var(--paper) url("./assets/newsprint-paper.jpg") center / cover no-repeat;
  transform: translateY(0);
  transition: transform 760ms ease-out;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 66% 100%, 28% 91%, 0 98%);
}

.paper-shred i:nth-child(2n) { clip-path: polygon(0 0, 100% 0, 100% 96%, 64% 89%, 31% 100%, 0 91%); }
.paper-shred i:nth-child(3n) { clip-path: polygon(0 0, 100% 0, 100% 90%, 70% 99%, 38% 88%, 0 96%); }
.contact.is-shredded .paper-shred i { transform: translateY(-105%); }
.paper-shred i:nth-child(2) { transition-delay: 35ms; }
.paper-shred i:nth-child(3) { transition-delay: 70ms; }
.paper-shred i:nth-child(4) { transition-delay: 20ms; }
.paper-shred i:nth-child(5) { transition-delay: 95ms; }
.paper-shred i:nth-child(6) { transition-delay: 55ms; }
.paper-shred i:nth-child(7) { transition-delay: 120ms; }
.paper-shred i:nth-child(8) { transition-delay: 45ms; }
.paper-shred i:nth-child(9) { transition-delay: 85ms; }
.paper-shred i:nth-child(10) { transition-delay: 15ms; }
.paper-shred i:nth-child(11) { transition-delay: 105ms; }
.paper-shred i:nth-child(12) { transition-delay: 60ms; }

.contact h2 {
  position: relative;
  z-index: 2;
  max-width: 1450px;
  margin-top: auto;
  padding-top: clamp(58px, 6vw, 92px);
  font-family: var(--sans);
  font-size: clamp(64px, 8.8vw, 170px);
  font-weight: 800;
  line-height: .86;
  text-shadow: none;
}

.contact h2 em { font-family: var(--serif); font-weight: 500; }

.contact-email {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(42px, 4.5vw, 78px);
  padding: 24px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  font-family: var(--sans);
  font-size: clamp(27px, 4.4vw, 84px);
  font-weight: 500;
}

.contact-email span { transition: transform 180ms ease-out; }
.contact-email:hover span { transform: translate(7px, -7px); }
.contact-note { position: relative; z-index: 2; margin: 22px 0 0; font-family: var(--sans); font-size: clamp(14px, 1.1vw, 20px); }
.contact footer { position: relative; z-index: 2; display: flex; justify-content: space-between; margin-top: 52px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; color: rgba(24, 25, 22, .58); }

.viewport-frame { display: none; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; min-height: calc(72px + env(safe-area-inset-top)); }
  .brand { font-size: 27px; }
  .main-nav { position: absolute; top: calc(72px + env(safe-area-inset-top)); left: 0; right: 0; justify-self: stretch; display: grid; gap: 0; width: 100%; padding: 8px 24px 20px; border-bottom: 1px solid rgba(24, 25, 22, .18); background: #f2f2ee; color: #181916; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity 160ms ease-out, transform 160ms ease-out, visibility 160ms; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid rgba(24, 25, 22, .14); font-size: 18px; }
  .main-nav a::after { display: none; }
  .header-contact { display: none; }
  .menu-button { grid-column: 2; grid-row: 1; justify-self: end; display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 14px; border: 1px solid currentColor; border-radius: 999px; background: transparent; cursor: pointer; }
  .menu-label { font-size: 13px; font-weight: 500; }
  .menu-icon { position: relative; display: block; width: 14px; height: 10px; }
  .menu-icon i { position: absolute; left: 0; width: 14px; height: 1px; background: currentColor; transition: transform 160ms ease-out; }
  .menu-icon i:first-child { top: 2px; }
  .menu-icon i:last-child { bottom: 2px; }
  .menu-button[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(2.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-2.5px) rotate(-45deg); }
}

@media (max-width: 820px) {
  .hero { height: 180svh; }
  .hero-stage { min-height: 844px; border-radius: 0 0 18px 18px; }
  .hero-visual {
    width: max(100vw, calc(100svh * .5628));
    height: max(100svh, calc(100vw / .5628));
    transform: translate(calc(-50% + var(--mx) + var(--hero-shift-x)), calc(-44% + var(--my) + var(--hero-shift-y))) scale(var(--hero-scale));
    transform-origin: 50.3% 59.4%;
  }
  .crt-screen {
    left: 28.5%;
    top: 50.1%;
    width: 43.6%;
    height: 18.6%;
    border-radius: 15% / 19%;
    clip-path: inset(0 round 15% / 19%);
    transform: none;
  }
  .hero-shade { background: linear-gradient(180deg, rgba(3,28,39,.42) 0%, rgba(3,28,39,.12) 46%, rgba(3,28,39,.45) 100%); }
  .hero-copy { top: 118px; left: 20px; width: calc(100% - 40px); text-align: center; opacity: var(--hero-copy-opacity); transform: translateY(var(--hero-copy-y, 0px)); }
  .hero-copy h1 { font-size: clamp(44px, 12vw, 60px); line-height: .94; letter-spacing: -.05em; }
  .scroll-cue { top: 340px; bottom: auto; left: 0; justify-content: center; width: 100%; flex-direction: column; gap: 7px; font-size: 16px; }
}

@media (max-width: 720px) {
  .site-header { min-height: calc(64px + env(safe-area-inset-top)); padding: env(safe-area-inset-top) 18px 0; }
  .main-nav { top: calc(64px + env(safe-area-inset-top)); padding-right: 18px; padding-left: 18px; }
  .brand { font-size: 23px; }
  .brand-mark { width: 29px; margin-right: 5px; }
  .menu-button { min-height: 44px; padding: 0 13px; }

  .work { padding-top: 112px; }
  .work-heading { padding: 0 20px 22px; }
  .work-heading h2 { font-size: 64px; text-align: center; }
  .project-meta { min-height: 88px; padding: 8px 20px 0; }
  .project-meta h3 { font-size: 50px; }
  .project-progress { margin-top: 14px; }
  .film-viewport { height: 470px; }
  .film-track { gap: 24px; }
  .film-slide { flex-basis: 88vw; height: 430px; padding: 40px 20px; }
  .film-media { gap: 8px; }
  .film-media img:first-child,
  .film-media img:last-child { opacity: .55; transform: scale(.86) translateZ(0); }
  .about,
  .contact { padding-right: 20px; padding-left: 20px; }
  .about { padding-top: 112px; padding-bottom: 92px; }
  .newspaper-sheet {
    padding: 38px 17px 52px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .46), 0 5px 10px rgba(0, 0, 0, .3), inset 0 0 34px rgba(72, 43, 16, .15);
    transform: rotate(-.12deg);
  }
  .paper-masthead { grid-template-columns: 1fr auto; gap: 9px 16px; }
  .paper-masthead strong { grid-column: 1 / -1; margin-bottom: 10px; font-size: clamp(34px, 10vw, 48px); }
  .paper-masthead span:last-child { justify-self: end; }
  .paper-rules { margin-bottom: 40px; }
  .about-grid { margin-top: 34px; }
  .about h2,
  .contact h2 { font-size: clamp(58px, 18vw, 88px); }
  .about h2 { font-size: clamp(48px, 14.5vw, 74px); text-align: center; }
  .paper-deck { font-size: 20px; text-align: left; }
  .paper-byline { align-items: flex-start; flex-direction: column; gap: 5px; font-size: 9px; }
  .about-copy { columns: 1; font-size: 18px; font-weight: 500; line-height: 1.42; text-align: left; text-shadow: none; }
  .about-copy h3 { font-size: 30px; }
  .paper-quote { padding-right: 4px; padding-left: 4px; font-size: 37px; text-align: left; }
  .paper-briefs { grid-template-columns: 1fr; }
  .paper-briefs article { padding-right: 0; padding-left: 0; }
  .paper-briefs article + article { border-top: 1px solid currentColor; border-left: 0; }
  .paper-briefs h3 { font-size: 34px; }
  .paper-briefs p { font-size: 18px; line-height: 1.4; text-align: left; }
  .paper-colophon { margin-top: 56px; text-align: left; }
  .paper-shred { height: 105px; }
  .contact-email { font-size: clamp(26px, 7.4vw, 41px); }
  .contact h2 { font-size: clamp(56px, 15vw, 78px); }
  .contact-note { font-size: 15px; }
  .contact footer { gap: 20px; font-size: 8px; }
  .viewport-frame { inset: 3px; border-radius: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero { height: 100svh; }
  .hero-stage { position: relative; }
  .hero-visual { transform: translate(-50%, -50%); }
  .has-motion [data-reveal] { opacity: 1; transform: none; }
  .paper-shred { display: none; }
}
