/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #121016;
  --bg-alt: #17151d;
  --card: #1c1a24;
  --border: #2c2934;
  --text: #efe9e0;
  --text-dim: #a79fb0;
  --gold: #d9a441;
  --gold-bright: #f0c46a;

  --lorcana: #9b6bd1;
  --pokemon: #f0c419;
  --mtg: #e2725b;
  --puzzle: #4fb0a5;

  --radius: 14px;
  --wrap: 1120px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

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

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 16, 22, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-family: Georgia, serif;
}

.brand-mark {
  color: var(--gold);
  font-size: 1.4rem;
}

.brand-name em {
  font-style: normal;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--text-dim);
  transition: color 0.15s ease;
}

.main-nav a:hover { color: var(--text); }

.nav-cta {
  background: var(--gold);
  color: #1a1710 !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover { background: var(--gold-bright) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: #1a1710;
}

.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; }

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--text-dim);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Strip ---------- */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 24px;
}

.strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.strip-item strong { color: var(--gold-bright); font-size: 0.98rem; }
.strip-item span { color: var(--text-dim); font-size: 0.85rem; }

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ---------- Game cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.game-card:hover { transform: translateY(-4px); }

.game-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.game-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.game-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.game-lorcana { border-top-color: var(--lorcana); }
.game-lorcana .game-icon { color: var(--lorcana); }
.game-pokemon { border-top-color: var(--pokemon); }
.game-pokemon .game-icon { color: var(--pokemon); }
.game-mtg { border-top-color: var(--mtg); }
.game-mtg .game-icon { color: var(--mtg); }
.game-puzzle { border-top-color: var(--puzzle); }
.game-puzzle .game-icon { color: var(--puzzle); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  color: var(--text-dim);
}

.why-list li::before {
  content: "\2666";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
}

.why-quote {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--gold-bright);
  font-style: italic;
}

/* ---------- Event tags ---------- */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.tag {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--text);
}

/* ---------- Contact ---------- */
.contact-section {
  text-align: center;
}

.contact-inner { max-width: 560px; }

.phone-link {
  display: inline-block;
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3rem);
  color: var(--gold-bright);
  margin: 8px 0 18px;
  letter-spacing: 0.02em;
}

.phone-link:hover { color: var(--gold); }

.contact-note {
  color: var(--text-dim);
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-inner a:hover { color: var(--gold-bright); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .nav-toggle { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
}
