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

:root {
  --bg: #1A1A1A;
  --bg-card: #222222;
  --bg-card-hover: #272727;
  --gold: #C8860A;
  --gold-btn: #C8860A;
  --gold-btn-hover: #a06a08;
  --text: #E8E4dc;
  --text-muted: #6A6560;
  --text-dim: #3d3b38;
  --border: #2a2a2a;
  --border-card: #2e2e2e;
  --green: #2ecc71;
  --font: 'General Sans', sans-serif;
}

html { scroll-behavior: smooth; }

/* Accessible focus indicator — keyboard users only */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
*:focus:not(:focus-visible) { outline: none; }

/* Respect reduced-motion preference (applies site-wide) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* Nav scroll state */
nav.scrolled {
  background: rgba(16, 16, 14, 0.97);
  border-bottom-color: rgba(46,46,46,0.8);
  box-shadow: 0 1px 24px rgba(0,0,0,0.4);
}

/* Gold nav link hover underline */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.nav-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  white-space: nowrap;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 58px;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.nav-logo svg { width: 28px; height: 28px; }
.nav-logo img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover, .nav-links a.active { opacity: 1; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTONS */
.btn-ghost {
  padding: 7px 18px;
  border: 1px solid var(--text);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-ghost:hover { background: rgba(255,255,255,0.06); }

.btn-gold {
  padding: 8px 18px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  color: #1a1500;
  background: var(--gold-btn);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-gold:hover { background: var(--gold-btn-hover); }

.btn-primary-lg {
  display: inline-block;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  color: #1a1500;
  background: var(--gold-btn);
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.btn-primary-lg:hover { background: var(--gold-btn-hover); }

.btn-outline-lg {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(232,228,220,0.3);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.btn-outline-lg:hover {
  border-color: rgba(232,228,220,0.5);
  background: rgba(255,255,255,0.04);
}

.btn-outline-sm {
  padding: 9px 20px;
  border: 1px solid rgba(232,228,220,0.25);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-outline-sm:hover {
  border-color: rgba(232,228,220,0.4);
  background: rgba(255,255,255,0.04);
}

/* LAYOUT */
section { padding: 100px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ARTIST CARDS */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.artist-card:not(.tba):hover {
  border-color: rgba(200,134,10,0.55);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.artist-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.artist-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 2px solid #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.artist-avatar.gold-ring { border-color: var(--gold); }

.artist-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.artist-origin {
  font-size: 13px;
  color: var(--text-muted);
}

.artist-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.genre-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200,134,10,0.15);
  color: var(--gold);
  border: 1px solid rgba(200,134,10,0.25);
}

.cities-count {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.cities-count span { color: var(--text); font-weight: 600; }

/* CITY CARDS */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.city-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

.city-card:hover { border-color: #3a3a3a; }

.city-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.city-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}

.city-artist { font-size: 13px; color: var(--text-muted); }

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot { width: 7px; height: 7px; border-radius: 50%; }
.status-pledging .status-dot { background: var(--gold); }
.status-pledging { color: var(--gold); }
.status-booking .status-dot { background: var(--green); }
.status-booking { color: var(--green); }

.city-progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.city-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.city-numbers { font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; }
.city-numbers .current { color: var(--text); font-weight: 600; }
.city-numbers.booking-numbers .current { color: var(--green); }

.progress-bar {
  height: 3px;
  background: #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--gold);
}

.progress-fill.booking { background: var(--green); }
.progress-note { font-size: 12px; color: var(--text-muted); }
.progress-note.booking { color: var(--green); }

/* STATUS: BUILDING */
.status-building .status-dot { background: var(--gold); opacity: 0.6; }
.status-building { color: var(--gold); opacity: 0.8; }

/* HERO IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.62) 0%, rgba(26,26,26,0.85) 60%, #1A1A1A 100%);
}
#hero { position: relative; overflow: hidden; }
#hero .container { position: relative; z-index: 1; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

/* BOLD FOOTER (rsquare-style) */
.footer-bold {
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-bold-main {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-bold-email {
  display: block;
  font-size: clamp(28px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.0;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.footer-bold-email:hover { color: var(--gold); }

.footer-bold-socials {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-bold-social {
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-bold-social:hover { color: var(--text); }

.footer-bold-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 14px; }

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
}

.footer-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.footer-ticker {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner { display: inline-flex; animation: ticker 18s linear infinite; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-sep { margin: 0 18px; opacity: 0.4; }

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero-eyebrow { margin-bottom: 1rem; }

.page-heading {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 1.2rem;
}

.page-subheading {
  font-size: 17px;
  color: rgba(232,228,220,0.55);
  max-width: 520px;
  line-height: 1.7;
}

/* FILTER TABS */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-tab {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  background: transparent;
  font-family: var(--font);
  transition: all 0.2s;
}

.filter-tab.active { background: var(--gold-btn); border-color: var(--gold-btn); color: #1a1500; }
.filter-tab:hover:not(.active) { border-color: var(--text-muted); color: var(--text); }

/* FORM ELEMENTS */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-dim); }

/* ARTIST FILTER (hide/show) */
.artist-card[data-hidden="true"] { display: none; }

/* LEGAL PAGES */
.legal-content {
  max-width: 720px;
  padding: 120px 0 80px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 2.5rem 0 0.8rem;
  color: var(--text);
}

.legal-content p {
  font-size: 15px;
  color: rgba(232,228,220,0.6);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 15px;
  color: rgba(232,228,220,0.6);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.06); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 58px;
  left: 0; right: 0;
  background: rgba(22, 22, 20, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 24px 1.25rem 32px;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  opacity: 0.7;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { opacity: 1; }
.mobile-menu .mobile-menu-cta {
  margin-top: 24px;
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--gold-btn);
  color: #1a1500;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  opacity: 1;
  border-bottom: none;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {

  /* Nav — hide links, show hamburger */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions .btn-gold { display: none; }
  nav { padding: 0 1.25rem; }

  /* Container padding */
  .container { padding: 0 1.25rem; }

  /* Sections */
  section { padding: 60px 0; }

  /* Page heroes */
  .page-hero { padding: 100px 0 56px; }
  .page-heading { font-size: clamp(32px, 8vw, 52px); }
  .page-subheading { font-size: 15px; }

  /* Section titles */
  .section-title { font-size: clamp(26px, 7vw, 36px); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Artist grid — single column */
  .artist-grid { grid-template-columns: 1fr; }

  /* Cities grid — single column */
  .cities-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bold-socials { gap: 20px; }
  .footer-bold-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Buttons stacked */
  .btn-primary-lg, .btn-outline-lg {
    width: 100%;
    text-align: center;
  }
}
