:root {
  color-scheme: dark;
  --ink: #050505;
  --panel: #0a0a0a;
  --paper: #f3f4ef;
  --muted: #a6a9a5;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #69f3ea;
  --shell: min(92vw, 1500px);
  --ease: cubic-bezier(0.2, 0.72, 0.25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.is-menu-open { overflow: hidden; }
button, a { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem 1rem;
}
.skip-link:focus { transform: none; }
.section-shell { width: var(--shell); margin-inline: auto; }
.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 5rem;
  padding: 1.1rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(5, 5, 5, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: baseline; gap: 0.5rem; font-weight: 700; letter-spacing: -0.04em; }
.brand-mark { font-size: 1.22rem; }
.brand-name { color: var(--accent); font-size: 0.9rem; font-weight: 550; letter-spacing: 0.02em; }
.site-header .brand {
  align-items: center;
  gap: 0.62rem;
}
.brand-emblem {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.38));
}
.site-header .brand-name {
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav { display: flex; gap: clamp(1.5rem, 3vw, 3.5rem); font-size: 0.9rem; }
.nav a { position: relative; color: rgba(255,255,255,0.84); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 1px;
  background: var(--accent);
  transition: right 250ms var(--ease);
}
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: #101010; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 50% 54%; animation: hero-in 1.4s var(--ease) both; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.18) 48%, rgba(0,0,0,0.05) 72%),
    linear-gradient(0deg, rgba(0,0,0,0.56) 0%, transparent 44%);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 4vw;
  bottom: clamp(3rem, 9vh, 7.5rem);
  max-width: 760px;
  animation: copy-in 1s 250ms var(--ease) both;
}
.hero-copy .eyebrow { color: rgba(255,255,255,0.72); margin-bottom: 1.2rem; }
.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 10.5rem);
  font-weight: 560;
  letter-spacing: -0.075em;
  line-height: 0.79;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255,255,255,0.65);
  font-size: 0.95rem;
}
.hero-link span { color: var(--accent); }
.hero-index { position: absolute; z-index: 2; right: 4vw; bottom: 2rem; margin: 0; font-size: 0.75rem; letter-spacing: 0.14em; }

.statement { padding: clamp(5rem, 12vw, 12rem) 0; }
.statement p {
  max-width: 1170px;
  margin: 0;
  font-size: clamp(2.15rem, 5.6vw, 6.2rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
  font-weight: 460;
}

.portfolio { padding-bottom: clamp(6rem, 12vw, 11rem); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.section-heading .eyebrow { align-self: start; padding-top: 0.55rem; }
.section-heading h2, .work-heading h2, .about h2, .contact h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  font-weight: 520;
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.section-heading > p:last-child { margin: 0; color: var(--muted); max-width: 34ch; }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.category-card {
  position: relative;
  min-height: min(54vw, 620px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: pointer;
  text-align: left;
}
.category-card--wide { grid-column: 1 / -1; min-height: min(54vw, 720px); }
.category-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 900ms var(--ease), filter 500ms ease; }
.category-card--wide img { object-position: center 56%; }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.72), transparent 55%); }
.category-label { position: absolute; left: clamp(1.25rem, 3vw, 3rem); right: 1.5rem; bottom: clamp(1.2rem, 3vw, 2.7rem); font-size: clamp(1.7rem, 3.1vw, 3.8rem); letter-spacing: -0.04em; }
.category-label small { margin-right: 0.7rem; color: var(--accent); font-size: 0.75rem; letter-spacing: 0.1em; vertical-align: middle; }
.category-card:hover img, .category-card:focus-visible img { transform: scale(1.035); filter: brightness(1.08); }
.category-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.work { padding-bottom: clamp(7rem, 13vw, 13rem); }
.work-heading { border-top: 1px solid var(--line); padding-top: 2rem; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.work-heading .eyebrow { margin-bottom: 0.9rem; }
.work-count { margin: 0 0 0.5rem; color: var(--muted); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.filters {
  position: sticky;
  z-index: 15;
  top: 5rem;
  margin: 2.5rem 0 1.4rem;
  padding: 0.9rem 0;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filter {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 0.62rem 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
  transition: 200ms ease;
}
.filter:hover, .filter:focus-visible { color: var(--paper); border-color: rgba(255,255,255,0.4); }
.filter.is-active { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.gallery { columns: 3 320px; column-gap: 0.72rem; min-height: 20rem; }
.gallery-item { position: relative; display: block; width: 100%; margin: 0 0 0.72rem; padding: 0; border: 0; background: #111; cursor: zoom-in; break-inside: avoid; overflow: hidden; }
.gallery-item img { width: 100%; height: auto; transition: transform 650ms var(--ease), opacity 350ms ease; }
.gallery-item::after { content: "View"; position: absolute; right: 0.85rem; bottom: 0.75rem; padding: 0.32rem 0.55rem; background: rgba(0,0,0,0.72); color: white; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0; transform: translateY(0.5rem); transition: 220ms ease; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: none; }
.gallery-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.load-message { color: var(--muted); }

.about { padding-bottom: clamp(7rem, 14vw, 14rem); }
.about-rule { height: 1px; background: var(--line); margin-bottom: 2rem; }
.about-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(3rem, 10vw, 10rem); }
.about .eyebrow { margin-bottom: 1rem; }
.about-copy { padding-top: clamp(1rem, 5vw, 5rem); }
.about-copy > p:first-child { margin: 0; font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.45; letter-spacing: -0.025em; }
.selected-clients { margin: 2rem 0 0; color: var(--muted); }

.contact { position: relative; min-height: 76svh; display: grid; align-items: center; overflow: hidden; background: #111; }
.contact-bg { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(5,5,5,0.98) 5%, rgba(5,5,5,0.68) 52%, rgba(105,243,234,0.13) 100%); }
.contact-bg::after { content: ""; position: absolute; width: 46vw; aspect-ratio: 1; right: -14vw; bottom: -24vw; border: 1px solid rgba(105,243,234,0.28); border-radius: 50%; box-shadow: 0 0 120px rgba(105,243,234,0.08); }
.contact-inner { position: relative; z-index: 1; }
.contact .eyebrow { margin-bottom: 1.5rem; }
.contact h2 { max-width: 1000px; font-size: clamp(3.2rem, 7.2vw, 8rem); }
.contact-inner > p:not(.eyebrow) { margin: 2rem 0 0; color: var(--muted); }
.contact-pending { display: inline-block; margin-top: 2.2rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--accent); color: var(--paper); }

.footer { min-height: 9rem; padding: 2rem 0; display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; color: var(--muted); font-size: 0.8rem; }
.footer .brand { color: var(--paper); }
.footer p { margin: 0; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(3,3,3,0.97);
  color: white;
}
.lightbox::backdrop { background: #000; }
.lightbox[open] { display: grid; grid-template-columns: 5rem 1fr 5rem; align-items: center; }
.lightbox figure { margin: 0; min-width: 0; height: 100%; display: grid; place-items: center; align-content: center; gap: 0.8rem; }
.lightbox img { max-width: min(86vw, 1800px); max-height: 87svh; object-fit: contain; }
.lightbox figcaption { min-height: 1.3rem; color: var(--muted); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.lightbox-close, .lightbox-nav { border: 0; background: transparent; cursor: pointer; }
.lightbox-close { position: fixed; z-index: 2; right: 1.3rem; top: 1rem; font-size: 2.2rem; font-weight: 200; }
.lightbox-nav { height: 100%; font-size: 1.6rem; color: rgba(255,255,255,0.72); }
.lightbox-nav:hover, .lightbox-nav:focus-visible, .lightbox-close:hover, .lightbox-close:focus-visible { color: var(--accent); }

@keyframes hero-in { from { transform: scale(1.04); opacity: 0.3; } to { transform: scale(1); opacity: 1; } }
@keyframes copy-in { from { transform: translateY(2rem); opacity: 0; } to { transform: none; opacity: 1; } }

@media (max-width: 900px) {
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .eyebrow { padding: 0; }
  .section-heading > p:last-child { max-width: 46ch; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-copy { max-width: 620px; padding: 0; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer > p:nth-child(2) { display: none; }
  .footer > p:last-child { text-align: right; }
}

@media (max-width: 700px) {
  :root { --shell: 92vw; }
  .site-header { min-height: 4.5rem; }
  .brand-emblem { width: 2.35rem; height: 2.35rem; }
  .menu-toggle { display: grid; gap: 0.38rem; width: 2.8rem; height: 2.8rem; place-content: center; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 1.4rem; height: 1px; background: white; transition: 250ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(0.2rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-0.2rem) rotate(-45deg); }
  .nav { position: fixed; inset: 0; z-index: -1; padding: 8rem 4vw 4rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; background: rgba(5,5,5,0.98); transform: translateY(-105%); transition: transform 450ms var(--ease); }
  .nav.is-open { transform: none; }
  .nav a { font-size: clamp(2.8rem, 13vw, 5rem); letter-spacing: -0.06em; line-height: 1; }
  .hero-media img { object-position: 50% 52%; }
  .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 72%); }
  .hero-copy { left: 4vw; right: 4vw; bottom: 4.5rem; }
  .hero h1 { font-size: clamp(4.4rem, 22vw, 7rem); }
  .hero-index { display: none; }
  .statement { padding-block: 6rem; }
  .statement p { font-size: clamp(2.35rem, 11vw, 4rem); }
  .category-grid { grid-template-columns: 1fr; }
  .category-card, .category-card--wide { grid-column: auto; min-height: 120vw; }
  .category-card--wide:nth-child(1), .category-card--wide:nth-child(4) { min-height: 78vw; }
  .category-card--wide img { object-position: center; }
  .work-heading { align-items: start; }
  .filters { top: 4.5rem; margin-top: 2rem; }
  .gallery { columns: 2 150px; column-gap: 0.45rem; }
  .gallery-item { margin-bottom: 0.45rem; }
  .lightbox[open] { grid-template-columns: 3rem 1fr 3rem; }
  .lightbox img { max-width: 84vw; max-height: 80svh; }
  .contact { min-height: 82svh; }
  .contact h2 { font-size: clamp(3.2rem, 16vw, 5.8rem); }
}

/* Final-draft hero systems keep all display copy physically separate from the cars. */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
}
.hero-visual .hero-media,
.hero-visual .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-visual .hero-media img { object-fit: cover; }
.hero-visual .hero-index { color: rgba(255, 255, 255, 0.74); }
.category-card[data-category="events"] img { object-position: 50% 54%; }
.category-card[data-category="vertical"] img { object-position: 50% 52%; }

.draft-editorial .site-header {
  background: rgba(5, 5, 5, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.hero--editorial {
  min-height: 100svh;
  padding-top: 5rem;
  display: grid;
  grid-template-columns: minmax(360px, 37vw) 1fr;
  overflow: hidden;
}
.hero--editorial .hero-visual { grid-column: 2; grid-row: 1; min-width: 0; }
.hero--editorial .hero-media img { object-position: 50% 51%; }
.hero--editorial .hero-copy {
  position: relative;
  inset: auto;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  max-width: none;
  padding: clamp(3rem, 6vw, 7rem) 4vw clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #080808;
}
.hero--editorial .hero-copy .eyebrow,
.hero--cinematic .hero-copy .eyebrow,
.hero--gallery .hero-copy .eyebrow { color: var(--muted); }
.hero--editorial h1 {
  margin-top: 1.25rem;
  font-size: clamp(4rem, 7.1vw, 8.2rem);
  line-height: 0.84;
}
.hero--editorial .hero-link { margin-top: 2.8rem; }

.draft-cinematic .site-header,
.draft-gallery .site-header {
  background: rgba(5, 5, 5, 0.68);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}
.hero--cinematic {
  min-height: auto;
  padding-top: 5rem;
  overflow: visible;
  background: #050505;
}
.hero--cinematic .hero-visual {
  width: 100%;
  aspect-ratio: 2.2 / 1;
  min-height: 500px;
  max-height: calc(100svh - 5rem);
}
.hero--cinematic .hero-media img { object-position: 50% 58%; }
.hero--cinematic .hero-copy {
  position: relative;
  inset: auto;
  width: var(--shell);
  max-width: none;
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(3.5rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) minmax(420px, 2fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 5rem);
}
.hero--cinematic h1 {
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.8;
}
.hero--cinematic .hero-link { margin: 0 0 0.5rem; white-space: nowrap; }
.hero--cinematic .hero-index {
  position: absolute;
  right: 4vw;
  bottom: 1.4rem;
}

.hero--gallery {
  min-height: auto;
  padding-top: 5rem;
  overflow: visible;
  background: #050505;
}
.hero--gallery .hero-visual {
  width: 100%;
  height: min(66.67vw, calc(100svh - 5rem));
  min-height: 520px;
}
.hero--gallery .hero-media img { object-position: 50% 52%; }
.hero--gallery .hero-copy {
  position: relative;
  inset: auto;
  width: var(--shell);
  max-width: none;
  margin-inline: auto;
  padding: clamp(2.7rem, 6vw, 6rem) 0 clamp(3.5rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.hero--gallery .hero-copy .eyebrow { grid-column: 1 / -1; }
.hero--gallery h1 {
  font-size: clamp(4.4rem, 10vw, 11rem);
  line-height: 0.79;
}
.hero--gallery .hero-link { margin: 0 0 0.7rem; white-space: nowrap; }
.hero--gallery .hero-index { right: 4vw; bottom: 1.4rem; }
.draft-gallery .statement { padding-top: clamp(3rem, 7vw, 7rem); }

@media (max-width: 900px) {
  .hero--editorial {
    min-height: auto;
    padding-top: 5rem;
    grid-template-columns: 1fr;
  }
  .hero--editorial .hero-visual {
    grid-column: 1;
    grid-row: 1;
    height: 62svh;
    min-height: 460px;
  }
  .hero--editorial .hero-copy {
    grid-column: 1;
    grid-row: 2;
    min-height: 44svh;
    padding: 4rem 4vw;
  }
  .hero--editorial h1 { font-size: clamp(4rem, 14vw, 7.5rem); }
  .hero--cinematic .hero-copy {
    grid-template-columns: 1fr auto;
  }
  .hero--cinematic .hero-copy .eyebrow { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .hero--editorial { padding-top: 4.5rem; }
  .hero--editorial .hero-visual { height: 70svh; min-height: 480px; }
  .hero--editorial .hero-media img { object-position: 50% 53%; }
  .hero--editorial .hero-copy { min-height: auto; padding: 3.5rem 4vw 4.5rem; }
  .hero--editorial h1 { margin-top: 1rem; font-size: clamp(4rem, 20vw, 6.6rem); }

  .hero--cinematic { padding-top: 4.5rem; }
  .hero--cinematic .hero-visual {
    min-height: 0;
    max-height: none;
    height: min(76svh, 125vw);
    aspect-ratio: 4 / 5;
  }
  .hero--cinematic .hero-media img { object-position: 50% 56%; }
  .hero--cinematic .hero-copy {
    padding: 3.5rem 0 4.5rem;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .hero--cinematic h1 { font-size: clamp(4.15rem, 21vw, 6.8rem); }
  .hero--cinematic .hero-link { margin-top: 1rem; justify-self: start; }
  .hero--cinematic .hero-index { display: none; }

  .hero--gallery { padding-top: 4.5rem; }
  .hero--gallery .hero-visual { height: min(76svh, 125vw); min-height: 0; aspect-ratio: 4 / 5; }
  .hero--gallery .hero-media img { object-position: 50% 56%; }
  .hero--gallery .hero-copy {
    padding: 3.2rem 0 4.5rem;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .hero--gallery h1 { font-size: clamp(4.1rem, 21vw, 6.8rem); }
  .hero--gallery .hero-link { margin-top: 1rem; justify-self: start; }
  .hero--gallery .hero-index { display: none; }
}


/* 2026 private-review refinement: cinematic reveal, restrained scroll motion, and contact links. */
body { overflow-x: clip; }
.hero h1 span { display: block; }
.hero--editorial .hero-copy,
.hero--cinematic .hero-copy { animation: none; }
.hero--editorial .hero-copy > *,
.hero--cinematic .hero-copy > * {
  opacity: 0;
  filter: blur(7px);
  animation: hero-copy-drop 780ms var(--ease) both;
}
.hero--editorial .hero-copy > :nth-child(1),
.hero--cinematic .hero-copy > :nth-child(1) { animation-delay: 920ms; }
.hero--editorial .hero-copy > :nth-child(2),
.hero--cinematic .hero-copy > :nth-child(2) { animation-delay: 1.06s; }
.hero--editorial .hero-copy > :nth-child(3),
.hero--cinematic .hero-copy > :nth-child(3) { animation-delay: 1.2s; }
.hero--editorial .hero-media img,
.hero--cinematic .hero-media img { animation: hero-photo-focus 1.15s var(--ease) both; }
.hero--editorial h1 {
  font-size: clamp(2.9rem, 4.6vw, 5.5rem);
  line-height: 0.88;
}
.hero--editorial h1 span + span { margin-top: 0.12em; }

.hero--cinematic {
  min-height: 100svh;
  padding-top: 5rem;
  overflow: hidden;
  background: #050505;
}
.hero--cinematic .hero-visual {
  z-index: 1;
  width: 100%;
  height: calc(100svh - 5rem);
  min-height: 620px;
  max-height: none;
  aspect-ratio: auto;
}
.hero--cinematic .hero-media img { object-position: 50% 58%; }
.hero--cinematic .hero-copy {
  position: absolute;
  z-index: 3;
  inset: clamp(7rem, 14vh, 8.5rem) auto auto 4vw;
  isolation: isolate;
  width: min(54vw, 680px);
  max-width: none;
  margin: 0;
  padding: 1.8rem 2.5rem 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: radial-gradient(ellipse at 8% 48%, rgba(2, 2, 2, 0.72) 0%, rgba(2, 2, 2, 0.35) 46%, transparent 76%);
}
.hero--cinematic .hero-copy .eyebrow { color: rgba(255, 255, 255, 0.8); }
.hero--cinematic h1 {
  margin-top: 1.05rem;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.86;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.72);
}
.hero--cinematic h1 span { white-space: nowrap; }
.hero--cinematic .hero-link {
  margin: 1.65rem 0 0;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}
.hero--cinematic .hero-index { z-index: 3; }

.category-card[data-category="vertical"] {
  min-height: 0;
  aspect-ratio: 1467 / 1250;
  align-self: start;
  background: #070707;
}
.category-card[data-category="vertical"] img { object-position: 50% 50%; }
.category-card[data-category="vertical"] .category-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.12) 36%, transparent 62%);
}
.category-card[data-category="vertical"] .category-label {
  top: clamp(1.2rem, 3vw, 2.7rem);
  bottom: auto;
}

.is-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(2.6rem);
  transition: opacity 820ms var(--ease), transform 820ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.is-enhanced [data-reveal].is-revealed { opacity: 1; transform: none; }
.category-card[data-reveal]::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 800ms 260ms var(--ease);
}
.category-card[data-reveal].is-revealed::before { transform: scaleY(1); }

.contact-links {
  width: min(100%, 920px);
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
}
.contact-link {
  min-width: 0;
  padding: 1.15rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, padding 320ms var(--ease), border-color 220ms ease;
}
.contact-link > span:first-child {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-link strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 520;
}
.contact-link > span:last-child { color: var(--accent); transition: transform 320ms var(--ease); }
.contact-link:hover,
.contact-link:focus-visible { color: var(--accent); padding-left: 0.45rem; border-color: rgba(105, 243, 234, 0.56); }
.contact-link:hover > span:last-child,
.contact-link:focus-visible > span:last-child { transform: translate(0.22rem, -0.22rem); }
.lightbox { touch-action: pan-y; }

.footer {
  min-height: 0;
  padding: 3rem 0 3.5rem;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
}
.footer-intro p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}
.footer-legal {
  max-width: 960px;
}
.footer-copyright {
  margin: 0;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 520;
  letter-spacing: 0.01em;
}
.footer-notice {
  max-width: 105ch;
  margin: 0.72rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}
.footer-notice a {
  color: var(--paper);
  border-bottom: 1px solid rgba(105, 243, 234, 0.52);
}
.footer-notice a:hover,
.footer-notice a:focus-visible { color: var(--accent); }

@keyframes hero-copy-drop {
  from { opacity: 0; filter: blur(7px); transform: translateY(-2.8rem); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
@keyframes hero-photo-focus {
  from { opacity: 0.45; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 900px) {
  .hero--editorial h1 { font-size: clamp(3.45rem, 10vw, 5.5rem); }
  .hero--cinematic {
    min-height: auto;
    padding-top: 5rem;
  }
  .hero--cinematic .hero-visual {
    height: min(calc(100svh - 5rem), 125vw);
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
  }
  .hero--cinematic .hero-copy {
    position: relative;
    inset: auto;
    width: var(--shell);
    margin-inline: auto;
    padding: 3rem 0 4.5rem;
    display: flex;
    background: none;
  }
  .hero--cinematic h1 { font-size: clamp(3.35rem, 8vw, 5rem); }
}

@media (max-width: 700px) {
  .site-header {
    height: calc(4.75rem + env(safe-area-inset-top));
    min-height: 0;
    padding-top: env(safe-area-inset-top);
    padding-right: max(4vw, env(safe-area-inset-right));
    padding-bottom: 0;
    padding-left: max(4vw, env(safe-area-inset-left));
    overflow: visible;
    background: rgba(5, 5, 5, 0.96);
  }
  .site-header .brand,
  .menu-toggle {
    position: relative;
    z-index: 3;
    line-height: 1;
  }
  .site-header.is-solid {
    background: rgba(5, 5, 5, 0.96);
    border-color: var(--line);
  }
  .nav {
    z-index: 2;
    padding: calc(7.5rem + env(safe-area-inset-top)) 6vw 4rem;
    background: #050505;
    backdrop-filter: none;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 280ms var(--ease), visibility 0s linear 280ms;
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 280ms var(--ease);
  }
  .nav a {
    display: block;
    padding-block: 0.28rem;
  }
  body.is-menu-open .site-header {
    background: #050505;
    border-color: var(--line);
    backdrop-filter: none;
  }
  .hero--editorial h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .hero--cinematic { padding-top: calc(4.75rem + env(safe-area-inset-top)); }
  .hero--cinematic .hero-visual {
    height: min(calc(100svh - 4.75rem - env(safe-area-inset-top)), 125vw);
    aspect-ratio: 4 / 5;
  }
  .hero--cinematic .hero-copy {
    inset: auto;
    width: var(--shell);
    padding: 2.6rem 0 4.25rem;
  }
  .hero--cinematic .hero-copy .eyebrow { margin-bottom: 0; font-size: 0.68rem; }
  .hero--cinematic h1 { margin-top: 0.8rem; font-size: clamp(2.55rem, 11.3vw, 3.6rem); line-height: 0.89; }
  .hero--cinematic .hero-link { margin-top: 1.05rem; font-size: 0.86rem; }
  .contact-links { grid-template-columns: 1fr; }
  .contact-link { gap: 0.75rem; }
  .filters { top: calc(4.75rem + env(safe-area-inset-top)); }
  .footer {
    padding: 2.5rem 0 3rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer > p:last-child { text-align: left; }
  .footer-notice { font-size: 0.76rem; line-height: 1.62; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero--editorial .hero-copy > *, .hero--cinematic .hero-copy > *, .is-enhanced [data-reveal] { opacity: 1 !important; filter: none !important; transform: none !important; }
}
