/* ======================================
   VARIABLES & RESET
====================================== */
:root {
  --black:      #080808;
  --dark:       #111111;
  --dark-2:     #191919;
  --gold:       #c9a227;
  --gold-light: #e2b93b;
  --white:      #ffffff;
  --gray:       #777777;
  --gray-light: #bbbbbb;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 72px;
  --pad-x: 64px;
  --section-py: 120px;
  --max-w: 1400px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ======================================
   UTILITIES
====================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  letter-spacing: 0.03em;
  line-height: 0.93;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ======================================
   BUTTONS
====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 40px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ======================================
   NAV
====================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(201,162,39,0.12);
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__logo span { color: var(--gold); margin-left: 5px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 600 !important;
  padding: 10px 24px;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--gold-light) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================
   MOBILE MENU
====================================== */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 190;
  background: rgba(8,8,8,0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ======================================
   HERO
====================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.25) 0%,
    rgba(8,8,8,0.55) 45%,
    rgba(8,8,8,0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 172px);
  letter-spacing: 0.01em;
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 8px 60px rgba(0,0,0,0.4);
}

.hero__event-logo {
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 36px;
  filter: drop-shadow(0 6px 48px rgba(201,162,39,0.35));
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 52px;
}

.hero__event-details {
  margin-bottom: 40px;
}

.hero__event-date {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero__event-venue {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
}

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

.btn--soon {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll span {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: line-pulse 2.2s ease-in-out infinite;
}
@keyframes line-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7) translateY(-4px); }
  50%       { opacity: 1;   transform: scaleY(1)   translateY(0); }
}

/* ======================================
   FEATURED BOUTS
====================================== */
.bouts {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.bouts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bouts__item {
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bouts__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.bouts__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.bouts__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
  margin: 0 auto;
}

/* ======================================
   GALLERY
====================================== */
.gallery {
  padding: var(--section-py) 0;
  background: var(--black);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 6px;
  padding: 0 6px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

.gallery__item img { transition: transform 0.65s cubic-bezier(.25,.46,.45,.94); }
.gallery__item:hover img { transform: scale(1.07); }

.gallery__caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__item:hover .gallery__caption { opacity: 1; }
.gallery__caption span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ======================================
   ABOUT
====================================== */
.about {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.about__content .section-label { margin-bottom: 16px; }
.about__content .section-title { margin-bottom: 32px; }

.about__text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-light);
  margin-bottom: 48px;
}

.about__photos {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 520px;
}

.about__photo--main {
  grid-row: span 2;
  overflow: hidden;
}

.about__photo-stack {
  display: contents;
}

.about__photo {
  overflow: hidden;
}

.about__photo img,
.about__photo--main img {
  transition: transform 0.6s ease;
}
.about__photo:hover img,
.about__photo--main:hover img {
  transform: scale(1.04);
}

/* ======================================
   CONTACT
====================================== */
.contact {
  padding: var(--section-py) var(--pad-x);
  background: var(--black);
  border-top: 1px solid rgba(201,162,39,0.18);
}

.contact__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 0.03em;
  line-height: 0.93;
  text-transform: uppercase;
  margin: 16px 0 48px;
}

.contact__form {
  display: flex;
  margin-bottom: 64px;
}

.contact__input {
  flex: 1;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 0 22px;
  outline: none;
  min-width: 0;
  transition: border-color 0.2s;
}
.contact__input:focus { border-color: var(--gold); }
.contact__input::placeholder { color: var(--gray); }

.contact__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 40px;
}

.contact__social-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.contact__socials {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.contact__social-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  transition: color 0.2s;
}
.contact__social-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.contact__social-link:hover { color: var(--white); }
.contact__social-link:hover::after { width: 100%; }

/* ======================================
   FOOTER
====================================== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 52px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__logo span { color: var(--gold); margin-left: 5px; }

.footer__social-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__socials {
  display: flex;
  gap: 36px;
}

.footer__social-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.2s;
}
.footer__social-link:hover { color: var(--gold); }

.footer__copy {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ======================================
   SCROLL REVEAL ANIMATIONS
====================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1100px) {
  :root { --pad-x: 40px; }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  :root { --section-py: 88px; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about__photos { height: 380px; }
}

@media (max-width: 768px) {
  :root {
    --pad-x: 24px;
    --section-py: 72px;
  }

  /* Nav */
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero__title { font-size: clamp(68px, 18vw, 110px); }

  /* Bouts */
  .bouts__grid { grid-template-columns: 1fr; }
  .bouts__item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  /* About */
  .about__photos { height: 300px; }

  /* Contact */
  .contact__form { flex-direction: column; }
  .contact__input {
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: none;
    padding: 18px 22px;
    height: 56px;
  }

  /* Footer */
  .footer {
    gap: 16px;
    text-align: center;
    padding: 40px 24px;
  }
  .footer__socials { gap: 24px; }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery__item--wide { grid-column: span 1; }
  .hero__actions { flex-direction: column; align-items: center; }
}
