:root {
  --bg: #050505;
  --panel: #111214;
  --panel-2: #18191b;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.32);
  --text: #f4f1ea;
  --muted: #a7a29a;
  --subtle: #6f6a63;
  --accent: #d4b06a;
  --accent-2: #c65d44;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Noto Sans KR", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.28;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 78%);
  z-index: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.brand-word {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 12px;
  font-weight: 650;
  color: var(--muted);
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.page {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: clamp(30px, 5vw, 58px);
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 48px) 28px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0 35%;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,176,106,0.08), transparent 28%),
    linear-gradient(90deg, rgba(5,5,5,0.98), rgba(5,5,5,0.78) 40%, rgba(5,5,5,0.2));
  opacity: 0.92;
  z-index: -1;
}

.hero-identity {
  width: min(100%, 560px);
  justify-self: center;
  align-self: center;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-bottom: 0;
}

.hero-logo {
  width: min(292px, 54vw);
  margin-bottom: clamp(20px, 2.7vw, 30px);
  mix-blend-mode: screen;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-role {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-contact {
  margin: 22px 0 0;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.7;
}

.hero-title {
  margin: 0;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 620;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 20px);
}

.hero-panel {
  align-self: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20,21,23,0.78), rgba(10,10,10,0.58));
  padding: clamp(22px, 3vw, 34px);
  margin-bottom: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-row:first-child {
  padding-top: 0;
}

.info-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.label {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.value {
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.category-button {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 19, 21, 0.92), rgba(10, 10, 10, 0.86));
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.category-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(212,176,106,0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 12px);
  background-position: center;
  opacity: 0.2;
  transition: opacity 180ms ease, transform 180ms ease;
}

.category-button::after {
  content: attr(data-title);
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: calc(100% - 36px);
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.08);
  font-size: clamp(20px, 2.25vw, 31px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.category-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.category-copy strong {
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 180ms ease, letter-spacing 180ms ease, transform 180ms ease;
}

.category-copy small {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.45;
}

.category-button span:last-child {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.category-button:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(25, 24, 21, 0.94), rgba(12, 12, 12, 0.9));
}

.category-button:hover::before {
  opacity: 0.34;
  transform: translateX(8px);
}

.category-button:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.category-button:hover .category-copy strong {
  color: #fff;
  letter-spacing: 0.14em;
  transform: translateX(2px);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 82px) clamp(18px, 4vw, 0);
}

.page-title {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.page-title--simple {
  grid-template-columns: 1fr;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.04;
  text-transform: uppercase;
}

.page-title p,
.section-note {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
}

.work-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.film-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.film-index-card {
  display: grid;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21,22,24,0.9), rgba(10,10,10,0.92));
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.film-index-card:hover,
.film-index-card:focus-visible {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(26,27,29,0.96), rgba(12,12,12,0.96));
  transform: translateY(-3px);
}

.film-index-thumb {
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.film-index-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.film-index-thumb--letterbox img {
  object-fit: contain;
}

.film-index-thumb--empty {
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(135deg, rgba(212,176,106,0.08), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 28px),
    rgba(8,8,8,0.92);
  color: var(--subtle);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.film-index-card:hover .film-index-thumb img,
.film-index-card:focus-visible .film-index-thumb img {
  filter: brightness(1.04);
  transform: scale(1.025);
}

.film-index-info {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.film-index-info h2 {
  margin: 0;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.12;
}

.film-index-info span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.detail-back {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-back:hover,
.detail-back:focus-visible {
  color: var(--accent);
}

.film-card,
.video-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21,22,24,0.9), rgba(10,10,10,0.92));
}

.film-card {
  min-height: 480px;
}

.film-card--title-room {
  grid-template-columns: minmax(330px, 0.4fr) minmax(0, 1fr);
}

.work-meta {
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.work-role {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.work-meta h2 {
  margin: 22px 0 26px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}

.work-title--single-line {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.18;
  word-break: keep-all;
}

.meta-lines {
  display: grid;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.gear-list {
  display: grid;
  gap: 15px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.gear-group {
  display: grid;
  gap: 7px;
}

.gear-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gear-group p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.festival-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--accent);
  font-size: 13px;
  line-height: 1.65;
}

.festival-list p {
  margin: 0;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

.channel-link img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--panel-2);
}

.channel-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.channel-link:hover,
.channel-link:focus-visible {
  color: var(--accent);
}

.meta-notes {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.description {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.work-visuals {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.highlight-frame {
  min-height: 260px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.92);
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.highlight-frame--video {
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.highlight-frame--video.is-ready::after {
  opacity: 0;
}

.highlight-frame--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.highlight-frame--video.is-active .preview-hint,
.highlight-frame--video:hover .preview-hint,
.highlight-frame--video:focus-within .preview-hint {
  opacity: 0;
  transform: translateY(8px);
}

.highlight-frame--video.needs-tap .preview-hint {
  opacity: 1;
  transform: none;
}

.preview-hint {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.72);
  color: var(--text);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.highlight-frame--video video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.highlight-frame--video video.portfolio-video--contain {
  object-fit: contain;
  background: #000;
}

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

.still-grid img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  background: var(--panel);
  cursor: zoom-in;
  transition: transform 180ms ease, filter 180ms ease;
}

.still-grid img:hover {
  transform: scale(1.01);
  filter: brightness(1.03);
}

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

.still-placeholder {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.video-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.video-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.video-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(26,27,29,0.96), rgba(12,12,12,0.96));
  transform: translateY(-3px);
}

.video-card .work-meta {
  order: 2;
  padding: 18px;
  border-right: 0;
  border-bottom: 0;
}

.video-card .work-meta h2 {
  margin: 14px 0 14px;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.18;
}

.video-card .work-role {
  display: inline-block;
  margin-right: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.video-card .meta-lines {
  gap: 6px;
  color: var(--subtle);
  font-size: 12px;
}

.video-card .channel-link {
  margin: 0 0 14px;
  font-size: 12px;
}

.video-card .channel-link img {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.embed {
  order: 1;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.youtube-embed {
  position: relative;
}

.youtube-play {
  all: unset;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #000;
}

.youtube-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
  transition: filter 180ms ease, transform 180ms ease;
}

.youtube-play:hover img,
.youtube-play:focus-visible img,
.video-card:hover .youtube-play img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.018);
}

.play-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.72);
  color: var(--text);
  font-size: 25px;
  line-height: 1;
  transform: translate(-50%, -50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.youtube-play:hover .play-symbol,
.youtube-play:focus-visible .play-symbol {
  border-color: rgba(212, 176, 106, 0.8);
  background: rgba(5, 5, 5, 0.86);
  transform: translate(-50%, -50%) scale(1.04);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.about-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21,22,24,0.88), rgba(10,10,10,0.9));
  padding: clamp(24px, 3vw, 38px);
}

.about-panel--intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(30px, 4vw, 52px);
}

.about-panel--list {
  min-height: 260px;
}

.about-panel h2 {
  margin: 0 0 22px;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.08;
}

.about-panel--intro h2 {
  margin-bottom: 0;
}

.about-panel p,
.about-panel li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-panel--intro p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.about-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.equipment-groups {
  display: grid;
  gap: 18px;
}

.equipment-group h3 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.equipment-group ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.equipment-group li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  margin-top: 34px;
}

.contact-links {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px 24px;
  align-content: start;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21,22,24,0.88), rgba(10,10,10,0.9));
  padding: clamp(24px, 3vw, 38px);
}

.contact-links a,
.contact-links span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.contact-links a:hover {
  color: var(--accent);
}

.contact-stack {
  display: grid;
  gap: 7px;
}

.site-footer {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: clamp(36px, 6vw, 72px) auto 0;
  padding: 44px clamp(18px, 4vw, 0) 62px;
  color: var(--subtle);
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .page-title,
  .about-grid,
  .about-panel--intro,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about-panel--intro h2 {
    margin-bottom: 20px;
  }

  .hero::before {
    inset: 72px 0 0 0;
    opacity: 0.92;
  }

  .hero-actions,
  .video-list,
  .film-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .film-card {
    grid-template-columns: 1fr;
  }

  .work-meta {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

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

@media (max-width: 640px) {
  .site-header {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    gap: 14px;
    padding: 16px 18px 14px;
  }

  .brand {
    width: auto;
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 8px 16px;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
  }

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

  .hero-identity {
    width: 100%;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero::before {
    inset: 0;
  }

  .hero-logo {
    width: min(272px, 70vw);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    justify-content: center;
  }

  .hero-actions,
  .video-list,
  .film-index-grid,
  .equipment {
    grid-template-columns: 1fr;
  }

  .contact-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-links .label {
    margin-top: 14px;
  }

  .contact-links .label:first-child {
    margin-top: 0;
  }

  .category-button {
    min-height: 74px;
    padding: 18px 20px;
  }

  .category-button::after {
    right: 16px;
    bottom: 13px;
    width: calc(100% - 32px);
    font-size: clamp(22px, 7vw, 34px);
  }

  .still-grid img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

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

  .highlight-frame {
    min-height: 220px;
  }

  .site-footer {
  flex-direction: column;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.lightbox-image {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  background: #050505;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.82);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

[hidden] {
  display: none !important;
}
