/* ---------- Tokens ---------- */
:root {
  --bg: #050818;
  --bg-2: #0a1228;
  --surface: rgba(20, 28, 60, 0.55);
  --surface-2: rgba(28, 38, 76, 0.7);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #eef0ff;
  --text-muted: #a7afd0;
  --text-dim: #707aa4;
  --accent: #7c4dff;
  --accent-2: #5ad4ff;
  --accent-hot: #ff7a45;
  --gold: #f6c560;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1240px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  --grad-purple: linear-gradient(135deg, #7c4dff 0%, #5ad4ff 100%);
  --grad-hero: radial-gradient(ellipse at 50% 30%, rgba(124, 77, 255, 0.25), transparent 60%),
               radial-gradient(ellipse at 30% 80%, rgba(90, 212, 255, 0.15), transparent 60%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(124, 77, 255, 0.12), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(90, 212, 255, 0.08), transparent 45%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }
img, video { display: block; max-width: 100%; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: white; padding: 8px 16px; z-index: 999;
}
.skip:focus { left: 12px; top: 12px; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
p { margin: 0 0 1em; color: var(--text-muted); }
strong { color: var(--text); font-weight: 600; }
em { color: var(--accent-2); font-style: normal; }

.eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: rgba(124, 77, 255, 0.08);
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.lede { font-size: 1.15rem; max-width: 760px; color: var(--text-muted); }
.note { font-size: .95rem; color: var(--text-dim); margin-top: 30px; max-width: 720px; }
.caption { font-size: .85rem; color: var(--text-dim); margin-top: 10px; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-purple);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(124, 77, 255, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(124, 77, 255, 0.7); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-xl { padding: 20px 40px; font-size: 1.15rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 14px 28px;
  background: rgba(5, 8, 24, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(5, 8, 24, 0.85);
  border-bottom-color: var(--border);
}
.brand img {
  height: 52px; width: auto;
  filter: brightness(1.45) contrast(1.08) drop-shadow(0 0 18px rgba(124,77,255,0.6));
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .92rem;
  color: var(--text-muted);
  font-weight: 500;
}
.nav a:hover { color: var(--text); }
.menu-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer; padding: 10px;
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--text); display: block; transition: transform .2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: var(--vh, 100vh);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 120px 28px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  filter: saturate(1.1) brightness(.65);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 8, 24, 0.5) 0%, rgba(5, 8, 24, 0.4) 40%, rgba(5, 8, 24, 0.95) 100%),
    radial-gradient(ellipse at 50% 50%, transparent, rgba(5, 8, 24, 0.5));
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 980px;
  text-align: center;
}
.hero h1 {
  background: linear-gradient(180deg, #ffffff 30%, #b6c0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 30px rgba(124, 77, 255, 0.2);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--text);
  opacity: .92;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  z-index: 3;
}
.scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  margin: 8px auto 0;
  animation: scroll-bob 1.6s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: .3; }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: 120px 0;
}
.section > .container { position: relative; z-index: 2; }

.section-story { background: linear-gradient(180deg, var(--bg) 0%, #07112a 100%); }
.section-orin { background: #07112a; }
.section-loop { background: linear-gradient(180deg, #07112a 0%, #050d20 100%); }
.section-elements { background: #050d20; }
.section-machines { background: linear-gradient(180deg, #050d20 0%, #08132a 100%); }
.section-items { background: #08132a; }
.section-economy { background: linear-gradient(180deg, #08132a 0%, #050d20 100%); }
.section-seasons { background: #050d20; }
.section-atmosphere { background: linear-gradient(180deg, #050d20 0%, #04081c 100%); }
.section-gallery { background: linear-gradient(180deg, #08132a 0%, #050d20 100%); }
.section-facilities { background: linear-gradient(180deg, #050d20 0%, #08132a 100%); }
.section-stations { background: linear-gradient(180deg, #08132a 0%, #050d20 100%); }

/* Poster cards (sci-fi framed images/videos) — compact square crop */
.facilities-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.stations-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.poster-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0f25;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.poster-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--border);
  transition: box-shadow .3s ease;
}
.poster-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -16px rgba(90, 212, 255, 0.35);
}
.poster-card:hover::after { box-shadow: inset 0 0 0 1px rgba(90, 212, 255, 0.45); }
.poster-card video, .poster-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Unified card-media heights for tablet/mobile */
@media (max-width: 980px) {
  .el-card video,
  .machine-card video,
  .item-card video,
  .poster-card video, .poster-card img,
  .gallery-card img { height: 220px; }
}
@media (max-width: 640px) {
  .el-card video,
  .machine-card video,
  .item-card video,
  .poster-card video, .poster-card img,
  .gallery-card img { height: 170px; }
}

/* Gallery */
.gallery-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform .25s ease, border-color .25s ease;
}
.gallery-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.gallery-card { cursor: zoom-in; }
.gallery-card img {
  width: 100%; height: 280px; object-fit: cover;
  background: #0a0f25;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(2, 4, 12, 0.94);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 60px 40px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,77,255,0.2);
  cursor: default;
}
.lightbox-caption {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted); font-size: .95rem;
  background: rgba(0,0,0,0.5);
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--border);
  max-width: 80vw; text-align: center;
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; line-height: 1;
  transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
@media (max-width: 640px) {
  .lightbox { padding: 24px 12px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
}
.gallery-card figcaption {
  padding: 14px 18px;
  font-size: .9rem;
  color: var(--text-muted);
}
.gallery-wide { grid-column: span 3; }
.gallery-wide img { aspect-ratio: 21/9; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-text { order: 2; }
.split.reverse .split-media { order: 1; }
.split-text p:last-child { margin-bottom: 0; }
.split-media .video-frame { margin-top: 20px; }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.portrait {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}

/* ---------- Loop steps ---------- */
.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.loop-step {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.loop-step:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.step-no {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem;
  letter-spacing: .15em;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.loop-step h3 { margin-bottom: 12px; }
.loop-step p { margin: 0; font-size: .95rem; }

/* ---------- Card grids ---------- */
.card-grid { margin-top: 60px; display: grid; gap: 18px; }
.elements-grid { grid-template-columns: repeat(5, 1fr); }
.machines-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
.items-grid { grid-template-columns: repeat(6, 1fr); }

.el-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.el-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 40px -16px rgba(124,77,255,0.4);
}
.el-card video {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: radial-gradient(circle at 50% 50%, #0f1a3a 0%, #050d20 70%);
  padding: 14px;
}
.el-card figcaption {
  padding: 16px 18px;
  display: flex; flex-direction: column;
}
.el-card figcaption strong { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; }
.el-card figcaption span { font-size: .8rem; color: var(--text-dim); margin-top: 4px; }
.el-card-plasma { border-color: rgba(124,77,255,0.4); box-shadow: 0 0 30px -10px rgba(124,77,255,0.4); }
.el-card-plasma figcaption strong { color: var(--accent-2); }
.el-card-chord {
  border-color: rgba(246, 197, 96, 0.45);
  box-shadow: 0 0 32px -8px rgba(246, 197, 96, 0.4);
  background: linear-gradient(180deg, rgba(246, 197, 96, 0.06) 0%, var(--surface) 100%);
}
.el-card-chord figcaption strong { color: var(--gold); }

.machine-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.machine-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.machine-card video {
  width: 100%; height: 280px; object-fit: contain;
  background: radial-gradient(circle at 50% 50%, #0f1a3a 0%, #050d20 70%);
  padding: 14px;
}
.machine-body { padding: 26px 26px 30px; }
.tier {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(90, 212, 255, 0.1);
}
.tier-1 .tier { color: var(--gold); background: rgba(246, 197, 96, 0.1); }
.tier-2 .tier { color: var(--accent-2); }
.tier-3 .tier { color: var(--accent); background: rgba(124, 77, 255, 0.15); }
.machine-body p { margin: 0; font-size: .95rem; }

.item-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}
.item-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.item-card video {
  width: 100%; height: 280px; object-fit: contain;
  background: radial-gradient(circle at 50% 50%, #0f1a3a 0%, #050d20 70%);
  padding: 14px;
}
.item-card figcaption {
  padding: 14px 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: .92rem;
}

/* ---------- Economy ---------- */
.econ-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.econ-card {
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .25s ease, transform .25s ease;
}
.econ-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.econ-card h3 { margin-bottom: 12px; }
.econ-card p { margin: 0; font-size: .95rem; }

/* ---------- Seasons ---------- */
.seasons-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.season-card {
  padding: 50px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(124,77,255,0.08) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.season-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-purple);
  opacity: .8;
}
.season-card:nth-child(2)::before { background: linear-gradient(90deg, #5ad4ff, #f6c560); }
.season-card:nth-child(3)::before { background: linear-gradient(90deg, #ff7a45, #ff3a3a); }
.season-no {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  margin-bottom: 14px;
}
.season-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.season-card p { margin: 0; }

/* ---------- OST ---------- */
.ost-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.ost-frame { display: flex; flex-direction: column; }
.ost-frame iframe {
  width: 100%; aspect-ratio: 16/9; border: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ---------- Final CTA ---------- */
.section-final-cta {
  position: relative;
  padding: 140px 28px;
  text-align: center;
  overflow: hidden;
  background: #04081c;
}
.cta-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.1) brightness(.5);
}
.cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(124, 77, 255, 0.3), transparent 60%),
    linear-gradient(180deg, rgba(4, 8, 28, 0.6) 0%, rgba(4, 8, 28, 0.9) 100%);
}
.cta-content {
  position: relative; z-index: 2;
  max-width: 800px;
}
.cta-content h2 { margin-bottom: 18px; }
.cta-content p { font-size: 1.15rem; margin-bottom: 36px; color: var(--text); }
.cta-content .micro {
  margin-top: 22px;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #03061a;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo { height: 50px; margin-bottom: 16px; }
.footer-tag { font-size: .9rem; color: var(--text-dim); max-width: 280px; }
.site-footer h4 { margin-bottom: 18px; color: var(--text); font-size: .8rem; }
.site-footer a {
  display: block;
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.site-footer a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: .85rem; color: var(--text-dim);
}


/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .site-header.menu-open .nav {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(5, 8, 24, 0.95);
    backdrop-filter: blur(14px);
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse .split-text { order: 1; }
  .split.reverse .split-media { order: 2; }
  .loop-grid { grid-template-columns: repeat(2, 1fr); }
  .elements-grid { grid-template-columns: repeat(3, 1fr); }
  .machines-grid { grid-template-columns: 1fr; }
  .items-grid { grid-template-columns: repeat(3, 1fr); }
  .econ-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: 1fr; }
  .ost-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 2; }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); max-width: 640px; }
  .stations-grid { grid-template-columns: repeat(5, 1fr); max-width: 100%; gap: 10px; }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .hero { padding: 110px 20px 70px; }
  .container { padding: 0 20px; }
  .elements-grid { grid-template-columns: repeat(2, 1fr); }
  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .econ-grid { grid-template-columns: 1fr; }
  .loop-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { font-size: .75rem; gap: 8px; }
  .btn-lg, .btn-xl { padding: 14px 26px; font-size: 1rem; }
  .brand img { height: 38px; }
  .site-header { padding: 12px 18px; gap: 14px; }
  .site-header .btn-sm { padding: 8px 14px; font-size: .82rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
  .gallery-wide img { aspect-ratio: 16/10; }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stations-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 100%; }
  .stations-grid .poster-card:nth-child(4),
  .stations-grid .poster-card:nth-child(5) { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg, .cta-bg, .el-card video, .machine-card video, .item-card video {
    display: none;
  }
}
