:root {
  --bg: #0a0a0c;
  --surface: #141418;
  --accent: #e82b2d;
  --accent2: #ff4548;
  --text: #f2f0ee;
  --muted: #8a8a92;
  --spine: 220px;
  --pad: clamp(20px, 4vw, 48px);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

.shell {
  display: grid;
  grid-template-columns: var(--spine) 1fr;
  min-height: 100vh;
}

.spine {
  position: relative;
  align-self: stretch;
  min-height: 100vh;
  padding: 28px 20px;
  border-right: 1px solid rgba(232, 43, 45, 0.25);
  background: linear-gradient(180deg, #121216 0%, var(--bg) 100%);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.spine-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
}

.spine-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spine-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.spine-nav a:hover { color: var(--accent2); text-decoration: none; }

.spine-note {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.main { padding: var(--pad); max-width: 1100px; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 24px 0 64px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 12px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.02;
  margin: 0 0 16px;
  font-weight: 900;
}

.tagline {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34ch;
  margin: 0 0 28px;
}

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

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.btn.primary {
  background: var(--accent);
  color: var(--text);
}

.btn.ghost {
  border: 1px solid rgba(242, 240, 238, 0.25);
  color: var(--text);
}

.hero-visual img {
  border-radius: 18px;
  border: 1px solid rgba(232, 43, 45, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.section-head { margin-bottom: 28px; max-width: 52ch; }
.section-head.left { margin-left: 0; }
.section-head h2 { margin: 0 0 10px; font-size: 1.75rem; }
.section-head p { margin: 0; color: var(--muted); }

.timeline-section { padding: 48px 0; }

.timeline {
  list-style: none;
  margin: 0 0 36px;
  padding: 0 0 0 8px;
  border-left: 2px solid rgba(232, 43, 45, 0.45);
}

.timeline li {
  position: relative;
  padding: 0 0 32px 28px;
}

.timeline .dot {
  position: absolute;
  left: -11px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 16px rgba(255, 69, 72, 0.55);
}

.timeline h3 { margin: 0 0 8px; font-size: 1.15rem; }
.timeline p { margin: 0; color: var(--muted); max-width: 58ch; }

.gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gallery-row img {
  border-radius: 14px;
  aspect-ratio: 1;
  object-fit: cover;
}

.film-section { padding: 24px 0 56px; }

.film-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.film-strip figure {
  margin: 0;
  flex: 0 0 min(240px, 42vw);
  scroll-snap-align: start;
}

.film-strip img {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-panel {
  background: var(--surface);
  border: 1px solid rgba(232, 43, 45, 0.2);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}

.legal-panel h2 { margin-top: 0; }
.legal-panel p { color: var(--muted); max-width: 65ch; }

.support-panel .mailto {
  font-size: 1.1rem;
  font-weight: 700;
}

.fine {
  font-size: 0.85rem;
  margin-top: 24px;
}

@media (max-width: 860px) {
  .shell { grid-template-columns: 1fr; }
  .spine {
    position: relative;
    min-height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid rgba(232, 43, 45, 0.25);
  }
  .spine-nav { flex-direction: row; flex-wrap: wrap; gap: 10px 16px; }
  .spine-note { width: 100%; margin-top: 0; }
  .hero-split { grid-template-columns: 1fr; }
  .gallery-row { grid-template-columns: 1fr; }
}
