:root {
  --bg-main: #12100d;
  --bg-alt: #181410;
  --bg-card: rgba(28, 22, 16, 0.85);
  --gold: #d4af64;
  --gold-light: #e8c97e;
  --gold-pale: #f5e6b8;
  --gold-dim: rgba(212, 175, 100, 0.12);
  --white: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.55);
  --border: rgba(212, 175, 100, 0.18);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg-main);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: linear-gradient(to bottom, rgba(18, 16, 13, 0.97), transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 100, 0.07);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}
.nav-cta {
  background: var(--gold);
  color: var(--bg-main);
}
a.nav-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 9rem 5rem 0;
  overflow: hidden;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -200%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(14, 11, 8, 0.85) 0%,
    rgba(14, 11, 8, 0.75) 28%,
    rgba(14, 11, 8, 0.55) 50%,
    rgba(14, 11, 8, 0.28) 68%,
    rgba(14, 11, 8, 0.08) 100%
  );
}
.hero-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  z-index: 2;
  background: linear-gradient(to top, rgba(18, 16, 13, 0.92), transparent);
}
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 100, 0.04) 0%,
    transparent 70%
  );
  top: 45%;
  left: 28%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 600;
  opacity: 0;
  animation: fade-up 0.9s 0.3s forwards;
}
.eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  margin-top: 2rem;
  font-family: "Libre Baskerville", serif;
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  opacity: 0;
  animation: fade-up 0.9s 0.5s forwards;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
  display: inline;
}

.hero-rule {
  width: 52px;
  height: 1px;
  background: rgba(212, 175, 100, 0.4);
  margin: 28px 0;
  opacity: 0;
  animation: fade-up 0.9s 0.65s forwards;
}

.hero-subtitle {
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(245, 240, 232, 0.78);
  font-weight: 400;
  max-width: 460px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up 0.9s 0.75s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(212, 175, 100, 0.25);
  padding: 9px 18px;
  margin-bottom: 36px;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 175, 100, 0.85);
  opacity: 0;
  animation: fade-up 0.9s 0.88s forwards;
}
.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s 1s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-main);
  border: none;
  padding: 1rem 2.6rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 100, 0.28);
}
.btn-secondary {
  background: transparent;
  color: rgba(245, 240, 232, 0.82);
  border: 1px solid rgba(245, 240, 232, 0.28);
  padding: 0.95rem 2.2rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats strip at bottom of hero */
.hero-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  border-top: 1px solid rgba(212, 175, 100, 0.12);
}
.hero-stat {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid rgba(212, 175, 100, 0.08);
  background: rgba(14, 11, 8, 0.78);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-lbl {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: 3rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fade-in 2s 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.3;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ─── SCARCITY BAR ─── */
.scarcity-bar {
  background: rgba(16, 13, 9, 0.97);
  border-top: 1px solid rgba(212, 175, 100, 0.1);
  border-bottom: 1px solid rgba(212, 175, 100, 0.1);
  padding: 0.85rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}
.scarcity-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  padding: 0 2rem;
  white-space: nowrap;
}
.scarcity-sep {
  width: 1px;
  height: 14px;
  background: rgba(212, 175, 100, 0.15);
}
.scarcity-item .dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.scarcity-item strong {
  color: var(--gold);
}

/* ─── VIDEO ─── */
#video-section {
  background: var(--bg-alt);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.video-frame {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #0c0a07;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-frame-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 50%,
      rgba(212, 175, 100, 0.05) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #080604 0%, #0e0c09 50%, #080604 100%);
}
.video-play {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 100, 0.08);
  transition: all 0.3s;
  color: var(--gold);
  font-size: 1.3rem;
  padding-left: 4px;
}
.video-frame:hover .video-play {
  background: rgba(212, 175, 100, 0.22);
  transform: scale(1.06);
}
.video-label {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

/* ─── SECTIONS ─── */
section {
  padding: 7rem 4rem;
}
.section-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.centered .section-eyebrow {
  justify-content: center;
}
.centered .section-eyebrow::before {
  display: none;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.35rem, 4.2vw, 3.55rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-subtitle {
  color: rgba(245, 240, 232, 0.72);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.82;
  max-width: 560px;
}
.gold-line {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 1.6rem auto;
  opacity: 0.5;
}

/* ─── EXPERIENCE ─── */
#experience {
  background: var(--bg-main);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}
.experience-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(212, 175, 100, 0.1);
}
.stat-box {
  background: rgba(20, 16, 11, 0.9);
  padding: 1.8rem 1.5rem;
  transition: background 0.3s;
}
.stat-box:hover {
  background: rgba(28, 22, 15, 0.95);
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-top: 5px;
}
.experience-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(212, 175, 100, 0.07);
  transition: all 0.3s;
}
.feature-item:first-child {
  border-top: 1px solid rgba(212, 175, 100, 0.07);
}
.feature-item:hover {
  padding-left: 0.5rem;
}
.feature-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 1px solid rgba(212, 175, 100, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
}
.feature-text h4 {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.75;
}

/* ─── COACHES ─── */
.players-empty {
  text-align: center;
  grid-column: 1 / -1;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.5);
}
#coaches {
  background: var(--bg-alt);
}
.players-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
}
.player-card {
  background: var(--bg-alt);
  padding: 2.2rem 1.4rem 1.8rem;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
  border: 1px solid rgba(212, 175, 100, 0.22);
}
.player-card:hover {
  background: #1e1812;
}
.player-avatar {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.1rem;
  border: 1px solid rgba(212, 175, 100, 0.22);
  border-radius: 50%;
  background: #1a1410;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--gold);
}
.player-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.player-title {
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.player-divider {
  width: 20px;
  height: 1px;
  background: var(--border);
  margin: 0 auto;
}
.player-card-meta {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.55);
}

/* ─── EVENTS ─── */
#events {
  background: var(--bg-main);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  background: rgba(212, 175, 100, 0.08);
}
.event-card {
  background: var(--bg-main);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.event-card:hover {
  background: #181410;
}
.event-private {
  background: rgba(22, 17, 10, 0.9);
}
.event-badge {
  display: inline-block;
  border: 1px solid rgba(212, 175, 100, 0.22);
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.4rem;
}
.event-name {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.event-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.event-desc {
  font-size: 0.86rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.75;
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(212, 175, 100, 0.1);
}
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
}
.event-meta-item .icon {
  color: var(--gold);
  font-size: 0.8rem;
  width: 14px;
}
.event-cta {
  display: inline-block;
  margin-top: 1.6rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.65rem 1.45rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.event-cta:hover {
  background: var(--gold);
  color: var(--bg-main);
}

/* ─── HOW TO BOOK ─── */
#how-to-book {
  background: var(--bg-alt);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 175, 100, 0.3),
    rgba(212, 175, 100, 0.3),
    rgba(212, 175, 100, 0.3),
    transparent
  );
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.8rem;
  border: 1px solid var(--gold);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--gold-light);
}
.step-title {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.step-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.75;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--bg-main);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.4rem;
  border: 1px solid var(--border);
  background: rgba(22, 17, 11, 0.7);
  transition: border-color 0.3s;
  text-decoration: none;
  color: inherit;
}
.contact-item:hover {
  border-color: rgba(212, 175, 100, 0.45);
}
.contact-icon {
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 22px;
  margin-top: 2px;
}
.contact-text h4 {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-text p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white);
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25d366;
  padding: 0.9rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}
.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.16);
}
.contact-blurb {
  font-size: 0.86rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.75;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.58);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(18, 14, 9, 0.9);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select option {
  background: #0c0a07;
}
.btn-form {
  background: var(--gold);
  color: var(--bg-main);
  border: none;
  padding: 0.95rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}
.btn-form:hover {
  background: var(--gold-light);
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 5, 0.97);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  width: 100%;
  max-width: 720px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #12100d, #0c0a07);
  padding: 3.5rem;
  position: relative;
  transform: translateY(28px);
  transition: transform 0.4s;
  margin: auto;
}
.modal-overlay.active .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.modal-eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.modal-sub {
  font-size: 0.86rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.75;
  margin-bottom: 2.2rem;
}
.modal-section-title {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.6rem 0 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.tier-card {
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.tier-card.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.tier-name {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2px;
}
.tier-price {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-light);
}
.tier-duration {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}
.preference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.pref-option {
  border: 1px solid var(--border);
  padding: 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.pref-option.selected {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.player-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.player-check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s;
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--muted);
}
.player-order-badge {
  min-width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 100, 0.1);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}
.player-check:has(input:checked) {
  border-color: var(--gold);
  color: var(--white);
}
.player-check input {
  accent-color: var(--gold);
}
.phone-group {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem;
}
.waitlist-terms-label {
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.62);
  cursor: pointer;
  line-height: 1.45;
}
.success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
}
.success-msg.show {
  display: block;
}
.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.success-title {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.success-text {
  color: rgba(245, 240, 232, 0.65);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.75;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(212, 175, 100, 0.1);
  padding: 4rem 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.75;
  max-width: 240px;
}
.footer-col h5 {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col a {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 100, 0.08);
}
.footer-copy {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.35);
}
.footer-seats {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(212, 175, 100, 0.45);
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .players-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  nav {
    padding: 1.2rem 2rem;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  section,
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #video-section,
  .scarcity-bar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #hero {
    padding: 9rem 2.5rem 0;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .players-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .steps-grid::before {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .modal {
    padding: 2rem;
  }
  .tier-grid {
    grid-template-columns: 1fr;
  }
  .preference-grid {
    grid-template-columns: 1fr 1fr;
  }
  .player-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-strip {
    display: none;
  }
}
@media (max-width: 600px) {
  nav {
    padding: 1rem 1.2rem;
  }
  section {
    padding: 4rem 1.2rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  #hero {
    padding: 8rem 1.5rem 0;
  }
  .scarcity-bar {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .players-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .signup-hours-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── SIGNUP PAGE (light onboarding style) ─── */
body.page-signup {
  --signup-bg: #ebebeb;
  --signup-card: #ffffff;
  --signup-text: #111111;
  --signup-muted: #5c5c5c;
  --signup-border: #d4d4d4;
  --signup-orange: #ff7a2e;
  --signup-orange-hover: #ff6814;
  background: var(--signup-bg);
  color: var(--signup-text);
  font-family: "Inter", "Poppins", sans-serif;
  font-weight: 400;
  min-height: 100vh;
}

body.page-signup #mainNav.nav-signup-light {
  background: rgba(235, 235, 235, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
body.page-signup #mainNav.nav-signup-light .nav-logo {
  color: var(--signup-text);
}
body.page-signup #mainNav.nav-signup-light .nav-logo span {
  color: #b8860b;
}
body.page-signup #mainNav.nav-signup-light .nav-links a {
  color: var(--signup-text);
}
body.page-signup #mainNav.nav-signup-light .nav-links a:hover {
  color: #b8860b;
}
body.page-signup #mainNav.nav-signup-light .nav-cta {
  background: var(--signup-orange);
  color: #111;
  border-color: var(--signup-orange);
  font-weight: 600;
}
body.page-signup #mainNav.nav-signup-light .nav-cta:hover {
  background: var(--signup-orange-hover);
  border-color: var(--signup-orange-hover);
}
body.page-signup #mainNav.nav-signup-light .nav-hamburger span {
  background: var(--signup-text);
}

.signup-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 6.5rem 1.5rem 4rem;
}

.signup-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.signup-head h1 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--signup-text);
}
.signup-head p {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--signup-muted);
  max-width: 480px;
  margin: 0 auto;
}

.signup-section-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signup-muted);
  margin-bottom: 1rem;
}

.signup-field {
  margin-bottom: 1.1rem;
}
.signup-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--signup-text);
  margin-bottom: 0.35rem;
}
.signup-field input,
.signup-field select {
  width: 100%;
  padding: 0.72rem 0.85rem;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--signup-border);
  border-radius: 4px;
  background: var(--signup-card);
  color: var(--signup-text);
}
.signup-field input::placeholder {
  color: #9ca3af;
}
.signup-field input:focus,
.signup-field select:focus {
  outline: none;
  border-color: #a3a3a3;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.signup-divider {
  height: 1px;
  background: var(--signup-border);
  margin: 2rem 0 2rem;
}

.signup-q-meta {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--signup-muted);
  margin-bottom: 0.5rem;
}
.signup-q-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--signup-text);
}

.signup-options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.signup-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--signup-border);
  border-radius: 4px;
  background: var(--signup-card);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.signup-option:hover {
  border-color: #b5b5b5;
}
.signup-option:has(input:checked) {
  border-color: var(--signup-text);
  background: #f5f5f5;
}
.signup-option input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--signup-text);
  flex-shrink: 0;
}
.signup-option span {
  font-size: 0.9rem;
}

.signup-hours-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.signup-hours-row .signup-option {
  flex-direction: column;
  text-align: center;
  padding: 0.65rem 0.4rem;
  gap: 0;
}
.signup-hours-row .signup-option input {
  display: none;
}
.signup-hours-row .signup-option span {
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 500;
}
.signup-hours-row .signup-option:has(input:checked) {
  border-color: var(--signup-text);
  background: #eaeaea;
}

.signup-block {
  margin-bottom: 2.25rem;
}

.signup-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
  padding-bottom: 2rem;
}
.signup-submit {
  min-width: 200px;
  padding: 0.9rem 2.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  background: var(--signup-orange);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.signup-submit:hover {
  background: var(--signup-orange-hover);
}

.signup-success {
  text-align: center;
  padding: 3rem 1rem;
}
.signup-success h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.signup-success p {
  color: var(--signup-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.signup-success a {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--signup-text);
  font-weight: 600;
}

.signup-footer-lite {
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.75rem;
  color: var(--signup-muted);
}
.signup-footer-lite a {
  color: var(--signup-muted);
}

@media (max-width: 640px) {
  .signup-wrap {
    padding-top: 5.5rem;
  }
  .signup-hours-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── PLAYER DETAILS PAGE ─── */
a.player-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.player-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

body.page-player-details {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.player-details-main {
  flex: 1;
  padding: 7rem 4rem 4rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-main) 45%);
}
.player-details-inner {
  max-width: 920px;
  margin: 0 auto;
}
.player-details-breadcrumb {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  color: var(--muted);
}
.player-details-breadcrumb a {
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  transition: color 0.25s;
}
.player-details-breadcrumb a:hover {
  color: var(--gold-light);
}
.player-details-bc-sep {
  margin: 0 0.65rem;
  opacity: 0.35;
}
.player-details-bc-current {
  color: var(--gold);
}

.player-details-empty .section-title {
  margin-top: 0.5rem;
}
.player-details-back-btn {
  display: inline-block;
  margin-top: 2rem;
  text-decoration: none;
}

.player-details-hero {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(212, 175, 100, 0.12);
  margin-bottom: 2.5rem;
}
.player-details-hero-avatar {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 100, 0.28);
  background: #1a1410;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--gold);
  box-shadow: 0 0 0 1px rgba(18, 14, 9, 0.5);
}
.player-details-hero-text .section-eyebrow {
  margin-bottom: 0.75rem;
}
.player-details-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.player-details-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.player-details-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.player-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.player-details-card {
  border: 1px solid var(--border);
  background: rgba(22, 17, 11, 0.72);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.3s;
}
.player-details-card:hover {
  border-color: rgba(212, 175, 100, 0.32);
}
.player-details-card-title {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.player-details-suit {
  font-size: 0.85rem;
  opacity: 0.9;
}
.player-details-pref-intro {
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.player-details-list,
.player-details-prefs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.player-details-list li,
.player-details-prefs li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.player-details-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}
.player-details-value {
  font-size: 0.93rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.45;
  word-break: break-word;
}
a.player-details-link {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s;
}
a.player-details-link:hover {
  color: var(--gold-pale);
  text-decoration: underline;
}

.player-details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.player-details-actions .btn-primary,
.player-details-actions .btn-secondary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.player-details-footer {
  border-top: 1px solid rgba(212, 175, 100, 0.1);
  background: rgba(14, 11, 8, 0.96);
  padding: 1.25rem 4rem;
}
.player-details-footer-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.player-details-footer-inner a {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.player-details-footer-inner a:hover {
  color: var(--gold-light);
}
.player-details-footer-sep {
  opacity: 0.35;
  margin: 0 0.15rem;
}

@media (max-width: 768px) {
  .player-details-main {
    padding: 6rem 1.5rem 3rem;
  }
  .player-details-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .player-details-hero-text .section-eyebrow {
    justify-content: center;
  }
  .player-details-hero-text .section-eyebrow::before {
    display: none;
  }
  .player-details-grid {
    grid-template-columns: 1fr;
  }
  .player-details-footer {
    padding: 1.25rem 1.5rem;
  }
}

/* ─── ADMIN: MANAGE EVENTS ─── */
body.page-admin-events {
  background: var(--bg-main);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.admin-events-login {
  max-width: 400px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
}
.admin-events-login h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.admin-events-login p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.admin-events-login code {
  font-size: 0.75rem;
  color: var(--gold);
}
.admin-events-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}
.admin-events-head h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.admin-events-head > p {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.admin-events-toolbar {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.admin-events-link {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
}
.admin-events-link:hover {
  text-decoration: underline;
}
.admin-events-msg {
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.admin-events-msg-ok {
  background: rgba(37, 211, 102, 0.12);
  color: #6ee7a8;
  border: 1px solid rgba(37, 211, 102, 0.25);
}
.admin-events-msg-error {
  background: rgba(220, 80, 80, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(220, 80, 80, 0.25);
}
.admin-events-hint {
  margin-top: 1.5rem;
  font-size: 0.82rem;
}
.admin-events-hint a {
  color: var(--muted);
}
.admin-events-fieldset {
  border: 1px solid var(--border);
  padding: 1.25rem 1.35rem 1.5rem;
  margin-bottom: 1.25rem;
  background: rgba(22, 17, 11, 0.45);
}
.admin-events-card-fieldset {
  margin-top: 1.5rem;
}
.admin-events-fieldset legend {
  padding: 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.admin-events-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 0.35rem;
  margin-top: 0.85rem;
}
.admin-events-label:first-of-type {
  margin-top: 0;
}
.admin-events-muted {
  color: var(--muted);
  font-weight: 400;
}
.admin-events-input,
.admin-events-textarea,
.admin-events-select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  font-family: inherit;
  background: rgba(14, 11, 8, 0.9);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 2px;
}
.admin-events-textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.5;
}
.admin-events-select {
  cursor: pointer;
  max-width: 100%;
}
.admin-events-meta-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 1rem 0 0.5rem;
}
.admin-events-meta-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}
.admin-events-meta-row .admin-events-icon {
  width: 52px;
  flex-shrink: 0;
  text-align: center;
}
.admin-events-meta-row .admin-events-meta-text {
  flex: 1;
}
.admin-events-btn-primary {
  background: var(--gold);
  color: var(--bg-main);
  border: none;
  padding: 0.75rem 1.75rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}
.admin-events-btn-primary:hover {
  background: var(--gold-light);
}
.admin-events-actions {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 100, 0.12);
}
.admin-events-login .admin-events-btn-primary {
  margin-top: 1rem;
  width: 100%;
}
.admin-events-login .admin-events-input {
  margin-bottom: 0;
}

/* ─── ADMIN DASHBOARD (sidebar layout) ─── */
body.page-admin-dashboard {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-main);
  color: var(--white);
  font-family: "Poppins", sans-serif;
}
.admin-app {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #14110c 0%, #0e0c09 100%);
  border-right: 1px solid var(--border);
  padding: 1.75rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  align-self: flex-start;
  min-height: 100vh;
  z-index: 20;
  transition: transform 0.25s ease;
}
.admin-sidebar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.admin-sidebar-brand span {
  color: var(--gold);
}
.admin-sidebar-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.35rem 0 1.75rem;
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.admin-nav-link {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.78);
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.admin-nav-link:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 100, 0.06);
  border-color: rgba(212, 175, 100, 0.12);
}
.admin-nav-link.is-active {
  color: var(--gold);
  background: rgba(212, 175, 100, 0.1);
  border-color: rgba(212, 175, 100, 0.22);
}
.admin-sidebar-site {
  margin-top: 1.5rem;
  font-size: 0.76rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 0;
}
.admin-sidebar-site:hover {
  color: var(--gold-light);
}
.admin-shell {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.75rem;
  background: rgba(14, 11, 8, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.admin-sidebar-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  width: 40px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.admin-topbar-title {
  flex: 1;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.admin-logout {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(212, 175, 100, 0.35);
  border-radius: 4px;
  transition:
    background 0.2s,
    color 0.2s;
}
.admin-logout:hover {
  background: rgba(212, 175, 100, 0.12);
  color: var(--gold-light);
}
.admin-main {
  padding: 1.75rem 1.75rem 3rem;
  flex: 1;
}
.admin-dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  background: rgba(22, 17, 11, 0.55);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.admin-stat-card:hover {
  border-color: rgba(212, 175, 100, 0.35);
  background: rgba(28, 22, 16, 0.75);
}
.admin-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.admin-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.admin-muted {
  font-size: 0.86rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.65;
  max-width: 520px;
}
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: rgba(18, 14, 9, 0.65);
  border-radius: 4px;
}
.admin-table-wrap-wide {
  max-width: 100%;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.admin-table th,
.admin-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 100, 0.08);
  vertical-align: top;
}
.admin-table th {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  background: rgba(14, 11, 8, 0.92);
  white-space: nowrap;
}
.admin-table tbody tr:hover td {
  background: rgba(212, 175, 100, 0.03);
}
.admin-table-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem !important;
}
.admin-table-compact {
  font-size: 0.74rem;
}
.admin-td-clip {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-td-wrap {
  max-width: 280px;
}
.admin-td-actions {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.admin-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.76rem;
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.admin-link-danger {
  color: #f0a8a8;
}
.admin-inline-form {
  display: inline;
  margin: 0;
  padding: 0;
}
.admin-flash {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  font-size: 0.86rem;
}
.admin-flash-ok {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.28);
  color: #86efac;
}
.admin-flash-error {
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 80, 80, 0.28);
  color: #fecaca;
}
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 0%,
      rgba(212, 175, 100, 0.06),
      transparent
    ),
    var(--bg-main);
}
.admin-login-card {
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border);
  background: linear-gradient(
    145deg,
    rgba(22, 17, 11, 0.95),
    rgba(12, 10, 7, 0.98)
  );
  padding: 2.5rem 2rem;
  border-radius: 6px;
}
.admin-login-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.admin-login-title {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.admin-login-hint {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.admin-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.55);
  margin-top: 0.65rem;
}
.admin-label:first-child {
  margin-top: 0;
}
.admin-input,
.admin-textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  font-family: inherit;
  background: rgba(14, 11, 8, 0.9);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 4px;
  margin-bottom: 0.25rem;
}
.admin-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}
.admin-btn-primary {
  background: var(--gold);
  color: var(--bg-main);
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 0.75rem;
  transition: background 0.2s;
}
.admin-btn-primary:hover {
  background: var(--gold-light);
}
.admin-btn-block {
  width: 100%;
}
.admin-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-left: 0.5rem;
}
.admin-btn-ghost:hover {
  color: var(--gold);
  border-color: rgba(212, 175, 100, 0.35);
}
.admin-login-back {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}
.admin-login-back a {
  color: var(--muted);
}
.admin-login-back a:hover {
  color: var(--gold-light);
}
.admin-card {
  border: 1px solid var(--border);
  background: rgba(18, 14, 9, 0.72);
  padding: 1.5rem 1.35rem 1.75rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.admin-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.admin-form-grid {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-width: 520px;
}
.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 100, 0.1);
}
.admin-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.75);
  margin-top: 0.5rem;
  cursor: pointer;
}
.admin-check input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}
.admin-events-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .admin-events-split {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(-100%);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.45);
  }
  .admin-sidebar.is-open {
    transform: translateX(0);
  }
  .admin-sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .admin-main {
    padding: 1rem 1rem 2.5rem;
  }
}

.contact-success-banner {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.9);
  border: 1px solid rgba(212, 175, 100, 0.28);
  background: rgba(212, 175, 100, 0.08);
  max-width: 560px;
}
