
:root {
  --paper: #f6f5f1;
  --paper-flat: #f8f7f4;
  --ink: #121212;
  --muted: #77756f;
  --faint: #aaa7a0;
  --rule: rgba(18, 18, 18, 0.16);
  --page-x: clamp(24px, 4.1vw, 72px);
  --header-h: 104px;
  --max: 1520px;
  --copy: 760px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-flat);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }
::selection { background: #1a1a1a; color: #fff; }

.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 100;
  transform: translateY(-160%); padding: 10px 14px;
  background: #111; color: #fff; font-size: 12px; letter-spacing: .12em;
}
.skip-link:focus { transform: translateY(0); }

.ambient-surface {
  min-height: 100vh;
  background-color: var(--paper);
  background-image:
    linear-gradient(118deg, rgba(255,255,255,.32), rgba(255,255,255,0) 44%),
    url("../images/site-background.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.ambient-surface::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    linear-gradient(110deg, transparent 0 21%, rgba(83,75,64,.035) 22%, transparent 33%),
    linear-gradient(104deg, transparent 0 53%, rgba(94,85,73,.026) 56%, transparent 72%);
  mix-blend-mode: multiply;
}
.ambient-surface > * { position: relative; z-index: 1; }

.site-header {
  height: var(--header-h);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-x);
}
.site-brand,
.site-nav a,
.menu-toggle,
.home-nav a,
.kicker,
.back-link,
.media-caption,
.credit-label {
  text-transform: uppercase;
  letter-spacing: .24em;
}
.site-brand {
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: clamp(25px, 3vw, 50px); }
.site-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 11px;
  color: #706e69;
  transition: color .22s ease;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: .24em; bottom: 4px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle {
  display: none; border: 0; padding: 12px 0; background: transparent;
  font-size: 10px; cursor: pointer;
}

/* Home */
.home-page { min-height: 100svh; position: relative; overflow: hidden; }
.home-main {
  min-height: calc(100svh - 42px);
  padding: clamp(120px, 22vh, 240px) var(--page-x) 48px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.home-title {
  margin: 0;
  font-size: clamp(28px, 3.25vw, 54px);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: .34em;
  text-transform: uppercase;
  white-space: nowrap;
}
.home-nav {
  margin-top: clamp(58px, 9vh, 108px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 23px;
}
.home-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 400;
  padding: 2px 0;
}
.home-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: calc(100% - .24em); height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.home-nav a:hover::after { transform: scaleX(1); }
.home-footer {
  position: absolute; left: var(--page-x); right: var(--page-x); bottom: 26px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: #7a7873;
}

/* Ambient content pages */
.ambient-main {
  min-height: calc(100svh - var(--header-h));
  padding: clamp(98px, 15vh, 180px) var(--page-x) 80px;
}
.ambient-block { max-width: 690px; }
.section-title {
  margin: 0 0 clamp(48px, 7vh, 76px);
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
}

/* Works index */
.works-index { width: min(660px, 100%); margin: 0; padding: 0; list-style: none; }
.works-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px 24px;
  align-items: baseline;
  gap: 18px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.45;
}
.works-row .work-name { transition: transform .2s ease; }
.works-row .work-year { color: #5f5d58; text-align: right; font-size: 12px; }
.works-row .work-arrow { opacity: .55; transform: translateX(-3px); transition: transform .2s ease, opacity .2s ease; }
.works-row:hover .work-name { transform: translateX(5px); }
.works-row:hover .work-arrow { transform: translateX(2px); opacity: 1; }

/* Text pages */
.about-copy {
  max-width: 650px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  letter-spacing: .015em;
}
.about-copy p { margin: 0 0 1.55em; }
.cv-grid { width: min(760px, 100%); display: grid; gap: 48px; }
.cv-section h2 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .24em;
}
.cv-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.cv-list li { font-size: 15px; line-height: 1.45; }
.cv-list .date { display: inline-block; min-width: 58px; color: #676560; }
.contact-page .ambient-main { display: flex; align-items: center; padding-top: 30px; }
.contact-card { padding-bottom: 8vh; }
.contact-email {
  display: inline-block;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.3;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(18,18,18,.38);
  padding-bottom: 5px;
}
.contact-note { margin-top: 24px; color: #77746f; font-size: 13px; line-height: 1.6; }

/* Project pages */
.project-surface { background: #faf9f6; }
.project-shell { max-width: var(--max); margin: 0 auto; padding: 58px var(--page-x) 96px; }
.project-intro { margin: 30px 0 42px; }
.project-title {
  max-width: 1280px;
  margin: 0 0 30px;
  font-size: clamp(31px, 3.25vw, 52px);
  font-weight: 300;
  line-height: 1.17;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.project-meta { font-size: 14px; line-height: 1.58; }
.media-frame { width: min(1120px, 100%); margin: 0 0 16px; background: #0a0a0a; overflow: hidden; }
.media-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.media-frame.video-16x9 { aspect-ratio: 16 / 9; }
.media-frame.video-silence { aspect-ratio: 494 / 360; max-width: 980px; }
.hero-image { width: min(1280px, 100%); margin: 0; }
.hero-image img { width: 100%; max-height: 780px; object-fit: cover; }
.media-caption { margin: 12px 0 0; font-size: 9px; color: #7b7974; }
.project-copy {
  width: min(1130px, 100%);
  display: grid;
  grid-template-columns: minmax(0, var(--copy)) minmax(220px, 1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
  margin: 38px 0 56px;
}
.project-description { margin: 0; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.56; }
.project-credits { font-size: 12px; line-height: 1.6; color: #706e69; }
.credit-label { display: block; margin-bottom: 9px; font-size: 9px; color: #212121; }
.project-gallery { width: min(1280px, 100%); display: grid; gap: 16px; margin: 0 0 66px; }
.project-gallery.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.project-gallery.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-gallery.five { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.project-gallery.five figure:nth-child(1),
.project-gallery.five figure:nth-child(2) { grid-column: span 3; }
.project-gallery.five figure:nth-child(n+3) { grid-column: span 2; }
.project-gallery figure { margin: 0; min-width: 0; }
.project-gallery img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; background: #111; }
.project-gallery .contain img { object-fit: contain; background: #f0efeb; }
.back-link {
  display: inline-flex; align-items: center; gap: 15px;
  font-size: 10px; font-weight: 400;
}
.back-link .arrow { font-size: 18px; letter-spacing: 0; transition: transform .2s ease; }
.back-link:hover .arrow { transform: translateX(-4px); }

/* Small footer used only where needed */
.minimal-footer {
  padding: 26px var(--page-x) 34px;
  font-size: 9px; text-transform: uppercase; letter-spacing: .16em; color: #898680;
}

@keyframes reveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
main { animation: reveal .48s ease both; }

@media (max-width: 860px) {
  :root { --header-h: 80px; }
  .ambient-surface { background-attachment: scroll; }
  .site-header { padding-left: 22px; padding-right: 22px; }
  .site-brand { font-size: 10px; }
  .menu-toggle { display: block; z-index: 32; }
  .site-nav {
    position: fixed; inset: 0; z-index: 30;
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 28px; padding: 90px 28px;
    background: rgba(247,246,242,.98);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .site-nav a { font-size: 17px; color: var(--ink); }
  body.menu-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .home-main { padding-left: 26px; padding-right: 26px; padding-top: 24vh; }
  .home-title { font-size: clamp(25px, 7.4vw, 38px); letter-spacing: .23em; white-space: normal; }
  .home-nav { margin-top: 70px; gap: 21px; }
  .home-footer { left: 26px; right: 26px; bottom: 22px; }
  .ambient-main { padding: 92px 26px 70px; }
  .section-title { letter-spacing: .22em; }
  .works-row { grid-template-columns: minmax(0,1fr) 46px 18px; gap: 10px; font-size: 13px; }
  .project-shell { padding: 30px 22px 70px; }
  .project-intro { margin-top: 34px; }
  .project-title { font-size: clamp(28px, 8vw, 42px); letter-spacing: .15em; overflow-wrap: anywhere; }
  .project-copy { grid-template-columns: 1fr; gap: 28px; }
  .project-gallery.three,
  .project-gallery.two,
  .project-gallery.five { grid-template-columns: 1fr; }
  .project-gallery.five figure:nth-child(n) { grid-column: auto; }
  .project-gallery img { min-height: 0; height: auto; }
}

@media (max-width: 480px) {
  .home-footer { font-size: 8px; }
  .home-footer span:last-child { text-align: right; }
  .ambient-main { padding-top: 75px; }
  .section-title { font-size: 31px; }
  .project-title { font-size: 29px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* --------------------------------------------------------------------------
   Approved mockup alignment — July 2026 revision
   -------------------------------------------------------------------------- */

/* Home: exact quiet composition, with no footer. */
.home-page .home-main {
  min-height: 100svh;
  padding: 46.2vh 0 0 7.45vw;
}
.home-page .home-title {
  font-size: clamp(34px, 3.22vw, 50px);
  line-height: 1;
  letter-spacing: .365em;
}
.home-page .home-nav {
  margin-top: clamp(64px, 7.2vh, 78px);
  gap: 25px;
}
.home-page .home-nav a {
  font-size: clamp(12px, 1.04vw, 16px);
  letter-spacing: .38em;
}

/* Project-page header geometry used by the approved desktop mockups. */
.project-surface .site-header {
  height: 62px;
  padding: 0 clamp(34px, 4.95vw, 72px);
}
.project-surface .site-brand { font-size: 11px; letter-spacing: .26em; }
.project-surface .site-nav { gap: clamp(27px, 3.2vw, 48px); }
.project-surface .site-nav a { font-size: 10px; }
.project-surface .project-shell { margin: 0; max-width: none; }
.project-surface .project-title { font-weight: 300; }
.project-surface .approved-copy { margin: 0; }
.approved-gallery { display: grid; gap: 14px; }
.approved-gallery figure { min-width: 0; margin: 0; }
.approved-gallery img { width: 100%; height: 100%; object-fit: cover; }
.approved-gallery figcaption { margin-top: 10px; font-size: 11px; line-height: 1.35; }
.approved-credits { font-size: 12px; line-height: 1.52; color: var(--ink); }
.approved-credits > span { display: block; margin-bottom: 2px; }

/* Fascinating Fascism — intentionally left-weighted with an asymmetric gallery. */
.project-fascism .project-shell { padding: 0 0 72px clamp(34px, 4.95vw, 72px); }
.project-fascism .project-intro { margin: 0 0 10px; }
.project-fascism .project-title {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.05vw, 30px);
  line-height: 1.1;
  letter-spacing: .22em;
}
.project-fascism .project-meta { font-size: 13px; line-height: 1.28; }
.project-fascism .approved-video {
  width: min(744px, calc(100vw - 108px));
  aspect-ratio: 1.925 / 1;
  margin: 10px 0 12px;
}
.project-fascism .approved-copy {
  width: min(744px, calc(100vw - 108px));
  font-size: 13px;
  line-height: 1.42;
}
.project-fascism .fascism-gallery {
  width: min(1047px, calc(100vw - 108px));
  grid-template-columns: 1.03fr 1.22fr .94fr;
  margin-top: 14px;
}
.project-fascism .fascism-gallery figure { display: grid; grid-template-rows: 257px auto; }
.project-fascism .fascism-gallery figure:nth-child(1) img { object-position: center; }
.project-fascism .fascism-gallery figure:nth-child(2) img { object-position: center 58%; }
.project-fascism .fascism-gallery figure:nth-child(3) img { object-position: 63% center; }
.project-fascism .approved-credits { margin: 18px 0 28px; }

/* In Conversation with Mekas — mirrors the Fascinating Fascism page layout. */
.project-mekas .project-shell { padding: 0 0 72px clamp(34px, 4.95vw, 72px); }
.project-mekas .project-intro { margin: 0 0 10px; }
.project-mekas .project-title {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.05vw, 30px);
  line-height: 1.1;
  letter-spacing: .22em;
}
.project-mekas .project-meta { font-size: 13px; line-height: 1.28; }
.project-mekas .approved-video {
  width: min(744px, calc(100vw - 108px));
  aspect-ratio: 1.925 / 1;
  margin: 10px 0 12px;
}
.project-mekas .approved-copy {
  width: min(744px, calc(100vw - 108px));
  font-size: 13px;
  line-height: 1.42;
}
.project-mekas .mekas-gallery {
  width: min(880px, calc(100vw - 108px));
  grid-template-columns: 1fr 1fr .56fr;
  margin-top: 14px;
}
.project-mekas .mekas-gallery figure { overflow: hidden; min-width: 0; }
.project-mekas .mekas-gallery figure:nth-child(-n+2) { aspect-ratio: 1.55 / 1; }
.project-mekas .mekas-gallery figure:nth-child(-n+2) img { width: 100%; height: 100%; object-fit: cover; }
.project-mekas .mekas-gallery figure:nth-child(3) { aspect-ratio: .868 / 1; background: #fff; }
.project-mekas .mekas-gallery figure:nth-child(3) img { width: 100%; height: 100%; object-fit: contain; }
.project-mekas .approved-credits { width: min(744px, calc(100vw - 108px)); margin: 18px 0 28px; }

/* Trembling Ground — 967px column, 16:9 hero, three stills in one row. */
.project-trembling .project-shell { width: min(1023px, 100%); padding: 91px 0 64px clamp(34px, 5.25vw, 57px); }
.project-trembling .project-intro { margin: 0 0 34px; }
.project-trembling .project-title {
  margin: 0 0 34px;
  font-size: clamp(29px, 3.23vw, 35px);
  letter-spacing: .26em;
  line-height: 1.05;
}
.project-trembling .project-meta { font-size: 14px; line-height: 1.58; }
.project-trembling .approved-hero { width: 820px; max-width: calc(100vw - 91px); aspect-ratio: 16/9; margin: 0; overflow: hidden; }
.project-trembling .approved-hero img { width: 100%; height: 100%; object-fit: cover; }
.project-trembling .approved-copy { width: 650px; max-width: calc(100vw - 91px); margin-top: 31px; font-size: 14px; line-height: 1.58; }
.project-trembling .trembling-synopsis .synopsis-label {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.project-trembling .trembling-synopsis p { margin: 0 0 1.2em; font-size: 14px; line-height: 1.58; }
.project-trembling .trembling-synopsis p:last-child { margin-bottom: 0; }
.project-trembling .trembling-gallery { width: 820px; max-width: calc(100vw - 91px); grid-template-columns: repeat(3,1fr); margin-top: 28px; }
.project-trembling .trembling-gallery figure { aspect-ratio: 1.43/1; overflow: hidden; }
.project-trembling .approved-credits { width: 650px; max-width: calc(100vw - 91px); margin: 22px 0 30px; }

/* Image of Silence — centered 930px column with title embedded into the header. */
.project-silence .site-header { width: min(944px, calc(100% - 48px)); margin: 0 auto; padding: 0; }
.project-silence .silence-header-title { margin: 0; font-weight: 400; }
.project-silence .project-shell { width: min(944px, calc(100% - 48px)); margin: 0 auto; padding: 35px 0 62px; }
.project-silence .project-intro { margin: 0 0 27px; }
.project-silence .project-meta { font-size: 13px; line-height: 1.55; }
.project-silence .approved-video { width: min(744px, 100%); aspect-ratio: 1.925/1; margin: 0; }
.project-silence .approved-copy { width: 590px; max-width: 100%; margin-top: 20px; font-size: 13px; line-height: 1.56; }
.project-silence .silence-installation { width: 340px; max-width: 100%; margin: 16px 0 0; aspect-ratio: 1.43/1; overflow: hidden; }
.project-silence .silence-installation img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.project-silence .approved-credits { width: 590px; max-width: 100%; margin: 18px 0 25px; }

/* Sonic Cinema — broad visual field and three lower documentation tiles. */
.project-sonic .project-shell { padding: 57px 0 70px clamp(34px, 4.55vw, 66px); }
.project-sonic .project-intro { margin: 0 0 23px; }
.project-sonic .project-title {
  max-width: 1260px;
  margin: 0 0 18px;
  font-size: clamp(27px, 2.35vw, 34px);
  letter-spacing: .18em;
  line-height: 1.08;
  white-space: nowrap;
}
.project-sonic .project-meta { font-size: 16px; line-height: 1.5; }
.project-sonic .sonic-hero { width: min(980px, calc(100vw - 108px)); aspect-ratio: 1.95/1; margin: 0; overflow: hidden; }
.project-sonic .sonic-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.project-sonic .approved-copy { width: 765px; max-width: calc(100vw - 108px); margin-top: 15px; font-size: 15px; line-height: 1.48; }
.project-sonic .sonic-gallery { width: min(984px, calc(100vw - 108px)); grid-template-columns: 1.08fr 1fr .87fr; margin-top: 14px; }
.project-sonic .sonic-gallery figure { aspect-ratio: 1.43/1; overflow: hidden; }
.project-sonic .sonic-gallery img { object-position: center; }
.project-sonic .sonic-gallery figure:nth-child(1) img { object-position: center 72%; }
.video-poster-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-poster { position: relative; display: block; width: 100%; height: 100%; padding: 0; border: 0; background: #0a0a0a; cursor: pointer; overflow: hidden; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; }
.poster-play { position: absolute; left: 50%; top: 50%; width: 48px; height: 48px; border: 3px solid #fff; border-radius: 50%; transform: translate(-50%,-50%); }
.poster-play::after { content: ""; position: absolute; left: 19px; top: 12px; border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; }
.project-sonic .back-link { margin-top: 34px; }

@media (max-width: 860px) {
  .home-page .home-main { padding: 37vh 26px 0; }
  .home-page .home-title { font-size: clamp(27px, 8vw, 38px); letter-spacing: .25em; white-space: normal; }
  .home-page .home-nav { margin-top: 58px; }
  .home-page .home-nav a { font-size: 12px; }

  .project-surface .site-header { height: 78px; padding: 0 22px; }
  .project-surface .project-shell,
  .project-mekas .project-shell,
  .project-fascism .project-shell,
  .project-trembling .project-shell,
  .project-silence .project-shell,
  .project-sonic .project-shell { width: auto; margin: 0; padding: 34px 22px 66px; }
  .project-silence .site-header { width: auto; margin: 0; padding: 0 22px; }
  .project-silence .silence-header-title { max-width: 68vw; font-size: 9px; line-height: 1.35; }

  .project-mekas .approved-video,
  .project-mekas .approved-copy,
  .project-mekas .mekas-gallery,
  .project-mekas .approved-credits,
  .project-fascism .approved-video,
  .project-fascism .approved-copy,
  .project-fascism .fascism-gallery,
  .project-trembling .approved-hero,
  .project-trembling .approved-copy,
  .project-trembling .trembling-gallery,
  .project-trembling .approved-credits,
  .project-silence .approved-video,
  .project-silence .approved-copy,
  .project-silence .silence-installation,
  .project-silence .approved-credits,
  .project-sonic .sonic-hero,
  .project-sonic .approved-copy,
  .project-sonic .sonic-gallery { width: 100%; max-width: 100%; }

  .project-mekas .mekas-gallery { grid-template-columns: 1fr; }
  .project-mekas .mekas-gallery figure:nth-child(-n+2) { aspect-ratio: 16/10; }
  .project-mekas .mekas-gallery figure:nth-child(3) { width: 55%; margin: 6px auto 0; }

  .project-fascism .approved-video,
  .project-mekas .approved-video { aspect-ratio: 16/9; }
  .project-fascism .fascism-gallery,
  .project-sonic .sonic-gallery { grid-template-columns: 1fr; }
  .project-trembling .trembling-gallery { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .project-trembling .trembling-gallery figure { aspect-ratio: 1.43/1; }
  .project-fascism .fascism-gallery figure { grid-template-rows: auto auto; }
  .project-fascism .fascism-gallery img,
  .project-sonic .sonic-gallery figure { aspect-ratio: 16/10; height: auto; }
  .project-sonic .sonic-hero { aspect-ratio: 2.1/1; }
  .project-sonic .project-title { white-space: normal; }
  .project-silence .approved-video { aspect-ratio: 16/9; }
  .project-trembling .project-intro,
  .project-sonic .project-intro { margin-top: 16px; }
}

/* Final consistency pass — shared surface and equal documentation tiles. */
.project-surface {
  background-color: var(--paper);
  background-image:
    linear-gradient(118deg, rgba(255,255,255,.32), rgba(255,255,255,0) 44%),
    url("../images/site-background.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.project-fascism .fascism-gallery,
.project-sonic .sonic-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.project-fascism .fascism-gallery figure,
.project-sonic .sonic-gallery figure {
  display: grid;
  grid-template-rows: auto auto;
  aspect-ratio: auto;
  overflow: visible;
}
.project-fascism .fascism-gallery img,
.project-fascism .fascism-gallery .video-poster,
.project-sonic .sonic-gallery img,
.project-sonic .sonic-gallery .video-poster {
  width: 100%;
  aspect-ratio: 1.43 / 1;
  height: auto;
  object-fit: cover;
}
.project-fascism .fascism-gallery figure:nth-child(1) img,
.project-fascism .fascism-gallery figure:nth-child(2) img {
  object-position: center;
}

@media (max-width: 860px) {
  .project-surface { background-attachment: scroll; }
  .project-fascism .fascism-gallery,
  .project-sonic .sonic-gallery { grid-template-columns: 1fr; }
  .project-fascism .fascism-gallery img,
  .project-fascism .fascism-gallery .video-poster,
  .project-sonic .sonic-gallery img,
  .project-sonic .sonic-gallery .video-poster {
    aspect-ratio: 16 / 10;
  }
}

/* Mobile identity lock: keep the artist's full name on one line. */
@media (max-width: 860px) {
  .home-page .home-title {
    white-space: nowrap;
    font-size: clamp(20px, 6.35vw, 32px);
    letter-spacing: .20em;
  }
}
@media (max-width: 390px) {
  .home-page .home-title {
    font-size: 19px;
    letter-spacing: .17em;
  }
}
