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

:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #c8c8c8;
  --dim: #555;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 4rem;
  mix-blend-mode: difference;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: white;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: white;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: white; }

/* HERO */
#home {
  height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(180,140,80,0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-text {
  text-align: center;
  position: relative; z-index: 2;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.3s forwards;
}

.hero-wordmark {
  display: flex; align-items: baseline; gap: 0.4em;
  justify-content: center;
}

.hero-vexra {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: white;
}

.hero-entertainment {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--off-white);
  text-transform: uppercase;
  position: relative;
}
.hero-entertainment::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.hero-tagline {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--dim), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* DIVIDER */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* SECTIONS */
section {
  padding: 8rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 3rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.section-label::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ABOUT */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0.03em;
}
.about-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--off-white);
  font-weight: 300;
}
.about-body p + p { margin-top: 1.2rem; }

.about-stats {
  margin-top: 3rem;
  display: flex; gap: 3rem;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.3rem;
}

/* CONTACT */
#contact {
  text-align: center;
  padding-bottom: 10rem;
}
#contact .contact-sub {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--off-white);
  margin-bottom: 3rem;
}
.contact-email {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  transition: border-color 0.3s;
}
.contact-email:hover { border-color: white; }

/* FOOTER */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
footer .footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--dim);
}
footer .footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--dim);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  nav { padding: 1.5rem 2rem; }
  section { padding: 5rem 2rem; }
  #about .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
  .about-stats { gap: 2rem; }
}
