/* ============================================================
   SUVOROV: НАУКА ПОБЕЖДАТЬ — анонс-сайт игры
   Только HTML / CSS / JS, без внешних зависимостей.
   ============================================================ */

:root {
  --bg:            #0d0f12;
  --bg-2:          #14171c;
  --bg-3:          #1b1f26;
  --line:          #2a3038;
  --line-soft:     #21262d;
  --ink:           #e8e6e1;
  --ink-dim:       #a3a8b0;
  --ink-faint:     #6f757e;
  --gold:          #c8a24a;
  --gold-bright:   #e6c069;
  --crimson:       #9e2b2b;
  --crimson-soft:  #c04141;
  --steel:         #6f8ba3;
  --ok:            #4f9d69;

  --radius:        4px;
  --radius-lg:     8px;
  --maxw:          1180px;
  --header-h:      64px;

  --shadow:        0 18px 50px rgba(0,0,0,.55);
  --shadow-sm:     0 6px 18px rgba(0,0,0,.4);

  --ff-display: "Georgia", "Times New Roman", serif;
  --ff-body:    system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ff-mono:    "Consolas", "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Фоновая «карта» — чистый CSS, без картинок */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(158,43,43,.16), transparent 60%),
    radial-gradient(900px 500px at 95% 0%, rgba(200,162,74,.10), transparent 55%),
    linear-gradient(180deg, #0d0f12 0%, #0b0d10 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

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

a { color: var(--gold); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold-bright); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; color: var(--ink-dim); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ------------------------- Шапка ------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(13,15,18,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(0,0,0,.45); }

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--gold);
  transform: rotate(45deg);
}
.brand-mark span { transform: rotate(-45deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand-sub { font-size: .62rem; color: var(--ink-faint); letter-spacing: .22em; text-transform: uppercase; }

/* Навигация */
.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 9px 12px;
  font-size: .82rem;
  color: var(--ink-dim);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--ink); background: rgba(255,255,255,.04); }
.nav-link.is-active { color: var(--gold); }
.nav-link.has-sub::after { content: "▾"; margin-left: 6px; font-size: .7em; opacity: .6; }

.subnav {
  position: absolute;
  top: 100%; left: 0;
  min-width: 230px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-item:hover .subnav, .nav-item:focus-within .subnav {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.subnav a {
  display: block;
  padding: 8px 12px;
  font-size: .86rem;
  color: var(--ink-dim);
  border-radius: 3px;
}
.subnav a:hover { background: rgba(200,162,74,.10); color: var(--gold-bright); }
.subnav a.is-active { color: var(--gold); }

.header-cta {
  margin-left: 8px;
  padding: 9px 16px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold); color: #10120f; }

.burger {
  display: none;
  margin-left: auto;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute; left: 10px; right: 10px; height: 1.5px;
  background: var(--ink); transition: .22s ease;
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 25px; }
.burger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ------------------------- Герой ------------------------- */
.hero {
  position: relative;
  padding: 92px 0 76px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero.hero-lg { padding: 130px 0 110px; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 340px at 78% 40%, rgba(158,43,43,.22), transparent 65%),
    repeating-linear-gradient(115deg, transparent 0 38px, rgba(200,162,74,.028) 38px 39px);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.kicker {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--crimson);
  padding-left: 12px;
  margin-bottom: 18px;
}
.hero h1 { max-width: 17ch; margin-bottom: .35em; }
.hero .lede { max-width: 62ch; font-size: 1.08rem; color: var(--ink-dim); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* Кнопки */
.btn {
  display: inline-block;
  padding: 13px 26px;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: .2s ease;
}
.btn-primary { background: var(--crimson); color: #fff; border-color: var(--crimson); }
.btn-primary:hover { background: var(--crimson-soft); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { background: var(--gold); color: #14120c; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-bright); color: #14120c; }

/* ------------------------- Секции ------------------------- */
.section { padding: 74px 0; border-bottom: 1px solid var(--line-soft); }
.section:last-of-type { border-bottom: 0; }
.section-alt { background: rgba(255,255,255,.017); }

.section-head { max-width: 70ch; margin-bottom: 38px; }
.section-head .eyebrow {
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.section-head h2 { margin-bottom: .35em; }

.rule { height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 26px 0; }

/* Сетки */
.grid { display: grid; gap: 20px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* Карточки */
.card {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--line); transform: translateY(-2px); }
.card h3 { color: var(--ink); margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }
.card-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
  margin-bottom: 12px;
}
.card-tag {
  display: inline-block;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,162,74,.35);
  border-radius: 99px;
  padding: 3px 11px;
  margin-bottom: 12px;
}

/* Портрет-плашка (CSS вместо картинки) */
.portrait {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 80% at 50% 12%, rgba(200,162,74,.20), transparent 62%),
    linear-gradient(160deg, #1e232b, #101317);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.portrait::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}
.portrait .mono {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: .55;
}

/* Статистика */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--bg-2); padding: 26px 22px; }
.stat .v { font-family: var(--ff-display); font-size: 2.1rem; color: var(--gold); line-height: 1; }
.stat .k { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 10px; }

/* Таблица */
.table-wrap { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .92rem; }
th, td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); }
th { background: var(--bg-3); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); font-weight: 600; }
td { color: var(--ink-dim); }
tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(255,255,255,.022); }

/* Список-галочки */
.checks { list-style: none; padding: 0; margin: 0; }
.checks li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--ink-dim); }
.checks li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* Таймлайн */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(180deg, var(--gold), transparent); }
.tl-item { position: relative; margin-bottom: 28px; }
.tl-item::before { content: ""; position: absolute; left: -28px; top: 8px; width: 9px; height: 9px; background: var(--bg); border: 1px solid var(--gold); transform: rotate(45deg); }
.tl-date { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.tl-item h3 { margin-bottom: .3em; }

/* Цитата */
.quote {
  border-left: 2px solid var(--crimson);
  padding: 6px 0 6px 24px;
  margin: 30px 0;
  font-family: var(--ff-display);
  font-size: 1.24rem;
  color: var(--ink);
  font-style: italic;
}
.quote cite { display: block; margin-top: 12px; font-size: .8rem; font-style: normal; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }

/* ------------------------- Видео (YouTube) ------------------------- */
.video-card {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.yt {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(90% 120% at 50% 40%, #262c35, #0f1216);
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  width: 100%;
  padding: 0;
  font-family: inherit;
  color: inherit;
}
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-play {
  width: 66px; height: 46px;
  border-radius: 10px;
  background: rgba(158,43,43,.92);
  display: grid; place-items: center;
  transition: transform .2s ease, background .2s ease;
}
.yt-play::before { content: ""; border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 4px; }
.yt:hover .yt-play { transform: scale(1.08); background: #cc2f2f; }
.yt-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px;
  text-align: left;
  font-size: .8rem;
  color: var(--ink-dim);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.8));
}
.yt-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(0,0,0,.6); border: 1px solid var(--line);
  color: var(--gold); padding: 4px 10px; border-radius: 99px;
}
.video-meta { padding: 18px 20px; }
.video-meta h3 { margin-bottom: .35em; font-size: 1.05rem; }
.video-meta p { font-size: .9rem; margin-bottom: 0; }

/* ------------------------- Табы ------------------------- */
.tabs { display: flex; flex-wrap: wrap; gap: 6px; border-bottom: 1px solid var(--line-soft); margin-bottom: 26px; }
.tab {
  padding: 10px 18px;
  background: none; border: 0; border-bottom: 2px solid transparent;
  color: var(--ink-faint); font-family: inherit; font-size: .84rem;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
}
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ------------------------- Аккордеон (FAQ) ------------------------- */
.acc-item { border: 1px solid var(--line-soft); border-radius: var(--radius); margin-bottom: 10px; background: var(--bg-2); }
.acc-q {
  width: 100%; text-align: left;
  padding: 17px 50px 17px 20px;
  background: none; border: 0; cursor: pointer;
  color: var(--ink); font-family: var(--ff-display); font-size: 1.02rem;
  position: relative;
}
.acc-q::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.3rem; transition: transform .2s; }
.acc-item.open .acc-q::after { transform: translateY(-50%) rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-a > div { padding: 0 20px 18px; color: var(--ink-dim); font-size: .95rem; }

/* ------------------------- Галерея ------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.shot {
  aspect-ratio: 16/9;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(140deg, #1d2229, #0f1216);
}
.shot::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(48deg, transparent 0 22px, rgba(200,162,74,.05) 22px 23px);
}
.shot span {
  position: absolute; left: 14px; bottom: 12px;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim);
}
.shot:hover { border-color: var(--gold); }

/* Лайтбокс */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,6,8,.94);
  display: none; place-items: center; padding: 30px;
}
.lightbox.open { display: grid; }
.lightbox-inner { max-width: 960px; width: 100%; aspect-ratio: 16/9; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(140deg, #1d2229, #0f1216); display: grid; place-items: center; color: var(--ink-dim); }
.lightbox-close { position: absolute; top: 22px; right: 26px; background: none; border: 0; color: var(--ink); font-size: 2rem; cursor: pointer; line-height: 1; }

/* ------------------------- Обратный отсчёт ------------------------- */
.countdown { display: flex; gap: 12px; flex-wrap: wrap; }
.cd-cell {
  min-width: 92px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
}
.cd-cell .n { font-family: var(--ff-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.cd-cell .l { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; }

/* ------------------------- Полосы прокачки ------------------------- */
.bar { margin-bottom: 16px; }
.bar-top { display: flex; justify-content: space-between; font-size: .84rem; margin-bottom: 6px; }
.bar-top span:last-child { color: var(--gold); }
.bar-track { height: 6px; background: var(--bg-3); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--crimson), var(--gold)); width: 0; transition: width 1.1s cubic-bezier(.2,.8,.2,1); }

/* ------------------------- Форма ------------------------- */
.form { max-width: 520px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: inherit;
  font-size: .95rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--ink-faint); }
.form-msg { margin-top: 14px; font-size: .9rem; color: var(--ok); display: none; }
.form-msg.show { display: block; }

/* ------------------------- CTA-полоса ------------------------- */
.cta-band {
  background: linear-gradient(120deg, rgba(158,43,43,.20), rgba(200,162,74,.10));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: .4em; }
.cta-band p { max-width: 56ch; margin-inline: auto; }

/* ------------------------- Подвал ------------------------- */
.site-footer { padding: 56px 0 30px; border-top: 1px solid var(--line-soft); background: rgba(0,0,0,.25); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 30px; }
.footer-col h4 { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); font-family: var(--ff-body); margin-bottom: 14px; }
.footer-col a { display: block; font-size: .88rem; color: var(--ink-dim); margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold); }
.footer-about p { font-size: .88rem; max-width: 40ch; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: var(--ink-faint);
}

/* Хлебные крошки */
.crumbs { font-size: .78rem; color: var(--ink-faint); margin-bottom: 16px; letter-spacing: .04em; }
.crumbs a { color: var(--ink-faint); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 8px; opacity: .5; }

/* Появление при скролле */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Кнопка «наверх» */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 44px; height: 44px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); color: var(--gold);
  cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { border-color: var(--gold); }

/* ------------------------- Адаптив ------------------------- */
@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .burger { display: block; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 10px 14px 26px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav-link { padding: 12px 8px; font-size: .9rem; }
  .subnav {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: none;
    padding: 0 0 8px 14px;
    border-left: 1px solid var(--line);
    margin-left: 8px;
    display: none;
  }
  .nav-item.open .subnav { display: block; }
  .nav-link.has-sub::after { float: right; }
}

@media (max-width: 760px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 62px 0 52px; }
  .hero.hero-lg { padding: 80px 0 66px; }
  .section { padding: 52px 0; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
