/* =========================================================
   APOLLO FILM PRODUCTION — Hollywood Major Studio
   Charcoal + crimson accent · full-bleed video hero
   Inspired by Sony Pictures · Lionsgate · Paramount
   ========================================================= */

:root {
  --bg: #0a0a0c;
  --bg-elev: #131318;
  --bg-soft: #1c1c22;
  --bg-card: #161620;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, 0.78);
  --ink-mute: rgba(255, 255, 255, 0.5);
  --ink-faint: rgba(255, 255, 255, 0.32);
  --accent: #c1352a;        /* crimson — primary action / accent */
  --accent-hot: #e64539;
  --accent-deep: #8a1f17;
  --gold: #c9a44a;          /* used only for original Apollo logo glow if needed */

  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --display: 'Oswald', 'Inter', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1480px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 10vw, 140px);
  --r-md: 4px;
  --r-lg: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  background: var(--bg); color: var(--ink); font-family: var(--sans);
  font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--accent-hot); }
button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }

/* ---------- Typography ---------- */
.h-display {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.9; letter-spacing: 0.005em; text-transform: uppercase;
}
.h-1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95; letter-spacing: 0.01em; text-transform: uppercase;
}
.h-2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.0; letter-spacing: 0.012em; text-transform: uppercase;
}
.h-3 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.2;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent-hot); font-weight: 500;
}
.eyebrow-muted { color: var(--ink-mute); }

.lead {
  font-family: var(--sans); font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55; font-weight: 400; color: var(--ink-soft);
}
p { color: var(--ink-soft); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,12,0.85), rgba(10,10,12,0));
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,12,0.96);
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
}
.brand:hover { color: var(--ink); opacity: 1; }
.brand-logo {
  height: 44px; width: auto; display: block;
  filter: brightness(1.1);
}
.brand-text { line-height: 1.1; }
.brand-text span { display: block; }
.brand-text .top { font-size: 9px; letter-spacing: 0.34em; color: var(--ink-mute); }
.brand-text .bot { font-size: 14px; letter-spacing: 0.16em; color: var(--ink); }

.nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); }
.nav a {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
  position: relative; padding: 8px 0;
}
.nav a.active, .nav a:hover { color: var(--ink); }
.nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
}

.lang-switch {
  display: flex; align-items: center;
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  padding: 3px; margin-left: 12px;
}
.lang-switch button {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; padding: 5px 10px; border-radius: 2px;
  color: var(--ink-mute); transition: all .25s ease;
}
.lang-switch button.active { background: var(--accent); color: #fff; }

.menu-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 0;
  transition: all .25s ease; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hot); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(255,255,255,0.04); }
.btn-arrow::after { content: '→'; font-size: 16px; transition: transform .3s ease; letter-spacing: 0; }
.btn:hover .btn-arrow::after { transform: translateX(4px); }
.btn-play::before {
  content: '▶'; font-size: 11px; margin-right: 4px;
}

/* ---------- HERO with autoplay video ---------- */
.hero {
  position: relative; height: 100vh; min-height: 720px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.25) 40%, rgba(10,10,12,0.95) 100%),
    linear-gradient(90deg, rgba(10,10,12,0.6) 0%, rgba(10,10,12,0.05) 50%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 100px var(--gutter) 60px;
}
.hero-presents {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-presents img { height: 28px; width: auto; opacity: 0.95; }
.hero-presents .pulse {
  width: 8px; height: 8px; background: var(--accent-hot); border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 10vw, 156px);
  line-height: 0.9; letter-spacing: 0.005em;
  text-transform: uppercase; margin-bottom: 24px;
  max-width: 1100px;
}
.hero-title em { font-style: normal; color: var(--accent-hot); }
.hero-tagline {
  font-family: var(--sans); font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400; color: var(--ink-soft); max-width: 600px;
  margin-bottom: 36px; line-height: 1.5;
}

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

.hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  border-top: 1px solid var(--line);
  padding: 18px var(--gutter);
  background: rgba(10,10,12,0.5); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-soft);
}
.hero-bottom .now {
  display: flex; align-items: center; gap: 12px;
}
.hero-bottom .now-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-hot); }
.hero-bottom strong { color: var(--ink); font-weight: 700; letter-spacing: 0.18em; }

/* ---------- CANNES STRIP (immediately after hero) ---------- */
.cannes-strip {
  background: var(--accent);
  color: #fff;
  padding: 24px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}
@media (max-width: 900px) {
  .cannes-strip { grid-template-columns: 1fr; gap: 16px; padding: 28px var(--gutter); }
}
.cannes-strip .badge {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 700;
  border: 1.5px solid #fff; padding: 6px 14px;
  white-space: nowrap;
}
.cannes-strip .row {
  display: flex; flex-direction: column; gap: 4px;
}
.cannes-strip .when {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
}
.cannes-strip .what {
  font-family: var(--display); font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.0; text-transform: uppercase; letter-spacing: 0.01em;
}
.cannes-strip .cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700; color: #fff;
  border-bottom: 1px solid #fff; padding-bottom: 4px;
}
.cannes-strip .cta::after { content: '→'; }

/* ---------- Section Heading ---------- */
.section-head {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(40px, 5vw, 72px);
  align-items: end; padding-bottom: clamp(36px, 4vw, 56px);
  border-bottom: 1px solid var(--line); margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }
.section-head h2 { margin-top: 12px; }

/* ---------- FILM TILES (Netflix/HBO grid) ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2vw, 32px);
}

.tile {
  position: relative;
  display: block;
  aspect-ratio: 2/3;
  background: var(--bg-card);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .3s ease;
}
.tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(193, 53, 42, 0.25);
}
.tile-poster {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.tile-poster.no-img {
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1c1c24 0%, #0e0e12 100%);
  padding: 24px;
}
.tile-poster.no-img .placeholder {
  font-family: var(--display); font-size: clamp(32px, 4vw, 60px);
  line-height: 0.9; color: rgba(255,255,255,0.12);
  text-transform: uppercase; text-align: center; letter-spacing: 0.02em;
}
.tile-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(20px, 2vw, 32px);
  transition: background .3s ease;
}
.tile:hover .tile-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.95) 100%);
}
.tile-tag {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
  background: var(--accent); color: #fff;
  padding: 5px 10px; margin-bottom: 14px;
}
.tile-title {
  font-family: var(--display); font-size: clamp(24px, 2.4vw, 38px);
  line-height: 0.95; text-transform: uppercase; letter-spacing: 0.01em;
  color: #fff; margin-bottom: 6px;
}
.tile-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute);
  display: flex; flex-wrap: wrap; gap: 4px 14px;
}

/* ---------- WIDE TILES (for Featured row) ---------- */
.tiles-wide {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(20px, 2vw, 32px);
  margin-bottom: clamp(20px, 2vw, 32px);
}
@media (max-width: 900px) { .tiles-wide { grid-template-columns: 1fr; } }
.tile-wide { aspect-ratio: 16/9; }
.tile-wide .tile-poster.no-img .placeholder { font-size: clamp(40px, 6vw, 96px); }

/* ---------- VIDEO BLOCK (Films page) ---------- */
.video-block {
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--line);
}
.video-block:nth-child(even) { background: rgba(255,255,255,0.015); }
.video-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: start;
}
@media (max-width: 1000px) { .video-grid { grid-template-columns: 1fr; } }
.video-grid.reverse > div:first-child { order: 2; }
@media (max-width: 1000px) { .video-grid.reverse > div:first-child { order: 0; } }

.video-shell {
  position: relative; aspect-ratio: 16/9;
  background: #000; border: 1px solid var(--line); overflow: hidden;
}
.video-shell video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-poster {
  position: absolute; inset: 0; cursor: pointer;
  background: linear-gradient(135deg, #1a1a22, #060608);
  display: grid; place-items: center;
  transition: opacity .3s ease;
}
.video-poster.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 80px; height: 80px;
  background: var(--accent); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 22px; transition: all .25s ease;
  box-shadow: 0 0 0 0 rgba(193,53,42,0.6);
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(193,53,42,0.7); }
  70% { box-shadow: 0 0 0 24px rgba(193,53,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(193,53,42,0); }
}
.play-btn:hover { background: var(--accent-hot); transform: scale(1.08); }
.video-caption {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--ink-mute); text-transform: uppercase;
  gap: 16px;
}

.film-info h2 { margin-bottom: 24px; }
.film-info h2 em { font-style: normal; color: var(--accent-hot); }

.spec-grid {
  border-top: 1px solid var(--line); margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
@media (max-width: 600px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-item {
  border-bottom: 1px solid var(--line); padding: 14px 0;
  border-right: 1px solid var(--line);
}
.spec-item:nth-child(even) { padding-left: 20px; }
.spec-item:nth-child(odd) { padding-right: 20px; }
@media (max-width: 600px) { .spec-item { border-right: 0; padding-left: 0 !important; padding-right: 0 !important; } }
.spec-item dt {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--ink-mute); text-transform: uppercase; margin-bottom: 4px;
}
.spec-item dd { font-family: var(--sans); font-size: 14px; color: var(--ink); font-weight: 500; }

/* ---------- FESTIVAL ROW ---------- */
.fest-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fest-cell {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.fest-cell:last-child { border-right: none; }
.fest-cell .name {
  font-family: var(--display); font-size: 26px; line-height: 1; text-transform: uppercase;
  color: #fff; letter-spacing: 0.01em;
}
.fest-cell .meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute);
}

/* ---------- FESTIVAL PAGE / INVITE ---------- */
.invite-card {
  background: var(--bg-elev); border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 56px); margin-top: 48px;
}
.invite-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 32px;
}
.invite-films { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
@media (max-width: 800px) { .invite-films { grid-template-columns: 1fr; } }
.invite-film {
  background: var(--bg-elev); padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column;
}
.invite-film .when-line {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px;
}
.invite-film .date-num {
  font-family: var(--display); font-size: 64px; line-height: 0.9;
  color: var(--accent-hot); letter-spacing: 0.005em;
}
.invite-film .date-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--ink-mute); text-transform: uppercase;
  display: flex; flex-direction: column; gap: 4px;
}
.invite-film h3 {
  font-family: var(--display); font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95; letter-spacing: 0.01em; text-transform: uppercase;
  margin-bottom: 8px;
}
.invite-film .ru-title {
  font-family: var(--sans); font-style: italic; font-size: 16px;
  color: var(--ink-mute); margin-bottom: 18px;
}
.invite-film p { font-size: 14px; line-height: 1.55; }

.invite-bottom {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width: 700px) { .invite-bottom { grid-template-columns: 1fr; } }
.invite-bottom h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent-hot); margin-bottom: 8px;
  font-weight: 600;
}
.invite-bottom p { font-size: 14px; line-height: 1.55; color: var(--ink); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(48px, 6vw, 100px); align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p { margin-bottom: 18px; font-size: 17px; line-height: 1.65; }
.about-text p.lead { font-size: 22px; line-height: 1.45; color: var(--ink); }

.team-list { border-top: 1px solid var(--line); }
.team-row {
  display: grid; grid-template-columns: 200px 1fr;
  padding: 18px 0; border-bottom: 1px solid var(--line); gap: 16px; align-items: baseline;
}
@media (max-width: 600px) { .team-row { grid-template-columns: 1fr; } }
.team-row .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--ink-mute); text-transform: uppercase; }
.team-row .name { font-family: var(--sans); font-size: 17px; font-weight: 600; }

.filmography { border-top: 1px solid var(--line); margin-top: 24px; }
.film-year-row {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline;
  transition: padding .25s ease;
}
.film-year-row:hover { padding-left: 12px; background: rgba(255,255,255,0.02); }
.film-year-row .year { font-family: var(--mono); font-size: 13px; color: var(--accent-hot); letter-spacing: 0.06em; }
.film-year-row .title-it { font-family: var(--sans); font-size: 17px; font-weight: 500; color: #fff; }
.film-year-row .kind { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); }

/* ---------- Press ---------- */
.press-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.press-item {
  background: var(--bg); padding: clamp(20px, 2vw, 32px);
  display: grid; grid-template-columns: 140px 1fr auto; gap: 24px;
  align-items: center; transition: background .3s ease;
}
.press-item:hover { background: var(--bg-elev); }
@media (max-width: 700px) { .press-item { grid-template-columns: 1fr; gap: 6px; } }
.press-date { font-family: var(--mono); font-size: 12px; color: var(--accent-hot); letter-spacing: 0.1em; }
.press-title { font-family: var(--sans); font-size: 17px; font-weight: 500; color: #fff; }
.press-source { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--ink-mute); text-transform: uppercase; }

/* ---------- Pull quote ---------- */
.pull-quote {
  font-family: var(--sans); font-size: clamp(20px, 2.4vw, 32px); font-weight: 300;
  line-height: 1.4; color: var(--ink);
  border-left: 3px solid var(--accent); padding-left: clamp(20px, 3vw, 40px);
  max-width: 1000px; margin: clamp(40px, 5vw, 80px) 0;
}
.pull-quote cite {
  display: block; margin-top: 16px; font-style: normal; font-size: 12px;
  font-family: var(--mono); letter-spacing: 0.2em; color: var(--ink-mute); text-transform: uppercase;
}

/* ---------- Subhero (films/about/festival/press) ---------- */
.subhero {
  padding: 180px var(--gutter) clamp(60px, 8vw, 100px);
  position: relative; border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(193, 53, 42, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(193, 53, 42, 0.08), transparent 60%),
    var(--bg);
}
.subhero h1 { margin-top: 16px; max-width: 1200px; }
.subhero .lead { margin-top: 24px; max-width: 760px; }

/* ---------- Footer / Contact ---------- */
.contact {
  padding: clamp(80px, 8vw, 120px) var(--gutter);
  background: var(--bg-elev); border-top: 1px solid var(--line);
}
.contact-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 5vw, 80px);
  align-items: end;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 18px; }
.contact-list .row { font-family: var(--sans); font-size: 14px; }
.contact-list .label {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; color: var(--ink-mute); text-transform: uppercase; margin-bottom: 4px;
}
.contact-list a { color: var(--accent-hot); font-weight: 500; }

footer {
  padding: 24px var(--gutter); border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--ink-mute); text-transform: uppercase;
}
footer a { color: var(--accent-hot); }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 28px var(--gutter); border-bottom: 1px solid var(--line);
  }
  .menu-toggle {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border: 1px solid var(--line-strong); border-radius: var(--r-md);
    color: var(--ink); font-size: 16px;
  }
  .lang-switch { margin-left: 12px; }
  .hero-title { font-size: clamp(48px, 12vw, 96px); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* i18n */
[data-i18n-en], [data-i18n-ru] { transition: opacity .15s ease; }
body[data-lang="en"] [data-i18n-ru]:not([data-i18n-en]) { display: none !important; }
body[data-lang="ru"] [data-i18n-en]:not([data-i18n-ru]) { display: none !important; }
