@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --paper: #f1efe7;
  --paper-deep: #dedfd4;
  --surface: #fbfaf5;
  --ink: #171611;
  --charcoal: #11100c;
  --muted: #68665d;
  --line: rgba(23, 22, 17, 0.18);
  --line-strong: rgba(23, 22, 17, 0.52);
  --red: #c9362b;
  --red-hot: #e3291e;
  --green: #2f5645;
  --blue: #596f7a;
  --sans: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --header: 68px;
  --page-x: clamp(16px, 4vw, 48px);
  --max: 1320px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    linear-gradient(90deg, rgba(23, 22, 17, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, #f7f5ee 48%, var(--paper-deep) 100%);
  background-size: 44px 44px, auto;
  color: var(--ink);
  font-family: var(--sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(rgba(23, 22, 17, 0.28) 0.7px, transparent 0.7px),
    linear-gradient(135deg, rgba(201, 54, 43, 0.08), transparent 38%);
  background-size: 7px 7px, auto;
  mix-blend-mode: multiply;
}

body > * {
  position: relative;
  z-index: 1;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

button {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red-hot);
  outline-offset: 3px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main figure img {
  cursor: zoom-in;
}

main figure:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: calc(var(--header) + 24px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 4px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--red-hot);
  transform-origin: left center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header);
  padding: 14px var(--page-x);
  border-bottom: 1px solid var(--ink);
  background: rgba(241, 239, 231, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 3px;
  width: fit-content;
  line-height: 1;
}

.brand span {
  font-size: 1.34rem;
  font-weight: 800;
}

.brand small,
.topbar nav,
.section-title span,
.concept-body span,
.hero-facts span,
.shot-grid span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
}

.topbar nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 28px);
}

.topbar nav a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.topbar nav a:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}

.topbar nav a.is-active {
  color: var(--red);
  text-decoration-color: var(--red);
}

.print-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.print-button:hover {
  background: var(--ink);
  color: var(--surface);
}

.print-button:active,
.button:active {
  transform: translateY(1px);
}

.print-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100dvh - var(--header));
  max-width: calc(var(--max) + var(--page-x) * 2);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) var(--page-x);
  border-bottom: 1px solid var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  top: clamp(34px, 8vw, 92px);
  right: max(var(--page-x), calc((100vw - var(--max)) / 2));
  width: min(38vw, 520px);
  height: min(58vh, 620px);
  border: 1px solid rgba(201, 54, 43, 0.45);
  background: rgba(201, 54, 43, 0.12);
  transform: translate(24px, -18px);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.hero h1,
.section-title h2,
.concept-body h3 {
  margin: 0;
  font-weight: 800;
  line-height: 0.96;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.3rem, 7.5vw, 8.6rem);
  letter-spacing: -0.035em;
}

.hero-copy > p,
.section-title > p,
.idea {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  font-weight: 650;
  line-height: 1.5;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 820px;
}

.hero-facts article,
.deliverables-grid article,
.direction-list article,
.plan-grid article,
.shot-grid article,
.result-grid article {
  border: 1px solid var(--line-strong);
  background: rgba(251, 250, 245, 0.64);
}

.hero-facts article {
  padding: 12px 14px 12px 16px;
  border: 0;
  border-left: 4px solid var(--red);
  background: rgba(251, 250, 245, 0.48);
}

.hero-facts span,
.section-title span,
.concept-body span,
.shot-grid span {
  color: var(--red);
}

.hero-facts p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.38;
}

.hero-concepts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  border: 1px solid var(--ink);
  background: rgba(251, 250, 245, 0.58);
}

.hero-concepts a {
  display: grid;
  gap: 12px;
  min-height: 92px;
  padding: 16px;
  border-right: 1px solid var(--ink);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-concepts a:last-child {
  border-right: 0;
}

.hero-concepts a:hover {
  background: var(--ink);
  color: var(--surface);
}

.hero-concepts a:active {
  transform: translateY(1px);
}

.hero-concepts b {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-concepts span {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 850;
  line-height: 1.02;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button:hover {
  border-color: var(--red);
  background: rgba(201, 54, 43, 0.09);
}

.button.primary:hover {
  background: #ad2f26;
  color: #fff;
}

.button.subtle {
  color: var(--muted);
}

.hero-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(116px, 16vh);
  gap: 8px;
}

.tile,
.concept figure,
.concept-refs figure,
.contact-sheet figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--surface);
}

.tile img,
.contact-sheet img,
.concept-refs img,
.concept figure img {
  filter: saturate(0.82) contrast(1.02) brightness(0.98);
}

.tile figcaption,
.concept-refs figcaption,
.contact-sheet figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 6px 8px;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.66rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tile-a {
  grid-column: span 4;
  grid-row: span 2;
}

.tile-b {
  grid-column: span 2;
  grid-row: span 2;
}

.tile-c,
.tile-d {
  grid-column: span 3;
  grid-row: span 2;
}

.section {
  padding: clamp(58px, 8vw, 106px) var(--page-x);
  border-bottom: 1px solid var(--ink);
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-title.compact {
  margin-bottom: 28px;
}

.section-title h2 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
}

.section-title p {
  grid-column: 2;
  max-width: 640px;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.deliverables-grid,
.direction-list,
.shot-grid,
.result-grid {
  display: grid;
  gap: 10px;
}

.deliverables-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deliverables-grid article,
.direction-list article,
.shot-grid article,
.result-grid article,
.plan-grid article {
  padding: 18px;
}

.deliverables-grid strong,
.direction-list h3,
.plan-grid h3,
.shot-grid h3,
.result-grid h3 {
  display: block;
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.08;
}

.deliverables-grid p,
.direction-list p,
.plan-grid li,
.shot-grid p,
.result-grid p,
.result-grid li,
.concept-grid li {
  color: var(--muted);
  font-weight: 640;
  line-height: 1.44;
}

.deliverables-grid p,
.direction-list p,
.shot-grid p,
.result-grid p {
  margin: 10px 0 0;
}

.direction-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concept {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(32px, 5vw, 58px) 0;
  border-top: 1px solid var(--ink);
}

body.has-js .concepts .concept[data-concept-panel] {
  display: none;
}

body.has-js .concepts .concept[data-concept-panel].is-active {
  display: grid;
  animation: conceptIn 240ms ease both;
}

@keyframes conceptIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.concept-dock {
  position: sticky;
  top: calc(var(--header) + 10px);
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px;
  border: 1px solid var(--ink);
  background: rgba(241, 239, 231, 0.92);
  backdrop-filter: blur(18px);
}

.concept-tab {
  display: grid;
  gap: 7px;
  min-height: 88px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(251, 250, 245, 0.62);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.concept-tab:hover {
  border-color: var(--red);
  transform: translateY(-1px);
}

.concept-tab:active {
  transform: translateY(1px);
}

.concept-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.concept-tab span {
  color: var(--red-hot);
  font-size: 0.7rem;
  font-weight: 900;
}

.concept-tab strong {
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1;
}

.concept-tab small {
  color: inherit;
  opacity: 0.68;
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.2;
}

.concept:last-child {
  border-bottom: 1px solid var(--ink);
}

.concept.is-art {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--ink);
  background: #171611;
  color: var(--surface);
}

.concept.is-threshold {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #15241f;
  background:
    linear-gradient(135deg, rgba(201, 54, 43, 0.08), transparent 36%),
    linear-gradient(180deg, #243a34 0%, #1b2f31 100%);
  color: var(--surface);
}

.concept > figure {
  position: sticky;
  top: calc(var(--header) + 126px);
  height: min(74dvh, 740px);
  min-height: 430px;
}

.concept-body {
  display: grid;
  gap: 18px;
  align-content: start;
}

.concept-body h3 {
  font-size: clamp(2.4rem, 4.7vw, 5.2rem);
  letter-spacing: -0.028em;
}

.concept-purpose {
  width: fit-content;
  max-width: 640px;
  margin: 0;
  padding: 11px 14px;
  border: 1px solid var(--red);
  background: rgba(201, 54, 43, 0.08);
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 780;
  line-height: 1.34;
}

.concept-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.concept-note div {
  border-left: 3px solid var(--red);
  padding: 12px 14px;
  background: rgba(251, 250, 245, 0.62);
}

.concept-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.concept-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 640;
  line-height: 1.42;
}

.concept-scenes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.concept-scenes article {
  border-top: 1px solid var(--line-strong);
  padding-top: 12px;
}

.concept-scenes span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
}

.concept-scenes h4 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 800;
}

.concept-scenes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 640;
  line-height: 1.42;
}

.palette-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.palette-chip {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid rgba(251, 250, 245, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.concept-body .palette-chip {
  color: var(--surface);
}

.palette-chip.is-white {
  background: #f4f0df;
}

.concept-body .palette-chip.is-white {
  color: #171611;
}

.palette-chip.is-black {
  background: #050504;
}

.palette-chip.is-red {
  background: #e51612;
}

.palette-chip.is-grey {
  background: #77736b;
}

.palette-chip.is-field {
  background: #42533d;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.production-details,
.section-disclosure {
  border: 1px solid var(--ink);
  background: rgba(251, 250, 245, 0.56);
}

.production-details summary,
.section-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
  padding: 0 16px;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.production-details summary::-webkit-details-marker,
.section-disclosure summary::-webkit-details-marker {
  display: none;
}

.production-details summary::after,
.section-disclosure summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
}

.production-details[open] summary,
.section-disclosure[open] summary {
  border-bottom: 1px solid var(--ink);
}

.production-details[open] summary::after,
.section-disclosure[open] summary::after {
  content: "−";
  background: var(--ink);
  color: var(--surface);
}

.production-details .concept-grid,
.section-disclosure .plan-grid {
  padding: 16px;
}

.concept-refs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.concept-refs figure {
  min-height: 150px;
}

.concept-refs figure:first-child {
  grid-column: span 2;
}

.art-refs figure:first-child {
  grid-column: span 3;
  min-height: 230px;
}

.concept.is-art .idea,
.concept.is-art .concept-note p,
.concept.is-art .concept-scenes p,
.concept.is-art .concept-grid li {
  color: rgba(251, 250, 245, 0.72);
}

.concept.is-threshold .idea,
.concept.is-threshold .concept-note p,
.concept.is-threshold .concept-scenes p,
.concept.is-threshold .concept-grid li {
  color: rgba(251, 250, 245, 0.76);
}

.concept.is-art .concept-note div {
  border-left-color: #e51612;
  background: rgba(251, 250, 245, 0.055);
}

.concept.is-threshold .concept-note div {
  border-left-color: #ff574b;
  background: rgba(251, 250, 245, 0.08);
}

.concept.is-art .concept-note strong,
.concept.is-art .concept-scenes h4,
.concept.is-threshold .concept-note strong,
.concept.is-threshold .concept-scenes h4 {
  color: var(--surface);
}

.concept.is-art .concept-grid div,
.concept.is-art .concept-scenes article,
.concept.is-threshold .concept-grid div,
.concept.is-threshold .concept-scenes article {
  border-top-color: rgba(251, 250, 245, 0.34);
}

.concept.is-art .concept-grid h4 {
  color: #ff4c3e;
}

.concept.is-threshold .concept-grid h4 {
  color: #ff7d70;
}

.concept.is-art .concept-purpose,
.concept.is-art .production-details,
.concept.is-threshold .concept-purpose,
.concept.is-threshold .production-details {
  border-color: rgba(251, 250, 245, 0.46);
  background: rgba(251, 250, 245, 0.055);
  color: var(--surface);
}

.concept.is-art .production-details summary,
.concept.is-threshold .production-details summary {
  color: var(--surface);
}

.concept.is-art .production-details summary::after,
.concept.is-threshold .production-details summary::after {
  border-color: rgba(251, 250, 245, 0.46);
}

.concept-grid div {
  border-top: 1px solid var(--line-strong);
  padding-top: 14px;
}

.concept-grid h4 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.concept-grid ul,
.plan-grid ul {
  margin: 0;
  padding-left: 18px;
}

.concept-grid li + li,
.plan-grid li + li {
  margin-top: 8px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.plan-grid article:nth-child(2) {
  background: rgba(47, 86, 69, 0.08);
}

.shot-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  background: rgba(201, 54, 43, 0.06);
}

.result-grid ul {
  margin: 0;
  padding-left: 18px;
}

.result-grid li + li {
  margin-top: 7px;
}

.result-grid a {
  width: fit-content;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-sheet {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.board-controls {
  position: sticky;
  top: calc(var(--header) + 10px);
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 8px;
  border: 1px solid var(--ink);
  background: rgba(241, 239, 231, 0.9);
  backdrop-filter: blur(18px);
}

.filter-group,
.view-switch {
  display: flex;
  gap: 6px;
  overflow-x: auto;
}

.filter-button,
.view-button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(251, 250, 245, 0.58);
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-button:hover,
.view-button:hover {
  border-color: var(--red);
}

.filter-button:active,
.view-button:active {
  transform: translateY(1px);
}

.filter-button.is-active,
.view-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.contact-sheet figure.is-hidden {
  display: none;
}

.contact-sheet.is-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.contact-sheet.is-strip figure,
.contact-sheet.is-strip figure:nth-child(5n + 1),
.contact-sheet.is-strip figure:nth-child(5n + 4) {
  min-height: clamp(420px, 58vw, 760px);
}

.contact-sheet figure {
  min-height: 230px;
}

.contact-sheet figure:nth-child(5n + 1),
.contact-sheet figure:nth-child(5n + 4) {
  min-height: 310px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: calc(var(--max) + var(--page-x) * 2);
  margin: 0 auto;
  padding: 26px var(--page-x);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer p {
  max-width: 720px;
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  height: 100dvh;
  padding: 18px;
  background: rgba(10, 10, 8, 0.94);
  color: var(--surface);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.lightbox-top,
.lightbox-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lightbox-count,
.lightbox-caption {
  color: rgba(251, 250, 245, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lightbox-help {
  color: rgba(251, 250, 245, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
}

.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.lightbox-image {
  width: auto;
  height: auto;
  max-width: min(100%, 1500px);
  max-height: calc(100dvh - 148px);
  object-fit: contain;
  cursor: zoom-out;
}

.lightbox-button {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(251, 250, 245, 0.46);
  border-radius: 0;
  background: rgba(251, 250, 245, 0.04);
  color: var(--surface);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lightbox-button:hover {
  border-color: var(--surface);
  background: rgba(251, 250, 245, 0.14);
}

.lightbox-button:active {
  transform: translateY(1px);
}

.lightbox-close {
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  padding: 0;
  font-size: 1.7rem;
}

.lightbox-arrow:active {
  transform: translateY(calc(-50% + 1px));
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .section-title,
  .concept {
    grid-template-columns: 1fr;
  }

  .hero::before {
    width: min(70vw, 520px);
    height: 420px;
    opacity: 0.75;
  }

  .concept > figure {
    position: relative;
    top: auto;
    height: auto;
  }

  .section-title p {
    grid-column: 1;
  }

  .deliverables-grid,
  .shot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .direction-list,
  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-refs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .concept-refs figure:first-child {
    grid-column: span 1;
  }

  .concept-scenes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-sheet {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-sheet.is-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 92px;
    --page-x: 14px;
  }

  .topbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand span {
    font-size: 1.08rem;
  }

  .brand small,
  .topbar nav,
  .section-title span,
  .concept-body span,
  .hero-facts span,
  .shot-grid span {
    font-size: 0.64rem;
  }

  .topbar nav {
    gap: 12px;
  }

  .print-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.2vw, 3rem);
    line-height: 1;
  }

  .hero-copy > p,
  .section-title > p,
  .idea {
    font-size: 1rem;
  }

  .hero-facts,
  .hero-actions {
    display: grid;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-board,
  .hero-concepts,
  .section-title,
  .deliverables-grid,
  .direction-list,
  .concept-dock,
  .concept,
  .concept-body,
  .concept-note,
  .concept-scenes,
  .palette-strip,
  .concept-refs,
  .concept-grid,
  .plan-grid,
  .shot-grid,
  .result-grid,
  .board-controls,
  .contact-sheet {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 176px;
    width: 100%;
    min-width: 0;
  }

  .hero-concepts {
    grid-template-columns: 1fr;
  }

  .hero-concepts a {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .hero-concepts a:last-child {
    border-bottom: 0;
  }

  .tile-a,
  .tile-b,
  .tile-c,
  .tile-d {
    grid-column: span 1;
    grid-row: span 1;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .section-title {
    gap: 12px;
    margin-bottom: 28px;
  }

  .section-title h2,
  .concept-body h3 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .deliverables-grid,
  .direction-list,
  .concept-note,
  .concept-scenes,
  .concept-refs,
  .concept-grid,
  .plan-grid,
  .shot-grid,
  .result-grid,
  .contact-sheet {
    grid-template-columns: 1fr;
  }

  .concept-dock {
    top: calc(var(--header) + 6px);
    grid-template-columns: repeat(3, minmax(168px, 1fr));
    overflow-x: auto;
    margin-left: calc(var(--page-x) * -1);
    margin-right: calc(var(--page-x) * -1);
    border-left: 0;
    border-right: 0;
  }

  .concept-tab {
    min-height: 76px;
  }

  .concept {
    gap: 18px;
    padding: 34px 0;
  }

  .concept.is-art {
    padding: 24px 12px;
  }

  .palette-strip {
    grid-template-columns: 1fr;
  }

  .art-refs figure:first-child {
    grid-column: span 1;
  }

  .concept figure,
  .concept-refs figure,
  .contact-sheet figure {
    min-height: 280px;
  }

  .production-details .concept-grid,
  .section-disclosure .plan-grid {
    padding: 12px;
  }

  .board-controls {
    display: grid;
    align-items: stretch;
  }

  .filter-group,
  .view-switch {
    width: 100%;
  }

  .contact-sheet.is-strip figure,
  .contact-sheet.is-strip figure:nth-child(5n + 1),
  .contact-sheet.is-strip figure:nth-child(5n + 4) {
    min-height: 360px;
  }

  .footer {
    display: block;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .footer p + p {
    margin-top: 10px;
  }

  .lightbox {
    padding: 12px;
    gap: 10px;
  }

  .lightbox-top,
  .lightbox-bottom {
    gap: 10px;
  }

  .lightbox-caption {
    font-size: 0.68rem;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: calc(100dvh - 132px);
  }

  .lightbox-arrow {
    top: auto;
    bottom: 0;
    transform: none;
    width: 48px;
    height: 48px;
  }

  .lightbox-arrow:active {
    transform: translateY(1px);
  }
}

@media print {
  .topbar,
  .hero-actions,
  .lightbox,
  .footer {
    display: none;
  }

  body {
    background: #fff;
  }
}
