:root {
  --bg: #0c0c0c;
  --fg: #f2f2f0;
  --muted: #8e8e89;
  --line: rgba(242, 242, 240, 0.18);
  --page: clamp(16px, 2.1vw, 36px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

body.is-lightbox-open {
  overflow: hidden;
}

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

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

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

.img-fade {
  opacity: 0;
  transition: opacity 420ms ease;
}

.img-fade.is-loaded {
  opacity: 1;
}

/* Minimal two-point navigation */
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--page);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.site-header a {
  position: relative;
}

.site-header a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-header a:hover::after,
.site-header a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header nav {
  display: contents;
}

/* Home */
.home-stage {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.home-stage .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
}

.home-outer {
  position: relative;
}

.home-outer > .site-footer {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  margin-top: 0;
  border-top: 0;
  background: transparent;
  color: rgba(255,255,255,.68);
}

.home-outer > .site-footer a:hover {
  color: #fff;
}

.seo-billing {
  position: absolute;
  z-index: 10;
  right: max(var(--page), 18vw);
  bottom: 54px;
  left: max(var(--page), 18vw);
  color: rgba(255,255,255,.56);
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(8px, .68vw, 12px);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: .155em;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
  transform: scaleY(1.22);
  transform-origin: center bottom;
}

.seo-billing p {
  margin: 0 auto;
  max-width: 820px;
}

.seo-billing span {
  display: inline;
}

.seo-billing span::after {
  content: "   /   ";
  opacity: .48;
}

.seo-billing span:last-child::after {
  content: "";
}

.home-stage::after {
  position: absolute;
  z-index: 6;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.34), transparent 42%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  -webkit-mask-image: url("../images/portraits/egor-cutout.png");
  mask-image: url("../images/portraits/egor-cutout.png");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.home-stage.has-hero-cutout.is-name-hovered::after {
  opacity: 1;
}

.hero-preview,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-preview {
  transition: filter 200ms ease;
  will-change: filter;
}

.home-stage.is-dop-hovered .hero-preview,
.home-stage.is-light-hovered .hero-preview,
.home-stage.is-youtube-hovered .hero-preview,
.home-stage.is-stills-hovered .hero-preview {
  filter: blur(8px) brightness(0.52);
}

.hero-preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: none;
  transition: opacity 360ms ease;
}

.hero-preview-image.is-visible {
  opacity: 1;
}

.hero-cutout-image {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.home-stage.has-hero-cutout.is-name-hovered .hero-cutout-image {
  opacity: 1;
}

.hero-figure-hotspot {
  position: absolute;
  z-index: 3;
  top: 21%;
  left: 35%;
  width: 24%;
  height: 76%;
  pointer-events: auto;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.34), transparent 42%);
}

.hero {
  position: relative;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(34px, 6.5vh, 78px);
  padding: clamp(76px, 11vh, 132px) var(--page) clamp(76px, 10vh, 118px);
  color: #fff;
}

.hero-copy {
  position: relative;
  z-index: 4;
  text-align: center;
  transform: translateY(clamp(-156px, -13vh, -86px));
  transition: opacity 200ms ease;
}

.home-stage.is-dop-hovered .hero-copy,
.home-stage.is-light-hovered .hero-copy,
.home-stage.is-youtube-hovered .hero-copy,
.home-stage.is-stills-hovered .hero-copy {
  opacity: 0;
  pointer-events: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 12.6vw, 210px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.hero .tagline {
  margin: clamp(24px, 4vw, 48px) 0 0;
  font-size: clamp(16px, 1.45vw, 24px);
  letter-spacing: -0.02em;
}

.discipline-nav {
  position: relative;
  z-index: 7;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 52px);
  transform: translateY(clamp(-72px, -5vh, -28px));
}

.discipline-nav a {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  padding: 0;
  font-size: clamp(20px, 2.3vw, 38px);
  letter-spacing: -0.03em;
  transition: opacity 200ms ease;
}

.discipline-nav a:nth-child(2),
.discipline-nav a:nth-child(3) {
  padding-right: 0;
  padding-left: 0;
  border-left: 0;
}

.discipline-nav a:first-child { padding-right: 0; }
.discipline-nav a:last-child { padding-left: 0; }

.home-stage.is-dop-hovered .discipline-nav a:not([href="/dop"]),
.home-stage.is-light-hovered .discipline-nav a:not([href="/light-artist"]),
.home-stage.is-youtube-hovered .discipline-nav a:not([href="/youtube-podcasts"]),
.home-stage.is-stills-hovered .discipline-nav a:not([href="/stills"]),
.home-stage.is-rental-hovered .discipline-nav a:not([href="/rental"]) {
  opacity: 0;
  pointer-events: none;
}

.home-stage.is-dop-hovered .discipline-nav a[href="/dop"],
.home-stage.is-light-hovered .discipline-nav a[href="/light-artist"],
.home-stage.is-youtube-hovered .discipline-nav a[href="/youtube-podcasts"],
.home-stage.is-stills-hovered .discipline-nav a[href="/stills"],
.home-stage.is-rental-hovered .discipline-nav a[href="/rental"] {
  color: #fff;
}

.category-preview-frame {
  position: absolute;
  z-index: 3;
  top: 72px;
  bottom: 148px;
  left: 50%;
  width: calc(100vw - (var(--page) * 6));
  max-width: 980px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 600ms ease;
}

.home-stage.is-category-previewed .category-preview-frame {
  opacity: 1;
}

.category-preview-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.home-stage.is-preview-small .category-preview-image {
  max-width: min(65%, calc((100vw - (var(--page) * 6)) * 0.65));
  max-height: min(65%, calc((100svh - 220px) * 0.65));
}

.home-stage.is-preview-exiting .category-preview-frame {
  transition: opacity 120ms ease;
}

.home-stage.is-text-delayed .hero-copy,
.home-stage.is-text-delayed .discipline-nav a {
  opacity: 0;
  pointer-events: none;
}

/* Work pages */
.page-intro {
  min-height: 36svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px var(--page) clamp(24px, 4vw, 52px);
}

.page-intro h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(62px, 13vw, 190px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.page-intro p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 18px);
}

.page-intro-long h1 {
  font-size: clamp(54px, 10.5vw, 160px);
}

.page-intro-light-artist {
  position: relative;
  z-index: 3;
  justify-content: flex-start;
  min-height: clamp(360px, 47svh, 560px);
  padding-bottom: clamp(30px, 4vw, 54px);
}

.page-intro-light-artist h1 {
  font-size: clamp(62px, 13vw, 142px);
}

.page-intro-light-artist p {
  margin-top: clamp(24px, 4vw, 48px);
  max-width: clamp(260px, 34vw, 440px);
}

.page-intro-dop {
  position: relative;
  z-index: 3;
  min-height: 0;
  padding-bottom: clamp(20px, 3vw, 36px);
}

.section-switcher {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px var(--page) 18px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-switcher a:hover,
.section-switcher a.active {
  color: var(--fg);
}

.section-note {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) 1fr;
  gap: clamp(22px, 5vw, 90px);
  align-items: end;
  padding: clamp(14px, 2vw, 34px) var(--page) clamp(34px, 6vw, 96px);
}

.section-note-copy {
  max-width: 320px;
  padding-bottom: 10px;
}

.section-note-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-note-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.2vw, 17px);
}

.section-note-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(6px, 1vw, 14px);
  align-items: end;
}

.section-note-image {
  margin: 0;
  overflow: hidden;
  background: #171715;
}

.section-note-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-note-images-1 .section-note-image {
  grid-column: 4 / 11;
  aspect-ratio: 1 / 1;
}

.section-note-images-3 .section-note-image-1 {
  grid-column: 1 / 8;
  aspect-ratio: 16 / 9;
}

.section-note-images-3 .section-note-image-2 {
  grid-column: 8 / 13;
  aspect-ratio: 1 / 1.15;
}

.section-note-images-3 .section-note-image-3 {
  grid-column: 3 / 10;
  aspect-ratio: 16 / 9;
  margin-top: clamp(6px, 1vw, 14px);
}

.section-note-compact-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 28vw) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 74px);
  align-items: start;
  padding: 0 var(--page) clamp(82px, 8vw, 132px);
  margin-top: clamp(-150px, -12vw, -120px);
  pointer-events: none;
}

.section-note-compact-line .section-note-copy {
  display: none;
}

.section-note-compact-line .section-note-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column: 2;
  align-items: start;
  gap: clamp(10px, 1vw, 22px);
  width: min(100%, 1120px);
  pointer-events: auto;
}

.section-note-compact-line .section-note-image {
  aspect-ratio: auto;
  background: none;
}

.section-note-compact-line .section-note-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-note-compact-line .section-note-image-1 {
  grid-column: 1 / 7;
  width: calc(100% - 23px);
  transform: translateY(calc(clamp(60px, 4vw, 110px) - 175px)) translateX(20px);
}

.section-note-compact-line .section-note-image-2 {
  grid-column: 7 / 13;
  transform: translateY(clamp(-265px, calc(-15vw - 90px), -240px));
}

.section-note-compact-line .section-note-image-3 {
  grid-column: 9 / 13;
  transform: translateY(clamp(6px, .8vw, 24px));
}

.section-note-compact-line .section-note-image-4 {
  grid-column: 10 / 13;
  transform: translateY(clamp(-6px, -.5vw, -2px));
}

.section-note-dop .section-note-images {
  grid-column: 1 / 3;
  display: flex;
  justify-content: center;
  width: 100%;
}

.section-note-dop .section-note-image-1 {
  width: 300px;
  flex-shrink: 0;
  transform: translateY(calc(clamp(10px, 1.5vw, 24px) - 105px));
}
.section-note-dop .section-note-image-1 img {
  clip-path: inset(0 0 50px 0);
}

.section-note-dop {
  padding-bottom: clamp(20px, 3vw, 40px);
}

.section-note-dop + .work-library-layout {
  margin-top: -40px;
}

.section-note-compact-line + .work-library-layout {
  padding-top: clamp(18px, 2.4vw, 42px);
  margin-top: -60px;
}

.work-stream {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 var(--page);
}

.grid-item {
  position: relative;
  width: 100%;
  min-height: min(74vw, 88svh);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #171715;
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), opacity 300ms ease;
}

.demo-visual {
  width: 100%;
  height: 100%;
  background-color: #191919;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.demo-visual-1 {
  background:
    radial-gradient(circle at 71% 42%, rgba(255, 190, 120, .9) 0 2%, transparent 13%),
    linear-gradient(115deg, #07141b 0 42%, #743721 68%, #17100e 100%);
}
.demo-visual-2 {
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.13) 49% 51%, transparent 52%),
    radial-gradient(ellipse at 50% 30%, #33495d 0, #10161b 42%, #050607 78%);
}
.demo-visual-3 {
  background:
    radial-gradient(circle at 28% 56%, rgba(255,225,187,.72) 0 4%, transparent 18%),
    linear-gradient(145deg, #241916, #6e2225 44%, #110c10 78%);
}
.demo-visual-4 {
  background:
    linear-gradient(125deg, transparent 0 32%, rgba(187,217,225,.28) 33% 42%, transparent 43%),
    linear-gradient(165deg, #142024, #080b0d 61%, #242321);
}
.demo-visual-5 {
  background:
    radial-gradient(ellipse at 68% 72%, rgba(208,91,39,.78), transparent 28%),
    linear-gradient(120deg, #030507 15%, #132b35 56%, #150c08);
}
.demo-visual-6 {
  background:
    radial-gradient(circle at 48% 47%, rgba(245,224,186,.55) 0 7%, transparent 24%),
    linear-gradient(90deg, #15100f, #4b3430 48%, #080707);
}

.grid-item:hover .demo-visual {
  transform: scale(1.018);
}

.grid-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.grid-item:hover img {
  transform: scale(1.018);
}

.grid-item:hover::after,
.grid-item:hover .project-meta {
  opacity: 1;
}

.project-meta {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 2vw, 30px);
  bottom: clamp(14px, 2vw, 28px);
  left: clamp(16px, 2vw, 30px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 300ms ease;
}

.project-title {
  font-size: clamp(18px, 2.2vw, 34px);
  letter-spacing: -0.035em;
}

.project-action {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.placeholder-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: -0.02em;
}

.work-library-layout {
  display: grid;
  grid-template-columns: minmax(180px, 20vw) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 74px);
  align-items: start;
  padding: clamp(10px, 2vw, 28px) var(--page) 0;
}

.work-library {
  position: sticky;
  top: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: calc(100svh - 44px);
  padding-top: 2px;
}

.work-library-link {
  display: block;
  max-width: 100%;
  overflow: hidden;
  padding: 2px 0;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: -.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 160ms ease;
}

.work-library-link:hover {
  color: var(--fg);
}

.work-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.work-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: 100%;
}

.work-card-frame {
  position: relative;
  display: block;
  width: min(58vw, 760px);
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #171715;
}

.work-card:nth-child(3n + 2) .work-card-frame {
  width: min(58vw, 760px);
  margin-right: auto;
  margin-left: auto;
}

.work-card:nth-child(3n) .work-card-frame {
  width: min(58vw, 760px);
}

.work-card-frame img,
.work-card-frame .demo-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-frame::after {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.08);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.work-card-frame:hover::after {
  opacity: 1;
}

.work-card-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  width: min(58vw, 760px);
  margin-right: auto;
  margin-left: auto;
}

.work-card:nth-child(3n + 2) .work-card-meta {
  width: min(58vw, 760px);
  margin-right: auto;
  margin-left: auto;
}

.work-card:nth-child(3n) .work-card-meta {
  width: min(58vw, 760px);
}

.work-card-meta span,
.work-card-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.work-card-meta h2 {
  margin: 6px 0 0;
  font-size: clamp(24px, 2.9vw, 48px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.05em;
}

.work-card-meta > div:last-child {
  min-width: 138px;
  text-align: right;
}

.work-card-meta a {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 12px 7px;
  border: 1px solid rgba(242,242,240,.34);
  border-radius: 999px;
  font-size: 12px;
}

.work-card-meta a:hover {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}

.stills-gallery {
  max-width: 1540px;
  margin: 0 auto;
  column-count: 3;
  column-gap: clamp(10px, 1vw, 20px);
  padding: clamp(6px, 1vw, 18px) clamp(12px, 2.4vw, 46px) clamp(48px, 7vw, 108px);
}

@media (min-width: 1400px) {
  .stills-gallery {
    column-count: 4;
  }
}

@media (max-width: 1000px) {
  .stills-gallery {
    column-count: 2;
  }
}

.stills-gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 clamp(10px, 1vw, 20px);
  background: #171715;
  break-inside: avoid;
}

.stills-gallery-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
}

.stills-gallery-button img {
  transition:
    opacity 180ms ease,
    filter 180ms ease;
}

.stills-gallery-button:hover img {
  filter: brightness(.88);
}

.stills-gallery-button:focus-visible {
  outline: 1px solid rgba(242,242,240,.8);
  outline-offset: 4px;
}

.stills-gallery-item img,
.stills-gallery-item .demo-visual {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.stills-gallery-item .demo-visual {
  aspect-ratio: 4 / 3;
}

.photo-lightbox {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(70px, 1fr) minmax(0, auto) minmax(70px, 1fr);
  align-items: center;
  justify-items: center;
  padding: clamp(22px, 4vw, 70px);
  background: rgba(0, 0, 0, .94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.photo-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-lightbox-figure {
  grid-column: 2;
  display: grid;
  gap: 12px;
  justify-items: center;
  margin: 0;
}

.photo-lightbox-image {
  max-width: min(86vw, 1500px);
  max-height: 82svh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 100px rgba(0,0,0,.44);
}

.photo-lightbox-caption {
  min-height: 1em;
  color: rgba(242,242,240,.54);
  font-size: 11px;
  letter-spacing: .08em;
}

.photo-lightbox-close,
.photo-lightbox-nav {
  border: 0;
  background: transparent;
  color: rgba(242,242,240,.7);
  cursor: pointer;
  font: inherit;
  letter-spacing: .02em;
  transition: color 160ms ease;
}

.photo-lightbox-close:hover,
.photo-lightbox-nav:hover {
  color: var(--fg);
}

.photo-lightbox-close {
  position: absolute;
  top: 24px;
  right: var(--page);
  padding: 8px 0;
  font-size: 22px;
  line-height: 1;
}

.photo-lightbox-nav {
  position: relative;
  z-index: 2;
  padding: 18px;
  font-size: 36px;
  line-height: 1;
}

.photo-lightbox-prev {
  grid-column: 1;
}

.photo-lightbox-next {
  grid-column: 3;
}

/* Individual project template */
.project-page {
  padding: 0 0 clamp(40px, 7vw, 110px);
}

.project-hero .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  color: #fff;
}

.project-hero {
  position: relative;
  min-height: clamp(420px, 54svh, 640px);
  margin-top: 0;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.project-hero-media {
  position: absolute;
  inset: 0;
}

.project-hero-media img,
.project-hero-media .demo-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.08) 44%, rgba(0,0,0,.64) 100%),
    linear-gradient(90deg, rgba(0,0,0,.38), transparent 50%, rgba(0,0,0,.28));
  content: "";
}

.project-hero-copy {
  position: absolute;
  z-index: 2;
  right: var(--page);
  bottom: clamp(22px, 4vw, 58px);
  left: var(--page);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.project-hero-credits {
  flex-shrink: 0;
  text-align: right;
  color: rgba(255,255,255,.7);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .04em;
  padding-bottom: 6px;
  line-height: 1.5;
}

.project-hero-credits p {
  margin: 0;
  line-height: inherit;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.project-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6.1vw, 108px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.06em;
}

.project-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: clamp(16px, 2vw, 28px) 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(14px, 1.15vw, 18px);
}

.project-body {
  display: grid;
  grid-template-columns: clamp(80px, 10vw, 140px) minmax(0, 1fr) clamp(80px, 10vw, 140px);
  gap: clamp(12px, 2vw, 32px);
  align-items: start;
  padding: 50px var(--page) 0;
}

.project-side-nav {
  position: sticky;
  top: 22px;
}

.back-link {
  display: inline-flex;
  color: var(--muted);
  font-size: 12px;
}

.back-link:hover {
  color: var(--fg);
}

.project-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.project-films {
  width: min(66vw, 980px);
}

.project-films-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 56px);
}

.project-film-block {
  width: 100%;
  margin: 0;
}

.project-film {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: #111;
  color: var(--fg);
  cursor: pointer;
}

.project-film img,
.project-film .demo-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.project-film iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
  touch-action: auto;
}

.project-film::after {
  display: none;
}

.project-film-title {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 18px);
  letter-spacing: -.02em;
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translate(-50%, -50%);
  font-size: clamp(16px, 2vw, 28px);
  letter-spacing: -.03em;
}

.play-button b {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 400;
}

.project-information {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: clamp(24px, 4vw, 64px);
  width: min(66vw, 980px);
  padding: 14px 0 clamp(42px, 6vw, 90px);
}

.project-description {
  width: min(66vw, 720px);
  padding: clamp(24px, 4vw, 48px) 0 clamp(32px, 5vw, 64px);
}
.project-description p {
  max-width: 620px;
  margin: 0 0 .9em;
  color: var(--fg);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
}
.project-description p:last-child { margin-bottom: 0; }

.project-credits dl { margin: 0; }

.project-credits dl div {
  display: grid;
  grid-template-columns: 95px 1fr;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.project-credits dt { color: var(--muted); }
.project-credits dd { margin: 0; }

.project-byline {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 100%;
}

.project-still {
  width: 100%;
  height: auto;
  margin: 0;
}

.project-still-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  outline: none;
}

.project-still img,
.project-still .demo-visual {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.project-backstage {
  width: 100%;
  margin-top: clamp(40px, 5vw, 80px);
}

.project-note {
  padding: clamp(32px, 5vw, 64px) 0 clamp(16px, 2vw, 32px);
  border-top: 1px solid var(--line);
}

.project-note-heading {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.project-note-text {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  color: var(--fg);
  max-width: 560px;
  margin: 0 0 clamp(16px, 2vw, 24px);
}

.project-note-link {
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 160ms ease;
}

.project-note-link:hover {
  color: var(--fg);
}

.project-crew {
  padding: clamp(24px, 3vw, 40px) 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-crew-row {
  display: flex;
  gap: 24px;
  font-size: clamp(12px, 1.2vw, 14px);
}

.project-crew-role {
  color: var(--muted);
  min-width: 200px;
  flex-shrink: 0;
}

.project-crew-name {
  color: var(--fg);
}

.project-backstage-title {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: clamp(16px, 2vw, 28px);
}

.project-backstage-strip {
  display: flex;
  gap: clamp(8px, 1vw, 14px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.project-backstage-strip::-webkit-scrollbar {
  display: none;
}

.project-backstage-item {
  flex: 1 1 0;
  scroll-snap-align: start;
  margin: 0;
  height: clamp(160px, 22vw, 300px);
  min-width: clamp(120px, 14vw, 200px);
  overflow: hidden;
}

.project-backstage-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  outline: none;
}

.project-backstage-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.next-project {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  padding: clamp(48px, 8vw, 118px) 0 20px;
  border-bottom: 1px solid var(--line);
}

.next-project span {
  color: var(--muted);
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: .01em;
  flex-shrink: 0;
}

.next-project a {
  color: var(--fg);
  font-size: clamp(18px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: -.03em;
}

/* Rental House */
.rental-page {
  min-height: 100svh;
}

.page-intro-rental {
  min-height: 0;
  padding-bottom: clamp(28px, 4vw, 52px);
}

.page-intro-rental h1 {
  font-size: clamp(52px, 9.8vw, 144px);
  white-space: nowrap;
}

.rental-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding: 0 var(--page) clamp(40px, 5vw, 64px);
}

.rental-founders {
  margin: 0;
  width: min(560px, 100%);
  overflow: hidden;
}

.rental-founders img {
  width: 100%;
  height: auto;
  display: block;
}

.rental-text {
  max-width: 560px;
  text-align: center;
}

.rental-text p {
  margin: 0 0 1em;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.55;
}

.rental-text p:last-child {
  margin-bottom: 0;
}

.rental-text a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rental-text a:hover {
  color: #EBFA01;
}

.rental-video-wrap {
  display: flex;
  justify-content: center;
}

.rental-video {
  position: relative;
  width: min(260px, 62vw);
  padding-bottom: 177.78%;
  background: #111;
}

.rental-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.rental-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(560px, 100%);
  padding: 20px 28px;
  background: #EBFA01;
  color: #1A1A1A;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 180ms ease, color 180ms ease;
}

.rental-cta:hover {
  background: #f5ff4d;
}

.rental-cta span:first-child {
  white-space: nowrap;
}

.rental-cta span:last-child {
  font-size: clamp(11px, .85vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* About */
.about-page {
  position: relative;
  min-height: 100svh;
}

.about-intro {
  position: relative;
  z-index: 2;
  min-height: 11svh;
  padding-top: 16px;
  padding-bottom: clamp(2px, .6vw, 10px);
}

.about-intro h1 {
  font-size: clamp(42px, 6.6vw, 96px);
  line-height: .84;
}

.about-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(380px, 1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  margin-top: clamp(-34px, -3vw, -4px);
  padding: 0 var(--page) 48px;
}

.about-content:has(.about-portrait-red:hover) {
  z-index: 6;
}

.about-portraits {
  position: relative;
  min-height: min(36vw, 420px);
  margin-top: 35px;
}

.about-portrait {
  margin: 0;
  overflow: hidden;
  background: #171715;
  transition:
    transform 320ms cubic-bezier(.22, .61, .36, 1),
    filter 320ms ease,
    box-shadow 320ms ease;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-portrait-red {
  position: relative;
  z-index: 1;
  width: 52%;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  cursor: pointer;
  will-change: transform;
}

.about-portrait-red:hover {
  z-index: 7;
  transform: translateY(-3%) scale(1.022);
  filter: saturate(1.04) contrast(1.04);
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}

.about-portraits:has(.about-portrait-red:hover) .about-portrait-mirror {
  transform: translateY(-12px) scale(.965);
  filter: brightness(.82) contrast(.95);
}

.about-portrait-mirror {
  position: absolute;
  z-index: 3;
  top: 30%;
  left: 0;
  width: 70%;
  aspect-ratio: 1.48 / 1;
  border: clamp(7px, 1vw, 14px) solid var(--bg);
  transform: translateY(-12px);
}

.about-copy p {
  margin: 0 0 .6em;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.18;
  letter-spacing: -.025em;
}

.about-copy p a {
  position: relative;
  white-space: nowrap;
}

.about-copy p a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 220ms ease;
}

.about-copy p a:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.about-copy .contact-intro {
  margin: 64px 0 0;
  color: var(--fg);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.3;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--fg);
  font: inherit;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.25;
  resize: vertical;
}

.contact-form input {
  height: 36px;
}

.contact-form textarea {
  min-height: 74px;
  padding: 4px 0 8px;
}

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

.contact-form button {
  align-self: flex-start;
  margin-top: 4px;
  padding: 10px 16px 11px;
  border: 1px solid rgba(242,242,240,.42);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  font: inherit;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: .01em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.contact-form button:hover {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}

.contact-form button.is-sent {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
  cursor: default;
}

.contact-form-success {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.4;
}

.about-contacts {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: clamp(64px, 10vw, 120px);
  font-size: clamp(14px, 1.2vw, 18px);
  text-align: center;
}

.about-page .site-footer {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  margin-top: 0;
  padding: 22px var(--page) 30px;
  border-top: 0;
  background: transparent;
  color: rgba(255,255,255,.68);
}

.about-page .site-footer a:hover {
  color: #fff;
}

.about-contacts span {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-contacts a {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  margin-top: clamp(80px, 13vw, 190px);
  padding: 22px var(--page) 30px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

.footer-location {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
}

.footer-links {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
}

.site-footer a:hover { color: var(--fg); }

/* Video modal */
.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--page);
  background: rgba(0, 0, 0, .96);
}

.modal.open { display: flex; }
.modal-content { width: min(100%, 1500px); }

.modal-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: var(--page);
  border: 0;
  background: none;
  color: var(--fg);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 700px) {
  :root {
    --page: 16px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 58px;
    padding: 18px var(--page);
    font-size: 16px;
  }

  .site-header a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
  }

  .home-stage {
    height: 100svh;
    min-height: 0;
  }

  .home-outer > .site-footer {
    position: absolute;
    padding: 14px var(--page) max(14px, env(safe-area-inset-bottom));
    border-top: 0;
    background: transparent;
    color: rgba(255,255,255,.6);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 11px;
  }

  .home-outer > .site-footer .footer-location {
    display: none;
  }

  .hero-cutout-image,
  .home-stage::after {
    display: none;
  }

  .seo-billing {
    display: none;
  }

  .hero-preview-image {
    object-position: 51% center;
  }

  .hero-figure-hotspot {
    display: none;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0,0,0,.38), transparent 44%);
  }

  .hero {
    height: 100%;
    min-height: 0;
    justify-content: center;
    gap: clamp(28px, 6vh, 52px);
    padding: clamp(58px, 10vh, 100px) var(--page) max(18px, env(safe-area-inset-bottom));
  }

  .hero-copy {
    text-align: center;
    transform: translateY(clamp(-88px, -10vh, -52px));
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 15vw, 68px);
    line-height: .88;
    letter-spacing: -.06em;
  }

  .hero .tagline {
    max-width: 260px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.25;
  }

  .discipline-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    transform: translateY(clamp(-56px, -5vh, -28px));
  }

  .discipline-nav a,
  .discipline-nav a:first-child,
  .discipline-nav a:last-child,
  .discipline-nav a:nth-child(2),
  .discipline-nav a:nth-child(3) {
    min-height: 40px;
    padding: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    font-size: clamp(31px, 9vw, 40px);
  }

  .category-preview-frame {
    display: none;
  }

  .page-intro {
    min-height: 0;
    padding: 24px var(--page) 28px;
  }

  .page-intro h1,
  .page-intro-long h1 {
    font-size: clamp(49px, 15vw, 72px);
    line-height: .88;
    overflow-wrap: anywhere;
  }

  .page-intro p {
    max-width: 300px;
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.35;
  }

  .about-intro {
    min-height: 0;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .about-intro h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .section-switcher {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 22px;
    padding: 12px var(--page);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(12,12,12,.94);
    backdrop-filter: blur(12px);
  }

  .section-switcher a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
  }

  .section-note {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px var(--page) 54px;
  }

  .section-note-copy {
    max-width: 290px;
    padding-bottom: 0;
  }

  .section-note-copy p {
    font-size: 13px;
    line-height: 1.35;
  }

  .section-note-images {
    display: flex;
    gap: 3px;
    overflow-x: auto;
    width: calc(100% + (var(--page) * 2));
    margin-left: calc(var(--page) * -1);
    padding: 0 var(--page);
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .section-note-images::-webkit-scrollbar {
    display: none;
  }

  .section-note-image,
  .section-note-images-1 .section-note-image,
  .section-note-images-3 .section-note-image-1,
  .section-note-images-3 .section-note-image-2,
  .section-note-images-3 .section-note-image-3 {
    flex: 0 0 82vw;
    aspect-ratio: 4 / 3;
    margin-top: 0;
    scroll-snap-align: center;
  }

  .section-note-images-3 .section-note-image-2 {
    aspect-ratio: 3 / 4;
  }

  .section-note-compact-line {
    display: block;
    height: auto;
    margin-top: -10px;
    padding: 0 0 32px;
    pointer-events: auto;
  }

  .section-note-compact-line .section-note-image-2 {
    display: none;
  }

  .section-note-compact-line .section-note-images {
    display: flex;
    justify-content: center;
    gap: 4px;
    width: 100%;
    margin-left: 0;
    padding: 0 var(--page);
  }

  .section-note-compact-line .section-note-image,
  .section-note-compact-line .section-note-image-1,
  .section-note-compact-line .section-note-image-2,
  .section-note-compact-line .section-note-image-3,
  .section-note-compact-line .section-note-image-4 {
    flex: 0 0 auto;
    width: min(72vw, 400px);
    aspect-ratio: auto;
    transform: none;
  }

  .section-note-compact-line .section-note-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .section-note-compact-line + .work-library-layout {
    margin-top: 0;
    padding-top: 24px;
  }

  .page-intro-light-artist h1 br {
    display: none;
  }

  .work-stream { padding: 0; }

  .work-library-layout {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 16px var(--page) 0;
  }

  .work-library {
    display: none;
  }

  .work-library-link {
    padding: 3px 0;
    font-size: 14px;
  }

  .work-cards {
    gap: 54px;
  }

  .work-card,
  .work-card:nth-child(3n + 2),
  .work-card:nth-child(3n) {
    width: 100%;
  }

  .work-card-frame,
  .work-card:nth-child(3n + 2) .work-card-frame,
  .work-card:nth-child(3n) .work-card-frame {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 16 / 9;
  }

  .work-card-meta,
  .work-card:nth-child(3n + 2) .work-card-meta,
  .work-card:nth-child(3n) .work-card-meta {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    gap: 10px;
  }

  .work-card-meta h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .work-card-meta > div:last-child {
    min-width: 0;
    text-align: left;
  }

  .grid-item {
    min-height: 70vw;
    aspect-ratio: 4 / 3;
  }

  .grid-item::after { opacity: 1; }
  .project-meta {
    right: 14px;
    bottom: 13px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    opacity: 1;
  }

  .project-title {
    font-size: clamp(22px, 6.5vw, 30px);
    line-height: 1;
  }

  .project-action {
    max-width: 90%;
    font-size: 9px;
    line-height: 1.35;
  }

  .grid-item:hover img,
  .grid-item:hover .demo-visual {
    transform: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    padding-bottom: 24px;
  }

  .about-portraits,
  .about-copy {
    display: contents;
  }

  .about-portrait-red {
    display: none;
  }

  .about-portrait-mirror {
    order: 1;
    position: relative;
    z-index: auto;
    top: auto;
    left: auto;
    width: 100%;
    margin: 0;
    aspect-ratio: auto;
    height: auto;
    border: 0;
    overflow: visible;
    transform: none;
  }

  .about-portrait-mirror img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }

  .about-bio {
    order: 2;
    padding: 12px 0 0;
  }

  .about-copy p {
    font-size: clamp(18px, 5vw, 23px);
    line-height: 1.2;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .about-contacts {
    order: 3;
    width: 100%;
    margin-top: 0;
    font-size: clamp(18px, 5vw, 23px);
  }

  .about-contacts > span:first-child {
    display: none;
  }

  .about-contacts a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-intro {
    order: 4;
  }

  .about-copy .contact-intro {
    margin-top: 40px;
    font-size: clamp(18px, 5vw, 23px);
    line-height: 1.2;
  }

  .contact-form {
    order: 5;
  }

  .project-page {
    padding: 0 0 46px;
  }

  .project-hero {
    min-height: 40svh;
    margin-top: 0;
  }

  .project-hero-copy {
    right: var(--page);
    bottom: 24px;
    left: var(--page);
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .project-hero-copy h1 {
    font-size: clamp(28px, 9vw, 46px);
    line-height: .92;
    overflow-wrap: anywhere;
    letter-spacing: -.04em;
  }

  .project-hero-credits {
    text-align: left;
    flex-shrink: 1;
    padding-bottom: 0;
  }

  .project-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 30px var(--page) 0;
  }

  .project-side-nav {
    position: static;
  }

  .back-link {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
  }

  .project-films,
  .project-films-stack {
    display: block;
    width: 100%;
  }

  .project-film-block {
    margin-bottom: 28px;
  }

  .project-film {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 16 / 9;
  }

  .play-button {
    gap: 10px;
    font-size: 15px;
    white-space: nowrap;
  }

  .play-button b {
    width: 40px;
    height: 40px;
  }

  .project-information {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 24px;
    padding: 28px 0 46px;
  }

  .project-credits dl div {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 10px 0;
  }

  .project-byline {
    text-align: left;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-still,
  .project-still-portrait {
    width: 100%;
  }

  .project-still .demo-visual,
  .project-still-portrait .demo-visual {
    aspect-ratio: 4 / 3;
  }

  .next-project {
    width: 100%;
    padding-top: 70px;
  }

  .next-project a {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 42px);
    overflow-wrap: anywhere;
  }

  .page-intro-rental h1 {
    font-size: clamp(36px, 11vw, 56px);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .rental-content {
    gap: 40px;
  }

  .rental-founders {
    width: 100%;
  }

  .rental-text {
    text-align: left;
  }

  .rental-video {
    width: min(240px, 58vw);
  }

  .rental-cta {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .rental-cta span:first-child {
    white-space: normal;
  }

  .stills-gallery {
    max-width: none;
    column-count: 1;
    padding: 0 0 60px;
  }

  .stills-gallery-item {
    width: 100%;
    margin: 0 0 4px;
  }

  .photo-lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    gap: 14px;
    padding: 54px 14px 22px;
  }

  .photo-lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .photo-lightbox-image {
    max-width: 100%;
    max-height: 76svh;
  }

  .photo-lightbox-prev,
  .photo-lightbox-next {
    grid-row: 2;
    justify-self: center;
    padding: 12px 18px;
  }

  .photo-lightbox-prev {
    grid-column: 1;
  }

  .photo-lightbox-next {
    grid-column: 2;
  }

  .photo-lightbox-close {
    top: 14px;
    right: 16px;
  }

  .site-footer {
    margin-top: 74px;
    padding-top: 20px;
    padding-bottom: max(26px, env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .site-footer > div {
    width: 100%;
    text-align: center;
  }

  .about-page .site-footer {
    position: static;
    margin-top: 40px;
  }

  .footer-links {
    order: -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    overflow-wrap: anywhere;
    font-size: 15px;
    color: var(--fg);
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 47px;
  }

  .discipline-nav a,
  .discipline-nav a:first-child,
  .discipline-nav a:last-child,
  .discipline-nav a:nth-child(2),
  .discipline-nav a:nth-child(3) {
    font-size: 29px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .site-header a::after {
    display: none;
  }
}

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