:root {
  color-scheme: dark;
  --ink: #101010;
  --paper: #e9e7df;
  --muted: #969692;
  --line: #ffffff30;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #f3f2ee;
  background: var(--ink);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
  background: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.03;
}
p {
  line-height: 1.55;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}
a:not(.project-hit, .wordmark, .footer-name):hover {
  opacity: 0.78;
}
button:hover {
  opacity: 0.8;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--paper);
  color: var(--ink);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 24px;
  background: white;
  color: black;
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}
.section-pad {
  padding: 110px 5vw;
}
.paper {
  background: var(--ink);
}
.inner-page {
  padding-top: 150px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}
.section-heading h2 {
  font-size: clamp(40px, 5vw, 80px);
}
.section-heading > span {
  font-size: 13px;
  color: var(--muted);
}
.text-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 0;
  position: relative;
}
.text-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.text-link:hover:after,
.text-link:focus-visible:after {
  transform: scaleX(1);
}
/* The trigger and Close share the same coordinates, including inside the modal. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: linear-gradient(#0006, transparent);
  pointer-events: none;
}
.site-header a,
.site-header button {
  pointer-events: auto;
}
.header-controls,
.menu-controls {
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu-toggle,
.menu-close {
  font-size: 25px;
  letter-spacing: -0.055em;
  font-weight: 700;
  padding: 0;
  line-height: 32px;
  min-width: 65px;
  text-align: left;
}
.contact-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}
.contact-icon svg {
  width: 24px;
  height: 24px;
}
.wordmark {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.055em;
}
.site-menu {
  position: fixed;
  inset: 0 0 auto auto;
  margin: 0;
  padding: 24px 32px 30px;
  width: min(640px, 100%);
  max-width: 100%;
  max-height: 100dvh;
  background: var(--paper);
  color: var(--ink);
  border: 0;
  overflow: auto;
  transform-origin: top right;
}
.site-menu[open] {
  animation: none;
}
.site-menu::backdrop {
  background: #0007;
  backdrop-filter: blur(4px);
}
.site-menu nav {
  display: flex;
  flex-direction: column;
  margin: 54px 0 42px;
}
.site-menu nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.15;
  padding: 2px 6px 4px 0;
  overflow: visible;
}
.site-menu nav a span {
  transition: transform 0.4s var(--ease);
}
.site-menu nav a:hover span {
  transform: translateX(12px);
}
.site-menu nav small {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 400;
}
.menu-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.menu-bottom a {
  font-weight: 700;
}
.menu-bottom span {
  opacity: 0.6;
}
@keyframes menu-in {
  from {
    clip-path: inset(0 0 100% 100%);
  }
  to {
    clip-path: inset(0);
  }
}
/* Film surfaces stay black until a provider reports real playback. */
.hero,
.project-panel {
  height: 100svh;
  min-height: 660px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #171717;
}
.video-stage {
  position: absolute;
  inset: 0;
  container-type: size;
  overflow: hidden;
}
.video-poster {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.8s ease;
  transform: scale(1.025);
}
.video-stage.is-playing .video-poster {
  opacity: 0;
  pointer-events: none;
}
.video-mount {
  opacity: 0;
  position: absolute;
  inset: 0;
}
.video-stage.is-playing .video-mount { opacity: 1; }
.video-mount iframe,
.video-mount video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100cqw, var(--video-width, 177.78cqh));
  height: max(100cqh, var(--video-height, 56.25cqw));
  transform: translate(-50%, -50%) scale(var(--video-scale, 1));
  border: 0;
  pointer-events: none;
}
.hero-shade,
.panel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0003, #0001 25%, #0007);
  pointer-events: none;
}
.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, #0008, #0002),
    linear-gradient(0deg, #0008, transparent 60%);
}
.hero-copy {
  position: relative;
  z-index: 3;
  padding: clamp(110px, 16vh, 170px) 5vw 120px;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.hero-copy > .eyebrow {
  margin-bottom: 26px;
  font-size: 15px;
}
.hero h1 {
  font-size: clamp(48px, 6.6vw, 118px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 1120px;
}
.hero-support {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 660px;
  margin-top: 30px;
}
.hero-support > p {
  font-size: 18px;
  max-width: 660px;
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.square-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 55px;
  padding: 16px 27px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--paper);
  border-radius: 0;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.4s var(--ease);
}
.square-button.outline {
  background: transparent;
  color: inherit;
  border-color: #ffffff70;
}
.square-button:hover {
  background: #fff;
  color: #111;
  opacity: 1 !important;
  transform: translateY(-3px);
}
.hero-meta {
  position: absolute;
  z-index: 4;
  bottom: 35px;
  left: 5vw;
  right: 5vw;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.project-hit {
  position: relative;
  display: block;
  height: 100%;
  padding: 14px 0;
  z-index: 2;
}
.project-hit:hover {
  opacity: 1 !important;
}
.project-label {
  position: sticky;
  top: calc(50svh - 22px);
  margin: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 30px;
  font-size: clamp(18px, 2.4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.07;
}
.project-label h2 {
  font-size: inherit;
  text-align: center;
}
.project-label > span:last-child {
  text-align: right;
}
.work-end {
  padding: 42px 5vw;
  border-bottom: 1px solid var(--line);
}
.work-end a {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 700;
}
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 8vw;
  align-items: start;
}
.about-intro h2 {
  font-size: clamp(38px, 4.5vw, 76px);
}
.about-intro p {
  font-size: 23px;
  max-width: 760px;
  margin: 32px 0 16px;
}
.portrait {
  aspect-ratio: 3/4;
  object-fit: cover;
}
.logo-section {
  padding: 45px 5vw 65px;
  border-bottom: 1px solid var(--line);
}
.logo-section h2 {
  color: var(--muted);
  margin-bottom: 30px;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 5vw;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: block;
  flex: 0 1 140px;
}
.logo img {
  width: 140px;
  height: 65px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}
.award-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(120px, 0.6fr) 20px;
  align-items: center;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.award-laurel {
  width: 125px;
  height: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.award-row h3,
.event-row h3 {
  font-size: clamp(21px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.award-row p,
.event-row p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.row-project {
  font-size: 14px;
  line-height: 1.4;
}
.row-year {
  font-size: 14px;
}
.award-year {
  margin: 80px 0;
}
.award-year > h2 {
  font-size: 54px;
  margin-bottom: 35px;
}
.services details {
  border-top: 1px solid var(--line);
}
.services summary {
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  cursor: pointer;
  list-style: none;
}
.services summary::-webkit-details-marker {
  display: none;
}
.services summary > span {
  font-size: 14px;
}
.services h3 {
  font-size: clamp(28px, 3.8vw, 64px);
}
.services .details-plus {
  font-size: 32px;
  font-weight: 400;
  transition: transform 0.3s;
}
.services details[open] .details-plus {
  transform: rotate(45deg);
}
.service-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8vw;
  margin-left: 90px;
  padding: 0 0 45px;
  max-width: none;
}
.service-content p {
  font-size: 22px;
}
.service-content a {
  margin-top: 20px;
}
.event-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.event-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  padding: 0 5vw 90px;
}
.event-gallery figure {
  margin: 0;
  min-width: 0;
}
.event-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.testimonials {
  background: var(--paper);
  color: var(--ink);
}
.testimonial {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10vw;
  padding: 50px 0;
  border-top: 1px solid #0003;
}
.testimonial blockquote {
  font-size: clamp(23px, 2.7vw, 40px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.25;
  margin: 0;
}
.testimonial figcaption {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 14px;
}
.testimonial figcaption img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial figcaption a {
  font-weight: 700;
}
.testimonial figcaption p {
  margin-top: 6px;
  opacity: 0.6;
  font-size: 12px;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 40px;
}
.community-grid img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  object-position: left center;
}
.community-grid h3 {
  font-size: 34px;
  margin: 25px 0;
}
.community-copy p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 16px;
  white-space: pre-line;
}
/* Reference: centered display title underneath two independently staggered columns. */
.works-page {
  padding: 120px 0 130px;
}
.work-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 5;
  margin-bottom: 45px;
}
.work-filters button {
  border: 1px solid #fff5;
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 13px;
}
.work-filters [aria-pressed="true"] {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.work-stage {
  position: relative;
  isolation: isolate;
}
.work-title {
  position: sticky;
  top: calc(50vh - 10vw);
  font-size: 22vw;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-align: center;
  z-index: -1;
  height: 0;
  pointer-events: none;
  color: #eae9e4;
  font-weight: 700;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 25%;
  row-gap: 100px;
  padding: 70px 11.5% 200px;
  align-items: start;
}
.project-grid article:nth-child(even) {
  transform: translateY(230px);
}
.project-grid article a {
  display: block;
}
.project-grid article a:hover {
  opacity: 1;
}
.work-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.4;
  background: #222;
  isolation: isolate;
}
.project-grid article:nth-child(4n + 1) .work-cover,
.project-grid article:nth-child(4n + 4) .work-cover {
  aspect-ratio: 0.82;
}
.work-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.work-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0001;
  transition: background 0.5s;
}
.work-cover:hover:after {
  background: #0004;
}
.work-cover:hover > img {
  transform: scale(1.05);
}
.work-cover h2 {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 5%;
  right: 5%;
  text-align: center;
  transform: translateY(-50%);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 14px #0006;
}
.work-view {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s,
    transform 0.5s var(--ease);
}
.work-cover:hover .work-view,
.work-cover:focus-within .work-view {
  opacity: 1;
  transform: none;
}
.pixel-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  image-rendering: pixelated;
}
.about-hero {
  height: 100svh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.about-hero > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.8);
}
.about-hero h1 {
  position: absolute;
  inset: 42% 3% auto;
  text-align: center;
  font-size: 15.4vw;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.065em;
  mix-blend-mode: difference;
  color: white;
  white-space: nowrap;
}
.about-hero .hero-meta {
  right: 5vw;
}
.biography {
  max-width: 1160px;
  margin: auto;
  padding-top: 140px;
  padding-bottom: 100px;
}
.about-statement {
  font-size: clamp(38px, 4.7vw, 70px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.045em;
  margin-bottom: 90px;
}
.about-statement span {
  transition: opacity 0.15s linear;
}
.bio-columns {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
}
.bio-columns p {
  font-size: 20px;
  margin-bottom: 28px;
  color: #c6c6c2;
}
.bio-columns > .eyebrow {
  color: var(--muted);
}
.bio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.career-highlights {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-top: 110px;
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.career-highlights h2 {
  font-size: 30px;
}
.career-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.career-highlights li {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
  margin-bottom: 18px;
}
.project-film-first {
  padding-top: 90px;
}
.project-film-first > .video-frame {
  aspect-ratio: 16/9;
  max-height: calc(100svh - 90px);
  width: 100%;
  background: #050505;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #050505;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.project-film-first > .video-fallback {
  margin: 12px 5vw;
}
.project-film-first > img {
  width: 100%;
  max-height: 85vh;
  object-fit: cover;
}
.project-heading {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 45px 5vw 60px;
  border-bottom: 1px solid var(--line);
}
.project-heading h1 {
  font-size: clamp(36px, 4vw, 70px);
  text-align: center;
}
.project-heading > span {
  font-size: 15px;
}
.project-heading > span:last-child {
  text-align: right;
}
.editorial-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.editorial-copy {
  max-width: 850px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.editorial-copy h2 {
  font-size: clamp(30px, 4vw, 62px);
}
.editorial-copy p {
  font-size: 19px;
  white-space: pre-line;
  color: #c6c6c2;
}
.editorial-links {
  display: flex;
  gap: 15px 30px;
  flex-wrap: wrap;
}
.editorial-links a {
  padding: 14px 0;
  font-size: 14px;
}
.editorial-media:empty,
.editorial-copy:empty {
  display: none;
}
.editorial-media img {
  max-height: 850px;
  width: 100%;
  object-fit: contain;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.media-grid .video-frame,
.media-grid .video-fallback {
  grid-column: 1/-1;
}
.media-link {
  display: block;
}
.content-video,
.background-film {
  width: 100%;
  max-height: 90vh;
}
.art-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.gallery-open {
  padding: 0;
  position: relative;
}
.gallery-open img,
.art-gallery > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-open span {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #0008;
  padding: 6px 12px;
}
.lightbox {
  border: 0;
  background: #0a0a0a;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  max-width: 100vw;
  max-height: 100dvh;
  padding: 65px 30px 25px;
}
.lightbox::backdrop {
  background: #000d;
}
.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 18px;
  font-weight: 700;
}
.next-project {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 24px;
  font-weight: 700;
  padding: 60px 5vw;
  border-top: 1px solid var(--line);
}
.page-title {
  margin-bottom: 80px;
}
.page-title h1 {
  font-size: clamp(65px, 11vw, 180px);
  margin: 25px 0;
}
.page-title p {
  color: var(--muted);
}
.contact-page {
  padding-top: 170px;
  min-height: 90vh;
}
.contact-page h1 {
  font-size: clamp(70px, 10vw, 160px);
  margin: 35px 0 50px;
}
.contact-page em {
  font-style: normal;
  color: var(--muted);
}
.contact-page > div {
  max-width: 650px;
}
.contact-page > div > a {
  font-size: clamp(22px, 3vw, 40px);
  margin: 15px 0 30px;
}
.footer {
  background: var(--paper);
  color: var(--ink);
  padding: 65px 5vw 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.footer-grid .eyebrow {
  font-size: 11px;
  opacity: 0.5;
  margin-bottom: 12px;
}
.footer-grid a {
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.3s var(--ease);
}
.footer-grid a:hover {
  transform: translateX(4px);
}
.footer-grid .footer-contact > a {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}
.footer-contact p {
  font-size: 18px;
  opacity: 0.65;
}
.footer-name {
  display: block;
  text-align: left;
  font-size: 15vw;
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 700;
  margin: 100px 0 45px;
  white-space: nowrap;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  gap: 25px;
}
.reveal-pending {
  opacity: 0;
  transform: translateY(26px);
}
[data-reveal] {
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.cursor-dot {
  position: fixed;
  z-index: 90;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  mix-blend-mode: difference;
  pointer-events: none;
  left: 0;
  top: 0;
  opacity: 0;
  transition:
    width 0.25s,
    height 0.25s;
}
.cursor-dot.active {
  width: 28px;
  height: 28px;
}
@media (min-width: 1800px) {
  .hero-support {
    max-width: 1300px;
  }
  .hero-support > p {
    font-size: 21px;
    max-width: 560px;
  }
  .project-grid {
    row-gap: 140px;
  }
  .project-grid article:nth-child(even) {
    transform: translateY(300px);
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: 680px;
  }
  .hero h1 {
    font-size: 7.8vw;
  }
  .hero-support {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .hero-copy {
    padding-top: 130px;
  }
  .hero-support > p {
    max-width: 470px;
  }
  .about-intro {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
  .about-intro > .eyebrow {
    grid-column: 1/-1;
  }
  .about-intro p {
    font-size: 18px;
  }
  .section-pad {
    padding: 80px 5vw;
  }
  .community-grid {
    gap: 20px;
  }
  .community-grid img {
    height: 200px;
  }
  .community-grid h3 {
    font-size: 28px;
  }
  .project-grid {
    column-gap: 18%;
    padding-left: 8%;
    padding-right: 8%;
  }
  .project-grid article:nth-child(even) {
    transform: translateY(170px);
  }
  .award-row {
    grid-template-columns: 100px 1fr 140px;
    gap: 20px;
  }
  .award-row > span:last-child {
    display: none;
  }
  .award-laurel {
    width: 95px;
  }
  .bio-columns {
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-name {
    margin-top: 85px;
  }
  .testimonial {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .biography {
    padding-top: 90px;
  }
  .contact-page {
    padding-top: 150px;
  }
}
@media (max-width: 600px) {
  .site-header {
    padding: 18px 20px;
  }
  .menu-toggle,
  .menu-close {
    font-size: 23px;
  }
  .header-controls,
  .menu-controls {
    gap: 12px;
  }
  .wordmark {
    font-size: 19px;
  }
  .site-menu {
    padding: 18px 20px 30px;
    height: 100dvh;
  }
  .site-menu nav {
    margin-top: 55px;
  }
  .site-menu nav a {
    font-size: 54px;
    line-height: 1.15;
  }
  .hero,
  .project-panel {
    min-height: 640px;
  }
  .hero-copy {
    padding: 135px 6vw 110px;
  }
  .hero-copy > .eyebrow {
    font-size: 11px;
    margin-bottom: 25px;
  }
  .hero h1 {
    font-size: clamp(43px, 11.8vw, 70px);
    line-height: 1;
    letter-spacing: -0.065em;
  }
  .hero-support {
    margin-top: 24px;
    gap: 26px;
  }
  .hero-support > p {
    font-size: 14px;
    max-width: 330px;
  }
  .square-button {
    min-width: 120px;
    min-height: 49px;
    padding: 13px 20px;
    font-size: 13px;
  }
  .hero-meta {
    left: 6vw;
    right: 6vw;
    bottom: 77px;
    font-size: 10px;
  }
  .project-label {
    margin: 0 6vw;
    top: calc(50svh - 60px);
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    font-size: 16px;
  }
  .project-label h2 {
    grid-column: 1/-1;
    grid-row: 1;
    font-size: 11vw;
    text-align: left;
  }
  .project-label > span:last-child {
    text-align: right;
  }
  .project-label > span:first-child {
    grid-row: 2;
  }
  .section-pad {
    padding: 70px 6vw;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .about-intro {
    display: block;
  }
  .about-intro h2 {
    font-size: 42px;
    margin-top: 30px;
  }
  .about-intro p {
    font-size: 18px;
  }
  .about-intro > .portrait {
    margin-top: 35px;
    width: 55%;
    margin-left: auto;
  }
  .logo-section {
    padding: 35px 6vw;
  }
  .logo-strip {
    justify-content: flex-start;
    gap: 22px;
  }
  .logo {
    flex: 0 0 calc(33.33% - 15px);
  }
  .logo img {
    height: 50px;
    width: 100%;
  }
  .award-row {
    grid-template-columns: 88px 1fr;
    gap: 12px 20px;
    padding: 24px 0;
  }
  .award-row h3 {
    font-size: 21px;
  }
  .award-row p {
    font-size: 12px;
  }
  .award-laurel {
    width: 88px;
    height: 76px;
    grid-row: span 2;
  }
  .row-project {
    grid-column: 2;
    font-size: 12px;
    color: var(--muted);
  }
  .services summary {
    grid-template-columns: 25px 1fr 25px;
    gap: 12px;
    padding: 25px 0;
  }
  .services h3 {
    font-size: 28px;
  }
  .service-content {
    margin-left: 37px;
  }
  .service-content p {
    font-size: 18px;
  }
  .event-row {
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 25px 0;
  }
  .event-row h3 {
    font-size: 24px;
  }
  .event-row p {
    font-size: 13px;
  }
  .event-gallery {
    padding-bottom: 55px;
    gap: 12px;
  }
  .event-gallery figure {
    flex-basis: 70%;
  }
  .event-gallery img {
    height: 280px;
  }
  .testimonial {
    padding: 30px 0;
  }
  .testimonial blockquote {
    font-size: 25px;
  }
  .community-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .community-grid img {
    height: 250px;
  }
  .community-copy p {
    font-size: 15px;
  }
  .works-page {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .work-filters {
    margin-bottom: 10px;
    gap: 6px;
  }
  .work-filters button {
    padding: 9px 17px;
    font-size: 12px;
  }
  .work-title {
    font-size: 28vw;
    top: calc(50svh - 12vw);
  }
  .project-grid {
    padding: 50px 6% 100px;
    column-gap: 13%;
    row-gap: 70px;
  }
  .project-grid article:nth-child(even) {
    transform: translateY(110px);
  }
  .work-cover h2 {
    font-size: 14px;
    line-height: 1.08;
    left: 7%;
    right: 7%;
  }
  .work-view {
    display: none;
  }
  .about-hero {
    min-height: 640px;
  }
  .about-hero > img {
    object-position: 47% center;
  }
  .about-hero h1 {
    font-size: 15.8vw;
    left: 2%;
    right: 2%;
    top: 45%;
  }
  .about-statement {
    font-size: 42px;
    margin-bottom: 50px;
  }
  .bio-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bio-columns p {
    font-size: 17px;
  }
  .career-highlights {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 65px;
  }
  .career-highlights li {
    font-size: 17px;
  }
  .project-film-first {
    padding-top: 80px;
  }
  .project-film-first > .video-frame {
    max-height: none;
  }
  .project-heading {
    grid-template-columns: 1fr 1fr;
    padding: 30px 6vw;
    gap: 20px;
  }
  .project-heading h1 {
    grid-column: 1/-1;
    grid-row: 1;
    text-align: left;
    font-size: 44px;
  }
  .project-heading > span {
    font-size: 12px;
  }
  .editorial-section {
    padding: 45px 6vw;
    gap: 30px;
  }
  .editorial-copy p {
    font-size: 17px;
  }
  .editorial-copy h2 {
    font-size: 35px;
  }
  .media-grid,
  .art-gallery {
    grid-template-columns: 1fr;
  }
  .next-project {
    font-size: 18px;
    padding: 35px 6vw;
  }
  .inner-page {
    padding-top: 120px;
  }
  .page-title h1 {
    font-size: 18vw;
  }
  .contact-page {
    padding-top: 145px;
  }
  .contact-page h1 {
    font-size: 17vw;
  }
  .contact-page > div > a {
    font-size: 26px;
    overflow-wrap: anywhere;
  }
  .footer {
    padding: 50px 6vw 22px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 15px;
  }
  .footer-grid .footer-contact > a {
    font-size: 30px;
  }
  .footer-grid a {
    font-size: 12px;
  }
  .footer-name {
    font-size: 14.5vw;
    margin: 70px 0 35px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 14px;
    font-size: 10px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
  .video-poster {
    transform: none;
  }
  .cursor-dot {
    display: none;
  }
  .about-statement span {
    opacity: 1 !important;
  }
}
.project-grid {
  --stagger: 230px;
}
@media (min-width: 1800px) {
  .project-grid {
    --stagger: 300px;
  }
}
@media (max-width: 900px) {
  .project-grid {
    --stagger: 170px;
  }
}
@media (max-width: 600px) {
  .project-grid {
    --stagger: 110px;
  }
}

#work {
  scroll-margin-top: -90px;
}

/* Home refinement: sticky captions, quieter typography and restored content grids. */
.menu-controls {
  justify-content: flex-end;
}
.site-menu nav a {
  font-size: clamp(38px, 4.5vw, 65px);
}
.project-panel {
  overflow: clip;
}
.project-label h2 {
  font-weight: 700;
}
.project-label > span {
  font-weight: 400;
}
.eyebrow {
  font-weight: 400;
}
.services h3 {
  font-weight: 400;
}
.inline-link {
  border-bottom: 1px solid #fff5;
  transition: border-color 0.3s;
}
.inline-link:hover {
  border-color: currentColor;
}
.logo img[src*="imdb"] {
  filter: grayscale(1);
}
.home-awards {
  text-align: center;
}
.award-badges {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 30px;
  margin-bottom: 48px;
}
.award-badges .award-laurel {
  width: 100%;
  height: 145px;
}
.service-content img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.testimonial blockquote {
  position: relative;
  font-weight: 400;
}
.quote-original {
  opacity: 0.12;
}
.quote-typed {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.community-grid > article:first-child {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  column-gap: 6vw;
  align-items: start;
}
.community-grid > article:first-child > a {
  grid-row: 1/3;
}
.community-grid > article:first-child img {
  height: 400px;
  object-fit: contain;
}
.community-grid > article:first-child h3 {
  margin-top: 0;
}
.community-copy p {
  color: #c6c6c2;
}
.footer-contact h2 {
  font-size: clamp(48px, 5vw, 80px);
}
.footer-grid a {
  font-weight: 400;
}
.footer-grid .eyebrow {
  font-size: 14px;
  opacity: 0.6;
}
.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
}
.workshop-hero {
  position: relative;
  min-height: 85svh;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding-top: 150px;
}
.workshop-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.35);
}
.workshop-hero-copy {
  max-width: 1050px;
}
.workshop-hero h1 {
  font-size: clamp(52px, 7.5vw, 120px);
  margin: 24px 0 30px;
}
.workshop-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  font-size: 21px;
}
.workshop-hero .hero-actions {
  margin-top: 30px;
}
.workshop-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
.workshop-intro h2,
.workshop-benefits > h2,
.workshop-instructor h2 {
  font-size: clamp(40px, 4.5vw, 72px);
}
.workshop-intro p,
.workshop-split > div > p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.5;
  white-space: pre-line;
  color: #c6c6c2;
}
.workshop-lessons {
  padding-top: 20px;
}
.workshop-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8vw;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.workshop-split h3 {
  font-size: clamp(32px, 3.3vw, 55px);
  margin: 15px 0 25px;
  font-weight: 400;
}
.workshop-split img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}
.workshop-benefits {
  background: var(--paper);
  color: var(--ink);
}
.workshop-benefits > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  margin-top: 60px;
}
.workshop-benefits article img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: grayscale(1);
}
.workshop-benefits h3 {
  font-size: 26px;
  margin: 22px 0 15px;
}
.workshop-benefits p {
  font-size: 16px;
  opacity: 0.7;
}
.format-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  margin: 60px 0 35px;
}
.format-options article {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.format-options h3 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 18px;
}
.workshop-instructor {
  padding: 90px 5vw;
  border: 0;
}
.workshop-instructor h2 {
  margin-bottom: 30px;
}
.workshop-page #contact .square-button {
  margin-top: 30px;
}
@media (max-width: 900px) {
  .award-badges {
    grid-template-columns: repeat(3, 1fr);
  }
  .community-grid > article:first-child {
    grid-template-columns: 1fr 1fr;
  }
  .community-grid > article:first-child img {
    height: 300px;
  }
  .workshop-benefits > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-content {
    gap: 35px;
  }
  .hero-support {
    max-width: 660px;
  }
  .hero-support > p {
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  .site-menu nav a {
    font-size: 46px;
  }
  .site-menu nav {
    margin: 40px 0;
  }
  .hero {
    height: auto;
    min-height: 100svh;
  }
  .hero-copy {
    padding: 130px 6vw 110px;
  }
  .hero-support {
    gap: 22px;
    margin-top: 24px;
  }
  .hero-support > p {
    font-size: 16px;
    max-width: none;
  }
  .hero-meta {
    bottom: 30px;
  }
  .project-label {
    top: calc(50svh - 55px);
  }
  .project-label h2 {
    font-size: 10vw;
  }
  .about-intro p {
    font-size: 20px;
  }
  .about-intro > .portrait {
    width: 100%;
    max-height: 460px;
    object-position: center 30%;
  }
  .award-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .award-badges .award-laurel {
    height: 110px;
  }
  .service-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-left: 37px;
  }
  .service-content p {
    font-size: 18px;
  }
  .event-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 0 6vw 60px;
  }
  .event-gallery img {
    height: auto;
  }
  .community-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .community-grid > article:first-child {
    display: block;
  }
  .community-grid > article:first-child img {
    height: 270px;
  }
  .community-grid > article:first-child h3 {
    margin-top: 25px;
  }
  .footer-name {
    font-size: 14.5vw;
    margin-top: 70px;
  }
  .footer-bottom > span:nth-child(2) {
    display: block;
  }
  .footer-grid .footer-contact > a {
    font-size: 18px;
  }
  .workshop-intro,
  .workshop-split,
  .format-options {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .workshop-hero {
    padding-top: 130px;
    min-height: 90svh;
  }
  .workshop-hero h1 {
    font-size: 52px;
  }
  .workshop-hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }
  .workshop-split {
    padding: 45px 0;
  }
  .workshop-intro p,
  .workshop-split > div > p:not(.eyebrow) {
    font-size: 18px;
  }
  .workshop-benefits > div {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .workshop-benefits article {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 20px;
  }
  .workshop-benefits article img {
    width: 50px;
    height: 50px;
    grid-row: span 2;
  }
  .workshop-benefits h3 {
    margin: 0 0 12px;
  }
  .workshop-benefits p {
    grid-column: 2;
  }
  .workshop-instructor {
    padding: 70px 6vw;
  }
  .format-options h3 {
    font-size: 34px;
  }
}

/* Home polish: bottom-aligned hero and full-width community feature. */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-copy {
  padding: 110px 5vw 95px;
}
.hero h1 {
  font-size: clamp(40.8px, 5.61vw, 100.3px);
}
.hero-copy > .eyebrow {
  text-transform: uppercase;
}
.hero-support > p {
  font-size: 19.8px;
}
.hero-meta {
  justify-content: flex-end;
}
.home-awards {
  padding-top: 82.5px;
  padding-bottom: 82.5px;
}
.home-awards .award-badges {
  margin-bottom: 38px;
}
.home-awards .award-laurel {
  height: 116px;
}
.video-contain .video-mount iframe,
.video-contain .video-mount video {
  width: min(100cqw, var(--video-width));
  height: min(100cqh, var(--video-height));
}
.video-contain .video-poster {
  object-fit: contain;
  transform: none;
}
.community-grid > article:first-child {
  display: block;
}
.community-grid > article:first-child img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.community-grid > article:first-child h3 {
  margin-top: 25px;
}
.community-grid > article:first-child p {
  max-width: 420px;
}
.footer-contact h2 a {
  font-weight: 700;
}
.image-diffusion {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  image-rendering: pixelated;
}
@media (max-width: 600px) {
  .hero-copy { padding: 110px 6vw 100px; }
  .hero h1 { font-size: clamp(36.55px, 10.03vw, 59.5px); }
  .hero-support > p { font-size: 17.6px; }
  .home-awards { padding: 56px 6vw; }
  .home-awards .award-laurel { height: 88px; }
}

/* Kicker tracking, sequential award fades and readable community/footer copy. */
.eyebrow { letter-spacing: 2px; text-transform: uppercase; }
.hero-copy > .eyebrow { letter-spacing: 2px; text-transform: uppercase; }
.community-copy p { font-size: 18px; }
.footer-contact h2 a {
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}
.home-awards > .text-link { display: inline-block; }
.badge-enter { animation: badge-fade .3s ease-out var(--badge-delay, 0ms) both; }
@keyframes badge-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .badge-enter { animation: none; }
  .services details { transition-delay: 0ms !important; }
}

/* Keep the oversized Works label inside its own section, below the footer. */
.works-page { position: relative; isolation: isolate; overflow: clip; }
.work-title { color: #3c3c3c; }
.works-body .footer { position: relative; z-index: 1; }
.work-filters { flex-wrap: wrap; }

/* Home section rhythm and video-reactive project lettering. */
.home-awards { border-top: 1px solid var(--line); }
.home-awards > .eyebrow { text-align: left; margin-bottom: 38px; }
.community-grid h3 { margin-bottom: 10px; }
.community-copy p { max-width: 420px; margin-top: 0; }
.project-hit { mix-blend-mode: difference; color: #fff; }

/* Compact proof sections share one muted, CMS-managed heading style. */
.home-page .logo-trusted-by { padding-top: 36px; padding-bottom: 37px; }
.home-page .logo-trusted-by h2 { margin-bottom: 24px; }
.home-page .logo-trusted-by img { height: 52px; }
.home-awards { padding-top: 36px; padding-bottom: 52px; }
.home-awards > .eyebrow { color: var(--muted); margin-bottom: 30px; }
.home-awards > .eyebrow a { color: inherit; text-decoration: none; text-underline-offset: 4px; }
.home-awards > .eyebrow a:hover { color: #fff; text-decoration: underline; opacity: 1; }
.home-awards .award-badges { margin-bottom: 0; }
.home-awards .award-laurel { height: 93px; }
.project-hit { padding-block: 0; }
@media (max-width: 600px) {
  .home-page .logo-trusted-by img { height: 40px; }
  .home-awards .award-laurel { height: 70px; }
}
@media (prefers-reduced-motion: no-preference) {
  .footer-reveal main { position: relative; z-index: 2; background: var(--ink); }
  .footer-reveal .footer { position: sticky; top: var(--footer-top, 0px); bottom: 0; z-index: 0; }
  body { animation: page-enter .2s ease-out; transition: opacity .16s ease; }
  body.page-leaving { opacity: 0; }
  @keyframes page-enter { from { opacity: 0; } to { opacity: 1; } }
}

/* Project detail: reference title row, full-width film, description and credits. */
.project-page main, .project-page #project-content { background: #000; color: #f5f5f3; }
.work-detail-title {
  min-height: 56svh; padding: 150px 3vw 36px; display: grid;
  grid-template-columns: 1fr minmax(0, 1.5fr) auto; gap: 32px; align-items: end;
  font-size: clamp(24px, 2.8vw, 48px); font-weight: 700; line-height: 1.05; letter-spacing: -.04em;
}
.work-detail-title h1 { font-size: inherit; line-height: inherit; letter-spacing: inherit; }
.work-detail-media > img { display: block; width: 100%; max-height: 100svh; object-fit: contain; }
.work-detail-media .video-frame { width: 100%; margin: 0; aspect-ratio: 16 / 9; }
.work-detail-media .content-video { display: block; width: 100%; max-height: 100svh; }
.work-detail-media .video-fallback { display: inline-block; margin: 14px 3vw 0; font-size: 12px; }
.work-detail-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 16vw; padding: 130px 3vw; }
.work-description { max-width: 580px; font-size: clamp(18px, 1.4vw, 24px); line-height: 1.4; }
.work-description p { margin: 0 0 1.5em; white-space: pre-line; }
.work-credits { margin: 0; padding-left: 3vw; font-size: 16px; line-height: 1.3; }
.work-credits > div { margin-bottom: 38px; }
.work-credits dt { color: #888; }
.work-credits dd { margin: 0; white-space: pre-line; }
.project-page .editorial-section { padding: 45px 3vw; }
.project-page .editorial-media.media-grid, .project-page .art-gallery { gap: 3vw; }
@media(max-width: 700px) {
  .work-detail-title { min-height: 42svh; padding: 120px 6vw 28px; grid-template-columns: 1fr auto; gap: 18px; }
  .work-detail-title > span:first-child { grid-column: 1 / -1; font-size: 16px; }
  .work-detail-intro { grid-template-columns: 1fr; gap: 35px; padding: 60px 6vw; }
  .work-credits { padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .work-credits > div { margin: 0; }
  .project-page .editorial-section { padding: 30px 6vw; }
}

/* Next work: quiet, centred image with a coarse-to-clear hover reveal. */
.discover-project { min-height: 90svh; padding: 100px 6vw; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 38px; }
.discover-card { position: relative; display: block; width: min(560px, 78vw); aspect-ratio: 4 / 3; isolation: isolate; overflow: hidden; }
.discover-card > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.discover-mosaic { position: absolute; inset: 0; width: 100%; height: 100%; image-rendering: pixelated; z-index: 1; transition: opacity .45s ease; pointer-events: none; }
.discover-title { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px; text-align: center; color: white; mix-blend-mode: difference; font-size: clamp(23px, 2.5vw, 42px); font-weight: 700; line-height: 1.08; letter-spacing: -.04em; }

a.discover-card:hover { opacity: 1; }
.discover-card:focus-visible { outline: 2px solid white; outline-offset: 6px; }
.discover-card:hover .discover-mosaic, .discover-card:focus-visible .discover-mosaic { opacity: 0; }
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .discover-mosaic { display: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .footer-reveal .footer > * { filter: blur(var(--footer-blur, 0px)); }
  .footer-reveal .footer:focus-within > * { filter: none; }
}

/* The next-work affordance follows the pointer; it is never part of the cover. */
.cursor-dot.discover-pointer { width: 68px; height: 68px; background: transparent; border: 2px solid white; }
.cursor-dot.discover-pointer::before, .cursor-dot.discover-pointer::after { content: ""; position: absolute; background: white; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cursor-dot.discover-pointer::before { width: 28px; height: 2px; }
.cursor-dot.discover-pointer::after { width: 2px; height: 28px; }
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .discover-card, .discover-card * { cursor: none; }
}

.site-menu .menu-bottom { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 20px; }
.site-menu .menu-bottom a { font-size: 14px; font-weight: 400; letter-spacing: 0; }

/* Inset menu panel, with compact sizing for laptop and phone viewports. */
.site-menu {
  inset: 16px 16px auto auto;
  width: min(400px, calc(100vw - 32px));
  height: auto;
  max-height: calc(100dvh - 32px);
  padding: 22px 24px 24px;
}
.site-menu nav { margin: 24px 0; }
.site-menu nav a { font-size: clamp(30px, 5.6dvh, 42px); line-height: 1.1; padding-block: 3px; }
.site-menu .menu-bottom { gap: 8px 12px; }
.site-menu .menu-bottom a { font-size: 13px; }
@media (max-height: 650px) {
  .site-menu { padding: 14px 20px 18px; }
  .site-menu nav { margin: 14px 0; }
  .site-menu nav a { font-size: clamp(24px, 5.4dvh, 34px); padding-block: 2px; }
}

/* Shared header typography and background-reactive lettering. */
.site-header { background: transparent; mix-blend-mode: difference; color: #fff; }
.site-header .wordmark,
.site-header .menu-toggle {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 32px;
}
@media (max-width: 600px) {
  .site-header .wordmark,
  .site-header .menu-toggle { font-size: 21px; }
}

/* Final content refinements: clear card titles and uncropped About portrait. */
.discover-title { mix-blend-mode: normal; color: #fff; text-shadow: 0 2px 16px #0008; }
.logo-highlights img[src*="imdb"] { width: 100px; height: 46px; filter: grayscale(1) brightness(1.65); }
.about-hero { height: 100svh; min-height: 0; background: #101010; }
.about-hero > img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: none; }
.about-hero h1 { transform: translateY(var(--about-name-offset, 0px)); }
.services details[open] .service-content { animation: service-open .35s ease-out; }
@keyframes service-open { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@media(prefers-reduced-motion: reduce) { .services details[open] .service-content { animation: none; } }

.about-hero h1 { inset: auto 3% 3%; text-align: left; }
.about-hero h1 .name-letter { opacity: 0; }
.about-hero h1 .name-letter.is-visible { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .about-hero h1 .name-letter { opacity: 1; } }

/* Career history: a quiet vertical line with scroll-revealed milestones. */
.creative-path { border-top: 1px solid var(--line); }
.creative-path > h2 { font-size: clamp(40px, 6vw, 88px); margin-bottom: 80px; letter-spacing: -.055em; }
.career-timeline { list-style: none; margin: 0; padding: 0 0 0 36px; border-left: 1px solid #ffffff30; }
.career-entry { position: relative; display: grid; grid-template-columns: minmax(180px, 1fr) 2fr; gap: 5vw; padding: 0 0 70px; }
.career-entry:last-child { padding-bottom: 0; }
.career-entry::before { content: ""; position: absolute; left: -42px; top: 9px; width: 11px; height: 11px; border-radius: 50%; background: var(--paper); box-shadow: 0 0 0 6px var(--ink); }
.career-dates { color: var(--muted); font-size: 16px; padding-top: 8px; }
.career-entry h3 { font-size: clamp(25px, 3vw, 44px); line-height: 1.1; letter-spacing: -.04em; margin: 0 0 16px; }
.career-entry p { max-width: 520px; color: var(--muted); font-size: 18px; line-height: 1.5; margin: 0; }
@media(max-width: 650px) {
  .creative-path > h2 { margin-bottom: 48px; }
  .career-timeline { padding-left: 26px; }
  .career-entry { grid-template-columns: 1fr; gap: 14px; padding-bottom: 48px; }
  .career-entry::before { left: -32px; }
  .career-dates { font-size: 14px; }
}

.career-link { margin-top: 48px; }
@media (min-width: 900px) {
  .career-timeline { margin-left: 17%; }
  .career-entry { grid-template-columns: minmax(180px, 23%) 1fr; gap: 3vw; }
  .career-link { margin-left: 17%; }
}
