/* ════════════════════════════════════════════════
   THE ROBINSON GROUP — style.css
   Pokrové Turnaje v České Republice
   ════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────── */
:root {
  --bg:      #04050c;
  --bg2:     #080c18;
  --bg3:     #0d1225;
  --bg4:     #111830;
  --bg5:     #161e38;
  --gold:    #c9a84c;
  --gold-l:  #e2c070;
  --gold-d:  #9a7830;
  --gold-xs: rgba(201,168,76,.08);
  --red:     #cc2936;
  --red-l:   #e05560;
  --blue-l:  #7aa4f0;
  --green-l: #4fc87a;
  --t1:      #e8eaf2;
  --t2:      #8b93b0;
  --t3:      #4a5272;
  --t4:      #2a3050;
  --border:  rgba(201,168,76,.16);
  --border2: rgba(201,168,76,.42);
  --border3: rgba(201,168,76,.65);
  --sh:      0 8px 40px rgba(0,0,0,.6);
  --sh-g:    0 0 32px rgba(201,168,76,.14);
  --sh-lg:   0 0 60px rgba(201,168,76,.18);
  --r:       12px;
  --r2:      20px;
  --r3:      28px;
  --ease:    .3s cubic-bezier(.4,0,.2,1);
  --ease-b:  .4s cubic-bezier(.34,1.56,.64,1);
  --fh:      'Playfair Display', Georgia, serif;
  --fb:      'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:   80px;
}

/* ── ACCESSIBILITY / PERFORMANCE ───────────────── */

/* Skip navigation */
.skip-nav {
  position: absolute;
  top: -120%;
  left: 12px;
  z-index: 999999;
  background: var(--gold);
  color: #08090f;
  padding: 10px 20px;
  border-radius: 0 0 var(--r) var(--r);
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  transition: top .25s ease;
  white-space: nowrap;
}
.skip-nav:focus { top: 0; outline: none; }

/* Focus styles — visible, gold ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fi, .fl, .fr, .fz { opacity: 1 !important; transform: none !important; }
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--fb);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--fb); }
button { cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--fh); line-height: 1.16; }
h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.65rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { line-height: 1.75; }

.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border2);
  padding: .34rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}
.sec-title { color: var(--t1); margin-bottom: .85rem; }
.sec-sub   { font-size: .975rem; color: var(--t2); line-height: 1.78; max-width: 540px; }
.gold-bar  { width: 44px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 22px; }
.center    { text-align: center; }
.center .sec-sub { margin: 0 auto; }

/* ── LAYOUT ─────────────────────────────────────── */
.wrap  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sec   { padding: 96px 0; }
.sec-sm{ padding: 64px 0; }
.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3{ display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4{ display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

/* ── BADGES ─────────────────────────────────────── */
.tbadge { display: inline-block; padding: 4px 11px; border-radius: 100px; font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.bh  { background: rgba(201,168,76,.14); color: var(--gold); }
.bo  { background: rgba(204,41,54,.14);  color: var(--red-l); }
.bm  { background: rgba(122,164,240,.14);color: var(--blue-l); }
.bf  { background: rgba(79,200,122,.14); color: var(--green-l); }
.bc  { background: rgba(201,168,76,.18); color: var(--gold-l); border: 1px solid var(--border); }
.bd  { background: rgba(122,164,240,.1); color: var(--blue-l); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: .875rem; font-weight: 600;
  transition: var(--ease);
  letter-spacing: .03em;
  border: none;
  cursor: pointer;
}
.btn-p {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #08090f;
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.35); }
.btn-p:active { transform: translateY(0); }

.btn-o {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border2);
}
.btn-o:hover { background: rgba(201,168,76,.08); border-color: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--t2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--t1); background: rgba(255,255,255,.08); }

.btn-lg  { padding: 16px 32px; font-size: 1rem; border-radius: 14px; }
.btn-sm  { padding: 9px 18px; font-size: .8rem; border-radius: 8px; }
.btn-full{ width: 100%; justify-content: center; }

/* ── STATUS ─────────────────────────────────────── */
.status { display: inline-block; padding: 3px 9px; border-radius: 100px; font-size: .68rem; font-weight: 700; }
.s-open { background: rgba(79,200,122,.14);  color: var(--green-l); }
.s-soon { background: rgba(201,168,76,.14);  color: var(--gold); }
.s-full { background: rgba(204,41,54,.14);   color: var(--red-l); }

/* ── DIVIDER ─────────────────────────────────────── */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border2), var(--border), transparent);
  margin: 0;
}

/* ════════════════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9900;
  background: rgba(8,10,22,.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(180%);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  transform: translateY(110%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.show { transform: translateY(0); }
.ck-text { font-size: .82rem; color: var(--t2); flex: 1; min-width: 200px; }
.ck-text a { color: var(--gold); text-decoration: underline; }
.ck-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ════════════════════════════════════════════════
   AGE GATE
   ════════════════════════════════════════════════ */
#age-gate {
  position: fixed; inset: 0; z-index: 99000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  transition: opacity .6s ease, visibility .6s ease;
}
#age-gate.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.ag-wrap { text-align: center; max-width: 460px; width: 100%; }
.ag-chip {
  width: 74px; height: 74px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 1.4rem; font-weight: 900; color: #08090f;
  margin: 0 auto 22px;
  box-shadow: 0 0 40px rgba(201,168,76,.3);
}
.ag-brand { font-family: var(--fh); font-size: 1.2rem; font-weight: 900; color: var(--gold); letter-spacing: .1em; margin-bottom: 8px; }
.ag-title { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700; margin-bottom: 14px; }
.ag-txt   { font-size: .9rem; color: var(--t2); line-height: 1.68; margin-bottom: 32px; }
.ag-btns  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ag-btns .btn { flex: 1; min-width: 150px; justify-content: center; }
.ag-note  { margin-top: 22px; font-size: .74rem; color: var(--t3); line-height: 1.6; }
.ag-note a { color: var(--gold); text-decoration: underline; }

/* ════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
}
#nav.scrolled {
  background: rgba(4,5,12,.96);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 30px rgba(0,0,0,.5);
  border-bottom: 1px solid var(--border);
}
.nav-in {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
/* Logo */
.nav-logo { line-height: 1; flex-shrink: 0; }
.nav-logo-a {
  font-family: var(--fh); font-size: 1.05rem; font-weight: 900;
  color: var(--gold); letter-spacing: .08em; text-transform: uppercase; display: block;
  transition: opacity .25s;
}
.nav-logo-a:hover { opacity: .85; }
.nav-logo-b { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--t3); margin-top: 2px; }

/* Links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 13px; font-size: .845rem; font-weight: 500; color: var(--t2);
  border-radius: 8px; transition: color .25s, background .25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 13px; right: 13px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav-links a:hover { color: var(--t1); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  padding: 5px; border-radius: 8px;
  transition: background .25s;
}
.burger:hover { background: var(--gold-xs); }
.burger span {
  display: block; width: 100%; height: 2px;
  background: var(--t1); border-radius: 2px;
  transition: var(--ease); transform-origin: center;
}
.burger.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
#mob-menu {
  position: fixed; inset: 0; z-index: 700;
  background: rgba(4,5,12,.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
#mob-menu.open { opacity: 1; pointer-events: all; }
#mob-menu a {
  font-family: var(--fh);
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  font-weight: 600; color: var(--t2);
  padding: 12px 28px;
  transition: color .2s, transform .2s;
  text-align: center;
}
#mob-menu a:hover { color: var(--gold); transform: translateX(6px); }
#mob-menu .btn { margin-top: 20px; }

/* ════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════════ */
.page-hero {
  min-height: 360px;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(201,168,76,.07), transparent 70%),
              radial-gradient(ellipse 40% 60% at 10% 80%, rgba(204,41,54,.04), transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 60px 0 50px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--t3); margin-bottom: 16px;
}
.breadcrumb a { color: var(--t3); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--t4); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { font-size: 1.05rem; color: var(--t2); max-width: 580px; line-height: 1.72; }

/* ════════════════════════════════════════════════
   HERO (index)
   ════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.h-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(204,41,54,.04) 0%, transparent 60%),
    var(--bg);
}
.h-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.h-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 70px 0;
}
.h-eye {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 18px;
}
.h-eye::before { content: ''; display: block; width: 26px; height: 1px; background: var(--gold); }
.h-title { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 900; line-height: 1.08; margin-bottom: 18px; }
.h-title em { font-style: italic; color: var(--gold); }
.h-desc { font-size: 1rem; color: var(--t2); line-height: 1.78; margin-bottom: 34px; max-width: 470px; }
.h-acts { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 42px; }
.h-pills { display: flex; gap: 22px; flex-wrap: wrap; }
.h-pill { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--t2); }
.h-dot  { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Hero visual */
.h-vis { display: flex; justify-content: center; align-items: center; }
.h-ring {
  width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; position: relative;
  animation: spin 34s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-btn { to { transform: rotate(360deg); } }
.h-card {
  width: 230px; height: 300px;
  background: linear-gradient(145deg, var(--bg4), var(--bg3));
  border-radius: 16px; border: 1px solid var(--border);
  box-shadow: var(--sh), var(--sh-g);
  display: flex; align-items: center; justify-content: center;
  animation: counter 34s linear infinite;
  overflow: hidden; position: relative;
}
@keyframes counter { to { transform: rotate(-360deg); } }
.h-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,168,76,.12), transparent 60%);
}
.h-card-inner { position: relative; z-index: 1; text-align: center; }
.h-spade { font-size: 7rem; color: var(--gold); filter: drop-shadow(0 0 20px rgba(201,168,76,.4)); line-height: 1; }
.h-card-label { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-d); margin-top: 8px; font-weight: 700; }
.h-dots  { position: absolute; inset: -1px; border-radius: 50%; }
.h-dot-o {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px var(--gold);
}
.h-dot-o:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.h-dot-o:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%); }
.h-dot-o:nth-child(3) { left: 0; top: 50%; transform: translateY(-50%); }
.h-dot-o:nth-child(4) { right: 0; top: 50%; transform: translateY(-50%); }

/* ════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stat { text-align: center; padding: 18px; position: relative; }
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: var(--border);
}
.stat-n {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.stat-l { font-size: .76rem; color: var(--t3); text-transform: uppercase; letter-spacing: .1em; }

/* ════════════════════════════════════════════════
   TOURNAMENT CARDS
   ════════════════════════════════════════════════ */
.t-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; margin-bottom: 52px; flex-wrap: wrap;
}
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.t-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  position: relative;
}
.t-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-d));
  transform: scaleX(0); transition: transform .4s;
}
.t-card:hover { transform: translateY(-8px); border-color: var(--border2); box-shadow: var(--sh), var(--sh-g); }
.t-card:hover::before { transform: scaleX(1); }
.t-card-top { padding: 26px 26px 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.t-suit { font-size: 1.8rem; opacity: .5; transition: opacity .3s; }
.t-card:hover .t-suit { opacity: .8; }
.t-body  { padding: 0 26px 26px; }
.t-name  { font-family: var(--fh); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.t-desc  { font-size: .84rem; color: var(--t2); line-height: 1.65; margin-bottom: 18px; }
.t-meta  { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.t-row   { display: flex; justify-content: space-between; font-size: .83rem; }
.t-lbl   { color: var(--t3); }
.t-val   { font-weight: 600; }
.t-val.g { color: var(--gold); }
.t-bonus {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 20px;
  transition: border-color .3s;
}
.t-bonus:hover { border-color: var(--border2); }
.t-bonus-l { display: flex; align-items: center; gap: 16px; }

/* ════════════════════════════════════════════════
   STEPS / HOW IT WORKS
   ════════════════════════════════════════════════ */
.steps-wrap { position: relative; margin-top: 58px; }
.steps-line {
  position: absolute; top: 39px; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold-d), var(--border), transparent);
}
.steps-g { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; position: relative; z-index: 1; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 16px 8px; }
.s-num {
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--bg3); border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 1.5rem; font-weight: 900; color: var(--gold);
  transition: var(--ease); flex-shrink: 0;
}
.step:hover .s-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #08090f; border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,.35);
}
.s-t { font-weight: 700; font-size: .88rem; }
.s-d { font-size: .78rem; color: var(--t3); line-height: 1.55; }

/* ════════════════════════════════════════════════
   SCHEDULE TABLE
   ════════════════════════════════════════════════ */
.sch-hd { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.sch-box { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.sch-t   { width: 100%; border-collapse: collapse; }
.sch-t thead th {
  background: var(--bg4); padding: 14px 18px;
  text-align: left; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--t3); font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.sch-t tbody tr { border-bottom: 1px solid var(--border); transition: background .2s; }
.sch-t tbody tr:last-child { border-bottom: none; }
.sch-t tbody tr:hover { background: var(--bg4); }
.sch-t tbody td { padding: 16px 18px; font-size: .84rem; vertical-align: middle; }
.sch-t tbody td:first-child { color: var(--gold); font-weight: 600; font-size: .78rem; white-space: nowrap; }
.prize { color: var(--gold); font-weight: 700; }

/* ════════════════════════════════════════════════
   FEATURE CARDS (generic)
   ════════════════════════════════════════════════ */
.feat-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 24px;
  transition: var(--ease);
}
.feat-card:hover { border-color: var(--border2); transform: translateY(-5px); box-shadow: var(--sh-g); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,.14), rgba(201,168,76,.04));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
  transition: var(--ease);
}
.feat-card:hover .feat-icon { background: linear-gradient(135deg, rgba(201,168,76,.22), rgba(201,168,76,.08)); border-color: var(--border2); }
.feat-t { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feat-d { font-size: .84rem; color: var(--t2); line-height: 1.65; }

/* ════════════════════════════════════════════════
   EXPERIENCE SECTION
   ════════════════════════════════════════════════ */
.suits-g { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.suit-c {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 18px; text-align: center;
  transition: var(--ease);
}
.suit-c:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--sh-g); }
.suit-sym { font-size: 2.7rem; line-height: 1; margin-bottom: 10px; }
.suit-nm  { font-size: .74rem; color: var(--t3); text-transform: uppercase; letter-spacing: .1em; }
.sc-h .suit-sym, .sc-d .suit-sym { color: var(--red-l); }
.sc-s .suit-sym, .sc-c .suit-sym { color: var(--t1); }
.xp-feats { display: flex; flex-direction: column; gap: 11px; margin-top: 28px; }
.xp-feat  { display: flex; align-items: center; gap: 11px; font-size: .88rem; color: var(--t2); }
.xp-feat::before { content: '◆'; color: var(--gold); font-size: .55rem; flex-shrink: 0; }

/* ════════════════════════════════════════════════
   ABOUT BOX
   ════════════════════════════════════════════════ */
.ab-box {
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 44px; position: relative; overflow: hidden;
}
.ab-box::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,.1), transparent 70%);
  pointer-events: none;
}
.ab-ghost {
  position: absolute; bottom: -8px; right: 16px;
  font-size: 7.5rem; color: var(--gold); opacity: .08;
  line-height: 1; user-select: none; pointer-events: none;
}
.ab-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.ab-m { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); padding: 18px; text-align: center; }
.ab-m .n { font-family: var(--fh); font-size: 1.75rem; font-weight: 900; color: var(--gold); line-height: 1; }
.ab-m .l { font-size: .74rem; color: var(--t3); margin-top: 3px; }
.ab-feats { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.ab-feat  {
  display: flex; gap: 14px; padding: 16px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); transition: var(--ease);
}
.ab-feat:hover { border-color: var(--border2); transform: translateX(4px); }
.ab-feat-icon {
  width: 42px; height: 42px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.14), rgba(201,168,76,.04));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: var(--ease);
}
.ab-feat:hover .ab-feat-icon { border-color: var(--border2); }
.ab-feat-t { font-size: .9rem; font-weight: 600; margin-bottom: 3px; }
.ab-feat-d { font-size: .8rem; color: var(--t3); line-height: 1.5; }

/* ════════════════════════════════════════════════
   TESTIMONIALS / REVIEWS
   ════════════════════════════════════════════════ */
.rev-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 54px; }
.rev {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 30px;
  transition: var(--ease); position: relative;
}
.rev:hover { border-color: var(--border2); transform: translateY(-6px); box-shadow: var(--sh); }
.rev::before {
  content: '\201C'; position: absolute; top: 18px; right: 22px;
  font-size: 3.2rem; color: var(--gold); opacity: .16;
  font-family: Georgia, serif; line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars span { color: var(--gold); font-size: .85rem; }
.rev-txt  { font-size: .875rem; color: var(--t2); line-height: 1.73; margin-bottom: 22px; font-style: italic; }
.rev-auth { display: flex; align-items: center; gap: 11px; }
.rev-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg5), var(--bg3));
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 700; color: var(--gold);
  font-family: var(--fh); flex-shrink: 0;
}
.rev-name { font-weight: 600; font-size: .87rem; }
.rev-role { font-size: .76rem; color: var(--t3); }

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: flex-start; margin-top: 52px; }
.faq-list   { display: flex; flex-direction: column; gap: 8px; }
.faq-it {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: border-color .3s;
}
.faq-it.on  { border-color: var(--border2); }
.faq-q {
  width: 100%; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: none; border: none; text-align: left;
  color: var(--t1); font-size: .875rem; font-weight: 600;
  cursor: pointer; transition: color .25s;
}
.faq-q:hover { color: var(--gold); }
.faq-ico {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold);
  transition: var(--ease);
}
.faq-it.on .faq-ico { transform: rotate(45deg); background: rgba(201,168,76,.1); border-color: var(--border2); }
.faq-a    { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a.open { max-height: 280px; }
.faq-a-in {
  padding: 14px 22px 18px;
  font-size: .84rem; color: var(--t2); line-height: 1.73;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════════════
   FORMS / CONTACT
   ════════════════════════════════════════════════ */
.con-g   { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; margin-top: 52px; }
.con-info{ display: flex; flex-direction: column; gap: 16px; }
.con-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px;
  transition: border-color .3s;
}
.con-box:hover { border-color: var(--border2); }
.con-box h4 {
  font-size: .76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); margin-bottom: 8px;
  font-family: var(--fb);
}
.con-box p { font-size: .84rem; color: var(--t2); line-height: 1.65; }
.con-form  {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 38px;
}
.f-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 22px; }
.f-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-grp   { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.f-lbl   { font-size: .73rem; font-weight: 600; color: var(--t2); text-transform: uppercase; letter-spacing: .07em; }
.f-in, .f-sel, .f-ta {
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 15px;
  color: var(--t1); font-size: .875rem;
  outline: none; transition: border-color .3s; width: 100%;
}
.f-in:focus, .f-sel:focus, .f-ta:focus { border-color: var(--gold); }
.f-sel {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.f-sel option { background: var(--bg3); }
.f-ta { resize: vertical; min-height: 90px; }
.f-ck { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 20px; }
.f-ck input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.f-ck label { font-size: .78rem; color: var(--t3); line-height: 1.5; }
.f-ck label a { color: var(--gold); text-decoration: underline; }

/* ════════════════════════════════════════════════
   INLINE INFO BOXES
   ════════════════════════════════════════════════ */
.info-box {
  background: rgba(201,168,76,.05);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 18px 22px;
  font-size: .84rem; color: var(--t2); line-height: 1.7;
}
.warn-box {
  background: rgba(204,41,54,.06);
  border: 1px solid rgba(204,41,54,.2);
  border-left: 3px solid var(--red-l);
  border-radius: var(--r);
  padding: 18px 22px;
  font-size: .84rem; color: var(--t2); line-height: 1.7;
}

/* ════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--bg4), var(--bg2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.06), transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2  { margin-bottom: 14px; }
.cta-band p   { color: var(--t2); font-size: .975rem; max-width: 520px; margin: 0 auto 32px; }
.cta-acts     { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
#footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.ft-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.ft-logo { font-family: var(--fh); font-size: 1.15rem; font-weight: 900; color: var(--gold); letter-spacing: .08em; margin-bottom: 10px; }
.ft-tag  { font-size: .83rem; color: var(--t3); line-height: 1.65; max-width: 270px; margin-bottom: 22px; }
.ft-soc  { display: flex; gap: 9px; }
.ft-sl {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--t3); transition: var(--ease);
  flex-shrink: 0;
}
.ft-sl svg { display: block; flex-shrink: 0; }
.ft-sl:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-xs); transform: translateY(-2px); }
.ft-col h5 {
  font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--t3); margin-bottom: 14px;
  font-family: var(--fb);
}
.ft-col ul { display: flex; flex-direction: column; gap: 9px; }
.ft-col ul li a { font-size: .84rem; color: var(--t2); transition: color .25s; }
.ft-col ul li a:hover { color: var(--gold); }
.ft-bot {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.ft-copy { font-size: .78rem; color: var(--t3); }
.ft-18 { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; color: var(--t3); }
.b18 {
  background: rgba(204,41,54,.18); color: var(--red-l);
  border: 1px solid rgba(204,41,54,.3);
  padding: 2px 7px; border-radius: 4px; font-weight: 700; font-size: .7rem;
}
.ft-leg { display: flex; gap: 18px; }
.ft-leg a { font-size: .78rem; color: var(--t3); transition: color .25s; }
.ft-leg a:hover { color: var(--gold); }

/* ── CITY CARDS ──────────────────────────────────── */
.city-card { text-align: center; }
.city-abbr {
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--gold);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 7px 12px;
  display: inline-block;
  margin-bottom: 14px;
  transition: var(--ease);
}
.city-card:hover .city-abbr { background: rgba(201,168,76,.1); border-color: var(--gold); }

/* ── FORM SUCCESS MODAL ──────────────────────────── */
.trg-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,5,12,.88);
  backdrop-filter: blur(12px) saturate(160%);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.trg-modal-overlay.open { opacity: 1; pointer-events: all; }
.trg-modal {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--r3);
  padding: 48px 40px 40px;
  max-width: 440px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.7), var(--sh-lg);
  transform: scale(.9) translateY(16px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
  position: relative;
}
.trg-modal-overlay.open .trg-modal { transform: scale(1) translateY(0); }
.trg-modal-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(79,200,122,.18), rgba(79,200,122,.06));
  border: 1px solid rgba(79,200,122,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--green-l);
  box-shadow: 0 0 30px rgba(79,200,122,.15);
}
.trg-modal-title {
  font-family: var(--fh);
  font-size: 1.5rem; font-weight: 700;
  color: var(--t1); margin-bottom: 12px;
}
.trg-modal-sub {
  font-size: .9rem; color: var(--t2); line-height: 1.7;
  margin-bottom: 28px;
}
.trg-modal-close {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 32px; border-radius: var(--r);
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #08090f; font-weight: 700; font-size: .9rem;
  border: none; cursor: pointer; transition: var(--ease);
  width: 100%;
}
.trg-modal-close:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.trg-modal-detail {
  margin-top: 16px; font-size: .76rem; color: var(--t3); line-height: 1.6;
}

/* ════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════════ */
.fi { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fl { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.fr { opacity: 0; transform: translateX(36px);  transition: opacity .7s ease, transform .7s ease; }
.fz { opacity: 0; transform: scale(.93); transition: opacity .7s ease, transform .7s ease; }
.fi.v, .fl.v, .fr.v, .fz.v { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

/* ════════════════════════════════════════════════
   LEGAL PAGES (privacy / terms / cookies)
   ════════════════════════════════════════════════ */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 1.5rem; margin: 40px 0 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.legal-body h2:first-of-type { border-top: none; margin-top: 0; }
.legal-body h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--gold); }
.legal-body p  { font-size: .9rem; color: var(--t2); margin-bottom: 14px; }
.legal-body ul { margin: 0 0 16px 20px; }
.legal-body ul li { font-size: .9rem; color: var(--t2); margin-bottom: 6px; list-style: disc; }
.legal-body a { color: var(--gold); text-decoration: underline; }
.legal-meta { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 22px; margin-bottom: 36px; font-size: .82rem; color: var(--t3); }

/* ════════════════════════════════════════════════
   RESPONSIVE — 991px (burger begins)
   ════════════════════════════════════════════════ */
@media (max-width: 991px) {
  :root { --nav-h: 70px; }
  .nav-links, .nav-right .btn { display: none; }
  .burger { display: flex; }

  .h-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .h-desc    { margin: 0 auto 32px; }
  .h-acts    { justify-content: center; }
  .h-pills   { justify-content: center; }
  .h-vis     { order: -1; }
  .h-ring    { width: 270px; height: 270px; }
  .h-card    { width: 172px; height: 228px; }
  .h-spade   { font-size: 5.5rem; }

  .stats-g   { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2)::after,
  .stat:nth-child(4)::after { display: none; }

  .t-grid    { grid-template-columns: 1fr; }
  .t-hd      { flex-direction: column; align-items: flex-start; }
  .grid-2    { grid-template-columns: 1fr; gap: 44px; }
  .grid-3    { grid-template-columns: 1fr; }
  .grid-4    { grid-template-columns: repeat(2,1fr); }

  .steps-line{ display: none; }
  .steps-g   { grid-template-columns: repeat(2,1fr); gap: 20px; }

  .suits-g   { grid-template-columns: repeat(2,1fr); }
  .rev-g     { grid-template-columns: 1fr; }
  .faq-layout{ grid-template-columns: 1fr; gap: 40px; }
  .con-g     { grid-template-columns: 1fr; gap: 40px; }
  .ft-g      { grid-template-columns: 1fr 1fr; gap: 28px; }

  .page-hero-content h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
}

@media (max-width: 768px) {
  .sec    { padding: 64px 0; }
  .sec-sm { padding: 48px 0; }
  .f-row  { grid-template-columns: 1fr; }
  .con-form { padding: 24px 18px; }
  .ab-box { padding: 26px 22px; }
  .ft-bot { flex-direction: column; text-align: center; }
  .ft-leg { justify-content: center; }
  .sch-box{ overflow-x: auto; }
  .sch-t  { min-width: 680px; }
  .cta-acts{ flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .wrap   { padding: 0 14px; }
  .h-ring { width: 210px; height: 210px; }
  .h-card { width: 135px; height: 180px; }
  .h-spade{ font-size: 4rem; }
  .steps-g{ grid-template-columns: 1fr; }
  .suits-g{ grid-template-columns: repeat(2,1fr); }
  .ft-g   { grid-template-columns: 1fr; }
  .ag-btns .btn { min-width: 130px; }
  .rev-g  { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .h-title   { font-size: 1.75rem; }
  .btn       { padding: 11px 18px; font-size: .82rem; }
  .h-acts    { flex-direction: column; }
  .ag-btns   { flex-direction: column; }
  .ag-btns .btn { width: 100%; }
  .stat-n    { font-size: 1.8rem; }
  .sec-title { font-size: 1.55rem; }
}

@media (max-width: 320px) {
  .wrap   { padding: 0 10px; }
  .h-ring { width: 175px; height: 175px; }
  .h-card { width: 112px; height: 148px; }
  .h-spade{ font-size: 3.2rem; }
  .btn    { padding: 10px 14px; font-size: .78rem; }
}
