/* =============================================================
   JJ AND THE MYSTICS — Website Styles
   Palette: cosmic dark, teal (#1a9b8a), gold (#c8952a), deep purple
   ============================================================= */

:root {
  --bg:         #09080d;
  --bg-warm:    #0d0b11;
  --bg-card:    #131019;
  --bg-card2:   #18141f;
  --gold:       #c8952a;
  --gold-light: #e8b84b;
  --teal:       #1a9b8a;
  --teal-light: #26c4af;
  --purple:     #6b3fa0;
  --text:       #e8e0cf;
  --text-muted: #7a6d55;
  --border:     rgba(26, 155, 138, 0.2);
  --border-gold:rgba(200, 149, 42, 0.2);
  --radius:     10px;
  --transition: 0.3s ease;
  --max-w:      1140px;
  --font-head:  'Cinzel', serif;
  --font-body:  'Raleway', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-light); }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.muted { color: var(--text-muted); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #0f7060);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,155,138,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,155,138,0.35);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a87420);
  color: #09080d;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #09080d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,149,42,0.4);
}
.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-sm:hover { background: var(--teal); color: #fff; }

/* ---- Section Shared ---- */
.section { padding: 5.5rem 0; }
.section-dark { background: var(--bg-warm); }
.section-featured { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.7rem;
  letter-spacing: 0.05em;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   NAVIGATION
   ============================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(9, 8, 13, 0.96);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo img {
  height: 180px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(200,149,42,0.5));
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(232,224,207,0.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--teal-light); }

.nav-social {
  display: flex;
  gap: 0.9rem;
  margin-left: 1rem;
}
.nav-social a {
  color: var(--text-muted);
  width: 17px;
  height: 17px;
  transition: color var(--transition);
}
.nav-social a:hover { color: var(--teal); }
.nav-social svg { width: 100%; height: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

/* =============================================================
   HERO
   ============================================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-mandala {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-mandala.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.28;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(9,8,13,0.5) 0%,
    rgba(9,8,13,0.55) 40%,
    rgba(9,8,13,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 740px;
  animation: heroFade 1.1s ease 0.2s both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo {
  width: 200px;
  margin: 0 auto 1.2rem;
  filter: drop-shadow(0 0 30px rgba(200,149,42,0.5));
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.hero-genres {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,224,207,0.45);
  margin-bottom: 2.5rem;
}
.hero-spotify {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  width: 360px;
  z-index: 3;
}

.hero-album {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  background: rgba(9,8,13,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,149,42,0.25);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
}
.hero-album-cover {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.hero-album-info { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-album-badge {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-album-title {
  font-family: var(--font-head);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.hero-album-sub {
  font-size: 0.78rem;
  color: var(--gold-light);
  margin: 0;
}
.hero-album-singles {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0.1rem 0 0.5rem;
}
.hero-album-btn { font-size: 0.8rem; padding: 0.5rem 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(232,224,207,0.4);
  width: 28px;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 100%; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================================
   FEATURED — MYSTIC ROOTS ALBUM
   ============================================================= */
.featured-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
}
.featured-art img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(26,155,138,0.2), 0 20px 60px rgba(0,0,0,0.6);
}
.featured-text .section-label { margin-bottom: 0.5rem; }
.featured-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.featured-text p {
  color: rgba(232,224,207,0.8);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.featured-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* =============================================================
   MUSIC — SONG CARDS
   ============================================================= */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.song-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.song-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(26,155,138,0.35);
  border-color: rgba(26,155,138,0.4);
}

.song-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.song-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.song-card:hover .song-art img { transform: scale(1.06); }

.song-art-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,8,13,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.song-card:hover .song-art-overlay { opacity: 1; }

.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.85);
  transition: transform var(--transition), box-shadow var(--transition);
}
.play-btn:hover {
  transform: scale(1);
  box-shadow: 0 0 25px rgba(26,155,138,0.7);
}
.play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }

.song-info { padding: 1.1rem 1.2rem; }
.song-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.3rem;
  background: rgba(26,155,138,0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}
.song-info h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}
.song-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.all-music-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* =============================================================
   ABOUT
   ============================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: saturate(0.85);
  transition: filter var(--transition);
}
.about-photo img:hover { filter: saturate(1); }

.about-text .section-label { margin-bottom: 0.5rem; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
}
.about-text p {
  color: rgba(232,224,207,0.8);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
  line-height: 1.85;
}
blockquote {
  border-left: 3px solid var(--teal);
  padding: 1rem 1.5rem;
  margin: 1.75rem 0;
  background: rgba(26,155,138,0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}
blockquote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* =============================================================
   PHOTO STRIP
   ============================================================= */
.photo-carousel-section {
  position: relative;
  background: var(--bg);
  padding: 0;
  overflow: hidden;
}
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex-shrink: 0;
  height: 320px;
  width: auto;
  overflow: hidden;
}
.carousel-slide img {
  height: 100%;
  width: auto;
  max-width: 85vw;
  display: block;
  filter: saturate(0.7) brightness(0.8);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.carousel-slide:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.03);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(9,8,13,0.6);
  border: 1px solid rgba(200,149,42,0.4);
  color: var(--gold-light);
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: rgba(200,149,42,0.2); border-color: var(--gold); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

/* =============================================================
   SHOWS
   ============================================================= */
.shows-table { max-width: 780px; margin: 0 auto; }
.show-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.show-row:first-child { border-top: 1px solid var(--border); }
.show-row:hover { background: var(--bg-card); }

.placeholder-notice { grid-template-columns: 1fr; text-align: center; padding: 3rem 1.5rem; }
.placeholder-text { color: var(--text-muted); font-style: italic; }

.show-date { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.show-month { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.show-day { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--text); }
.show-details { display: flex; flex-direction: column; gap: 0.2rem; }
.show-venue { font-weight: 600; color: var(--text); }
.show-location { font-size: 0.85rem; color: var(--text-muted); }
.show-time { font-size: 0.9rem; color: var(--text-muted); white-space: nowrap; }

/* =============================================================
   WATCH
   ============================================================= */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px dashed rgba(26,155,138,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder-inner { text-align: center; padding: 1.5rem; }
.yt-icon { width: 44px; height: 44px; fill: rgba(26,155,138,0.4); margin: 0 auto 0.75rem; }
.video-placeholder-inner p { font-size: 0.88rem; color: var(--text-muted); }
.video-embed { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.video-embed iframe { width: 100%; height: 100%; border: none; }
.youtube-link { text-align: center; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.contact-card:hover { border-color: rgba(26,155,138,0.5); transform: translateY(-3px); }
.contact-icon { width: 48px; height: 48px; margin: 0 auto 1.25rem; color: var(--teal); }
.contact-icon svg { width: 100%; height: 100%; }
.contact-card h3 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.contact-link { font-size: 0.9rem; color: var(--teal); word-break: break-all; }
.contact-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.social-links { display: flex; flex-direction: column; gap: 0.5rem; }
.social-links a { font-size: 0.9rem; color: var(--teal); font-weight: 500; }
.social-links a:hover { color: var(--teal-light); }

.mailing-list {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.mailing-list h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.mailing-list p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.signup-form { display: flex; gap: 0.75rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.signup-form input[type="email"] {
  flex: 1; min-width: 200px;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.signup-form input[type="email"]::placeholder { color: var(--text-muted); }
.signup-form input[type="email"]:focus { border-color: var(--teal); }

/* =============================================================
   NAV SHOP LINK
   ============================================================= */
.nav-shop {
  color: var(--gold) !important;
  border: 1.5px solid rgba(200,149,42,0.5);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  transition: all var(--transition) !important;
}
.nav-shop:hover {
  background: var(--gold) !important;
  color: #09080d !important;
  border-color: var(--gold);
}
.nav-inner-circle {
  color: var(--teal) !important;
  border: 1.5px solid rgba(26,155,138,0.5);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  transition: all var(--transition) !important;
}
.nav-inner-circle:hover {
  background: var(--teal) !important;
  color: #09080d !important;
  border-color: var(--teal);
}

/* =============================================================
   SHOP SECTION
   ============================================================= */
.section-shop {
  background: linear-gradient(135deg, #0f0a06 0%, #160f04 50%, #0a0a0d 100%);
  border-top: 1px solid rgba(200,149,42,0.18);
  border-bottom: 1px solid rgba(200,149,42,0.18);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.section-shop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 0% 50%, rgba(200,149,42,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.shop-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.shop-text .section-label { margin-bottom: 0.4rem; }
.shop-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.shop-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 420px;
  line-height: 1.6;
}
.shop-btn { white-space: nowrap; flex-shrink: 0; font-size: 1rem; padding: 0.9rem 2rem; }

@media (max-width: 640px) {
  .shop-inner { flex-direction: column; text-align: center; }
  .shop-text p { max-width: 100%; }
  .shop-btn { width: 100%; text-align: center; }
}

/* =============================================================
   ALBUM ANNOUNCEMENT
   ============================================================= */
.section-announcement {
  background: linear-gradient(135deg, #0d0a18 0%, #12091a 50%, #0a0d14 100%);
  border-top: 1px solid rgba(200,149,42,0.25);
  border-bottom: 1px solid rgba(200,149,42,0.25);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.section-announcement::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,149,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.announcement-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.announcement-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  border: 1px solid var(--teal);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.announcement-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.2rem;
  text-shadow: 0 0 40px rgba(200,149,42,0.3);
}

.announcement-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.announcement-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(200,149,42,0.08);
  border: 1px solid rgba(200,149,42,0.3);
  border-radius: 12px;
  padding: 1rem 2.5rem;
  margin-bottom: 1.5rem;
  gap: 0.2rem;
}
.date-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.date-value {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.announcement-singles {
  font-size: 0.95rem;
  color: rgba(232,224,207,0.6);
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

/* =============================================================
   OPT-IN FORM (upgraded)
   ============================================================= */
.optin-top { margin-bottom: 1.75rem; }

.optin-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  background: rgba(200,149,42,0.12);
  border: 1px solid rgba(200,149,42,0.3);
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}

.optin-lead {
  font-size: 1.05rem !important;
  color: rgba(232,224,207,0.75) !important;
  margin-bottom: 0 !important;
}

.optin-perks {
  list-style: none;
  text-align: left;
  margin: 0 auto 1.75rem;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.optin-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(232,224,207,0.8);
  line-height: 1.45;
}
.optin-perks li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--teal);
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 360px;
  margin: 0 auto;
}
.signup-form input {
  padding: 0.8rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
}
.signup-form input::placeholder { color: var(--text-muted); }
.signup-form input:focus { border-color: var(--gold); }
.signup-form .btn { width: 100%; justify-content: center; }

.optin-fine {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
  letter-spacing: 0.04em;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #050408;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.footer-logo { height: 65px; width: auto; filter: drop-shadow(0 0 10px rgba(200,149,42,0.35)); }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-location { font-size: 0.75rem; color: rgba(122,109,85,0.5); letter-spacing: 0.08em; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 960px) {
  .featured-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-art img { max-width: 380px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo img { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 3rem; }
  .carousel-slide { height: 240px; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(9,8,13,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-social { display: none; }
  .hero-logo { width: 140px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .music-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .song-info p { display: none; }
  .all-music-cta { flex-direction: column; align-items: center; }
  .featured-btns { flex-direction: column; }
  .carousel-slide { height: 200px; }
  .signup-form { flex-direction: column; }
  .signup-form input, .signup-form .btn { width: 100%; }
}

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