:root {
  color-scheme: dark;
  --bg: #090b0c;
  --panel: #101418;
  --text: #f3f0e8;
  --muted: #b7afa2;
  --gold: #d8a84f;
  --blood: #9e2f28;
  --line: rgba(255,255,255,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(9,11,12,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand img { width: 38px; height: 38px; object-fit: cover; border-radius: 6px; }
nav { display: flex; align-items: center; gap: 18px; font-size: 14px; color: var(--muted); }
nav a:hover { color: var(--text); }
.play-link { color: var(--gold); font-weight: 800; }
.hero {
  min-height: 92vh;
  display: flex;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 78px;
  background:
    linear-gradient(90deg, rgba(5,7,8,.94) 0%, rgba(5,7,8,.64) 48%, rgba(5,7,8,.18) 100%),
    url('../Tormentus/botbeta/assets/start/tormentus_start.png') center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-content { width: min(680px, 100%); }
.kicker, .section-head p, .section-copy p:first-child {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}
h1, h2, h3 { font-family: Cinzel, Georgia, serif; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(48px, 9vw, 104px); line-height: .92; }
h2 { font-size: clamp(30px, 5vw, 56px); line-height: 1; }
h3 { font-size: 22px; }
.hero-copy { max-width: 610px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.primary, .secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
}
.primary { background: var(--gold); color: #15100a; }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.08); }
.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.intro div { background: #0d1114; padding: 24px clamp(18px, 4vw, 54px); }
.intro strong { display: block; color: var(--gold); font-size: 26px; }
.intro span { color: var(--muted); }
.band { padding: 78px clamp(18px, 5vw, 72px); }
.dark { background: #0d1114; }
.section-head { max-width: 720px; margin-bottom: 30px; }
.class-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.class-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11171b;
  overflow: hidden;
}
.class-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #050607; }
.class-grid h3, .class-grid p { padding: 0 16px; }
.class-grid h3 { margin-top: 16px; }
.class-grid p { color: var(--muted); line-height: 1.45; padding-bottom: 18px; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.section-copy p:last-child { color: var(--muted); font-size: 18px; line-height: 1.6; }
.map-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.map-showcase img, .gallery img { border-radius: 8px; border: 1px solid var(--line); }
.gallery-band { background: #0b0e10; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
figure { margin: 0; }
figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #050607; }
figcaption { margin-top: 10px; color: var(--muted); font-weight: 700; }
.cta { text-align: center; padding: 76px 18px; border-top: 1px solid var(--line); background: #11100d; }
.cta p { color: var(--muted); margin-bottom: 24px; }
footer { display: flex; justify-content: space-between; padding: 24px clamp(18px, 5vw, 72px); color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 860px) {
  .topbar { position: absolute; align-items: flex-start; }
  nav { display: none; }
  .hero { min-height: 88vh; padding-top: 96px; }
  .intro, .class-grid, .split, .gallery { grid-template-columns: 1fr; }
  .map-showcase { grid-template-columns: 1fr; }
}
