/* ============================================================
   THE BURIAL MOUND SHOOTING CENTER — Master Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --gold: #C29F5A;
  --gold-dark: #A6863D;
  --gold-light: #D4B97A;
  --gray-100: #1a1a1a;
  --gray-200: #2a2a2a;
  --gray-300: #3a3a3a;
  --gray-400: #666666;
  --gray-500: #999999;

  --font-display: 'Black Ops One', cursive;
  --font-body: 'Poppins', sans-serif;

  --nav-height: 80px;
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--gold-light);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  color: var(--white);
  font-weight: 400; /* Black Ops One only has 400 */
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1440px;
}

.container--narrow {
  max-width: 800px;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Section Spacing --- */
.section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.section--sm {
  padding: clamp(40px, 5vw, 80px) 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--gray-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
}

/* --- Divider --- */
.divider {
  width: 60%;
  max-width: 400px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  border: none;
}

.divider--sm {
  width: 80px;
  margin: 24px auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-circle img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-base);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a.active {
  color: var(--gold);
}

.nav__links a.active::after {
  width: 100%;
}

.nav__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
  margin: 3px 0;
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav__mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-menu a {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color var(--transition-base);
}

.nav__mobile-menu a:hover {
  color: var(--gold);
}

.nav__mobile-menu .btn-gold,
.nav__mobile-menu .btn-ghost {
  margin-top: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold--sm,
.btn-ghost--sm {
  padding: 8px 20px;
  font-size: 12px;
}

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

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

.hero__title {
  font-size: clamp(36px, 7vw, 80px);
  margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.5);
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Sub-hero (inner pages) */
.hero--sub {
  height: 60vh;
  min-height: 400px;
}

.hero--sub .hero__title {
  font-size: clamp(28px, 5vw, 60px);
}

/* Image-less sub-hero: title on the black background, sits above a section with its own bg */
.hero--noimage {
  height: auto;
  min-height: 0;
  padding: 140px 0 64px;
  background: var(--black);
  border-bottom: 1px solid rgba(194, 159, 90, 0.25);
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(40px, 6vw, 80px) 24px;
}

.stat {
  text-align: center;
}

.stat__circle {
  width: clamp(100px, 12vw, 140px);
  height: clamp(100px, 12vw, 140px);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat__circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(194,159,90,0.2);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 1px;
  line-height: 1;
}

.stat__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-top: 4px;
}

.stat__desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--gray-100);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.card__title {
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.card__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-base);
}

.card__link:hover {
  gap: 12px;
  color: var(--gold-light);
}

.card__link::after {
  content: '→';
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}

.gallery-strip__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-strip__img:hover {
  transform: scale(1.05);
}

.gallery-strip__item {
  overflow: hidden;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--gray-100);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  padding: 32px;
  border-left: 2px solid var(--gold);
}

.testimonial__quote {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
}

.testimonial__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.testimonial__detail {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-500);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--black) 100%);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-banner__title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 12px;
}

.cta-banner__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-500);
  margin-bottom: 32px;
  text-transform: none;
  letter-spacing: 0;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--gray-300);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion__trigger-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  padding-right: 16px;
}

.accordion__trigger-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--transition-base);
}

.accordion__trigger-icon::before,
.accordion__trigger-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: transform var(--transition-base);
}

.accordion__trigger-icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.accordion__trigger-icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.accordion__item.open .accordion__trigger-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion__content-inner {
  padding: 0 0 24px;
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
}

.countdown__unit {
  text-align: center;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
}

.countdown__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-top: 8px;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  text-align: center;
}

.about-preview__text {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-300);
  padding: 60px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer__logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-circle img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.footer__nav-column h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__nav-column a {
  display: block;
  width: fit-content;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 2px;
  transition: color var(--transition-base), transform var(--transition-base);
}

.footer__nav-column a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-light);
  transition: width var(--transition-base);
}

.footer__nav-column a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer__nav-column a:hover::after {
  width: 100%;
}

.footer__contact {
  text-align: right;
}

.footer__contact h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__contact p {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-500);
  margin-bottom: 4px;
  line-height: 1.6;
}

.footer__contact a {
  color: var(--gold);
}

.footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer__contact .footer__socials {
  justify-content: flex-end;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--white);
}

.footer__social-icon:hover {
  border-color: var(--gold);
  background: rgba(194,159,90,0.1);
  color: var(--gold);
}

.footer__social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__bottom {
  border-top: 1px solid var(--gray-300);
  padding-top: 24px;
  text-align: center;
}

.footer__copyright {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-400);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   PLACEHOLDER CONTENT (for shell pages)
   ============================================================ */
.placeholder-content {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.placeholder-content p {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-400);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links {
    gap: 20px;
  }

  .nav__links a {
    font-size: 13px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__nav {
    gap: 32px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav__links {
    display: none;
  }

  .nav__ctas {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .stats-row {
    gap: 24px;
  }

  .stat__circle {
    width: 100px;
    height: 100px;
  }

  .stat__number {
    font-size: 24px;
  }

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

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip__img {
    height: 200px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__nav {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .footer__contact {
    text-align: center;
  }

  .footer__contact .footer__socials {
    justify-content: center;
  }

  .hero__title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .hero__subtitle {
    font-size: clamp(12px, 3vw, 16px);
    letter-spacing: 1px;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero__ctas .btn-ghost,
  .hero__ctas .btn-gold {
    width: 100%;
    max-width: 260px;
  }

  .countdown {
    gap: 16px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .stats-row {
    flex-direction: column;
    gap: 24px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip__img {
    height: 250px;
  }

  .hero--sub {
    height: 50vh;
    min-height: 300px;
  }

  .btn-gold,
  .btn-ghost {
    padding: 10px 24px;
    font-size: 12px;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }
}

/* ============================================================
   EXPECT TIMELINE (Events — What to Expect)
   ============================================================ */
.expect-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.expect-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-300);
}

.expect-step:last-child {
  border-bottom: none;
}

.expect-step__number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}

.expect-step__content {
  flex: 1;
}

.expect-step__title {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.expect-step__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

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

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  background: var(--gray-200);
  border: 1px solid var(--gray-300);
  padding: 12px 16px;
  border-radius: 0;
  transition: border-color var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-gold {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE — SPLIT LAYOUT (Map + Info)
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-split__map {
  border: 1px solid var(--gray-300);
  overflow: hidden;
  min-height: 400px;
}

.contact-split__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-split__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
}

.contact-split__heading {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact-detail__value {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

a.contact-detail__value {
  color: var(--gold);
}

a.contact-detail__value:hover {
  color: var(--gold-light);
}

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-split__map {
    min-height: 300px;
  }

  .contact-split__info {
    text-align: center;
    align-items: center;
  }

  .contact-socials {
    justify-content: center;
  }
}

/* ============================================================
   DRIVING DIRECTIONS
   ============================================================ */
.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.direction-card {
  background: var(--gray-200);
  padding: 32px;
  border-left: 3px solid var(--gold);
}

.direction-card__title {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.direction-card__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.direction-card__time {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .directions-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GEAR GRID (Training — What to Bring)
   ============================================================ */
.gear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.gear-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-200);
  border: 1px solid var(--gray-300);
}

.gear-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--gold);
  margin-top: 2px;
}

.gear-item__icon svg {
  width: 100%;
  height: 100%;
}

.gear-item__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gear-item__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .gear-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CARDS GRID — 2-COL VARIANT
   ============================================================ */
.cards-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .cards-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ — CATEGORY ACCORDION SECTIONS
   ============================================================ */
.faq-category {
  margin-bottom: 48px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Mission Text */
.about-mission__text {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-member {
  text-align: center;
  padding: 40px 24px;
  background: var(--gray-200);
  border-top: 2px solid var(--gold);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.team-member__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.team-member__icon svg {
  width: 28px;
  height: 28px;
}

.team-member__name {
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.team-member__role {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.team-member__bio {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Property Section */
.about-property {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.about-property:last-child {
  margin-bottom: 0;
}

.about-property--reverse {
  direction: rtl;
}

.about-property--reverse > * {
  direction: ltr;
}

.about-property__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-property__content h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 16px;
  color: var(--gold);
}

.about-property__content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-property__content p:last-child {
  margin-bottom: 0;
}

/* Community Section */
.about-community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-community__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-community__content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ============================================================
   FACILITIES PAGE
   ============================================================ */

/* Property Overview */
.property-overview {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.property-overview__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.property-overview__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.property-overview__content {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 120px) 24px;
}

.property-overview__title {
  font-size: clamp(24px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.property-overview__text {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 16px;
}

.property-overview__text:last-child {
  margin-bottom: 0;
}

/* Facility Grid */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.facility-card {
  background: var(--gray-100);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.facility-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.facility-card:hover .facility-card__image img {
  transform: scale(1.05);
}

.facility-card__image {
  overflow: hidden;
}

.facility-card__body {
  padding: 24px;
}

.facility-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.facility-card__icon svg {
  width: 20px;
  height: 20px;
}

.facility-card__title {
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.facility-card__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.facility-card__stat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid rgba(194,159,90,0.3);
  padding: 4px 12px;
}

/* Photo Break */
.photo-break {
  width: 100%;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================================
   ABOUT + FACILITIES RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   ABOUT + FACILITIES RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-property {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .about-property--reverse {
    direction: ltr;
  }

  .about-property__image img {
    height: 280px;
  }

  .about-community {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-community__image img {
    height: 300px;
  }

  .about-community__content .section-title {
    text-align: center !important;
  }

  .about-community__content .divider--sm {
    margin-left: auto !important;
  }

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

  .property-overview {
    min-height: 400px;
  }

  .property-overview__bg {
    background-attachment: scroll;
  }

  .photo-break img {
    height: 250px;
  }
}

/* ============================================
   EMAIL SIGNUP SECTION
   ============================================ */
.email-signup {
  padding: 80px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(194, 159, 90, 0.15);
  border-bottom: 1px solid rgba(194, 159, 90, 0.15);
  text-align: center;
}
.email-signup__title {
  font-family: 'Black Ops One', cursive;
  font-size: 36px;
  color: #c29f5a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.email-signup__text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.email-signup__form {
  max-width: 500px;
  margin: 0 auto;
}
.email-signup__input-group {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.email-signup__input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(194, 159, 90, 0.3);
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.email-signup__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.email-signup__input:focus {
  border-color: #c29f5a;
  background: rgba(255, 255, 255, 0.12);
}
.email-signup__btn {
  border-radius: 0 4px 4px 0;
  padding: 16px 28px;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 1.5px;
}
.email-signup__disclaimer {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
}

@media (max-width: 480px) {
  .email-signup__input-group {
    flex-direction: column;
    gap: 12px;
  }
  .email-signup__input {
    border-right: 1px solid rgba(194, 159, 90, 0.3);
    border-radius: 4px;
  }
  .email-signup__btn {
    border-radius: 4px;
    width: 100%;
  }
  .email-signup__title {
    font-size: 28px;
  }
}

/* ============================================
   NEARBY PAGE
   ============================================ */
.nearby-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.nearby-card {
  background: #0a0a0a;
  border: 1px solid rgba(194, 159, 90, 0.15);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.nearby-card:hover {
  border-color: rgba(194, 159, 90, 0.4);
  transform: translateY(-4px);
}
.nearby-card__icon {
  color: #c29f5a;
  margin-bottom: 20px;
}
.nearby-card__icon svg {
  width: 48px;
  height: 48px;
}
.nearby-card__title {
  font-family: 'Black Ops One', cursive;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.nearby-card__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}
.nearby-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.nearby-tip {
  text-align: center;
  padding: 24px;
}
.nearby-tip h4 {
  font-family: 'Black Ops One', cursive;
  font-size: 16px;
  color: #c29f5a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.nearby-tip p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .nearby-cards { grid-template-columns: 1fr; }
  .nearby-tips { grid-template-columns: 1fr; }
}

/* ============================================
   DIRECTIONS PAGE — GATE BLOCKS
   ============================================ */
.gate-section { padding: 60px 0; }
.gate-block__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}
.gate-block__number {
  font-family: 'Black Ops One', cursive;
  font-size: 48px;
  color: #c29f5a;
  line-height: 1;
  flex-shrink: 0;
}
.gate-block__title {
  font-family: 'Black Ops One', cursive;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.gate-block__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}
.gate-block__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.gate-block__map {
  border-radius: 8px;
  overflow: hidden;
}
.gate-block__map iframe {
  display: block;
  min-height: 300px;
}
.gate-block__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

@media (max-width: 768px) {
  .gate-block__content { grid-template-columns: 1fr; }
  .gate-block__links { flex-direction: row; flex-wrap: wrap; }
  .gate-block__number { font-size: 36px; }
  .gate-block__title { font-size: 18px; }
}

/* ============================================
   MEDIA PAGE
   ============================================ */
.media-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.media-gallery__grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.media-gallery__grid img:hover {
  transform: scale(1.03);
  opacity: 0.85;
}
.media-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.media-video {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}
.media-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1024px) {
  .media-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .media-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .media-videos__grid { grid-template-columns: 1fr; }
  .media-gallery__grid img { height: 150px; }
}

/* ============================================
   NAV — Handle more links gracefully
   ============================================ */
.nav__links {
  gap: 20px;
}
.nav__links a {
  font-size: 13px;
}

@media (max-width: 1200px) {
  .nav__links { gap: 12px; }
  .nav__links a { font-size: 12px; }
}

/* ============================================
   HERO MEGA — Single background spans hero + stats + about
   ============================================ */
.hero-mega {
  position: relative;
  overflow: hidden;
}
.hero-mega__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-mega__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}
.hero-mega .hero--transparent,
.hero-mega .stats-row--transparent,
.hero-mega .about-preview--transparent,
.hero-mega .divider--light {
  position: relative;
  z-index: 2;
}
.hero--transparent {
  background: none !important;
}
.hero--transparent .hero__bg {
  display: none;
}
.stats-row--transparent {
  background: none !important;
}
.about-preview--transparent {
  background: none !important;
}
.divider--light {
  border-color: rgba(194, 159, 90, 0.3) !important;
}

/* ============================================
   RUN N GUN — SUB-NAVIGATION TABS
   ============================================ */
.subnav {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(194, 159, 90, 0.2);
  position: sticky;
  top: 70px;
  z-index: 50;
}
.subnav__tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.subnav__tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Black Ops One', cursive;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 18px 24px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.subnav__tab:hover { color: rgba(255, 255, 255, 0.8); }
.subnav__tab.active {
  color: #c29f5a;
  border-bottom-color: #c29f5a;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* RNG Intro */
.rng-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.rng-intro__text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}
.rng-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.rng-stat {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid rgba(194, 159, 90, 0.2);
  border-radius: 8px;
}
.rng-stat__number {
  display: block;
  font-family: 'Black Ops One', cursive;
  font-size: 28px;
  color: #c29f5a;
  margin-bottom: 4px;
}
.rng-stat__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* RNG Features (numbered list) */
.rng-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.rng-feature {
  padding: 32px 24px;
  border-left: 2px solid rgba(194, 159, 90, 0.3);
}
.rng-feature__num {
  font-family: 'Black Ops One', cursive;
  font-size: 32px;
  color: #c29f5a;
  display: block;
  margin-bottom: 12px;
}
.rng-feature__title {
  font-family: 'Black Ops One', cursive;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.rng-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* First Time Cards */
.first-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ft-card {
  background: #111;
  border: 1px solid rgba(194, 159, 90, 0.15);
  border-radius: 8px;
  padding: 32px 24px;
}
.ft-card__step {
  font-family: 'Black Ops One', cursive;
  font-size: 36px;
  color: #c29f5a;
  display: block;
  margin-bottom: 12px;
}
.ft-card__title {
  font-family: 'Black Ops One', cursive;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.ft-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Rules Grid */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rules-block {
  background: #111;
  border: 1px solid rgba(194, 159, 90, 0.15);
  border-radius: 8px;
  padding: 32px 24px;
}
.rules-block__title {
  font-family: 'Black Ops One', cursive;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c29f5a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(194, 159, 90, 0.2);
}
.rules-block ul {
  list-style: none;
  padding: 0;
}
.rules-block li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
}
.rules-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #c29f5a;
}

/* Results placeholder */
.results-links { margin-top: 40px; }

/* ============================================
   RESULTS ARCHIVE (events page)
   ============================================ */
.results-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63621;
  margin-bottom: 14px;
}
.results-list {
  margin-top: 40px;
  border-top: 1px solid rgba(194, 159, 90, 0.18);
}
.result-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 8px;
  border-bottom: 1px solid rgba(194, 159, 90, 0.18);
  text-decoration: none;
  transition: background-color 0.25s, padding-left 0.25s;
}
.result-row:hover {
  background: rgba(230, 54, 33, 0.06);
  padding-left: 16px;
}
.result-row__date {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}
.result-row__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}
.result-row__platform {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
.result-row__arrow {
  color: #e63621;
  font-weight: 700;
  transition: transform 0.25s;
  display: inline-block;
}
.result-row:hover .result-row__arrow { transform: translateX(4px); }
.result-row:hover .result-row__title { color: #fff; }
@media (max-width: 640px) {
  .result-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 8px;
  }
  .result-row__platform { margin-top: 4px; }
}

/* ============================================
   PARTNERS / SPONSOR GRID
   ============================================ */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 32px;
  border: 1px solid rgba(194, 159, 90, 0.15);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}
.sponsor-card:hover {
  border-color: rgba(194, 159, 90, 0.4);
  transform: translateY(-4px);
}
.sponsor-card__logo {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 6px;
  padding: 14px 18px;
  box-sizing: border-box;
}
.sponsor-card__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Light/solid-background logos sit on a white tile so they read on the dark page */
.sponsor-card__logo--light {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
/* Wordmark fallback when no logo image is available */
.sponsor-card__logo--wordmark {
  border: 1px dashed rgba(194, 159, 90, 0.25);
}
.sponsor-card__wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e63621;
  text-align: center;
  line-height: 1.25;
}
.sponsor-card__placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.sponsor-card__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* ============================================
   RESPONSIVE: New components
   ============================================ */
@media (max-width: 1024px) {
  .rng-features { grid-template-columns: repeat(2, 1fr); }
  .first-time-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rng-intro { grid-template-columns: 1fr; gap: 32px; }
  .rng-features { grid-template-columns: 1fr; }
  .first-time-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .subnav__tab { padding: 14px 16px; font-size: 12px; }
}

/* 2-column card grid for 4 events */
.cards-grid--2col {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 768px) {
  .cards-grid--2col {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   RESULTS LIST
   ============================================ */
.results-grid {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}
.results-year {
  font-family: 'Black Ops One', cursive;
  font-size: 24px;
  color: #c29f5a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(194, 159, 90, 0.2);
}
.results-list {
  display: flex;
  flex-direction: column;
}
.results-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s, padding-left 0.2s;
}
.results-item:hover {
  background: rgba(194, 159, 90, 0.08);
  padding-left: 24px;
}
.results-item__date {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  min-width: 64px;
  text-transform: uppercase;
}
.results-item__name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
}
.results-item__arrow {
  color: #c29f5a;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.2s;
}
.results-item:hover .results-item__arrow {
  opacity: 1;
}

@media (max-width: 480px) {
  .results-item { gap: 10px; padding: 12px 8px; }
  .results-item__date { min-width: 50px; font-size: 11px; }
  .results-item__name { font-size: 13px; }
}

/* ============================================
   RULEBOOK — Restyled for Burial Mound theme
   ============================================ */
.rulebook-wrapper {
  background: #000;
}

/* Banner */
.rulebook-wrapper .banner {
  padding: 40px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(194, 159, 90, 0.2);
}
.rulebook-wrapper .banner-event {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.rulebook-wrapper .banner-title {
  font-family: 'Black Ops One', cursive;
  font-size: 36px;
  color: #c29f5a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.rulebook-wrapper .banner-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.rulebook-wrapper .print-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(194, 159, 90, 0.1);
  border: 1px solid rgba(194, 159, 90, 0.3);
  border-radius: 4px;
  color: #c29f5a;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.rulebook-wrapper .print-btn:hover { background: rgba(194, 159, 90, 0.2); }
.rulebook-wrapper .print-btn svg { width: 16px; height: 16px; }

/* Layout */
.rulebook-wrapper .layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sidebar TOC */
.rulebook-wrapper .sidebar {
  position: sticky;
  top: 120px;
  padding: 32px 24px;
  border-right: 1px solid rgba(194, 159, 90, 0.1);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.rulebook-wrapper .toc-label {
  font-family: 'Black Ops One', cursive;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c29f5a;
  margin-bottom: 16px;
}
.rulebook-wrapper .toc-list {
  list-style: none;
  padding: 0;
}
.rulebook-wrapper .toc-list li { margin-bottom: 2px; }
.rulebook-wrapper .toc-list a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, background 0.2s;
}
.rulebook-wrapper .toc-list a:hover {
  color: #fff;
  background: rgba(194, 159, 90, 0.08);
}
.rulebook-wrapper .toc-num {
  font-family: 'Black Ops One', cursive;
  font-size: 12px;
  color: #c29f5a;
  min-width: 20px;
}

/* Content area */
.rulebook-wrapper .content {
  padding: 40px 48px;
}

/* Rule sections */
.rulebook-wrapper .rule-section {
  margin-bottom: 48px;
}
.rulebook-wrapper .section-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(194, 159, 90, 0.2);
}
.rulebook-wrapper .section-num {
  font-family: 'Black Ops One', cursive;
  font-size: 28px;
  color: #c29f5a;
}
.rulebook-wrapper .section-title {
  font-family: 'Black Ops One', cursive;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

/* Sub-sections */
.rulebook-wrapper .sub { margin: 20px 0 20px 0; }
.rulebook-wrapper .sub-num {
  font-family: 'Black Ops One', cursive;
  font-size: 15px;
  color: #c29f5a;
  margin-right: 8px;
}
.rulebook-wrapper .sub-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.rulebook-wrapper .rule-body {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-top: 8px;
}

/* Rule lists */
.rulebook-wrapper .rule-list,
.rulebook-wrapper .rule-sublist {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}
.rulebook-wrapper .rule-list > li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.rulebook-wrapper .rule-sublist > li {
  display: flex;
  gap: 10px;
  padding: 6px 0 6px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.rulebook-wrapper .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #c29f5a;
  min-width: 48px;
  flex-shrink: 0;
}

/* Plain list */
.rulebook-wrapper .plain-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}
.rulebook-wrapper .plain-list li {
  padding: 4px 0 4px 16px;
  position: relative;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.rulebook-wrapper .plain-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #c29f5a;
}

/* Callouts */
.rulebook-wrapper .callout {
  background: rgba(194, 159, 90, 0.06);
  border-left: 3px solid #c29f5a;
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.rulebook-wrapper .callout.warn {
  background: rgba(139, 0, 0, 0.08);
  border-left-color: #8B0000;
}

/* Penalty table */
.rulebook-wrapper .penalty-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.rulebook-wrapper .penalty-table th,
.rulebook-wrapper .penalty-table td {
  padding: 10px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rulebook-wrapper .penalty-table th {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c29f5a;
  border-bottom: 1px solid rgba(194, 159, 90, 0.2);
}
.rulebook-wrapper .penalty-table td { color: rgba(255,255,255,0.7); }
.rulebook-wrapper .penalty-time { color: #c29f5a; font-weight: 600; }
.rulebook-wrapper .penalty-dq { color: #cc4444; font-weight: 700; }

/* Badges */
.rulebook-wrapper .badge { display: none; }
.rulebook-wrapper .badge-new {
  display: inline-block;
  background: #c29f5a;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Highlight text */
.rulebook-wrapper .hl {
  color: #c29f5a;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .rulebook-wrapper .layout {
    grid-template-columns: 1fr;
  }
  .rulebook-wrapper .sidebar {
    position: relative;
    top: auto;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid rgba(194, 159, 90, 0.1);
    padding: 24px;
  }
  .rulebook-wrapper .content {
    padding: 24px;
  }
  .rulebook-wrapper .section-num { font-size: 22px; }
  .rulebook-wrapper .section-title { font-size: 18px; }
}
@media (max-width: 480px) {
  .rulebook-wrapper .content { padding: 16px; }
  .rulebook-wrapper .banner { padding: 24px 16px; }
  .rulebook-wrapper .banner-title { font-size: 28px; }
}

/* ============================================================
   DIRECTIONS / LOCATION PAGE
   ============================================================ */
.loc-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.loc-lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 620px;
}
.loc-lede strong { color: #fff; font-weight: 600; }

/* Address / venue info cards */
.loc-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.loc-info__card {
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 28px 30px;
  background: var(--gray-100);
}
.loc-info__label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.loc-info__value {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
.loc-info__value a { color: var(--gold); text-decoration: none; }
.loc-info__value a:hover { color: var(--gold-light); }
.loc-info__note {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 10px;
  line-height: 1.5;
}

/* Gate cards grid */
.gate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gate-card {
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 28px 30px;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
}
.gate-card__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.gate-card__label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(194, 159, 90, 0.12);
  border: 1px solid rgba(194, 159, 90, 0.35);
  padding: 4px 9px;
  border-radius: 4px;
}
.gate-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #fff;
}
.gate-card__coords-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.gate-card__coords {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--gray-500);
}
.gate-card__copy {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
  transition: var(--transition-base);
}
.gate-card__copy:hover { border-color: var(--gold); color: var(--gold-light); }
.gate-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-500);
  margin-bottom: 22px;
  flex: 1;
}
.gate-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Interactive venue map */
.venuemap {
  margin-top: 28px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-100);
}
.venuemap__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-300);
  background: #111;
}
.venuemap__filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.venuemap__filters-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-right: 4px;
}
.vm-chip, .vm-base {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
  background: none;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.vm-chip__dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.vm-chip[aria-pressed="true"] { color: #fff; border-color: var(--gold); background: rgba(194,159,90,0.10); }
.vm-chip[aria-pressed="false"] { opacity: 0.5; }
.venuemap__base { display: flex; gap: 8px; }
.vm-base[aria-pressed="true"] { color: #fff; border-color: var(--gold); background: rgba(194,159,90,0.12); }
.venuemap__body { display: grid; grid-template-columns: 1fr 300px; }
#venue-leaflet { width: 100%; height: 520px; background: #0d0d0d; }
.venuemap__detail {
  padding: 22px 24px;
  border-left: 1px solid var(--gray-300);
  background: var(--gray-100);
}
.venuemap__detail-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.venuemap__detail-empty { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.venuemap__detail-name { font-family: var(--font-display); font-size: 18px; color: #fff; margin-bottom: 8px; }
.venuemap__detail-cat {
  display: inline-block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.venuemap__detail-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }

/* Leaflet popup dark theme */
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: #1a1a1a; color: #fff; }
.leaflet-popup-content { font-family: var(--font-body); font-size: 13px; }
.leaflet-container a.leaflet-popup-close-button { color: var(--gray-500); }
.leaflet-bar a { background: #1a1a1a; color: #fff; border-color: #3a3a3a; }
.leaflet-bar a:hover { background: #2a2a2a; }

@media (max-width: 820px) {
  .loc-info, .gate-grid { grid-template-columns: 1fr; }
  .venuemap__body { grid-template-columns: 1fr; }
  .venuemap__detail { border-left: none; border-top: 1px solid var(--gray-300); }
  #venue-leaflet { height: 380px; }
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 3rem;
}
.sitemap-link {
  display: block;
  padding: 1.25rem 1.5rem;
  background: var(--gray-100, #1a1a1a);
  border: 1px solid rgba(194, 159, 90, 0.18);
  border-left: 3px solid var(--gold, #C29F5A);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.sitemap-link:hover {
  background: #202020;
  border-color: var(--gold, #C29F5A);
  transform: translateY(-2px);
}
.sitemap-link__title {
  display: block;
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--gold, #C29F5A);
  margin-bottom: .4rem;
}
.sitemap-link__desc {
  display: block;
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   HERO PARALLAX (transform-based; JS adds .is-parallax)
   Taller + offset bg so vertical translate never reveals edges.
   ============================================================ */
.hero-mega__bg.is-parallax,
.hero__bg.is-parallax {
  top: -10%;
  height: 130%;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-mega__bg.is-parallax,
  .hero__bg.is-parallax {
    transform: none !important;
    top: 0;
    height: 100%;
  }
}

/* Disable parallax offset on touch/small screens to avoid jank */
@media (max-width: 768px) {
  .hero-mega__bg.is-parallax,
  .hero__bg.is-parallax {
    top: 0;
    height: 100%;
  }
}

/* ============================================================
   RESULTS FILTER (results.html event-type dropdown)
   ============================================================ */
.results-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}
.results-filter__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}
.results-filter__select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  background: #111;
  border: 1px solid #333;
  border-radius: 2px;
  padding: 10px 38px 10px 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C29F5A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color var(--transition-base);
}
.results-filter__select:hover,
.results-filter__select:focus {
  border-color: var(--gold);
  outline: none;
}
.results-filter__count {
  font-family: var(--font-body);
  font-size: 13px;
  color: #999;
  margin-left: auto;
}
.results-empty {
  font-family: var(--font-body);
  font-size: 15px;
  color: #999;
  text-align: center;
  padding: 40px 0;
}
@media (max-width: 600px) {
  .results-filter__count { margin-left: 0; width: 100%; }
}

/* Results CTA block on events.html */
.results-cta { text-align: center; margin-top: 28px; }
.results-cta__note {
  font-family: var(--font-body);
  font-size: 13px;
  color: #999;
  margin-top: 16px;
}

/* ============================================
   NAV LAYOUT — logo removed, Home tab added (June 12 2026)
   Center the primary links; pin the Contact CTA to the right.
   ============================================ */
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav__links {
  grid-column: 2;
  justify-self: center;
}
.nav__ctas {
  grid-column: 3;
  justify-self: end;
}
.nav__hamburger {
  grid-column: 3;
  justify-self: end;
}
