﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=Space+Grotesk:wght@400;500;600&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }

:root {
  --bg: #0b0a08;
  --bg-alt: #14110b;
  --bg-soft: #11100e;
  --ink: #f7f1e6;
  --ink-muted: rgba(247, 241, 230, 0.68);
  --gold: #d6b25e;
  --gold-bright: #f1d28a;
  --border: rgba(214, 178, 94, 0.25);
  --border-strong: rgba(214, 178, 94, 0.45);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.35);
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% 10%, rgba(214, 178, 94, 0.18), transparent 40%),
    radial-gradient(circle at 80% 18%, rgba(214, 178, 94, 0.1), transparent 40%),
    linear-gradient(160deg, #0b0a08 0%, #0f0e0c 40%, #0b0a08 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: -30%;
  background-image: repeating-linear-gradient(120deg, rgba(214, 178, 94, 0.05) 0 1px, transparent 1px 16px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 70% 90%, rgba(214, 178, 94, 0.14), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.page { padding-bottom: 96px; }
.section { padding: 80px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn:focus-visible,
.search-input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #0a0a0a;
  box-shadow: var(--shadow-soft);
}

.btn-gold:hover {
  background: linear-gradient(120deg, #caa552 0%, #f7dea4 100%);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0a;
}

.btn-ghost {
  background: rgba(247, 241, 230, 0.06);
  color: var(--ink);
  border-color: rgba(214, 178, 94, 0.3);
}

.btn-ghost:hover {
  background: rgba(214, 178, 94, 0.18);
}

.btn-small { padding: 8px 16px; font-size: 11px; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "IBM Plex Mono", monospace;
  background: rgba(15, 13, 10, 0.6);
}

.chip:hover { border-color: var(--gold); color: var(--gold); }

.chip-ghost {
  background: transparent;
  border-color: rgba(214, 178, 94, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 9, 7, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-title {
  font-size: 18px;
  font-weight: 600;
}

.brand-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  font-family: "IBM Plex Mono", monospace;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "IBM Plex Mono", monospace;
}

.nav-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(214, 178, 94, 0.08);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-field {
  position: relative;
  min-width: 240px;
}

.search-input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(214, 178, 94, 0.4);
  padding: 10px 16px;
  font-size: 13px;
  background: rgba(12, 10, 8, 0.9);
  color: var(--ink);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: rgba(12, 10, 8, 0.98);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.search-suggestions[hidden] {
  display: none;
}

.suggestion-card {
  appearance: none;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.2);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: #0b0a08;
  padding: 0;
  animation: glowIn 0.5s ease both;
  animation-delay: calc(var(--i, 0) * 0.05s);
}

.suggestion-card img { width: 100%; height: 100%; object-fit: cover; }

.header-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0 16px;
  border-top: 1px solid rgba(214, 178, 94, 0.15);
}

.strip-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: "IBM Plex Mono", monospace;
  color: var(--gold);
}

.strip-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-noir { padding: 90px 0 0; }

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
}

.hero-title {
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 1.05;
  margin-top: 12px;
}

.hero-lede {
  color: var(--ink-muted);
  margin-top: 18px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat-card {
  background: rgba(17, 14, 10, 0.8);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.stat-value { font-size: 22px; font-weight: 600; }

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  font-family: "IBM Plex Mono", monospace;
}

.hero-reel {
  background: rgba(14, 12, 9, 0.9);
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-reel::before {
  content: "";
  position: absolute;
  inset: -30% 40% auto -10%;
  height: 200px;
  background: radial-gradient(circle, rgba(214, 178, 94, 0.45), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.reel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reel-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
}

.reel-title { font-size: clamp(1.3rem, 2.2vw, 2rem); }

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 90px;
  gap: 12px;
}

.hero-cell {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.2);
  background: #0b0a08;
  animation: glowIn 0.6s ease both;
  animation-delay: calc(var(--i, 0) * 0.05s);
}

.hero-cell img { width: 100%; height: 100%; object-fit: cover; }

.hero-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.65));
  opacity: 0.9;
}

.hero-cell__label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(8, 7, 6, 0.75);
  color: var(--gold);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "IBM Plex Mono", monospace;
}

.reel-grid .hero-cell:nth-child(1),
.reel-grid .hero-cell:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.reel-foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.reel-note {
  color: var(--ink-muted);
  font-size: 13px;
}

.reel-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-runway {
  margin-top: 34px;
  border-top: 1px solid rgba(214, 178, 94, 0.2);
  padding: 22px 0 34px;
}

.runway-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.runway-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: "IBM Plex Mono", monospace;
  color: var(--gold);
}

.runway-text { color: var(--ink-muted); }

.runway-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section-dossiers {
  background: rgba(16, 14, 11, 0.75);
  border-top: 1px solid rgba(214, 178, 94, 0.15);
  border-bottom: 1px solid rgba(214, 178, 94, 0.15);
}

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

.dossier-card {
  background: rgba(15, 12, 9, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.dossier-card--accent {
  background: linear-gradient(140deg, rgba(214, 178, 94, 0.18), rgba(10, 9, 7, 0.95));
  border-color: var(--border-strong);
}

.dossier-card--media {
  background: rgba(12, 10, 8, 0.95);
}

.dossier-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
}

.dossier-title { font-size: 1.6rem; }

.dossier-text { color: var(--ink-muted); }

.dossier-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

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

.mini-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, 0.2);
  background: #0b0a08;
  animation: glowIn 0.6s ease both;
  animation-delay: calc(var(--i, 0) * 0.08s);
}

.mini-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
}

.section-title { font-size: clamp(1.8rem, 2.6vw, 2.6rem); }

.feed-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.feed-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feed-filters {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.filter-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-family: "IBM Plex Mono", monospace;
  color: var(--ink-muted);
}

.filter-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.poster-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.poster-grid--dense { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }

.poster-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0a08;
  border: 1px solid rgba(214, 178, 94, 0.2);
  box-shadow: var(--shadow-soft);
  display: block;
  animation: glowIn 0.6s ease both;
  animation-delay: calc(var(--i, 0) * 0.03s);
}

.poster-media { display: block; position: relative; overflow: hidden; }

.poster-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }

.poster-card--dense .poster-media img { aspect-ratio: 2 / 3; }

.poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.poster-card:hover::after { opacity: 1; }

.poster-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(8, 7, 6, 0.75);
  color: var(--gold);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "IBM Plex Mono", monospace;
}

.section-cta { padding: 60px 0 100px; }

.cta-shell {
  background: rgba(14, 12, 9, 0.9);
  color: var(--ink);
  border-radius: 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(214, 178, 94, 0.45), transparent 70%);
  opacity: 0.6;
}

.cta-title { font-size: clamp(1.6rem, 2.2vw, 2.4rem); }

.cta-note { color: var(--ink-muted); }

.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.search-hero { padding: 80px 0 40px; }

.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: start;
}

.search-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
}

.search-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-top: 10px;
}

.search-note { color: var(--ink-muted); margin-top: 14px; }

.search-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.search-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: rgba(12, 10, 8, 0.92);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.panel-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

.panel-text { color: var(--ink-muted); }

.panel-card--gold {
  background: linear-gradient(135deg, rgba(214, 178, 94, 0.2), rgba(13, 11, 8, 0.95));
  border-color: var(--border-strong);
}

.section-search-feed { padding-top: 30px; }

.search-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.detail-hero { padding: 90px 0; }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.detail-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.back-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  font-family: "IBM Plex Mono", monospace;
}

.detail-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #0b0a08;
  box-shadow: var(--shadow);
}

.detail-img { width: 100%; height: auto; display: block; }

.detail-size {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(8, 7, 6, 0.75);
  color: var(--gold);
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
}

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

.dock-card {
  background: rgba(12, 10, 8, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.dock-card--accent {
  background: linear-gradient(135deg, rgba(214, 178, 94, 0.2), rgba(10, 9, 7, 0.95));
  border-color: var(--border-strong);
}

.dock-card--muted { background: rgba(16, 14, 11, 0.9); }

.dock-title { font-size: 1.4rem; }

.dock-subtitle { color: var(--ink-muted); }

.dock-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

.dock-text { color: var(--ink-muted); }

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

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  border: 1px solid rgba(214, 178, 94, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "IBM Plex Mono", monospace;
  background: rgba(12, 10, 8, 0.6);
}

.tag-pill:hover { border-color: var(--gold); color: var(--gold); }

.site-footer {
  background: rgba(12, 10, 8, 0.98);
  color: var(--ink);
  padding: 70px 0;
  border-top: 1px solid var(--border);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr) minmax(0, 0.8fr);
  gap: 24px;
}

.footer-brand,
.footer-meta,
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-title {
  font-size: 22px;
  font-family: "Cormorant Garamond", serif;
}

.footer-subtitle { color: var(--ink-muted); margin-top: 8px; }

.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

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

.footer-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247, 241, 230, 0.6);
  font-family: "IBM Plex Mono", monospace;
  margin-bottom: 10px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a { color: var(--ink); opacity: 0.7; }

.footer-nav a:hover { color: var(--gold); opacity: 1; }

.footer-note { color: var(--ink-muted); }

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "IBM Plex Mono", monospace;
  color: rgba(247, 241, 230, 0.7);
}

.footer-badges span {
  border: 1px solid rgba(214, 178, 94, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-copy,
.hero-reel,
.dossier-card,
.feed-head,
.cta-shell,
.search-summary,
.search-panel,
.detail-frame,
.dock-card {
  animation: fadeUp 0.8s ease both;
}

.hero-reel { animation-delay: 0.08s; }

.dossier-card:nth-child(2) { animation-delay: 0.08s; }
.dossier-card:nth-child(3) { animation-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .header-nav { justify-content: flex-start; }

  .header-tools {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .search-field { width: 100%; }
}

@media (max-width: 980px) {
  .hero-layout,
  .search-layout,
  .dossier-grid,
  .footer-shell,
  .detail-dock {
    grid-template-columns: 1fr;
  }

  .cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { display: none; }

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

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

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

  .header-strip { flex-direction: column; align-items: flex-start; }
}
