@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/dm-sans.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-serif.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-serif-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/syne.woff2") format("woff2");
}
:root {
  --night: #090a08;
  --paper: #eeeae0;
  --acid: #d7ff38;
  --ember: #ff5b35;
  --sage: #bec6b7;
  --muted: #aaa89f;
  --line: rgba(238, 234, 224, 0.19);
  --gutter: clamp(1.15rem, 4vw, 4.75rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 5rem;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--night);
}
body {
  margin: 0;
  background: var(--night);
  color: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--acid);
  color: var(--night);
}
:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 300;
  background: var(--acid);
  color: var(--night);
  padding: 0.8rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  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='.85' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.serif {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}
.caps {
  font:
    600 0.67rem/1 "DM Sans",
    sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.tag:before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(9, 10, 8, 0.92),
    rgba(9, 10, 8, 0)
  );
  transition:
    background 0.3s,
    transform 0.3s;
}
.site-header.scrolled {
  background: rgba(9, 10, 8, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font:
    700 1.42rem/1 "Syne",
    sans-serif;
  letter-spacing: -0.075em;
  width: max-content;
  position: relative;
}
.brand:after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-left: 0.12em;
  border-radius: 50%;
  background: var(--acid);
}
.desktop-nav {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  align-items: center;
}
.desktop-nav a,
.header-cta {
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  position: relative;
  padding: 0.8rem 0;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.45rem;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.desktop-nav a:hover:after,
.desktop-nav a[aria-current="page"]:after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-cta {
  justify-self: end;
  border-bottom: 1px solid;
  padding-bottom: 0.25rem;
}
.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  background: transparent;
  min-width: 4.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--acid);
  color: var(--night);
  padding: max(6.7rem, calc(env(safe-area-inset-top) + 6rem)) var(--gutter)
    max(1.5rem, env(safe-area-inset-bottom));
  display: grid;
  grid-template-rows: 1fr auto;
  transform: translateY(-102%);
  visibility: hidden;
  transition:
    transform 0.7s var(--ease),
    visibility 0s 0.7s;
}
.mobile-menu.open {
  transform: none;
  visibility: visible;
  transition:
    transform 0.7s var(--ease),
    visibility 0s;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu nav a {
  font: 600 clamp(2.9rem, 14vw, 5.8rem)/0.92 "Syne";
  letter-spacing: -0.065em;
  border-bottom: 1px solid rgba(9, 10, 8, 0.24);
  padding: 0.16em 0;
}
.mobile-menu nav a span {
  font: 500 0.62rem/1 "DM Sans";
  letter-spacing: 0.15em;
  vertical-align: top;
  margin-right: 1rem;
}
.mobile-menu-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}
.mobile-menu-foot a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.opener-seen .home-opener {
  display: none;
}
.home-opener {
  height: 145svh;
  position: relative;
  background: #000;
  --p: 0;
  --logo-opacity: 1;
}
.opener-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
  isolation: isolate;
}
.opener-sticky:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 55%,
    rgba(0, 255, 186, 0.075),
    transparent 42%
  );
  opacity: calc(1 - var(--p));
  transform: scale(calc(0.8 + var(--p) * 0.5));
}
.opener-logo-wrap {
  position: relative;
  width: min(82vw, 70rem);
  aspect-ratio: 1050/300;
  transform: scale(calc(0.8 + var(--p) * 0.3))
    translateY(calc(var(--p) * -2.5vh));
  opacity: var(--logo-opacity);
  will-change: transform, opacity;
}
.heav-mark {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.logo-layer {
  fill: currentColor;
  transform-box: fill-box;
  transform-origin: center;
  pointer-events: none;
}
.logo-core {
  color: #f6f1e7;
  filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 5px rgba(215, 255, 56, 0.5));
}
.logo-trail {
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform, opacity, filter;
}
.trail-1,
.trail-4,
.trail-7 {
  color: #d7ff38;
}
.trail-2,
.trail-5,
.trail-8 {
  color: #00ffd0;
}
.trail-3,
.trail-6 {
  color: #00a98c;
}
.opener-meta {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  opacity: var(--logo-opacity);
}
.opener-progress {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.opener-progress i {
  display: block;
  width: clamp(3rem, 8vw, 8rem);
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.opener-progress i:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acid);
  transform-origin: left;
  transform: scaleX(var(--p));
}
.opener-enter {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 99px;
  padding: 0.8rem 1.05rem;
  display: flex;
  align-items: center;
}
main {
  display: block;
}
.home-hero,
.page-hero {
  padding: calc(var(--header) + clamp(3rem, 7vw, 7rem)) var(--gutter)
    clamp(4rem, 8vw, 8rem);
  position: relative;
}
.home-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  grid-template-rows: 1fr auto;
  gap: 2rem;
}
.hero-copy {
  align-self: center;
}
.eyebrow {
  color: var(--acid);
  margin-bottom: 1.4rem;
}
.display {
  font:
    600 clamp(4rem, 10.3vw, 10.5rem)/0.78 "Syne",
    sans-serif;
  letter-spacing: -0.075em;
  margin: 0;
  max-width: 10ch;
  text-wrap: balance;
}
.display em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  color: var(--acid);
  letter-spacing: -0.035em;
}
.home-hero .lead {
  max-width: 29rem;
  margin: 2rem 0 0 auto;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.62;
  color: #cfcdc5;
}
.hero-art {
  min-height: 30rem;
  position: relative;
  overflow: hidden;
  background: #20221c;
  clip-path: polygon(7% 0, 100% 0, 100% 94%, 0 100%);
}
.hero-art:before,
.film-surface:before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(
      circle at 61% 34%,
      rgba(255, 211, 154, 0.95) 0 2%,
      rgba(255, 91, 53, 0.6) 3%,
      transparent 10%
    ),
    radial-gradient(ellipse at 66% 49%, #7f3b2b 0 8%, transparent 9%),
    linear-gradient(
      115deg,
      transparent 40%,
      rgba(239, 221, 186, 0.3) 41%,
      transparent 43%
    ),
    radial-gradient(circle at 60% 45%, #393a2d, transparent 35%),
    linear-gradient(150deg, #111 15%, #2e3325 52%, #090909);
  animation: drift 14s var(--ease) infinite alternate;
}
.hero-art:after {
  content: "HEAV / FRAME 001";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  writing-mode: vertical-rl;
  font: 600 0.58rem/1 "DM Sans";
  letter-spacing: 0.18em;
}
.hero-bottom {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pulse {
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--acid);
  margin-right: 0.55rem;
  box-shadow: 0 0 0 0 rgba(215, 255, 56, 0.6);
  animation: pulse 2s infinite;
}
.round-arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.round-arrow:hover {
  background: var(--acid);
  color: var(--night);
  border-color: var(--acid);
}
.page-hero {
  min-height: 72svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
}
.page-hero .display {
  max-width: 12ch;
}
.page-hero .intro-grid {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 35rem);
  gap: 2rem;
  margin-top: 3rem;
}
.page-hero .intro-grid p {
  grid-column: 2;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  line-height: 1.6;
  color: #cfcdc5;
  margin: 0;
}
.breadcrumb {
  position: absolute;
  top: calc(var(--header) + 1.4rem);
  display: flex;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumb a:hover {
  color: var(--acid);
}
.section {
  padding: clamp(5.5rem, 10vw, 10rem) var(--gutter);
}
.section.paper {
  background: var(--paper);
  color: var(--night);
}
.section.sage {
  background: var(--sage);
  color: var(--night);
}
.section.acid {
  background: var(--acid);
  color: var(--night);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.section-head h2 {
  font: 500 clamp(3rem, 7vw, 7rem)/0.9 "Syne";
  letter-spacing: -0.06em;
  margin: 0;
}
.section-head h2 em {
  font-family: "Instrument Serif";
  font-weight: 400;
  color: var(--muted);
}
.paper .section-head h2 em,
.sage .section-head h2 em {
  color: #716f68;
}
.section-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 74rem;
  margin-left: auto;
}
.section-copy p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  margin: 0;
}
.section-copy .pull {
  font: 400 clamp(2rem, 3.6vw, 3.7rem)/1.04 "Instrument Serif";
  letter-spacing: -0.02em;
}
.link-list {
  border-top: 1px solid currentColor;
}
.link-row {
  display: grid;
  grid-template-columns: 3.4rem 1.3fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid color-mix(in srgb, currentColor 25%, transparent);
  position: relative;
  overflow: hidden;
}
.link-row:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acid);
  transform: translateY(102%);
  transition: transform 0.55s var(--ease);
  z-index: 0;
}
.paper .link-row:before,
.acid .link-row:before {
  background: var(--night);
}
.link-row > * {
  position: relative;
  z-index: 1;
}
.link-row h3 {
  font: 500 clamp(1.55rem, 3vw, 3rem)/1 "Syne";
  letter-spacing: -0.04em;
  margin: 0;
}
.link-row p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
}
.paper .link-row p {
  color: #65635d;
}
.link-row:hover:before {
  transform: none;
}
.link-row:hover {
  color: var(--night);
}
.paper .link-row:hover,
.acid .link-row:hover {
  color: var(--paper);
}
.link-row:hover p {
  color: inherit;
}
.link-row .arrow {
  font-size: 1.4rem;
  transition: transform 0.3s;
}
.link-row:hover .arrow {
  transform: translate(4px, -4px);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
}
.split h2 {
  font: 500 clamp(3.1rem, 6.8vw, 7rem)/0.9 "Syne";
  letter-spacing: -0.06em;
  margin: 0 0 2rem;
}
.split h2 em {
  font-family: "Instrument Serif";
  font-weight: 400;
}
.split p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}
.film-surface {
  min-height: clamp(27rem, 62vw, 48rem);
  position: relative;
  overflow: hidden;
  background: #191a15;
}
.film-surface.alt:before {
  background:
    radial-gradient(
      circle at 28% 68%,
      rgba(215, 255, 56, 0.75),
      transparent 8%
    ),
    linear-gradient(125deg, #10110e, #384238 52%, #0b0b0a);
}
.film-surface .frame-label {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.portrait-surface {
  aspect-ratio: 4/5;
  background: linear-gradient(
    145deg,
    #151713 0 42%,
    #384238 43% 65%,
    #d7ff38 66% 67%,
    #111 68%
  );
  position: relative;
  overflow: hidden;
}
.portrait-surface:after {
  content: "M / T";
  position: absolute;
  right: -0.08em;
  bottom: -0.2em;
  font: 600 min(22vw, 19rem)/1 "Syne";
  letter-spacing: -0.09em;
  color: rgba(238, 234, 224, 0.12);
}
.prose {
  max-width: 53rem;
  margin: 0 auto;
}
.prose h2 {
  font: 500 clamp(2.1rem, 4vw, 4rem)/1 "Syne";
  letter-spacing: -0.045em;
  margin: 3.2rem 0 1.2rem;
}
.prose p {
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.8;
  color: #cfcdc5;
}
.paper .prose p {
  color: #464540;
}
.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.meta-item {
  padding: clamp(1.4rem, 3vw, 2.7rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta-item strong {
  display: block;
  font: 500 clamp(1.4rem, 2.5vw, 2.4rem)/1.05 "Syne";
  margin-top: 1.5rem;
}
.meta-item p {
  color: var(--muted);
  line-height: 1.5;
}
.step-list {
  counter-reset: step;
  border-top: 1px solid rgba(9, 10, 8, 0.35);
}
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 4rem 1fr 1fr;
  gap: 2rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(9, 10, 8, 0.35);
}
.step:before {
  content: "0" counter(step);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}
.step h3 {
  font: 600 clamp(1.3rem, 2vw, 2rem)/1.1 "Syne";
  margin: 0;
}
.step p {
  margin: 0;
  line-height: 1.6;
  color: #4c4f48;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--gutter);
}
.work-card {
  min-height: clamp(26rem, 55vw, 47rem);
  position: relative;
  overflow: hidden;
  background: #1b1d18;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.work-card:nth-child(2) {
  min-height: clamp(22rem, 45vw, 39rem);
  margin-top: 12vw;
  background: linear-gradient(140deg, #492f25, #141512 55%, #293029);
}
.work-card:first-child:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 65% 34%,
      rgba(255, 211, 154, 0.9) 0 2%,
      transparent 9%
    ),
    linear-gradient(118deg, #10110f, #714534 57%, #121310);
}
.work-card-copy {
  position: relative;
  z-index: 2;
}
.work-card h2 {
  font: 500 clamp(2rem, 5vw, 5rem)/0.9 "Syne";
  letter-spacing: -0.05em;
  margin: 0.55rem 0;
}
.work-note {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.3rem;
  color: var(--muted);
}
.cta-panel {
  min-height: 80svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta-panel h2 {
  font: 600 clamp(4rem, 11vw, 11rem)/0.76 "Syne";
  letter-spacing: -0.075em;
  margin: 7vh 0;
}
.cta-panel h2 em {
  font-family: "Instrument Serif";
  font-weight: 400;
  display: block;
  margin-left: 13vw;
}
.mail-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 1.25rem 0;
  min-height: 64px;
  font: 500 clamp(1.05rem, 2vw, 1.8rem)/1 "Syne";
  transition: padding 0.3s;
}
.mail-link:hover {
  padding-inline: 1rem;
}
.button-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 0.85rem 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.3s;
}
.button-link:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--night);
}
.paper .button-link:hover,
.acid .button-link:hover {
  background: var(--night);
  border-color: var(--night);
  color: var(--paper);
}
.site-footer {
  padding: 2.2rem var(--gutter) max(2rem, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  border-top: 1px solid var(--line);
  gap: 2rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3rem;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-links a,
.footer-owner {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-meta {
  justify-self: end;
  text-align: right;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}
.footer-owner {
  color: var(--paper);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.seen {
  opacity: 1;
  transform: none;
}
@keyframes drift {
  to {
    transform: scale(1.12) translate3d(-2%, 2%, 0);
  }
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
}
@media (max-width: 800px) {
  :root {
    --header: 4.5rem;
  }
  .site-header {
    grid-template-columns: 1fr auto;
    padding-top: env(safe-area-inset-top);
    height: calc(var(--header) + env(safe-area-inset-top));
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .home-opener {
    height: 112svh;
  }
  .opener-logo-wrap {
    width: 92vw;
  }
  .opener-meta {
    font-size: 0.58rem;
  }
  .opener-meta .opener-index {
    display: none;
  }
  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 42svh auto;
    padding-top: calc(var(--header) + 4rem);
    gap: 2rem;
  }
  .display {
    font-size: clamp(3.65rem, 18vw, 6.7rem);
    line-height: 0.8;
  }
  .home-hero .lead {
    margin: 1.6rem 0 0 8vw;
    max-width: calc(100% - 8vw);
    font-size: 1rem;
  }
  .hero-art {
    grid-row: 2;
    min-height: 0;
    clip-path: polygon(0 3%, 100% 0, 100% 96%, 0 100%);
  }
  .hero-bottom {
    grid-row: 3;
  }
  .page-hero {
    min-height: 75svh;
    padding-top: calc(var(--header) + 5rem);
  }
  .page-hero .intro-grid {
    grid-template-columns: 1fr;
    margin-top: 2.2rem;
  }
  .page-hero .intro-grid p {
    grid-column: 1;
    margin-left: 8vw;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .section-head h2 {
    font-size: clamp(3rem, 15vw, 5.5rem);
  }
  .section-copy {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .link-row {
    grid-template-columns: 2.2rem 1fr auto;
    gap: 1rem;
    padding: 1.45rem 0;
    min-height: 104px;
  }
  .link-row p {
    grid-column: 2;
    font-size: 0.92rem;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .film-surface {
    min-height: 65svh;
    order: -1;
  }
  .portrait-surface {
    aspect-ratio: 1/1.16;
    order: -1;
  }
  .meta-grid {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }
  .step p {
    grid-column: 2;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .work-card,
  .work-card:nth-child(2) {
    min-height: 72svh;
    margin: 0;
  }
  .work-note {
    display: block;
  }
  .work-note span {
    display: block;
    margin-top: 0.7rem;
  }
  .cta-panel {
    min-height: 72svh;
  }
  .cta-panel h2 {
    font-size: 17vw;
  }
  .cta-panel h2 em {
    margin-left: 6vw;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links {
    grid-column: 1/-1;
    grid-row: 1;
    justify-content: flex-start;
    gap: 1rem 1.4rem;
  }
  .footer-meta {
    font-size: 0.64rem;
  }
  .section {
    padding-block: clamp(4.5rem, 18vw, 7rem);
  }
}
@media (max-width: 390px) {
  .display {
    font-size: 17vw;
  }
  .mobile-menu nav a {
    font-size: 13.5vw;
  }
  .caps {
    font-size: 0.59rem;
  }
  .site-footer {
    gap: 1.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .home-opener {
    height: 100svh;
  }
  .opener-logo-wrap {
    transform: none !important;
    opacity: 1 !important;
  }
  .logo-trail {
    display: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
