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

:root {
  --black:      #070504;
  --dark:       #100e08;
  --dark-2:     #1a1610;
  --gold:       #c8922a;
  --gold-light: #e8b84b;
  --cream:      #d4c4a0;
  --text:       #8a7a5a;
  --white:      #f0ead8;
  --font-display: 'Cinzel', serif;
  --font-body:    'Crimson Text', serif;
  --font-ui:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.75rem 2.5rem;
  transition: background 0.4s, padding 0.3s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(7, 5, 4, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.1rem 2.5rem;
  border-bottom-color: rgba(200, 146, 42, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 2px;
  opacity: 1 !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('assets/hero.png') center 30% / cover no-repeat,
    radial-gradient(ellipse at 35% 55%, #2e1c08 0%, #0d0804 55%, #050302 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,3,2,0.25) 0%, rgba(5,3,2,0.55) 55%, rgba(7,5,4,1) 100%),
    linear-gradient(to right, rgba(5,3,2,0.65) 0%, rgba(5,3,2,0.1) 65%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0.85;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 11rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow:
    0 0 120px rgba(200, 146, 42, 0.18),
    0 4px 50px rgba(0, 0, 0, 0.9);
  margin-bottom: 1.75rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--cream);
  opacity: 0.65;
  margin-bottom: 3.25rem;
  letter-spacing: 0.04em;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  opacity: 0.45;
  animation: bob 2.4s ease-in-out infinite;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240, 234, 216, 0.28);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(200, 146, 42, 0.35);
}
.btn-outline:hover { background: rgba(200,146,42,0.08); border-color: var(--gold); }

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  opacity: 0.75;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 3rem;
}

/* ===== JOIN / EMAIL ===== */
#join {
  background: var(--dark);
  border-top: 1px solid rgba(200, 146, 42, 0.12);
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

#join::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(200,146,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.join-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.join-text p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.75;
}

/* Mailchimp overrides */
#mc_embed_signup { background: transparent !important; width: 100% !important; }
#mc_embed_signup h2 { display: none; }
#mc_embed_signup .indicates-required { display: none; }
#mc_embed_signup .mc-field-group { margin-bottom: 0.65rem; width: 100% !important; }
#mc_embed_signup label { display: none; }

#mce-EMAIL {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 146, 42, 0.28);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
#mce-EMAIL:focus { border-color: var(--gold); background: rgba(200,146,42,0.04); }
#mce-EMAIL::placeholder { color: rgba(212, 196, 160, 0.35); }

#mc-embedded-subscribe {
  width: 100%;
  margin-top: 0.65rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
#mc-embedded-subscribe:hover { background: var(--gold-light); }

#mce-error-response, #mce-success-response {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
}

/* ===== FEATURED VIDEO ===== */
#featured {
  padding: 8rem 0;
  background: var(--black);
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(200, 146, 42, 0.15);
  box-shadow:
    0 25px 100px rgba(0,0,0,0.85),
    0 0 80px rgba(200, 146, 42, 0.04);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.video-cta { text-align: center; margin-top: 2.5rem; }

/* ===== MUSIC ===== */
#music {
  padding: 7rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(200, 146, 42, 0.1);
  border-bottom: 1px solid rgba(200, 146, 42, 0.1);
}

.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.music-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(200, 146, 42, 0.14);
  border-radius: 3px;
  padding: 2.75rem;
  transition: border-color 0.3s, background 0.3s;
}

.music-card:hover {
  border-color: rgba(200, 146, 42, 0.38);
  background: rgba(200, 146, 42, 0.035);
}

.music-card-icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
  opacity: 0.65;
}

.music-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.music-card p {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

/* ===== ABOUT ===== */
#about {
  padding: 9rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,146,42,0.055) 0%, transparent 65%);
  pointer-events: none;
}

.about-inner { max-width: 680px; position: relative; }

.about-text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--cream);
  opacity: 0.82;
  margin-bottom: 2.75rem;
  line-height: 1.85;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--dark);
  border-top: 1px solid rgba(200, 146, 42, 0.14);
  padding: 3.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.footer-links { display: flex; gap: 2.5rem; }

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  color: var(--text);
  font-size: 0.7rem;
  font-family: var(--font-ui);
  opacity: 0.45;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .join-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .music-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  #featured, #about { padding: 5rem 0; }
  #join { padding: 5rem 0; }
  .music-card { padding: 2rem; }
}
