/* ═══════════════════════════════════════════════
   SCARZ ESPORTS — Luxury Dark Theme
   ═══════════════════════════════════════════════ */

:root {
  --bg: #070709;
  --bg-alt: #0d0d12;
  --panel: #111117;
  --panel-2: #16161e;
  --gold: #d4af37;
  --gold-light: #f3d97a;
  --red: #e02b2b;
  --red-dark: #a01818;
  --silver: #c0c0c8;
  --text: #eaeaf0;
  --muted: #9a9aa8;
  --line: rgba(212, 175, 55, 0.18);
  --font-display: 'Cinzel', serif;
  --font-tech: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(224, 43, 43, 0.07), transparent),
    radial-gradient(ellipse 60% 40% at 90% 60%, rgba(212, 175, 55, 0.04), transparent);
}

::selection { background: var(--gold); color: #000; }

/* ─────────── Navbar ─────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5%;
  background: rgba(7, 7, 9, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-ring {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 3px;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.4);
  overflow: hidden;
}
.nav-logo-ring img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.nav-title {
  font-family: var(--font-tech);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 2px;
}
.nav-title em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold);
  font-size: 1.2rem;
  padding: 8px 12px;
  cursor: pointer;
}

/* ─────────── Hero ─────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 20px 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
}
.hero-glow-red { width: 500px; height: 500px; background: var(--red); top: -150px; left: -100px; }
.hero-glow-gold { width: 450px; height: 450px; background: var(--gold); bottom: -150px; right: -100px; opacity: 0.15; }

.hero-logo-ring {
  position: relative;
  width: 230px; height: 230px;
  margin: 0 auto 34px;
  display: grid; place-items: center;
}
.hero-logo {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 14px;
  border: 3px solid var(--gold);
  box-shadow:
    0 0 30px rgba(212, 175, 55, 0.45),
    0 0 90px rgba(224, 43, 43, 0.25),
    inset 0 0 20px rgba(0,0,0,0.1);
}
.ring-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.5);
  animation: spin 22s linear infinite;
}
.ring-spin-2 {
  inset: -14px;
  border: 1px solid rgba(224, 43, 43, 0.35);
  border-top-color: var(--red);
  border-style: solid;
  animation: spin 9s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-eyebrow {
  font-family: var(--font-tech);
  color: var(--gold);
  letter-spacing: 5px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  letter-spacing: 6px;
  line-height: 1.05;
  background: linear-gradient(180deg, #fff 20%, #c9c9d2 60%, #8b8b96);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.hero-title span {
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 60%, #8f7420);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  color: var(--muted);
  font-style: italic;
  letter-spacing: 1px;
  margin: 16px 0 26px;
}
.hero-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.badge {
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.95rem;
  border: 1px solid;
}
.badge-gold { color: var(--gold-light); border-color: rgba(212,175,55,0.5); background: rgba(212,175,55,0.08); }
.badge-silver { color: var(--silver); border-color: rgba(192,192,200,0.4); background: rgba(192,192,200,0.07); }

.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, #9c7d1e);
  color: #171204;
  box-shadow: 0 8px 26px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(212, 175, 55, 0.5); }
.btn-red {
  background: linear-gradient(135deg, #ff5252, var(--red) 55%, var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 26px rgba(224, 43, 43, 0.35);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(224, 43, 43, 0.5); }
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; margin-top: 8px; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  animation: bob 1.8s ease-in-out infinite;
  font-size: 1.2rem;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ─────────── Sections ─────────── */
.section { padding: 96px 5%; max-width: 1200px; margin: 0 auto; }
.section-alt {
  max-width: none;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 5px;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 3px;
}
.section-title span { color: var(--gold); }
.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--gold);
}
.title-divider span { width: 70px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.title-divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.section-sub { max-width: 640px; margin: 20px auto 0; color: var(--muted); font-size: 1.05rem; }

/* ─────────── About ─────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.lux-card {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.lux-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.lux-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(212, 175, 55, 0.08);
}
.lux-card h3 { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 1.5px; margin-bottom: 12px; color: var(--gold-light); }
.lux-card p { color: var(--muted); }
.card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.card-icon-red { color: #ff6b81; background: rgba(224, 43, 43, 0.1); border-color: rgba(224, 43, 43, 0.4); }
.about-logo-ring {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  padding: 6px;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.35);
}
.about-logo-ring img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  transition: transform 0.25s, box-shadow 0.25s;
}
.insta-link:hover { transform: scale(1.06); box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4); }

/* ─────────── Achievements ─────────── */
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
  margin-bottom: 60px;
}
.achieve-card {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.achieve-card:hover { transform: translateY(-8px) scale(1.02); }
.achieve-gold { border-color: rgba(212, 175, 55, 0.4); }
.achieve-gold:hover { box-shadow: 0 20px 50px rgba(212, 175, 55, 0.18); }
.achieve-silver { border-color: rgba(192, 192, 200, 0.35); }
.achieve-silver:hover { box-shadow: 0 20px 50px rgba(192, 192, 200, 0.14); }
.achieve-red { border-color: rgba(224, 43, 43, 0.4); }
.achieve-red:hover { box-shadow: 0 20px 50px rgba(224, 43, 43, 0.18); }
.achieve-medal { font-size: 3.4rem; margin-bottom: 14px; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5)); }
.achieve-card h3 { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 1px; margin-bottom: 6px; }
.achieve-count {
  font-family: var(--font-tech);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}
.achieve-card p:last-child { color: var(--muted); font-size: 0.98rem; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-tech);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.4);
}
.stat-label { color: var(--muted); letter-spacing: 2px; text-transform: uppercase; font-size: 0.82rem; font-weight: 600; }

/* ─────────── Gallery ─────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.gallery-card { margin: 0; }
.gallery-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #fff;
  display: grid; place-items: center;
  border: 2px solid;
  transition: transform 0.3s, box-shadow 0.3s;
}
.frame-gold { border-color: rgba(212, 175, 55, 0.6); }
.frame-silver { border-color: rgba(192, 192, 200, 0.5); }
.frame-red { border-color: rgba(224, 43, 43, 0.55); }
.gallery-frame:hover { transform: scale(1.03); box-shadow: 0 18px 44px rgba(0,0,0,0.5); }
.gallery-frame img { width: 70%; height: 70%; object-fit: contain; }
.gallery-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(7, 7, 9, 0.85);
  color: var(--gold-light);
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.gallery-card figcaption { padding: 16px 6px 0; }
.gallery-card h4 { font-family: var(--font-display); letter-spacing: 1px; color: var(--gold-light); margin-bottom: 4px; }
.gallery-card figcaption p { color: var(--muted); font-size: 0.95rem; }
.gallery-note {
  text-align: center;
  color: var(--muted);
  margin-top: 44px;
  font-style: italic;
}
.gallery-note i { color: var(--gold); margin-right: 8px; }

/* ─────────── Forms ─────────── */
.form-wrap { max-width: 680px; margin: 0 auto; }
.lux-form {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 38px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.lux-form::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.form-logo {
  width: 74px; height: 74px;
  margin: -80px auto 18px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  padding: 5px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0,0,0,0.5), 0 0 18px rgba(212,175,55,0.35);
}
.form-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.form-title {
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 30px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.88rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field label i { color: var(--gold); margin-right: 6px; }
.form-field input,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(7, 7, 9, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field input::placeholder { color: #55555f; }
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.form-field select option { background: var(--panel); }
.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-note i { color: var(--gold); margin-right: 6px; }
.form-status {
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 10px;
  padding: 0;
  transition: all 0.3s;
}
.form-status.ok { padding: 14px; background: rgba(46, 204, 113, 0.12); border: 1px solid rgba(46, 204, 113, 0.45); color: #6fe0a0; }
.form-status.err { padding: 14px; background: rgba(224, 43, 43, 0.12); border: 1px solid rgba(224, 43, 43, 0.45); color: #ff8080; }

/* ─────────── Invitation Slots ─────────── */
.slots-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}
.slot-card {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.slot-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(0,0,0,0.5); }
.slot-num {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}
.slot-name { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 1px; margin-bottom: 10px; }
.slot-state {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.slot-open { border-color: rgba(46, 204, 113, 0.4); }
.slot-open .slot-state { background: rgba(46, 204, 113, 0.12); color: #6fe0a0; border: 1px solid rgba(46, 204, 113, 0.4); }
.slot-open .slot-name { color: #6fe0a0; }
.slot-reserved .slot-state { background: rgba(212, 175, 55, 0.12); color: var(--gold-light); border: 1px solid rgba(212, 175, 55, 0.4); }
.slot-reserved .slot-name { color: var(--gold-light); }
.slot-scarz { border-color: rgba(224, 43, 43, 0.45); }
.slot-scarz .slot-state { background: rgba(224, 43, 43, 0.14); color: #ff8080; border: 1px solid rgba(224, 43, 43, 0.45); }
.slot-scarz .slot-name { color: #ff8080; }
.slots-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.slots-legend i { font-size: 0.6rem; margin-right: 6px; vertical-align: middle; }
.slot-dot-open { color: #2ecc71; }
.slot-dot-reserved { color: var(--gold); }
.slot-dot-scarz { color: var(--red); }

/* ─────────── Contact ─────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.contact-card {
  display: block;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
}
.contact-icon {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.contact-icon-red { color: #ff6b81; background: rgba(224, 43, 43, 0.1); border-color: rgba(224, 43, 43, 0.4); }
.contact-icon-insta {
  color: #fff;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  border: none;
}
.contact-card h3 { font-family: var(--font-display); letter-spacing: 1px; margin-bottom: 8px; color: var(--gold-light); }
.contact-card p { color: var(--muted); word-break: break-word; }
.contact-hint {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

/* ─────────── Footer ─────────── */
.footer {
  text-align: center;
  padding: 70px 5% 44px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), #050507);
}
.footer-logo-ring {
  width: 82px; height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  padding: 5px;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.3);
}
.footer-logo-ring img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.footer-title { font-family: var(--font-tech); font-weight: 900; letter-spacing: 3px; font-size: 1.3rem; }
.footer-title span { color: var(--gold); }
.footer-tagline { color: var(--muted); font-style: italic; margin: 8px 0 22px; }
.footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 26px; }
.footer-social a {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line);
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.25s;
}
.footer-social a:hover {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
}
.footer-copy { color: #55555f; font-size: 0.85rem; letter-spacing: 0.5px; }

/* ─────────── Reveal Animation ─────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────── Responsive ─────────── */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(7, 7, 9, 0.97);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links a { padding: 15px 6%; border-top: 1px solid rgba(212,175,55,0.08); }
  .nav-links a::after { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-logo-ring { width: 190px; height: 190px; }
  .hero-logo { width: 164px; height: 164px; }
  .lux-form { padding: 40px 22px; }
}
