/* ============================================================
   This Round Is Yours — Golden Vegas Art Deco
   Single stylesheet. Sections appended per build phase.
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  --c-bg:      #0a0a0c;
  --c-bg-2:    #121116;
  --c-panel:   #1a1920;
  --c-panel-2: #221f29;
  --c-line:    rgba(212, 175, 55, .16);
  --c-line-soft: rgba(245, 241, 230, .08);

  --c-gold:    #d4af37;
  --c-gold-lt: #f0d98c;
  --c-gold-dk: #9c7a23;
  --c-grad:    linear-gradient(135deg, #f6e4a6 0%, #d4af37 52%, #a87d28 100%);
  --c-grad-soft: linear-gradient(135deg, rgba(240,217,140,.18), rgba(212,175,55,.06));

  --c-text:    #f5f1e6;
  --c-muted:   #a59f93;
  --c-dim:     #6f6a60;

  --c-emerald: #1f5d4c;
  --c-burgundy:#5a1f2e;

  --shadow-1: 0 12px 40px rgba(0,0,0,.45);
  --shadow-gold: 0 0 0 1px rgba(212,175,55,.25), 0 18px 50px rgba(212,175,55,.10);

  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --header-offset: 72px;
  --maxw: 1280px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { flex: 1 0 auto; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; overflow-wrap: break-word; word-break: break-word; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-break: break-word;
  text-wrap: balance;
}

p { overflow-wrap: break-word; }

ul, ol { list-style: none; padding: 0; }

button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

input, textarea, select { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }

::selection { background: rgba(212,175,55,.3); color: #fff; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}
@media (max-width: 820px) { .container { padding-inline: 20px; } }
@media (max-width: 430px) { .container { padding-inline: 15px; } }

.section { padding-block: clamp(56px, 8vw, 116px); position: relative; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Deco section heading kicker (NOT an eyebrow subtitle — a decorative gold rule) */
.deco-rule {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--c-gold); font-family: var(--font-head);
  font-size: 13px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
}
.deco-rule::before, .deco-rule::after {
  content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--c-gold));
}
.deco-rule::after { background: linear-gradient(90deg, var(--c-gold), transparent); }

.section__head { max-width: none; margin-bottom: clamp(32px, 4vw, 56px); }
.section__head h2 { font-size: clamp(28px, 4.4vw, 48px); margin-top: 14px; }
.section__head p { color: var(--c-muted); margin-top: 14px; font-size: clamp(15px, 1.6vw, 18px); }

/* ---- Buttons ---- */
.btn {
  --b-pad-y: 15px; --b-pad-x: 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--b-pad-y) var(--b-pad-x);
  font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  border-radius: 999px;
  white-space: normal; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none; user-select: none;
  touch-action: manipulation;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary {
  background: var(--c-grad); color: #1a1304;
  box-shadow: 0 10px 30px rgba(212,175,55,.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(212,175,55,.42); }

.btn--ghost {
  background: transparent; color: var(--c-gold-lt);
  border: 1px solid var(--c-gold); box-shadow: inset 0 0 0 0 rgba(212,175,55,.1);
}
.btn--ghost:hover { background: rgba(212,175,55,.08); color: #fff; transform: translateY(-2px); }

.btn--lg { --b-pad-y: 18px; --b-pad-x: 38px; font-size: 16px; }
.btn--sm { --b-pad-y: 11px; --b-pad-x: 20px; font-size: 14px; }

/* ============================================================
   Header + nav + burger
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(10,10,12,.74);
  border-bottom: 1px solid var(--c-line);
  overflow: visible;
  transition: background .3s var(--ease);
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-block: 13px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: .02em;
  line-height: 1; white-space: nowrap;
  background: var(--c-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand__name small { display: block; font-size: 9.5px; letter-spacing: .42em; color: var(--c-muted);
  -webkit-text-fill-color: var(--c-muted); margin-top: 3px; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--c-text);
  letter-spacing: .01em; position: relative; padding-block: 4px;
  transition: color .3s var(--ease), letter-spacing .3s var(--ease), text-shadow .3s var(--ease);
}
/* Header hover: gold glow + letter-spacing, NO underline */
.nav a:hover { color: var(--c-gold-lt); letter-spacing: .08em; text-shadow: 0 0 18px rgba(240,217,140,.55); }
.nav a.is-active { color: var(--c-gold); }

.nav__cta { margin-left: 4px; }
.nav a.nav__cta, .nav a.nav__cta:hover { color: #1a1304; letter-spacing: .01em; text-shadow: none; }

/* Burger */
.burger {
  display: none; width: 46px; height: 46px; position: relative; z-index: 110; flex-shrink: 0;
  border-radius: 12px; background: rgba(212,175,55,.07); border: 1px solid var(--c-line);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent; -webkit-user-select: none; user-select: none;
}
.burger span {
  position: absolute; left: 13px; right: 13px; height: 2px; background: var(--c-gold-lt); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 1220px) {
  .burger { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; width: 100%; max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 72px)); z-index: 100; box-sizing: border-box;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px 24px 28px;
    background: linear-gradient(165deg, #121116 0%, #1a1920 100%);
    border-top: 1px solid var(--c-line); box-shadow: var(--shadow-1);
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s;
  }
  .nav a {
    width: 100%; padding: 16px 2px; font-size: 20px; text-align: left;
    border-bottom: 1px solid var(--c-line-soft);
  }
  .nav a.is-active::before { display: none; }
  .nav a.is-active { padding-left: 12px; border-left: 3px solid var(--c-gold); }
  .nav__cta { margin: 18px 0 0; width: 100%; }
  /* NO body scroll-lock, NO header reposition — background scroll allowed (prevents jump) */
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .first-reveal { animation: none !important; }
}

/* Above-fold: pure CSS, transform-only (no opacity -> stays paintable, keeps LCP eligible, no flash) */
.first-reveal { animation: firstReveal 1s var(--ease-out) backwards; }
.first-reveal:nth-child(1) { animation-delay: .05s; }
.first-reveal:nth-child(2) { animation-delay: .18s; }
.first-reveal:nth-child(3) { animation-delay: .31s; }
.first-reveal:nth-child(4) { animation-delay: .44s; }
@keyframes firstReveal {
  from { transform: translateY(26px); }
  to   { transform: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-block: clamp(80px, 13vw, 168px);
  background: var(--c-bg);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.42);
}
.hero::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 55%; z-index: 1;
  background: linear-gradient(180deg, transparent, var(--c-bg));
}
.hero__rays {
  position: absolute; inset: -40% -10% auto; height: 130%; z-index: 2;
  background:
    conic-gradient(from 180deg at 50% 0%,
      transparent 0deg, rgba(212,175,55,.10) 12deg, transparent 24deg,
      rgba(212,175,55,.08) 36deg, transparent 48deg, rgba(212,175,55,.10) 60deg, transparent 72deg,
      rgba(212,175,55,.07) 84deg, transparent 96deg, rgba(212,175,55,.10) 108deg, transparent 120deg);
  transform-origin: 50% 0; animation: rayspin 50s linear infinite;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 72%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 72%);
}
@keyframes rayspin { to { transform: rotate(360deg); } }

.hero__inner { position: relative; z-index: 3; text-align: center; }
.hero__title {
  font-size: clamp(38px, 8vw, 86px); line-height: 1.02; letter-spacing: -0.02em;
  margin-inline: auto;
}
.hero__title em {
  font-style: normal;
  background: var(--c-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 50px rgba(212,175,55,.25);
}
.hero__lead { font-size: clamp(16px, 2vw, 21px); color: var(--c-muted); margin: 26px auto 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 38px; }
.hero__stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px, 6vw, 72px);
  margin-top: 56px; padding-top: 38px; border-top: 1px solid var(--c-line);
}
.hero__stats li { display: flex; flex-direction: column; align-items: center; }
.hero__stats strong { font-family: var(--font-head); font-size: clamp(28px, 4vw, 40px); color: var(--c-gold-lt); line-height: 1; }
.hero__stats span { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-top: 8px; }

/* ============================================================
   Advantages
   ============================================================ */
.advantages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.adv-card {
  position: relative; padding: 34px 30px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--c-panel), var(--c-bg-2));
  border: 1px solid var(--c-line-soft); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.adv-card::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: inherit;
  background: linear-gradient(160deg, rgba(212,175,55,.5), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s var(--ease);
}
.adv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-1); }
.adv-card:hover::before { opacity: 1; }
.adv-card__icon {
  display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center;
  border-radius: 14px; background: var(--c-grad-soft); border: 1px solid var(--c-line); margin-bottom: 20px;
}
.adv-card__icon svg { width: 28px; height: 28px; color: var(--c-gold-lt); }
.adv-card h3 { font-size: 20px; margin-bottom: 10px; }
.adv-card p { color: var(--c-muted); font-size: 15px; }

/* ============================================================
   Model / how it works
   ============================================================ */
.model { background: linear-gradient(180deg, var(--c-bg), var(--c-bg-2)); }
.model__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.model__media { position: relative; }
.model__media img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--c-line); }
.model__badge {
  position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(10,10,12,.78); backdrop-filter: blur(6px); border: 1px solid var(--c-line); color: var(--c-gold-lt);
}
.model__badge svg { width: 16px; height: 16px; }
.model__text h2 { font-size: clamp(28px, 4.4vw, 46px); margin: 14px 0 18px; }
.model__text > p { color: var(--c-muted); font-size: 17px; }
.model__steps { margin: 28px 0 30px; display: grid; gap: 22px; }
.model__steps li { display: flex; gap: 18px; }
.model__num { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #1a1304;
  flex-shrink: 0; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--c-grad); }
.model__steps h3 { font-size: 19px; margin-bottom: 6px; }
.model__steps p { color: var(--c-muted); font-size: 15px; }

/* ============================================================
   Reviews carousel
   ============================================================ */
.reviews { overflow: hidden; }
.reviews__viewport { position: relative; margin-top: 8px; }
.reviews__track {
  display: flex; gap: 24px; padding: 4px;
  overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 clamp(280px, 32vw, 400px);
  padding: 32px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--c-panel), var(--c-bg-2)); border: 1px solid var(--c-line-soft);
  display: flex; flex-direction: column; gap: 18px;
}
.review-card__stars { display: flex; gap: 4px; color: var(--c-gold); }
.review-card__stars svg { width: 18px; height: 18px; }
.review-card__text { font-size: 16px; color: var(--c-text); flex: 1; }
.review-card__person { display: flex; align-items: center; gap: 14px; }
.review-card__person img { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--c-line); object-fit: cover; }
.review-card__person span { display: flex; flex-direction: column; font-size: 14px; color: var(--c-muted); }
.review-card__person strong { color: var(--c-text); font-family: var(--font-head); font-size: 16px; }
.reviews__controls { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.reviews__btn {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--c-line);
  background: var(--c-panel); color: var(--c-gold-lt); display: grid; place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.reviews__btn svg { width: 22px; height: 22px; }
.reviews__btn:hover { background: var(--c-grad); color: #1a1304; transform: scale(1.06); }

/* ============================================================
   Demo slot mount
   ============================================================ */
.demo { background: var(--c-bg-2); }
.demo__mount { max-width: 720px; margin-inline: auto; }
.demo__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 16px; justify-content: center;
  min-height: 420px; border-radius: var(--radius); border: 1px dashed var(--c-line); color: var(--c-muted);
}
.demo__placeholder svg { width: 40px; height: 40px; color: var(--c-gold); animation: spin 1.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Community
   ============================================================ */
.community {
  position: relative; isolation: isolate; padding-block: clamp(64px, 9vw, 120px);
  background-image: url('/assets/img/sections/community-bg.avif'); background-size: cover; background-position: center;
}
.community__overlay { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, rgba(10,10,12,.92) 30%, rgba(10,10,12,.62) 100%); }
.community__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.community__text h2 { font-size: clamp(30px, 5vw, 54px); margin: 14px 0 18px; }
.community__text p { color: var(--c-text); font-size: 18px; margin-bottom: 30px; }
.community__rg {
  position: relative; padding: 30px; border-radius: var(--radius);
  background: rgba(26,25,32,.7); backdrop-filter: blur(8px); border: 1px solid var(--c-line);
}
.community__rg h3 { display: flex; align-items: center; gap: 10px; font-size: 20px; margin-bottom: 14px; color: var(--c-gold-lt); }
.community__rg h3 svg { width: 24px; height: 24px; }
.community__rg p { color: var(--c-muted); font-size: 15px; }
.community__age {
  position: absolute; top: -16px; right: 24px; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 16px;
  background: var(--c-grad); color: #1a1304; box-shadow: 0 8px 20px rgba(212,175,55,.4);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--c-bg-2); border-top: 1px solid var(--c-line); margin-top: auto; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px;
  padding-block: clamp(48px, 6vw, 76px);
}
.brand--footer { margin-bottom: 18px; }
.footer__col--about p { color: var(--c-muted); font-size: 14px; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--c-line); color: var(--c-muted); transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.footer__socials a svg { width: 18px; height: 18px; }
.footer__socials a:hover { color: var(--c-gold-lt); border-color: var(--c-gold); transform: translateY(-3px); }
.footer__title { font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 18px; }
.footer__links li, .footer__contact li { margin-bottom: 12px; }
.footer__links a { color: var(--c-muted); font-size: 15px; transition: color .3s var(--ease); }
.footer__links a:hover { color: var(--c-gold-lt); }
.footer__contact li { display: flex; align-items: center; gap: 10px; color: var(--c-muted); font-size: 14px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--c-gold); flex-shrink: 0; }
.footer__contact a { color: var(--c-muted); transition: color .3s var(--ease); }
.footer__contact a:hover { color: var(--c-gold-lt); }

.footer__rg { border-top: 1px solid var(--c-line-soft); border-bottom: 1px solid var(--c-line-soft); }
.footer__rg-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; padding-block: 26px; }
.footer__rg-lead { font-size: 14px; color: var(--c-muted); font-weight: 600; }
.rg-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.rg-badge {
  display: inline-flex; align-items: center; gap: 11px; padding: 9px 16px 9px 11px; border-radius: 12px;
  border: 1px solid var(--c-line); background: rgba(10,10,12,.5);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.rg-badge:hover { border-color: var(--c-gold); transform: translateY(-2px); background: rgba(212,175,55,.06); }
.rg-badge__mark {
  width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0;
  background: rgba(245,241,230,.04);
}
.rg-badge__mark img { width: 34px; height: auto; object-fit: contain; }
.rg-badge__mark--text {
  font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: .04em;
  color: #1a1304; background: var(--c-grad);
}
.rg-badge__name { display: flex; flex-direction: column; font-size: 13px; font-weight: 600; color: var(--c-text); line-height: 1.25; }
.rg-badge__name small { font-size: 11px; font-weight: 500; color: var(--c-muted); letter-spacing: .04em; }

.footer__disclaimer {
  text-align: center; font-family: var(--font-head); font-weight: 600; font-size: clamp(13px, 1.6vw, 15px);
  letter-spacing: .04em; color: #1a1304; background: var(--c-grad); padding: 16px 20px;
}
.footer__bottom { background: var(--c-bg); }
.footer__bottom-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-block: 22px; }
.footer__bottom-row p { font-size: 13px; color: var(--c-dim); }

/* ============================================================
   Support chat
   ============================================================ */
.chat { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(28px, 5vw, 56px); z-index: 80; }
.chat__toggle {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--c-grad); color: #1a1304; box-shadow: 0 12px 34px rgba(212,175,55,.42);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  animation: chatPulse 3.5s var(--ease) infinite;
}
.chat__toggle svg { width: 24px; height: 24px; }
.chat__toggle:hover { transform: scale(1.08) rotate(-4deg); }
@keyframes chatPulse { 0%,100% { box-shadow: 0 12px 34px rgba(212,175,55,.42); } 50% { box-shadow: 0 12px 34px rgba(212,175,55,.42), 0 0 0 14px rgba(212,175,55,0); } }
.chat[data-open="true"] .chat__toggle { opacity: 0; pointer-events: none; transform: scale(.6); }

.chat__panel {
  position: absolute; right: 0; bottom: 0; width: 360px; height: 460px; max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 32px); display: flex; flex-direction: column; overflow: hidden;
  border-radius: 20px; background: var(--c-panel); border: 1px solid var(--c-line); box-shadow: var(--shadow-1);
  transform: translateY(20px) scale(.96); opacity: 0; pointer-events: none;
  transition: transform .35s var(--ease), opacity .3s var(--ease);
}
.chat__panel[hidden] { display: flex; }
.chat[data-open="true"] .chat__panel { transform: none; opacity: 1; pointer-events: auto; }
.chat__head { display: flex; align-items: center; gap: 12px; padding: 16px; background: linear-gradient(135deg, var(--c-panel-2), var(--c-panel)); border-bottom: 1px solid var(--c-line); }
.chat__avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--c-gold); }
.chat__who { display: flex; flex-direction: column; flex: 1; line-height: 1.3; }
.chat__who strong { font-family: var(--font-head); font-size: 15px; }
.chat__who span { font-size: 12px; color: var(--c-muted); display: flex; align-items: center; gap: 6px; }
.chat__dot { width: 8px; height: 8px; border-radius: 50%; background: #46c46a; box-shadow: 0 0 8px #46c46a; }
.chat__close { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: var(--c-muted); transition: color .3s, background .3s; }
.chat__close svg { width: 18px; height: 18px; }
.chat__close:hover { color: var(--c-text); background: rgba(255,255,255,.06); }
.chat__log { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.chat__msg { max-width: 80%; padding: 11px 15px; border-radius: 16px; font-size: 14px; line-height: 1.5; }
.chat__msg--bot { align-self: flex-start; background: var(--c-panel-2); border: 1px solid var(--c-line-soft); border-bottom-left-radius: 5px; }
.chat__msg--user { align-self: flex-end; background: var(--c-grad); color: #1a1304; border-bottom-right-radius: 5px; }
.chat__msg--typing { display: inline-flex; gap: 4px; align-items: center; }
.chat__msg--typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--c-muted); animation: typing 1.2s infinite; }
.chat__msg--typing i:nth-child(2) { animation-delay: .2s; } .chat__msg--typing i:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.chat__form { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--c-line); }
.chat__form input { flex: 1; min-width: 0; padding: 12px 16px; border-radius: 999px; background: var(--c-bg); border: 1px solid var(--c-line); color: var(--c-text); }
.chat__form input::placeholder { color: var(--c-dim); }
.chat__form button { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; background: var(--c-grad); color: #1a1304; display: grid; place-items: center; transition: transform .3s var(--ease); }
.chat__form button svg { width: 20px; height: 20px; }
.chat__form button:hover { transform: scale(1.08); }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70; display: flex; justify-content: center; }
.cookie[hidden] { display: none; }
.cookie__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 24px; border-radius: var(--radius); background: var(--c-panel); border: 1px solid var(--c-line);
  box-shadow: var(--shadow-1); width: 100%;
}
.cookie__inner p { font-size: 14px; color: var(--c-muted); flex: 1; min-width: 240px; }
.cookie__inner a { color: var(--c-gold-lt); }
.cookie__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .model__inner { grid-template-columns: 1fr; }
  .model__media { max-width: 560px; }
  .community__inner { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__col--about { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__col--about { grid-column: 1 / -1; }
  .footer__col--help { grid-column: 1 / -1; }
  .footer__rg-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .advantages__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px 40px; }
  .footer__bottom-row { justify-content: center; text-align: center; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .rg-badge { width: 100%; }
  .rg-badge__name { font-size: 14px; }
  .cookie__inner { flex-direction: column; align-items: stretch; }
  .cookie__actions { justify-content: stretch; }
  .cookie__actions .btn { flex: 1; }
  .chat__panel { width: calc(100vw - 32px); }
}
@media (max-width: 430px) {
  .brand__name { font-size: 16px; }
  .brand__name small { font-size: 8.5px; letter-spacing: .3em; }
  .brand__mark { width: 34px; height: 34px; }
  .review-card { flex-basis: 80vw; padding: 26px; }
}
@media (max-width: 360px) {
  .hero__title { font-size: 34px; }
  .btn--lg { --b-pad-x: 26px; }
  .hero__actions .btn { width: 100%; }
}

/* ============================================================
   Slot engine
   ============================================================ */
.slot {
  --cell: 92px; --slot-accent: #d4af37;
  background: linear-gradient(165deg, #1a1920, #121116);
  border: 1px solid var(--c-line); border-radius: 20px;
  padding: clamp(18px, 4vw, 30px);
}
.slot__top { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.slot__name { font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 2.4vw, 21px); color: var(--slot-accent); }
.slot__balance { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 17px;
  background: rgba(0,0,0,.4); padding: 8px 16px; border-radius: 999px; border: 1px solid var(--c-line); }
.slot__balance svg { width: 20px; height: 20px; color: var(--c-gold); }
.slot__reels {
  display: flex; gap: 14px; justify-content: center; padding: 18px; border-radius: 16px;
  background: radial-gradient(circle at 50% 25%, rgba(212,175,55,.10), transparent 68%), #0a0a0c;
  border: 1px solid var(--c-line);
}
.slot-reel {
  width: var(--cell); height: var(--cell); overflow: hidden; border-radius: 12px; position: relative;
  background: linear-gradient(180deg, #16161c, #0a0a0c);
  box-shadow: inset 0 0 0 1px var(--c-line-soft), inset 0 9px 16px rgba(0,0,0,.65), inset 0 -9px 16px rgba(0,0,0,.65);
  transition: box-shadow .3s var(--ease);
}
.slot-reel.is-win { box-shadow: 0 0 0 2px var(--slot-accent), 0 0 26px rgba(212,175,55,.55); }
.slot-reel__strip { display: flex; flex-direction: column; will-change: transform; }
.slot-cell { height: var(--cell); display: grid; place-items: center; font-size: calc(var(--cell) * .5); line-height: 1; }
.slot__win { text-align: center; margin: 18px 0; font-family: var(--font-head); font-weight: 600; font-size: 18px;
  min-height: 1.5em; color: var(--c-muted); transition: color .3s var(--ease); }
.slot__win.is-win { color: var(--c-gold-lt); text-shadow: 0 0 22px rgba(240,217,140,.5); }
.slot__win.is-loss { color: var(--c-dim); }
.slot__controls { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }
.slot__bet { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,.4); border: 1px solid var(--c-line); border-radius: 999px; padding: 5px; }
.slot__bet button { width: 40px; height: 40px; border-radius: 50%; background: var(--c-panel-2); color: var(--c-gold-lt); display: grid; place-items: center; transition: background .25s var(--ease), transform .2s var(--ease); }
.slot__bet button svg { width: 18px; height: 18px; }
.slot__bet button:hover { background: var(--c-grad); color: #1a1304; }
.slot__bet button:active { transform: scale(.92); }
.slot__bet-val { display: flex; flex-direction: column; align-items: center; min-width: 56px; line-height: 1; }
.slot__bet-val small { font-size: 10px; letter-spacing: .18em; color: var(--c-dim); }
.slot__bet-val b { font-family: var(--font-head); font-size: 18px; color: var(--c-text); margin-top: 3px; }
.slot__spin { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px; background: var(--c-grad); color: #1a1304;
  box-shadow: 0 10px 26px rgba(212,175,55,.32); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.slot__spin svg { width: 20px; height: 20px; }
.slot__spin:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(212,175,55,.45); }
.slot.is-spinning .slot__spin { opacity: .6; pointer-events: none; }
.slot.is-spinning .slot__spin svg { animation: spin 1s linear infinite; }

@media (max-width: 520px) {
  .slot { --cell: 76px; }
  .slot__reels { gap: 10px; padding: 12px; }
  .slot__controls { flex-direction: column; }
  .slot__spin { width: 100%; justify-content: center; }
  .slot__bet { width: 100%; justify-content: space-between; }
}
@media (max-width: 360px) { .slot { --cell: 64px; } }

/* ---- Slot modal ---- */
.slot-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; }
.slot-modal[hidden] { display: none; }
.slot-modal__backdrop { position: absolute; inset: 0; background: rgba(5,5,7,.82); backdrop-filter: blur(6px); animation: fadeIn .3s var(--ease); }
.slot-modal__dialog { position: relative; width: min(560px, 100%); max-height: 92dvh; overflow: auto; animation: dialogIn .4s var(--ease); }
.slot-modal__close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(0,0,0,.55); border: 1px solid var(--c-line); color: var(--c-text); display: grid; place-items: center; transition: background .3s, color .3s; }
.slot-modal__close svg { width: 20px; height: 20px; }
.slot-modal__close:hover { background: var(--c-panel-2); color: var(--c-gold-lt); }
body.slot-lock { overflow: hidden; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes dialogIn { from { opacity: 0; transform: translateY(22px) scale(.96); } to { opacity: 1; transform: none; } }

/* ============================================================
   Toast (centered modal)
   ============================================================ */
.toast-host { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.toast-back { position: fixed; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(5,5,7,0); transition: background .3s var(--ease); pointer-events: auto; }
.toast-back.is-on { background: rgba(5,5,7,.6); backdrop-filter: blur(3px); }
.toast { display: flex; align-items: center; gap: 14px; max-width: 440px; width: 100%; padding: 20px 24px; border-radius: 16px;
  background: var(--c-panel); border: 1px solid var(--c-line); box-shadow: var(--shadow-1);
  transform: scale(.9); opacity: 0; transition: transform .32s var(--ease), opacity .32s var(--ease); }
.toast-back.is-on .toast { transform: none; opacity: 1; }
.toast p { font-size: 15px; }
.toast__icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.toast__icon svg { width: 22px; height: 22px; }
.toast__icon--ok { background: rgba(70,196,106,.16); color: #46c46a; }
.toast__icon--err { background: rgba(224,100,100,.16); color: #e06464; }

/* ---- Misc ---- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
details > summary { cursor: pointer; list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ============================================================
   Page head (inner pages)
   ============================================================ */
.page-head {
  position: relative; isolation: isolate; overflow: hidden; text-align: center;
  padding-block: clamp(56px, 9vw, 110px);
  background: linear-gradient(180deg, var(--c-bg-2), var(--c-bg));
  border-bottom: 1px solid var(--c-line-soft);
}
.page-head__rays {
  position: absolute; inset: -50% -10% auto; height: 150%; z-index: -1;
  background:
    conic-gradient(from 180deg at 50% 0%,
      transparent 0deg, rgba(212,175,55,.09) 12deg, transparent 24deg,
      rgba(212,175,55,.07) 36deg, transparent 48deg, rgba(212,175,55,.09) 60deg, transparent 72deg,
      rgba(212,175,55,.06) 84deg, transparent 96deg, rgba(212,175,55,.09) 108deg, transparent 120deg);
  transform-origin: 50% 0; animation: rayspin 60s linear infinite;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 70%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 70%);
}
.page-head__title { font-size: clamp(32px, 6vw, 64px); margin: 16px auto 0; }
.page-head__lead { color: var(--c-muted); font-size: clamp(16px, 2vw, 19px); margin: 18px auto 0; }

/* ============================================================
   Catalog / games grid
   ============================================================ */
.catalog__tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: clamp(32px, 4vw, 52px); }
.filter-tab {
  padding: 11px 24px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: 15px;
  color: var(--c-muted); border: 1px solid var(--c-line); background: rgba(245,241,230,.02);
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.filter-tab:hover { color: var(--c-gold-lt); border-color: var(--c-gold); }
.filter-tab.is-active { background: var(--c-grad); color: #1a1304; border-color: transparent; }

.catalog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.game-card {
  border-radius: var(--radius); overflow: hidden; background: linear-gradient(160deg, var(--c-panel), var(--c-bg-2));
  border: 1px solid var(--c-line-soft); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-1); border-color: var(--c-line); }
.game-card__media { position: relative; aspect-ratio: 600 / 420; overflow: hidden; }
.game-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .4s var(--ease); }
.game-card:hover .game-card__media img, .game-card:focus-within .game-card__media img { transform: scale(1.06); filter: brightness(.45); }
.game-card__free, .game-card__new {
  position: absolute; top: 12px; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 999px; z-index: 2;
}
.game-card__free { left: 12px; background: var(--c-grad); color: #1a1304; }
.game-card__new { right: 12px; background: var(--c-emerald); color: #eafff6; }
.game-card__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -40%); z-index: 3;
  opacity: 0; pointer-events: none; white-space: nowrap;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.game-card:hover .game-card__play, .game-card:focus-within .game-card__play { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.game-card__play svg { width: 18px; height: 18px; }
.game-card__body { padding: 20px 22px 24px; }
.game-card__body h3 { font-size: 20px; margin-bottom: 8px; }
.game-card__body p { color: var(--c-muted); font-size: 14px; margin-bottom: 14px; }
.game-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.game-card__tags li { font-size: 12px; color: var(--c-gold-lt); padding: 5px 11px; border-radius: 999px; border: 1px solid var(--c-line); }
.catalog__empty { text-align: center; color: var(--c-muted); padding: 50px 20px; font-family: var(--font-head); font-size: 18px; }

/* Touch devices: reveal play button persistently (no hover) */
@media (hover: none) {
  .game-card__play { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
  .game-card__media img { filter: brightness(.62); }
}

@media (max-width: 960px) { .catalog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .catalog__grid { grid-template-columns: 1fr; } }

/* ============================================================
   About
   ============================================================ */
.about-banner { padding-top: clamp(28px, 4vw, 44px); }
.about-banner img { width: 100%; height: auto; max-height: 440px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--c-line); }

.about-story__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-story__col h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 18px; }
.about-story__col p { color: var(--c-muted); margin-bottom: 16px; }
.about-story__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-story__stats li { padding: 26px 20px; border-radius: var(--radius); background: var(--c-grad-soft); border: 1px solid var(--c-line); text-align: center; }
.about-story__stats strong { display: block; font-family: var(--font-head); font-size: 32px; color: var(--c-gold-lt); }
.about-story__stats span { font-size: 13px; color: var(--c-muted); letter-spacing: .05em; }

.about-values { background: linear-gradient(180deg, var(--c-bg), var(--c-bg-2)); }
.about-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 32px 28px; border-radius: var(--radius); background: linear-gradient(160deg, var(--c-panel), var(--c-bg-2)); border: 1px solid var(--c-line-soft); }
.value-card__icon { display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center; border-radius: 14px; background: var(--c-grad-soft); border: 1px solid var(--c-line); margin-bottom: 20px; }
.value-card__icon svg { width: 28px; height: 28px; color: var(--c-gold-lt); }
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { color: var(--c-muted); font-size: 15px; }

.about-team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member-card { text-align: center; padding: 30px 22px; border-radius: var(--radius); background: linear-gradient(160deg, var(--c-panel), var(--c-bg-2)); border: 1px solid var(--c-line-soft); transition: transform .4s var(--ease), border-color .4s var(--ease); }
.member-card:hover { transform: translateY(-5px); border-color: var(--c-line); }
.member-card img { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; border: 2px solid var(--c-gold); object-fit: cover; }
.member-card h3 { font-size: 18px; }
.member-card span { display: block; color: var(--c-gold-lt); font-size: 13px; margin: 4px 0 10px; }
.member-card p { color: var(--c-muted); font-size: 14px; }

.about-platform { background: var(--c-bg-2); }
.about-platform__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-platform h2 { font-size: clamp(26px, 4vw, 40px); margin: 14px 0 18px; }
.about-platform p { color: var(--c-muted); margin-bottom: 16px; }
.about-platform__specs { display: grid; gap: 14px; }
.about-platform__specs li { display: flex; gap: 14px; align-items: center; padding: 18px; border-radius: 14px; background: var(--c-panel); border: 1px solid var(--c-line-soft); }
.about-platform__specs svg { width: 26px; height: 26px; color: var(--c-gold); flex-shrink: 0; }
.about-platform__specs strong { display: block; font-family: var(--font-head); }
.about-platform__specs span { font-size: 13px; color: var(--c-muted); }

@media (max-width: 900px) {
  .about-story__inner, .about-platform__inner { grid-template-columns: 1fr; }
  .about-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) { .about-values__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .about-team__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Contact
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.contact__form-wrap h2, .contact__info h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 24px; }
.contact__form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: var(--c-text); font-family: var(--font-head); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; background: var(--c-panel); border: 1px solid var(--c-line); color: var(--c-text);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: none; min-height: 132px; }
.field input::placeholder, .field textarea::placeholder { color: var(--c-dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(212,175,55,.15); }
.contact__form .btn { justify-self: start; margin-top: 6px; }

.contact__info { padding: clamp(24px, 3vw, 36px); border-radius: var(--radius); background: linear-gradient(160deg, var(--c-panel), var(--c-bg-2)); border: 1px solid var(--c-line); }
.contact__list { display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: var(--c-grad-soft); border: 1px solid var(--c-line); }
.contact__ico svg { width: 22px; height: 22px; color: var(--c-gold-lt); }
.contact__list strong { display: block; font-family: var(--font-head); margin-bottom: 3px; }
.contact__list a, .contact__list span { color: var(--c-muted); font-size: 15px; }
.contact__list a { transition: color .3s var(--ease); }
.contact__list a:hover { color: var(--c-gold-lt); }
.contact__note { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--c-line-soft); color: var(--c-muted); font-size: 14px; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form .btn { justify-self: stretch; }
}

/* ============================================================
   Legal pages (full width — no max-width cap)
   ============================================================ */
.legal { background: var(--c-bg); }
.legal-content > * + * { margin-top: 16px; }
.legal-content h2 { font-size: clamp(22px, 3vw, 30px); margin-top: 44px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 19px; margin-top: 28px; color: var(--c-gold-lt); }
.legal-content p, .legal-content li { color: var(--c-muted); }
.legal-content ul { display: grid; gap: 10px; }
.legal-content ul li { position: relative; padding-left: 26px; }
.legal-content ul li::before { content: ""; position: absolute; left: 6px; top: 11px; width: 7px; height: 7px; border-radius: 2px; background: var(--c-gold); transform: rotate(45deg); }
.legal-content a { color: var(--c-gold-lt); text-decoration: underline; }
.legal__updated { color: var(--c-gold); font-size: 14px; margin-top: 14px; font-family: var(--font-head); }
.legal-table { width: 100%; border-collapse: collapse; margin-top: 8px; min-width: 540px; }
.legal-table th, .legal-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--c-line-soft); font-size: 14px; }
.legal-table th { font-family: var(--font-head); color: var(--c-gold-lt); background: rgba(212,175,55,.05); }
.legal-table td { color: var(--c-muted); }
