/* NXT Level Wrestling — Brand styles */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;600;700;800;900&family=Archivo+Narrow:wght@500;600;700&display=swap');

:root {
  --black: #0a0a0a;
  --ink: #14110f;
  --red: #c8312a;
  --red-deep: #9a221c;
  --red-bright: #e23a32;
  --bone: #ebe5d8;
  --bone-2: #d8d2c4;
  --paper: #f4efe4;
  --line: #2a2624;
  --gold: #d4a84a; /* sparing accent */
}

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

html, body {
  background: var(--black);
  color: var(--bone);
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.display {
  font-family: 'Anton', 'Archivo Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

.condensed {
  font-family: 'Archivo Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.h1 { font-size: clamp(54px, 9vw, 148px); }
.h2 { font-size: clamp(40px, 6vw, 92px); }
.h3 { font-size: clamp(28px, 3.4vw, 52px); }
.eyebrow {
  font-family: 'Archivo Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}

.container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; }

/* Grain / grit overlay */
.grit::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  max-width: 1360px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 44px; width: auto; }
.nav-brand .brand-text {
  font-family: 'Anton', sans-serif; font-size: 20px;
  letter-spacing: 0.02em; line-height: 1; text-transform: uppercase;
}
.nav-brand .brand-text small {
  display: block; font-family: 'Archivo Narrow', sans-serif;
  font-size: 10px; letter-spacing: 0.3em; color: var(--red); margin-top: 3px;
}
.nav-links {
  display: flex; gap: 36px;
  font-family: 'Archivo Narrow', sans-serif;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 13px; font-weight: 600;
}
.nav-links a {
  position: relative; padding: 6px 0;
  color: var(--bone-2);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--bone); }
.nav-links a.active { color: var(--bone); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red);
}
.nav-cta {
  background: var(--red); color: var(--bone);
  padding: 12px 22px;
  font-family: 'Archivo Narrow', sans-serif; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 13px; font-weight: 700;
  border: none; cursor: pointer;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--red-bright); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px;
  font-family: 'Archivo Narrow', sans-serif;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.15s;
}
.btn-primary { background: var(--red); color: var(--bone); }
.btn-primary:hover { background: var(--red-bright); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--bone); }
.btn-ghost { background: transparent; color: var(--bone); border: 1.5px solid var(--bone); }
.btn-ghost:hover { background: var(--bone); color: var(--black); }
.btn-dark { background: var(--ink); color: var(--bone); border: 1.5px solid var(--line); }
.btn-dark:hover { border-color: var(--red); color: var(--bone); }

/* CHEVRON MOTIF — from logo */
.chev {
  display: inline-block; vertical-align: middle;
}
.chev svg { display: block; }

/* CARDS */
.card {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
}
.card-light {
  background: var(--paper);
  color: var(--ink);
  padding: 28px;
  position: relative;
}

/* FOOTER */
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  margin-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 {
  font-family: 'Archivo Narrow', sans-serif;
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 12px; color: var(--red); margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--bone-2); }
.footer ul a:hover { color: var(--bone); }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 60px; padding-top: 28px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: #6a635c;
  font-family: 'Archivo Narrow', sans-serif; text-transform: uppercase; letter-spacing: 0.16em;
}

/* BANDS */
.band-red {
  background: var(--red); color: var(--bone);
  padding: 18px 0; overflow: hidden;
}
.ticker {
  display: flex; gap: 60px; white-space: nowrap;
  font-family: 'Anton', sans-serif; text-transform: uppercase;
  font-size: 28px; letter-spacing: 0.04em;
  animation: ticker 40s linear infinite;
}
.ticker span { display: inline-flex; align-items: center; gap: 28px; }
.ticker .dot { width: 10px; height: 10px; background: var(--bone); border-radius: 50%; display: inline-block; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* UTIL */
.divider { height: 1px; background: var(--line); margin: 0; }
.text-red { color: var(--red); }
.text-bone { color: var(--bone); }
.uppercase { text-transform: uppercase; letter-spacing: 0.06em; }
