/* ============================================================
   ONFULLFRAME — SHARED STYLESHEET
   Helvetica Neue, burgundy + cream, Apple-grade motion
   ============================================================ */

:root {
  --ink: #1A1410;
  --ink-soft: rgba(26, 20, 16, 0.72);
  --ink-mute: rgba(26, 20, 16, 0.50);
  --paper: #EFE9DC;
  --paper-deep: #E3DCC9;
  --paper-warm: #F4EFE4;
  --cream: #F7F2E6;
  --burgundy: #6B1818;
  --burgundy-deep: #4A0F0F;
  --burgundy-soft: #8B2828;
  --burgundy-ember: #A03030;
  --line: rgba(26, 20, 16, 0.16);
  --line-mid: rgba(26, 20, 16, 0.30);
  --line-strong: rgba(26, 20, 16, 0.55);

  --font: 'Helvetica Neue', 'HelveticaNeue', Helvetica, Arial, sans-serif;
  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.22, 0.61, 0.36, 1);

  --container: 1320px;
  --container-wide: 1480px;
  --gutter: clamp(20px, 4vw, 56px);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 12% 8%, rgba(107, 24, 24, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 88% 92%, rgba(107, 24, 24, 0.04) 0%, transparent 50%);
}

/* Paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.30;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Page-load fade — Apple-style */
body {
  opacity: 0;
  animation: pageIn 0.9s var(--ease-apple) 0.05s forwards;
}
body.is-leaving {
  animation: pageOut 0.4s var(--ease-soft) forwards;
}
/* Opacity-only — never put a transform on body or any ancestor of .modal,
   or `position: fixed` on the modal becomes anchored to that element's
   coordinate system instead of the viewport (visible as off-center modal). */
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pageOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
::selection { background: var(--burgundy); color: var(--cream); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.container--wide { max-width: var(--container-wide); }

/* ============================================================
   SHARED TYPE
   ============================================================ */
.eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--burgundy);
}

.display {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--burgundy);
  letter-spacing: -0.025em;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.5s var(--ease-apple), padding 0.4s var(--ease-apple), border-color 0.4s var(--ease-apple);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(239, 233, 220, 0.90);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  padding: 14px 0;
  border-bottom-color: var(--line);
}
.nav.is-over-hero .nav__link,
.nav.is-over-hero .nav__brand-wordmark { color: var(--cream); }
.nav.is-over-hero .nav__link::after { background: var(--cream); }

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 0;
}
.nav__brand-img {
  height: 36px;
  width: 36px;
  border-radius: 7px;
  display: block;
  object-fit: cover;
  transition: opacity 0.3s ease, height 0.4s var(--ease-apple), width 0.4s var(--ease-apple);
}
.nav.is-stuck .nav__brand-img { height: 30px; width: 30px; border-radius: 6px; }

.nav__menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__link {
  font-family: var(--font);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav__link:hover { color: var(--burgundy-deep); }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--burgundy);
  transition: width 0.4s var(--ease-apple), background 0.3s ease;
}
.nav__link:hover::after,
.nav__link.is-current::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--font);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.4s var(--ease-apple), transform 0.4s var(--ease-apple);
}
.nav__cta:hover { background: var(--burgundy-deep); transform: translateY(-1px); }
.nav__cta::after { content: '→'; letter-spacing: 0; }
.nav.is-over-hero .nav__cta { background: var(--cream); color: var(--burgundy); }
.nav.is-over-hero .nav__cta:hover { background: var(--burgundy); color: var(--cream); }

.nav__burger {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--burgundy);
  transition: transform 0.4s var(--ease-apple), opacity 0.3s ease, background 0.3s ease;
}
.nav.is-over-hero .nav__burger span { background: var(--cream); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ============================================================
   HERO (landing)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--burgundy-deep);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(26,20,16,0.55) 0%, rgba(26,20,16,0.10) 30%, rgba(26,20,16,0.10) 70%, rgba(26,20,16,0.75) 100%),
    linear-gradient(180deg, rgba(107,24,24,0.12) 0%, transparent 40%);
}
.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 130px;
  padding-bottom: 50px;
  color: var(--cream);
}
.hero__masthead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 242, 230, 0.85);
}
.hero__masthead-group { display: flex; gap: 28px; flex-wrap: wrap; }

.hero__center { display: flex; flex-direction: column; gap: 24px; max-width: 1100px; }
.hero__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
  overflow: hidden;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.85;
  letter-spacing: -0.025em;
}
/* Line reveal for hero title */
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__line > span {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1.2s var(--ease-apple) forwards;
}
.hero__line:nth-child(1) > span { animation-delay: 0.20s; }
.hero__line:nth-child(2) > span { animation-delay: 0.32s; }
.hero__line:nth-child(3) > span { animation-delay: 0.44s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__deck {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  max-width: 620px;
  color: rgba(247, 242, 230, 0.92);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.1s var(--ease-apple) 0.7s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247, 242, 230, 0.85);
  opacity: 0;
  animation: fadeIn 1s var(--ease-apple) 1.1s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.hero__scroll::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--cream);
  transform-origin: left;
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleX(0.4); opacity: 0.55; }
  50% { transform: scaleX(1); opacity: 1; }
}
.hero__tagline {
  font-style: italic; font-weight: 300;
  letter-spacing: 0.04em; text-transform: none;
  font-size: 14px; color: var(--cream);
}

/* ============================================================
   HERO (interior pages — work / project)
   ============================================================ */
.hero--interior {
  height: auto;
  min-height: 60vh;
  background: var(--paper);
  padding: 220px 0 120px;
  border-bottom: 1px solid var(--line);
}
.hero--interior .hero__content {
  position: relative;
  height: auto;
  display: block;
  padding: 0;
  color: var(--ink);
}
.hero--interior .hero__title { color: var(--ink); font-size: clamp(64px, 11vw, 180px); }
.hero--interior .hero__title em { color: var(--burgundy); opacity: 1; }
.hero--interior .hero__masthead { color: var(--ink-soft); margin-bottom: 60px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }

/* ============================================================
   SECTION FRAME
   ============================================================ */
.section {
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
  border-top: 1px solid var(--line);
}
.section--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(239, 233, 220, 0.08);
}
.section--dark .eyebrow { color: var(--paper); }
.section--dark .eyebrow::before { background: var(--paper); }

/* Burgundy variant — for breaking up the cream stretch */
.section--burgundy {
  background: var(--burgundy);
  color: var(--cream);
  border-color: rgba(247, 242, 230, 0.12);
}
.section--burgundy .eyebrow { color: rgba(247, 242, 230, 0.88); }
.section--burgundy .eyebrow::before { background: rgba(247, 242, 230, 0.88); }
.section--burgundy .section__title { color: var(--cream); }
.section--burgundy .section__title em { color: rgba(247, 242, 230, 0.62); }
.section--burgundy .section__intro { color: rgba(247, 242, 230, 0.80); }

/* Process step overrides — burgundy and dark variants */
.section--burgundy .process,
.section--dark    .process { border-top-color: rgba(247, 242, 230, 0.20); }
.section--burgundy .process__step,
.section--dark    .process__step { border-right-color: rgba(247, 242, 230, 0.20); }
.section--burgundy .process__num { color: rgba(247, 242, 230, 0.55); }
.section--dark    .process__num { color: var(--burgundy-ember); }
.section--burgundy .process__title,
.section--dark    .process__title { color: var(--cream); }
.section--burgundy .process__body,
.section--dark    .process__body { color: rgba(247, 242, 230, 0.78); }
.section--burgundy .process__meta,
.section--dark    .process__meta {
  color: rgba(247, 242, 230, 0.55);
  border-top-color: rgba(247, 242, 230, 0.20);
  border-top-style: dashed;
}

/* Pull-quote overrides — dark and burgundy variants */
.section--dark    .quote__mark    { color: var(--burgundy-ember); opacity: 0.55; }
.section--burgundy .quote__mark   { color: rgba(247, 242, 230, 0.45); opacity: 1; }
.section--dark    .quote__body,
.section--burgundy .quote__body   { color: var(--cream); }
.section--dark    .quote__body em { color: var(--burgundy-ember); }
.section--burgundy .quote__body em { color: rgba(247, 242, 230, 0.65); }
.section--dark    .quote__attr,
.section--burgundy .quote__attr   { color: rgba(247, 242, 230, 0.55); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: clamp(48px, 7vw, 96px);
  align-items: end;
}
.section__head-left { display: flex; flex-direction: column; gap: 28px; }
.section__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.038em;
  max-width: 14ch;
}
.section__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--burgundy);
  letter-spacing: -0.025em;
}
.section--dark .section__title em { color: var(--cream); opacity: 0.80; }
.section__intro {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 50ch;
}
.section--dark .section__intro { color: rgba(247, 242, 230, 0.78); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.manifesto__label {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.manifesto__label .display {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--burgundy);
}
.manifesto__body p {
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.manifesto__body p + p { margin-top: 1.1em; }
.manifesto__body em {
  font-style: italic;
  font-weight: 300;
  color: var(--burgundy);
}
.manifesto__sig {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-mid);
  border-left: 1px solid var(--line-mid);
}
.service {
  padding: clamp(36px, 4vw, 56px);
  border-right: 1px solid var(--line-mid);
  border-bottom: 1px solid var(--line-mid);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 380px;
  transition: background 0.6s var(--ease-apple);
}
.service:hover { background: rgba(107, 24, 24, 0.04); }
.service__num {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.service__title {
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.028em;
}
.service__title em { font-style: italic; font-weight: 300; color: var(--burgundy); }
.service__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
  flex: 1;
}
.service__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.service__list li {
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ============================================================
   WORK GRID
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
.work {
  position: relative;
  display: block;
  grid-column: span 6;
  cursor: pointer;
}
.work--wide { grid-column: span 7; }
.work--narrow { grid-column: span 5; }
.work--full { grid-column: span 12; }

.work__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--paper-deep);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
}
.work--full .work__media { aspect-ratio: 16 / 7; }

/* Media inside tile (image OR video) — scale-in on enter, zoom on hover */
.work__thumb,
.work__media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.04);
  opacity: 0;
  transition:
    transform 1.4s var(--ease-apple),
    opacity 1.2s var(--ease-apple);
}
.work.is-in .work__thumb,
.work.is-in .work__media-video { transform: scale(1); opacity: 1; }
.work:hover .work__thumb,
.work:hover .work__media-video { transform: scale(1.05); }

/* Gradient placeholder (no media) */
.work__media--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  opacity: 0.95;
  z-index: 1;
}
.work__media--gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    repeating-linear-gradient(45deg, rgba(247,242,230,0.04) 0 2px, transparent 2px 12px),
    radial-gradient(circle at 30% 40%, rgba(247,242,230,0.10), transparent 50%);
  mix-blend-mode: overlay;
}

/* Subtle dark gradient over media to keep chips/labels legible */
.work__media-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(26,20,16,0.0) 0%, rgba(26,20,16,0.08) 50%, rgba(26,20,16,0.50) 100%);
  pointer-events: none;
}

.work__chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 10px;
  border: 1px solid rgba(247, 242, 230, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.work__year {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 4;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--cream);
  opacity: 0.85;
}

.work__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.work__name {
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.02em;
  transition: color 0.4s var(--ease-apple);
}
.work:hover .work__name { color: var(--burgundy); }
.work__type {
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.work__desc {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
}

/* YouTube preview as tile cover — iframe is purely decorative, clicks
   pass through to the parent <a> so the lightbox still opens. */
.work__media--youtube { aspect-ratio: 16 / 9; }
.work__media-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease-apple);
}
.work.is-in .work__media-youtube { opacity: 1; }

/* Same treatment on the project page hero */
.project__media--youtube {
  aspect-ratio: 16 / 9;
  background: #000;
}
.project__media-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease-apple);
}
.project__media.is-in .project__media-youtube { opacity: 1; }

/* Inline play icon for video tiles */
.work__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 76px; height: 76px;
  border-radius: 999px;
  background: rgba(247, 242, 230, 0.94);
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 50px -16px rgba(26,20,16,0.7);
  transition: transform 0.5s var(--ease-apple), background 0.4s ease;
}
.work__play svg { width: 26px; height: 26px; margin-left: 4px; }
.work:hover .work__play { transform: translate(-50%, -50%) scale(1.08); background: var(--cream); }

/* "View all work" CTA below grid */
.work-grid-foot {
  margin-top: clamp(40px, 6vw, 80px);
  display: flex;
  justify-content: center;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition: background 0.5s var(--ease-apple), transform 0.5s var(--ease-apple), padding 0.4s var(--ease-apple);
}
.cta-pill::after { content: '→'; letter-spacing: 0; font-size: 16px; }
.cta-pill:hover { background: var(--burgundy); transform: translateY(-2px); padding-right: 44px; }
.cta-pill--light { background: var(--cream); color: var(--ink); }
.cta-pill--light:hover { background: var(--burgundy); color: var(--cream); }

/* ============================================================
   ARCHIVE GRID (work.html)
   ============================================================ */
.archive {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 2.5vw, 40px);
}
.archive .work { grid-column: span 6; }
.archive .work:nth-child(7n+1) { grid-column: span 7; }
.archive .work:nth-child(7n+2) { grid-column: span 5; }
.archive .work:nth-child(7n+3) { grid-column: span 5; }
.archive .work:nth-child(7n+4) { grid-column: span 7; }
.archive .work:nth-child(7n+5) { grid-column: span 6; }
.archive .work:nth-child(7n+6) { grid-column: span 6; }
.archive .work:nth-child(7n+7) { grid-column: span 12; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(247, 242, 230, 0.18);
  border-bottom: 1px solid rgba(247, 242, 230, 0.18);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.025em;
  color: var(--cream);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee__track span::after {
  content: '✦';
  font-style: italic;
  color: var(--burgundy-ember);
  font-size: 0.6em;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.quote {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 0;
}
.quote__mark {
  font-style: italic;
  font-weight: 300;
  font-size: 120px;
  line-height: 0.6;
  color: var(--burgundy);
  opacity: 0.4;
}
.quote__body {
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin: 12px 0 32px;
}
.quote__body em { font-style: italic; font-weight: 300; color: var(--burgundy); }
.quote__attr {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-mid);
}
.process__step {
  padding: 44px 28px 36px 0;
  border-right: 1px solid var(--line-mid);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.process__step:last-child { border-right: 0; }
.process__step:not(:first-child) { padding-left: 28px; }
.process__num {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 0.9;
  color: var(--burgundy);
  letter-spacing: -0.04em;
}
.process__title { font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.025em; }
.process__body { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.process__meta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed var(--line-mid);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-deep) 60%, #2A0808 100%);
}
.about__portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.04);
  opacity: 0;
  transition: transform 1.8s var(--ease-apple), opacity 1.2s var(--ease-apple);
}
.about__portrait.is-in .about__portrait-img { transform: scale(1); opacity: 1; }
.about__caption {
  margin-top: 14px;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  justify-content: space-between;
}
.about__content { display: flex; flex-direction: column; gap: 28px; }
.about__name {
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.about__name em { font-style: italic; font-weight: 300; color: var(--burgundy); }
.about__role {
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.about__bio p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 58ch;
}
.about__bio p + p { margin-top: 1em; }
.about__bio em { font-style: italic; font-weight: 300; color: var(--ink); }
.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about__fact-num {
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about__fact-num em { font-style: italic; font-weight: 300; }
.about__fact-label {
  margin-top: 8px;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  max-width: 18ch;
}

/* ============================================================
   STUDIO STATUS
   ============================================================ */
.status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(40px, 5vw, 72px);
  border: 1px solid rgba(247, 242, 230, 0.18);
  border-radius: 6px;
  background: rgba(247, 242, 230, 0.03);
}
.status__dot {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--burgundy-ember);
}
.status__dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burgundy-ember);
  box-shadow: 0 0 0 6px rgba(160, 48, 48, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(160, 48, 48, 0.18); }
  50%      { box-shadow: 0 0 0 10px rgba(160, 48, 48, 0.06); }
}
.status__headline {
  margin-top: 18px;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--cream);
}
.status__headline em { font-style: italic; font-weight: 300; color: rgba(247, 242, 230, 0.78); }
.status__body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(247, 242, 230, 0.78);
  max-width: 50ch;
}
.status__cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.status__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.5s var(--ease-apple), transform 0.5s var(--ease-apple);
}
.status__cta:hover { background: var(--burgundy-ember); color: var(--cream); transform: translateY(-1px); }
.status__cta::after { content: '→'; letter-spacing: 0; }
.status__cta--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 242, 230, 0.4);
}
.status__cta--ghost:hover { background: rgba(247, 242, 230, 0.08); color: var(--cream); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact__title {
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.contact__title em { font-style: italic; font-weight: 300; color: var(--burgundy-ember); }
.contact__deck {
  margin-top: 28px;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  max-width: 36ch;
  color: rgba(247, 242, 230, 0.78);
}
.contact__channels {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 242, 230, 0.18);
}
.contact__channel {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 242, 230, 0.10);
}
.contact__channel-label {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 242, 230, 0.55);
}
.contact__channel-value {
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: -0.01em;
  color: var(--cream);
  transition: color 0.3s ease;
}
.contact__channel-value:hover { color: var(--burgundy-ember); }

/* Form */
.form {
  background: rgba(247, 242, 230, 0.04);
  border: 1px solid rgba(247, 242, 230, 0.16);
  border-radius: 6px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 242, 230, 0.55);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--cream);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(247, 242, 230, 0.25);
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 0.4s var(--ease-apple);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--burgundy-ember); }
.field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.field select option { background: var(--ink); color: var(--cream); }
.form__submit {
  margin-top: 8px;
  padding: 16px 28px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.5s var(--ease-apple), transform 0.5s var(--ease-apple);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.form__submit:hover { background: var(--burgundy-ember); transform: translateY(-1px); }
.form__submit::after { content: '→'; letter-spacing: 0; }
.form__hint {
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 242, 230, 0.45);
  margin-top: 4px;
  transition: color 0.5s var(--ease-apple);
}
.form.is-sent {
  border-color: rgba(160, 200, 160, 0.32);
  background: rgba(160, 200, 160, 0.04);
  transition: border-color 0.6s var(--ease-apple), background 0.6s var(--ease-apple);
}
.form.is-sent .field input,
.form.is-sent .field select,
.form.is-sent .field textarea {
  pointer-events: none;
  color: rgba(247, 242, 230, 0.55);
}
.form.is-sent .form__submit {
  background: rgba(160, 200, 160, 0.22);
  color: var(--cream);
  cursor: default;
  transform: none !important;
}
.form.is-sent .form__hint {
  color: rgba(200, 220, 200, 0.75);
}

/* ============================================================
   PROJECT PAGE
   ============================================================ */
.project__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  padding-bottom: 32px;
  margin-bottom: clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.project__title {
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.project__title em { font-style: italic; font-weight: 300; color: var(--burgundy); }
.project__meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.project__meta-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.project__meta-label { color: var(--ink-mute); }
.project__meta-value { color: var(--ink); }
.project__blurb {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  max-width: 56ch;
  color: var(--ink-soft);
  margin-bottom: clamp(28px, 4vw, 56px);
}
/* Gallery — 2-column grid (denser than the original vertical stack).
   Items default to 1 column; --full spans both for hero/single-item layouts. */
.project__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.4vw, 22px);
  align-items: start;
}
.project__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-deep);
  cursor: pointer;
  grid-column: span 1;
}
.project__media img,
.project__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  opacity: 0;
  transition: transform 1.6s var(--ease-apple), opacity 1.2s var(--ease-apple);
}
.project__media.is-in img,
.project__media.is-in video { transform: scale(1); opacity: 1; }
.project__media:hover img,
.project__media:hover video { transform: scale(1.05); }

/* Full-width hero / single-item span */
.project__media--full       { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
/* Aspect overrides — keep the natural shape for square / vertical clips */
.project__media--square     { aspect-ratio: 1 / 1; }
.project__media--vertical   { aspect-ratio: 9 / 16; }
.project__media--vertical.project__media--full { max-width: 720px; margin: 0 auto; }

@media (max-width: 720px) {
  .project__gallery { grid-template-columns: 1fr; }
  .project__media--full { aspect-ratio: 16 / 9; }
}

.project__nav {
  margin-top: clamp(60px, 8vw, 120px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project__nav-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0;
  transition: transform 0.5s var(--ease-apple);
}
.project__nav-link:hover { transform: translateX(8px); }
.project__nav-link--prev:hover { transform: translateX(-8px); }
.project__nav-label {
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.project__nav-title {
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.025em;
  color: var(--burgundy);
}
.project__nav-link--next { text-align: right; align-items: flex-end; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(239, 233, 220, 0.14);
}
.footer__brand-img { height: 44px; width: 44px; border-radius: 8px; display: block; }
.footer__tagline {
  margin-top: 18px;
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: rgba(239, 233, 220, 0.7);
}
.footer__col-title {
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(239, 233, 220, 0.45);
  margin-bottom: 18px;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
  font-size: 14.5px;
  color: rgba(239, 233, 220, 0.85);
  transition: color 0.3s ease;
}
.footer__list a:hover { color: var(--burgundy-ember); }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(239, 233, 220, 0.45);
}
.footer__bottom a { color: rgba(239, 233, 220, 0.7); }

/* ============================================================
   VIDEO LIGHTBOX
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 5, 4, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 56px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-apple);
}
.modal.is-open { display: flex; opacity: 1; }
.modal__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 50px 140px -30px rgba(0,0,0,0.7);
  transform: scale(0.96);
  transition: transform 0.5s var(--ease-apple);
}
.modal.is-open .modal__inner { transform: scale(1); }
.modal__inner iframe,
.modal__inner video,
.modal__inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s var(--ease-apple);
}
.modal__close:hover { background: rgba(0, 0, 0, 0.8); transform: scale(1.08); }
.modal__close::before { content: '×'; font-weight: 300; font-size: 28px; line-height: 1; }
.modal__caption {
  position: absolute;
  bottom: -36px;
  left: 0;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 242, 230, 0.65);
}

/* Modal supporting vertical / square media */
.modal--vertical .modal__inner { aspect-ratio: 9 / 16; max-width: 480px; }
.modal--square   .modal__inner { aspect-ratio: 1 / 1;  max-width: 720px; }

/* ============================================================
   REVEAL (scroll-driven)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-apple), transform 1.1s var(--ease-apple);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .section__head { grid-template-columns: 1fr; gap: 32px; }
  .manifesto { grid-template-columns: 1fr; gap: 40px; }
  .manifesto__label { position: relative; top: auto; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .status { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__step { border-right: 0; border-bottom: 1px solid var(--line-mid); padding-bottom: 40px; }
  .process__step:nth-child(odd) { border-right: 1px solid var(--line-mid); }
  .contact { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .project__head { grid-template-columns: 1fr; gap: 32px; }
  .project__row { grid-template-columns: 1fr; }
  .archive .work,
  .archive .work:nth-child(n) { grid-column: span 12; }
  @media (min-width: 600px) {
    .archive .work,
    .archive .work:nth-child(n) { grid-column: span 6; }
  }
}

@media (max-width: 720px) {
  :root { --gutter: 22px; }
  .nav__menu { display: none; }
  .nav__menu.is-open {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 40px var(--gutter);
    gap: 24px;
    align-items: flex-start;
    border-top: 1px solid var(--line);
    height: calc(100vh - 64px);
  }
  .nav__menu.is-open .nav__link { font-size: 18px; letter-spacing: 0.14em; color: var(--ink) !important; }
  .nav__menu.is-open .nav__link::after { background: var(--burgundy) !important; }
  .nav__menu.is-open .nav__cta { margin-top: 12px; background: var(--burgundy) !important; color: var(--cream) !important; }
  .nav__burger { display: flex; }
  .hero { height: 92vh; min-height: 560px; }
  .hero__content { padding-top: 110px; padding-bottom: 40px; }
  .hero__masthead-group { gap: 14px; }
  .services { grid-template-columns: 1fr; }
  .work { grid-column: span 12 !important; }
  .process { grid-template-columns: 1fr; }
  .process__step { border-right: 0 !important; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .about__facts { grid-template-columns: 1fr 1fr; }
  .section__head { margin-bottom: 48px; }
  .archive .work,
  .archive .work:nth-child(n) { grid-column: span 12 !important; }
  .project__nav { grid-template-columns: 1fr; }
  .project__nav-link--next { text-align: left; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .work__thumb,
  .work__media-video,
  .about__portrait-img,
  .project__media img,
  .project__media video { opacity: 1; transform: none; }
  .hero__video { display: none; }
  .hero { background: linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-deep) 100%); }
  body { animation: none; opacity: 1; }
}

/* ============================================================
   MOBILE — skip reveal animations entirely.
   iOS Safari's IntersectionObserver is unreliable around the
   address-bar resize, so on small screens we just show content
   immediately. Animations are subtle by design; on phones nobody
   misses them, and reliability matters more.
   ============================================================ */
@media (max-width: 900px) {
  .reveal,
  .work, .work__thumb, .work__media-video, .work__media-youtube,
  .about__portrait, .about__portrait-img,
  .project__media,
  .project__media img, .project__media video, .project__media-youtube {
    opacity: 1 !important;
    transform: none !important;
  }
}
