@import url("colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-0); color: var(--fg-0); min-height: 100vh; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 64px; }
@media (max-width: 960px) { .container { padding: 0 48px; } }
@media (max-width: 720px) { .container { padding: 0 24px; } }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: 56px;
  background: var(--bg-0);
  border-bottom: 1px solid var(--line-1);
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.wordmark {
  font-family: var(--font-display); font-weight: 500; font-size: 18px;
  letter-spacing: -0.02em; color: var(--fg-0);
}
.wordmark .accent { color: var(--accent); }
.nav-meta {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-2);
  margin-left: 16px;
}
.nav-links { display: flex; gap: 28px; font-size: 13px; }
.nav-links a {
  color: var(--fg-1);
  transition: color 120ms var(--ease-out);
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-links a:hover { color: var(--fg-0); }
.nav-status {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,160,74,0.18);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ---- HERO ---- */
.hero {
  /* Use vertical padding only so .container horizontal gutters are not reset by shorthand. */
  padding-top: 96px;
  padding-bottom: 80px;
  position: relative;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--line-1);
  padding-bottom: 14px; margin-bottom: 40px;
  flex-wrap: wrap; row-gap: 6px;
}
.hero-eyebrow-row .sep { color: var(--fg-3); }
.eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-2);
}
.eyebrow.amber { color: var(--accent); }
.eyebrow.fg { color: var(--fg-0); }

.hero-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 9.5vw, 144px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0;
  color: var(--fg-0);
}
.hero-display .accent { color: var(--accent); }
.hero-display .quiet { color: var(--fg-2); font-style: italic; font-weight: 400; }

.hero-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 1080px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-lede {
  font-family: var(--font-body); font-size: 18px; line-height: 1.55;
  color: var(--fg-1); max-width: 52ch; margin: 0;
}
.hero-lede .fg { color: var(--fg-0); }

.hero-meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 32px;
  font-family: var(--font-mono);
  border-top: 1px solid var(--line-1);
  padding-top: 16px;
  align-self: start;
}
.hero-meta .label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-2);
}
.hero-meta .value {
  display: block; margin-top: 4px;
  color: var(--fg-0); font-size: 14px;
}
.hero-meta .value.amber { color: var(--accent); }

/* ---- NOW SHOWING (CineWave hero plate) ---- */
.now-showing {
  display: block;
  margin-top: 24px;
  position: relative;
  border: 1px solid var(--line-1);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--bg-1);
  cursor: pointer;
  transition: border-color 220ms var(--ease-out);
}
.now-showing:hover { border-color: var(--line-3); }
.now-showing .plate {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover; background-position: center;
  filter: contrast(1.05) saturate(0.9);
}
.now-showing .plate::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,14,0) 40%, rgba(12,12,14,0.85) 100%),
    linear-gradient(90deg, rgba(12,12,14,0.6) 0%, rgba(12,12,14,0.0) 50%);
}
.hud-tag {
  position: absolute; left: 24px; top: 24px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(12,12,14,0.55); backdrop-filter: blur(8px);
  border: 1px solid var(--accent-edge); padding: 6px 10px; border-radius: 2px;
  z-index: 2;
}
.hud-corner {
  position: absolute; right: 24px; top: 24px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-2);
  display: flex; gap: 16px;
  z-index: 2;
}
.hud-title {
  position: absolute; left: 24px; bottom: 24px;
  z-index: 2;
}
.hud-title h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 5vw, 64px); letter-spacing: -0.025em;
  margin: 0; color: var(--fg-0);
  line-height: 1.0;
}
.hud-title .sub {
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-1);
  letter-spacing: 0.04em; margin-top: 12px;
}
.hud-panel {
  position: absolute; right: 24px; bottom: 24px;
  font-family: var(--font-mono); font-size: 12px; line-height: 1.8;
  background: rgba(12,12,14,0.65); backdrop-filter: blur(10px);
  border: 1px solid var(--line-1); border-radius: 2px;
  padding: 14px 18px;
  min-width: 240px;
  z-index: 2;
}
.hud-panel .row {
  display: flex; justify-content: space-between; gap: 24px;
}
.hud-panel .k { color: var(--fg-2); letter-spacing: 0.04em; }
.hud-panel .v { color: var(--fg-0); }
.hud-panel .v.amber { color: var(--accent); }
.hud-panel hr { border: 0; border-top: 1px solid var(--line-1); margin: 8px 0; }

/* ---- CTA OVERLAY (see more button) ---- */
.cta-overlay {
  position: absolute; bottom: 220px; right: 24px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: rgba(12,12,14,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-edge);
  padding: 8px 14px;
  border-radius: 2px;
  z-index: 3;
  opacity: 0.9;
  transition: all 200ms var(--ease-out);
}
.now-showing:hover .cta-overlay {
  opacity: 1;
  background: var(--accent-tint);
  border-color: var(--accent);
}
.cta-text { letter-spacing: 0.02em; }
.cta-arrow {
  display: inline-block;
  transition: transform 200ms var(--ease-out);
  color: var(--accent);
}
.now-showing:hover .cta-arrow {
  transform: translateX(4px);
}


/* film grain overlay */
.grain::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ---- SECTION HEAD ---- */
.section {
  padding-top: 96px;
  padding-bottom: 32px;
}
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--line-1);
  padding-top: 20px; margin-bottom: 40px;
  gap: 24px; flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 500; font-size: 32px;
  letter-spacing: -0.015em; margin: 0;
}
.section-head .right {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-2);
}

/* ---- WORK GRID ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.work-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--inner-1);
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out);
  cursor: pointer;
  display: flex; flex-direction: column;
  text-align: left;
}
.work-card:hover { background: var(--bg-3); border-color: var(--line-3); }
.work-card:hover .plate img { transform: scale(1.02); }
.work-card .plate {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}
.work-card .plate img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 480ms var(--ease-out);
  filter: contrast(1.02) saturate(0.92);
}
.work-card .plate.empty {
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(212,160,74,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #15140f 0%, #0c0c0e 100%);
}
.work-card .plate-tag {
  position: absolute; left: 12px; top: 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(232, 230, 225, 0.9);
  background: rgba(12, 12, 14, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-1);
  padding: 4px 8px; border-radius: 2px;
}
.work-card .plate-tag.amber { color: var(--accent); border-color: var(--accent-edge); }
.work-card .plate-tag.steel { color: var(--steel-hi); }

.work-card .body {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.work-card .body-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.work-card .body-title {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  letter-spacing: -0.015em; color: var(--fg-0);
}
.work-card .body-meta {
  font-family: var(--font-mono); font-size: 10px; color: var(--fg-2);
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
}
.work-card .body-lede {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-1);
  line-height: 1.55;
}
.work-card .body-foot {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--line-1);
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-2);
}
.work-card .body-foot strong { color: var(--fg-0); font-weight: 500; }

/* card CTA — see more on hover */
.card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-tint);
  border: 1px solid var(--accent-edge);
  padding: 6px 12px;
  border-radius: 2px;
  align-self: flex-start;
  transition: all 200ms var(--ease-out);
}
.work-card:hover .card-cta {
  background: rgba(212, 160, 74, 0.2);
  border-color: var(--accent);
}
.card-cta-arrow {
  display: inline-block;
  transition: transform 200ms var(--ease-out);
}
.work-card:hover .card-cta-arrow {
  transform: translateX(3px);
}

/* spans */
.work-card.span-6 { grid-column: span 6; }
.work-card.span-4 { grid-column: span 4; }
.work-card.span-3 { grid-column: span 3; }
.work-card.span-2 { grid-column: span 2; }

@media (max-width: 980px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.span-6, .work-card.span-4, .work-card.span-3, .work-card.span-2 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card.span-6, .work-card.span-4, .work-card.span-3, .work-card.span-2 { grid-column: span 1; }
}

/* ---- THREADS (four pillars: 2×2 grid) ---- */
.threads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-1);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 640px) { .threads { grid-template-columns: 1fr; } }
.thread {
  background: var(--bg-1);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.thread .h {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.thread .num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-2);
}
.thread .num .amber { color: var(--accent); }
.thread h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 28px;
  letter-spacing: -0.02em; margin: 0; color: var(--fg-0);
}
.thread p {
  font-family: var(--font-body); font-size: 14px; line-height: 1.65;
  color: var(--fg-1); margin: 0; max-width: 48ch;
}
.thread .keywords {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line-1);
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-1); border: 1px solid var(--line-2);
  padding: 4px 10px; border-radius: 2px;
}
.tag.amber { color: var(--accent); border-color: var(--accent-edge); }
.tag.steel { color: var(--steel-hi); border-color: rgba(107,125,141,0.32); }

/* ---- AWARDS STRIP ---- */
.awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  padding: 28px 0;
}
@media (max-width: 760px) { .awards { grid-template-columns: 1fr; gap: 18px; } }
.award .label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-2);
}
.award .value {
  display: block; margin-top: 6px;
  font-family: var(--font-display); font-size: 18px; color: var(--fg-0);
  letter-spacing: -0.01em;
}
.award .note {
  display: block; margin-top: 6px;
  font-family: var(--font-body); font-size: 13px; color: var(--fg-1);
  line-height: 1.5;
}
.award .value .amber { color: var(--accent); }

/* ---- ABOUT (portrait + bio) ---- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; gap: 32px; }
}

.about-portrait { margin: 0; }
.about-portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  overflow: hidden;
}
.about-portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.96);
}
/* film-frame corner ticks */
.about-portrait-frame::before,
.about-portrait-frame::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--accent);
  pointer-events: none;
}
.about-portrait-frame::before {
  top: 10px; left: 10px;
  border-right: 0; border-bottom: 0;
}
.about-portrait-frame::after {
  bottom: 10px; right: 10px;
  border-left: 0; border-top: 0;
}
.about-portrait-tag {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(12,12,14,0.65); backdrop-filter: blur(6px);
  border: 1px solid var(--accent-edge);
  padding: 5px 8px; border-radius: 2px;
}

.about-body { padding-top: 8px; }
.about-lede {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2; letter-spacing: -0.015em;
  color: var(--fg-0);
  margin: 0 0 24px;
  max-width: 28ch;
}
.about-lede .amber { color: var(--accent); }
.about-body p {
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.65; color: var(--fg-1);
  max-width: 60ch;
  margin: 0 0 16px;
}

.about-facts {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-1);
}
.about-facts li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-1);
}
.about-facts li:nth-child(odd) { padding-right: 16px; }
.about-facts .k {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-2);
}
.about-facts .v {
  font-family: var(--font-body); font-size: 14px;
  color: var(--fg-0); letter-spacing: -0.005em;
}
.about-facts .v.amber { color: var(--accent); }

/* ---- ABOUT (actions) ---- */
.about-actions {
  margin-top: 28px;
}
.btn {
  display: inline-block;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: transparent;
  color: var(--fg-0);
  transition: all 120ms var(--ease-out);
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  color: var(--accent);
  border-color: var(--accent-edge);
  background: var(--accent-tint);
}
.btn-primary {
  background: var(--accent-tint);
  border-color: var(--accent-edge);
  color: var(--accent);
}
.btn-primary:hover {
  background: rgba(212, 160, 74, 0.2);
  border-color: var(--accent);
}


/* ---- CONTACT BAND ---- */
.contact {
  margin-top: 96px;
  padding: 96px 0 88px;
  border-top: 1px solid var(--line-1);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.contact h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(42px, 5vw, 82px); letter-spacing: -0.02em; line-height: 1.02;
  margin: 12px 0 24px;
  max-width: 11ch;
}
.contact-break { display: block; }
.contact h2 .accent { color: var(--accent); }
.contact .lede { font-family: var(--font-body); font-size: 16px; color: var(--fg-1); max-width: 54ch; line-height: 1.6; }

.contact-actions {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono);
}
.contact-actions a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line-1);
  color: var(--fg-0);
  transition: color 120ms var(--ease-out), border-color 120ms var(--ease-out);
  cursor: pointer;
}
.contact-actions a:last-child { border-bottom: 1px solid var(--line-1); }
.contact-actions a:hover { color: var(--accent); border-color: var(--accent-edge); }
.contact-actions .ch {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-2);
  transition: color 120ms var(--ease-out);
}
.contact-actions a:hover .ch { color: var(--accent); }
.contact-actions .v {
  font-family: var(--font-body); font-size: 16px; letter-spacing: -0.005em;
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .contact {
    padding: 72px 0 80px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
  .contact h2 {
    max-width: 12ch;
  }
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--line-1);
  padding: 32px 0 48px;
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-2);
  letter-spacing: 0.04em;
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.footer .copy { color: var(--fg-2); }
.footer .meta { color: var(--fg-2); display: flex; gap: 24px; flex-wrap: wrap; }

/* ---- ENTRY ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(10px); animation: fadein 480ms var(--ease-out) forwards; }
.fade-in.d1 { animation-delay: 80ms; }
.fade-in.d2 { animation-delay: 160ms; }
.fade-in.d3 { animation-delay: 240ms; }
.fade-in.d4 { animation-delay: 320ms; }
@keyframes fadein {
  to { opacity: 1; transform: translateY(0); }
}

/* selection / focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


/* =====================================================================
   MOBILE OVERRIDES
   The HTML carries inline padding (e.g. style="padding: 96px 50px 32px")
   from earlier desktop tweaks; on small viewports those inline values
   stack on top of the container's gutter and push content off screen.
   We use !important to neutralize them at <=720px.
   ===================================================================== */

@media (max-width: 960px) {
  .nav-meta { display: none; }
  .nav-links { gap: 18px; font-size: 12px; }
}

@media (max-width: 720px) {

  /* --- NAV --- */
  .nav { height: auto; min-height: 56px; padding: 8px 0; }
  .nav-inner { flex-wrap: wrap; gap: 8px 16px; row-gap: 6px; }
  .nav-status { display: none; }
  .nav-links {
    width: 100%;
    gap: 14px;
    font-size: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { white-space: nowrap; }

  /* --- HERO --- */
  .hero {
    padding-top: 56px !important;
    padding-bottom: 48px !important;
  }
  .hero-display {
    font-size: clamp(40px, 11vw, 64px);
    letter-spacing: -0.025em;
  }
  .hero-grid { margin-top: 32px !important; gap: 28px !important; }
  .hero-lede {
    margin: 0;
    font-size: 16px;
  }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 14px 0;
  }

  /* --- NOW SHOWING --- */
  .now-showing {
    aspect-ratio: auto;
    min-height: 460px;
  }
  .now-showing .plate {
    height: 320px;
    bottom: auto;
    top: 0;
  }
  .now-showing .plate::after {
    background: linear-gradient(180deg, rgba(12,12,14,0) 30%, rgba(12,12,14,0.95) 100%);
  }
  .hud-tag { left: 14px; top: 14px; font-size: 10px; padding: 5px 8px; }
  .hud-corner {
    right: 14px; top: 14px;
    flex-direction: column; gap: 4px;
    text-align: right; font-size: 9px;
  }
  .hud-title {
    left: 14px; right: 14px; bottom: auto; top: 220px;
  }
  .hud-title h2 { font-size: 28px; line-height: 1.05; }
  .hud-title .sub { font-size: 11px; margin-top: 8px; }
  /* fold spec panel BELOW the photo rather than stacking on it */
  .hud-panel {
    position: absolute;
    left: 14px; right: 14px;
    top: 340px;
    bottom: auto;
    min-width: 0;
    width: auto;
    background: rgba(12,12,14,0.85);
    font-size: 11px;
    padding: 10px 14px;
  }
  .cta-overlay { display: none; }

  /* --- SECTIONS — neutralize inline vertical padding; keep `.container` horizontal gutter --- */
  section.container.section,
  .section {
    padding-top: 64px !important;
    padding-bottom: 24px !important;
  }

  /* contact: inline height + horizontal padding */
  .contact {
    height: auto !important;
    padding: 56px 0 72px !important;
    margin-top: 56px;
  }
  .contact > .container { padding: 0 24px !important; }
  .contact-actions { padding: 0 !important; }
  .contact h2 {
    font-size: clamp(32px, 9vw, 44px) !important;
    margin: 8px 0 16px;
  }
  .contact-actions a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 0;
  }
  .contact-actions .v { font-size: 14px; word-break: break-all; }

  /* awards has inline height: 300px */
  #awards { height: auto !important; }
  .awards { padding: 20px 0; }
  .award .value { font-size: 16px; }

  /* --- SECTION HEAD --- */
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 16px;
    margin-bottom: 28px;
  }
  .section-head h2 { font-size: 26px; }

  /* --- WORK CARDS --- */
  .work-card .body { padding: 16px 16px 18px; }
  .work-card .body-title { font-size: 19px; }
  .work-card .body-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .work-card .body-meta { width: auto !important; }

  /* --- THREADS --- */
  .thread { padding: 24px 20px; min-height: 0; }
  .thread h3 { font-size: 22px; }

  /* --- ABOUT --- */
  .about-lede { font-size: 22px; max-width: none; }
  .about-body p { font-size: 15px; max-width: none; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts li:nth-child(odd) { padding-right: 0; }

  /* --- FOOTER --- */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .hero-display { font-size: 38px; }
  .hud-title h2 { font-size: 24px; }
}
