/* ============== TOKENS ============== */
:root {
  --bg-deep: #06110d;
  --bg-base: #0a1a14;
  --bg-elev: #112720;
  --bg-mist: #1a3429;
  --bg-glass: rgba(20, 42, 33, 0.55);
  --line: rgba(212, 166, 74, 0.18);
  --line-strong: rgba(212, 166, 74, 0.4);

  --ink: #ece4d2;
  --ink-mute: #a89e89;
  --ink-soft: #756e5e;

  --gold: #d4a64a;
  --gold-bright: #f0c66b;
  --gold-deep: #8a6a26;

  --violet: #7b5cb8;
  --violet-glow: #b298f0;
  --emerald: #4caf83;
  --rose: #d18b6e;

  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(178, 152, 240, 0.25);

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 24px;
  --radius-xl: 36px;

  --font-display: "Fraunces", "EB Garamond", Georgia, serif;
  --font-accent: "Marcellus SC", "Trajan Pro", serif;
  --font-ui: "Outfit", "Helvetica Neue", system-ui, sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--bg-deep); }

/* ============== ATMOSPHERE ============== */
.atmos {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; overflow: hidden;
  background:
          radial-gradient(1200px 700px at 75% -10%, rgba(123, 92, 184, 0.22), transparent 65%),
          radial-gradient(900px 600px at 10% 110%, rgba(76, 175, 131, 0.13), transparent 70%),
          radial-gradient(600px 400px at 50% 50%, rgba(240, 198, 107, 0.05), transparent 70%),
          linear-gradient(180deg, #06110d 0%, #0a1a14 35%, #06110d 100%);
}
.atmos::before {
  content: ""; position: absolute; inset: -10%;
  background-image:
          radial-gradient(1px 1px at 20% 30%, rgba(236, 228, 210, 0.6), transparent 50%),
          radial-gradient(1px 1px at 80% 70%, rgba(236, 228, 210, 0.5), transparent 50%),
          radial-gradient(1px 1px at 65% 20%, rgba(236, 228, 210, 0.7), transparent 50%),
          radial-gradient(1px 1px at 35% 85%, rgba(236, 228, 210, 0.4), transparent 50%),
          radial-gradient(1px 1px at 90% 40%, rgba(236, 228, 210, 0.55), transparent 50%),
          radial-gradient(1px 1px at 12% 60%, rgba(236, 228, 210, 0.45), transparent 50%);
  background-size: 800px 800px, 600px 600px, 700px 700px, 500px 500px, 900px 900px, 650px 650px;
  opacity: 0.6;
  animation: drift 80s linear infinite;
}
.atmos::after {
  content: ""; position: absolute; inset: 0;
  background:
          radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
}
@keyframes drift {
  to { transform: translate3d(-40px, 30px, 0); }
}

.fireflies {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
}
.fireflies span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright), 0 0 24px rgba(240, 198, 107, 0.5);
  opacity: 0;
  animation: fly 14s linear infinite;
}
@keyframes fly {
  0%   { transform: translate3d(var(--x0), var(--y0), 0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translate3d(var(--x1), var(--y1), 0) scale(1); opacity: 0.8; }
  90%  { opacity: 0.7; }
  100% { transform: translate3d(var(--x2), var(--y2), 0) scale(0.5); opacity: 0; }
}

/* ============== LAYOUT ============== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 14px; height: 14px;
  background: currentColor;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1 L13.5 9.2 L20 6 L16 12 L23 12 L16 14 L20 18 L13.5 14.8 L12 23 L10.5 14.8 L4 18 L8 14 L1 12 L8 12 L4 6 L10.5 9.2 Z'/></svg>");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  flex-shrink: 0;
}
.eyebrow::after { display: none; }
.eyebrow.left::before { width: 14px; }
.eyebrow.left::after { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 1.02;
  font-weight: 300;
}
h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  margin-top: 18px;
}
h2 em { font-style: italic; color: var(--gold-bright); font-weight: 500; }

h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 500;
}

p { color: var(--ink-mute); font-weight: 300; }
.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 56ch;
}

/* ============== BUTTONS ============== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), background 0.4s var(--ease-soft);
  white-space: nowrap;
}
.btn-primary {
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, #b9882f);
  box-shadow: 0 14px 40px rgba(212, 166, 74, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(212, 166, 74, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: 100% 0;
  opacity: 0;
  transition: opacity 0.4s, background-position 0.9s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::after { opacity: 1; background-position: -100% 0; }

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(20, 42, 33, 0.4);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(212, 166, 74, 0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn .arrow {
  width: 14px; height: 14px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .arrow { transform: rotate(45deg) translate(3px, -3px); }

/* ============== HEADER ============== */
header.site {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-soft), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
header.site.scrolled {
  padding: 12px 0;
  background: rgba(6, 17, 13, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
header.site .wrap {
  display: flex; align-items: center; gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; flex-shrink: 0;
}
.brand .mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background:
          radial-gradient(circle at 32% 32%, #2a1a4a 0%, #0f1d18 65%, #06110d 100%);
  border: 1px solid rgba(212, 166, 74, 0.45);
  box-shadow: 0 0 16px rgba(178, 152, 240, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.brand .mark::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fbecc7 40%, #f0c66b 75%, #d4a64a 100%);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><defs><mask id='m' maskUnits='userSpaceOnUse'><rect width='48' height='48' fill='black'/><circle cx='28' cy='24' r='12' fill='white'/><circle cx='23' cy='22' r='12' fill='black'/></mask></defs><rect width='48' height='48' fill='white' mask='url(%23m)'/><circle cx='17' cy='17' r='1.2' fill='white'/><circle cx='14' cy='25' r='0.9' fill='white'/><circle cx='17' cy='32' r='0.7' fill='white'/></svg>");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  filter: drop-shadow(0 0 3px rgba(240, 198, 107, 0.5));
}
.brand .mark::after {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 166, 74, 0.3);
  pointer-events: none;
}
.brand .name {
  display: flex; flex-direction: column; line-height: 1;
}
.brand .name strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.01em;
}
.brand .name span {
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 0.36em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}

nav.main { margin-left: auto; }
nav.main ul {
  display: flex; gap: 4px; list-style: none;
}
nav.main a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  position: relative;
  transition: color 0.3s var(--ease-soft);
}
nav.main a:hover { color: var(--gold-bright); }
nav.main a::after {
  content: ""; position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out), left 0.4s var(--ease-out);
}
nav.main a:hover::after { width: 24px; left: calc(50% - 12px); }

.hamburger { display: none; width: 36px; height: 36px; position: relative; flex-shrink: 0; }
.hamburger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: var(--ink); transition: 0.3s var(--ease-out);
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 17.5px; }
.hamburger span:nth-child(3) { top: 23px; }
.hamburger.open span:nth-child(1) { top: 17.5px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 17.5px; transform: rotate(-45deg); }

@media (max-width: 920px) {
  nav.main {
    position: fixed; inset: 64px 0 0 0;
    background: rgba(6, 17, 13, 0.97);
    backdrop-filter: blur(14px);
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-out);
    padding: 40px var(--gutter);
  }
  nav.main.open { transform: translateY(0); }
  nav.main ul { flex-direction: column; gap: 0; }
  nav.main a {
    padding: 18px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--line);
  }
  .hamburger { display: block; margin-left: auto; }
  header.site .btn-primary { display: none; }
}

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero .copy { max-width: 660px; }
.hero h1 { margin-top: 22px; }
.hero .lead { margin-top: 26px; max-width: 50ch; }
.hero .ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .meta {
  margin-top: 56px;
  display: flex; gap: 32px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero .meta div {
  display: flex; flex-direction: column; gap: 4px;
}
.hero .meta strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold-bright);
  font-style: italic;
}
.hero .meta span {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  margin-top: 30px;
}
.hero-art svg { width: 100%; height: 100%; overflow: visible; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; align-items: stretch; }
  .hero-art { max-width: 460px; margin: 0 auto; }
}

/* ============== ORNAMENT ============== */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 26px; margin: 60px auto;
  color: var(--gold);
  opacity: 0.75;
}
.ornament::before, .ornament::after {
  content: ""; flex: 1; max-width: 180px;
  height: 6px;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1.5px);
  background-size: 12px 6px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.55;
}
.ornament svg { width: 70px; height: 22px; }

/* ============== ABOUT ============== */
.about .wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-art {
  position: relative;
  aspect-ratio: 1 / 1.15;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: linear-gradient(160deg, #1a3429 0%, #06110d 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-deep);
}
.about-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-art .label {
  position: absolute;
  top: 24px; left: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(6, 17, 13, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.about p + p { margin-top: 20px; }
.about .quote {
  margin-top: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}

@media (max-width: 900px) {
  .about .wrap { grid-template-columns: 1fr; }
  .about-art { max-width: 500px; margin: 0 auto; }
}

/* ============== FEATURES ============== */
.features-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 70px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-base) 100%);
  border: 1px solid var(--line);
  transition: transform 0.6s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
  overflow: hidden;
  isolation: isolate;
}
.feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% 0%, rgba(212, 166, 74, 0.12), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease-soft);
  pointer-events: none; z-index: -1;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}
.feature:hover::before { opacity: 1; }
.feature .ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(212, 166, 74, 0.18), rgba(123, 92, 184, 0.12));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--gold-bright);
}
.feature .ico svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: 12px; }
.feature p { font-size: 15px; line-height: 1.6; }
.feature .num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  opacity: 0.4;
}

@media (max-width: 1080px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } .features-head { grid-template-columns: 1fr; } }

/* ============== GAMES ============== */
.games {
  position: relative;
}
.games::before {
  content: ""; position: absolute;
  inset: 0;
  background:
          radial-gradient(800px 500px at 80% 30%, rgba(123, 92, 184, 0.18), transparent 60%),
          radial-gradient(600px 400px at 10% 80%, rgba(76, 175, 131, 0.1), transparent 60%);
  pointer-events: none; z-index: -1;
}
.games-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.games-head .lead { margin: 24px auto 0; }

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-deep));
  border: 1px solid var(--line);
  transition: transform 0.7s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
  text-decoration: none;
  color: var(--ink);
}
.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 166, 74, 0.18);
}
.game-card .visual {
  aspect-ratio: 5 / 4;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a3429, #06110d);
}
.game-card .visual svg {
  width: 100%; height: 100%;
  transition: transform 1s var(--ease-out);
}
.game-card:hover .visual svg { transform: scale(1.06); }
.game-card .body {
  padding: 30px 28px 34px;
  display: flex; flex-direction: column;
  flex: 1;
}
.game-card .index {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.game-card h3 { margin-bottom: 12px; font-size: 26px; }
.game-card p {
  font-size: 15px; line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}
.game-card .cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  align-self: flex-start;
}
.game-card .cta::after {
  content: "→";
  transition: transform 0.4s var(--ease-out);
  display: inline-block;
}
.game-card:hover .cta::after { transform: translateX(6px); }

@media (max-width: 1000px) { .game-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .game-grid { grid-template-columns: 1fr; } }

/* ============== FAQ ============== */
.faq .wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
}
.faq-side h2 { font-size: clamp(32px, 4vw, 48px); }
.faq-side p { margin-top: 18px; max-width: 36ch; }
.faq-side .ask {
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: var(--radius-m);
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.faq-side .ask span {
  display: block;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.faq-side .ask a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.faq-side .ask a:hover { color: var(--gold-bright); }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s var(--ease-soft);
}
.faq-q:hover { color: var(--gold-bright); }
.faq-q .plus {
  width: 28px; height: 28px; flex-shrink: 0;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, background 0.4s;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  transition: transform 0.4s var(--ease-out);
}
.faq-q .plus::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .plus::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .plus { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--bg-deep); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out);
}
.faq-a-inner { padding: 0 0 26px; max-width: 60ch; color: var(--ink-mute); }

@media (max-width: 860px) { .faq .wrap { grid-template-columns: 1fr; } }

/* ============== CONTACT ============== */
.contact {
  position: relative;
}
.contact .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-side h2 { margin-top: 18px; }
.contact-side p { margin-top: 22px; max-width: 40ch; }
.contact-side .channels {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.contact-side .channel {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-m);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.contact-side .channel:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-side .channel .ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(212, 166, 74, 0.2), rgba(123, 92, 184, 0.15));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}
.contact-side .channel small {
  display: block;
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-side .channel a, .contact-side .channel strong {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
}
.contact-side .channel a:hover { color: var(--gold-bright); }

.contact-form {
  padding: 40px;
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-base));
  border: 1px solid var(--line);
}
.field {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.field label {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input, .field textarea {
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elev);
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .agree {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.contact-form .agree input { accent-color: var(--gold); }

.toast {
  position: fixed; left: 50%; bottom: 30px;
  transform: translate(-50%, 80px);
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--bg-elev);
  border: 1px solid var(--gold);
  color: var(--ink);
  font-size: 14px;
  z-index: 80;
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 860px) {
  .contact .wrap { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
}

/* ============== RESPONSIBLE ============== */
.responsible {
  position: relative;
  margin: 0 var(--gutter);
  padding: clamp(40px, 6vw, 70px) clamp(28px, 4vw, 60px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(123, 92, 184, 0.18), rgba(76, 175, 131, 0.08));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.responsible::before {
  content: ""; position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 0% 0%, rgba(212, 166, 74, 0.1), transparent 60%);
  pointer-events: none;
}
.responsible .badge {
  width: 78px; height: 78px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6, 17, 13, 0.4);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  color: var(--gold-bright);
  flex-shrink: 0;
  box-shadow: inset 0 0 30px rgba(212, 166, 74, 0.15);
}
.responsible h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 6px;
}
.responsible p { font-size: 15px; line-height: 1.6; }

@media (max-width: 760px) {
  .responsible { grid-template-columns: 1fr; text-align: left; padding: 36px 28px; }
  .responsible .btn { justify-self: start; }
}

/* ============== FOOTER ============== */
footer.site {
  margin-top: clamp(80px, 10vw, 140px);
  padding: clamp(60px, 7vw, 90px) 0 30px;
  border-top: 1px solid var(--line);
  background:
          radial-gradient(800px 300px at 50% 0%, rgba(123, 92, 184, 0.1), transparent 60%),
          var(--bg-deep);
}
footer.site .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: 60px;
}
footer.site .col h4 {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
footer.site .col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer.site .col a {
  color: var(--ink-mute);
  font-size: 14px;
  transition: color 0.3s var(--ease-soft), padding-left 0.3s var(--ease-out);
}
footer.site .col a:hover { color: var(--gold-bright); padding-left: 6px; }
footer.site .brand-col p {
  margin-top: 22px;
  font-size: 14px;
  max-width: 32ch;
  line-height: 1.6;
}
footer.site .brand-col .age-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}
footer.site .brand-col .age-badge::before {
  content: "18+";
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0;
}
footer.site .legal-strip {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-soft);
}
footer.site .disclaimer {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 80ch;
  margin: 0 auto 24px;
  text-align: center;
  line-height: 1.7;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
footer.site .disclaimer strong { color: var(--gold); font-weight: 500; }

@media (max-width: 900px) {
  footer.site .grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer.site .brand-col { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  footer.site .grid { grid-template-columns: 1fr; }
  footer.site .legal-strip { flex-direction: column; }
}

/* ============== AGE GATE ============== */
.age-gate {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6, 17, 13, 0.85);
  backdrop-filter: blur(18px);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-soft);
}
.age-gate.active { opacity: 1; pointer-events: auto; }
.age-gate.hide { opacity: 0; pointer-events: none; }
.age-gate .panel {
  width: 100%; max-width: 480px;
  padding: 50px 44px 44px;
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-base));
  border: 1px solid var(--line-strong);
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.6s var(--ease-out);
  box-shadow: var(--shadow-deep);
}
.age-gate.active .panel { transform: translateY(0); }
.age-gate .panel::before {
  content: ""; position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px 300px at 50% 0%, rgba(212, 166, 74, 0.12), transparent 60%);
  pointer-events: none;
}
.age-gate .seal {
  width: 90px; height: 90px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-bright), var(--gold) 50%, var(--gold-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  color: var(--bg-deep);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5), 0 0 60px rgba(212, 166, 74, 0.4);
}
.age-gate h2 { font-size: 32px; margin: 0 0 14px; }
.age-gate p { font-size: 15px; line-height: 1.6; max-width: 36ch; margin: 0 auto; }
.age-gate .actions {
  margin-top: 32px;
  display: flex; gap: 12px; justify-content: center;
}
.age-gate .deny {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 18px;
  cursor: pointer;
  transition: color 0.3s;
}
.age-gate .deny:hover { color: var(--gold); }

/* ============== COOKIE BANNER ============== */
.cookie {
  position: fixed; left: 20px; bottom: 20px;
  z-index: 90;
  width: 100%;
  max-width: 380px;
  padding: 22px 24px;
  border-radius: var(--radius-m);
  background: rgba(10, 26, 20, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-deep);
  transform: translateY(140%);
  transition: transform 0.6s var(--ease-out);
}
.cookie.show { transform: translateY(0); }
.cookie h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.cookie p { font-size: 13px; line-height: 1.55; margin-bottom: 16px; }
.cookie .actions { display: flex; gap: 8px; }
.cookie .actions button {
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-soft);
}
.cookie .accept {
  background: var(--gold-bright);
  color: var(--bg-deep);
  font-weight: 500;
}
.cookie .accept:hover { background: var(--gold); }
.cookie .decline {
  border: 1px solid var(--line-strong);
  color: var(--ink-mute);
}
.cookie .decline:hover { color: var(--ink); border-color: var(--gold); }

@media (max-width: 460px) { .cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .fireflies, .atmos::before { animation: none; }
}

/* ============== LEGAL PAGES ============== */
.legal {
  padding: 160px 0 100px;
  max-width: 880px;
  margin: 0 auto;
}
.legal .meta {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.legal h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px; }
.legal .updated {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-size: 28px;
  margin-top: 46px;
  margin-bottom: 16px;
  color: var(--gold-bright);
}
.legal h3 { font-size: 20px; margin-top: 28px; margin-bottom: 10px; color: var(--ink); }
.legal p { color: var(--ink-mute); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 18px; }
.legal li { color: var(--ink-mute); font-size: 16px; line-height: 1.75; margin-bottom: 6px; }
.legal a { color: var(--gold-bright); border-bottom: 1px solid var(--line); }
.legal a:hover { color: var(--gold); }