/* =========================================
   THE TONALISTS — Main Stylesheet
   ========================================= */

:root {
  --color-bg:        #0d0d0d;
  --color-bg-alt:    #141414;
  --color-bg-card:   #1a1a1a;
  --color-border:    #2a2a2a;
  --color-gold:      #c9a84c;
  --color-gold-lt:   #e6c76c;
  --color-white:     #f0ede8;
  --color-muted:     #888;
  --color-text:      #ccc;
  --font-heading:    'Playfair Display', serif;
  --font-body:       'Inter', sans-serif;
  --max-width:       1200px;
  --section-pad:     80px 0;
  --transition:      0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: var(--section-pad); }

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header .subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 20px auto 0;
  border: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-gold);
  color: #0d0d0d;
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-lt);
  border-color: var(--color-gold-lt);
  color: #0d0d0d;
}
.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-outline:hover {
  background: var(--color-gold);
  color: #0d0d0d;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 24px;
}
#site-header.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.site-logo span { color: var(--color-gold); }

#primary-nav {
  display: flex;
  align-items: center;
}
#primary-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
#primary-nav a {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
#primary-nav a:hover,
#primary-nav .current-menu-item > a { color: var(--color-gold); }

.nav-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 24px;
}
.nav-social a {
  color: var(--color-muted);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.nav-social a svg { display: block; }
.nav-social a:hover { color: var(--color-gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: all var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,13,0.3) 0%,
    rgba(13,13,13,0.55) 50%,
    rgba(13,13,13,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 800px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(240,237,232,0.8);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 0 32px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--color-gold); }
.hero-scroll svg { display: block; animation: scrollBounce 1.5s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(6px);opacity:0.5} }

/* =========================================
   ABOUT
   ========================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.about-intro .about-image {
  position: relative;
}
.about-intro .about-image img {
  border-radius: 2px;
  width: 100%;
}
.about-intro .about-image::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--color-gold);
  border-radius: 2px;
  z-index: -1;
}
.about-text { }
.about-text .label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--color-text); margin-bottom: 18px; }

/* Band Members */
.band-members-section { background: var(--color-bg-alt); }
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.member-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.member-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
}
.member-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.member-card:hover .member-photo img { transform: scale(1.05); }
.member-photo .member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(13,13,13,0.9) 100%);
}
.member-info {
  padding: 24px;
}
.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.member-role {
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.member-info p { font-size: 0.92rem; color: var(--color-muted); margin: 0; }

/* =========================================
   GIGS / EVENTS
   ========================================= */
.gigs-section { }
.gigs-list { display: flex; flex-direction: column; gap: 0; }
.gig-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.gig-item:hover { background: var(--color-bg-alt); }
.gig-date {
  text-align: center;
}
.gig-date .day {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.gig-date .month {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.gig-date .year {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
}
.gig-details h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--color-white);
}
.gig-venue {
  color: var(--color-muted);
  font-size: 0.9rem;
}
.gig-venue .city { color: var(--color-text); }
.gig-tags { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.gig-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  color: var(--color-muted);
}
.gig-action { }
.no-gigs {
  text-align: center;
  padding: 60px 24px;
  color: var(--color-muted);
}
.no-gigs p { font-size: 1.1rem; }

/* =========================================
   GALLERY
   ========================================= */
.gallery-section { }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.55);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay svg { color: var(--color-white); width: 40px; height: 40px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 2px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--color-gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 2px;
  transition: all var(--transition);
  line-height: 1;
}
.lightbox-nav:hover { background: var(--color-gold); color: #000; border-color: var(--color-gold); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* =========================================
   MUSIC
   ========================================= */
.music-section { background: var(--color-bg-alt); }
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.music-embed-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
.music-embed-card h3 {
  padding: 20px 20px 12px;
  font-size: 1rem;
  color: var(--color-white);
}
.music-embed-card .embed-wrap {
  padding: 0 20px 20px;
}
.music-embed-card iframe {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.music-streaming-links {
  margin-top: 60px;
  text-align: center;
}
.music-streaming-links h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.streaming-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.streaming-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  color: var(--color-text);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.streaming-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* =========================================
   VIDEO
   ========================================= */
.video-section { }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.video-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.video-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-info {
  padding: 18px 20px;
}
.video-info h3 { font-size: 1rem; margin-bottom: 6px; }
.video-info p { font-size: 0.85rem; color: var(--color-muted); margin: 0; }

/* =========================================
   NEWS / BLOG
   ========================================= */
.news-section { background: var(--color-bg-alt); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.news-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.news-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}
.news-card .thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .thumb img { transform: scale(1.05); }
.news-card .thumb.no-image {
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-border);
}
.news-body { padding: 24px; }
.news-meta {
  font-size: 0.78rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.news-meta .cat { color: var(--color-gold); }
.news-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-body h3 a { color: var(--color-white); }
.news-body h3 a:hover { color: var(--color-gold); }
.news-body .excerpt { font-size: 0.9rem; color: var(--color-muted); margin-bottom: 16px; }
.read-more {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.read-more::after { content: ' →'; }

/* =========================================
   CONTACT
   ========================================= */
.contact-section { }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--color-muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 1rem;
}
.contact-detail .text strong {
  display: block;
  color: var(--color-white);
  margin-bottom: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.contact-detail .text span,
.contact-detail .text a { color: var(--color-muted); font-size: 0.9rem; }
.social-follow { margin-top: 40px; }
.social-follow h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 500;
}
.social-links-large {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-link-btn svg { display: block; flex-shrink: 0; }
.social-link-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Contact Form */
.contact-form-wrap { }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 13px 16px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--color-gold); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-notice {
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 0.9rem;
  display: none;
}
.form-notice.success {
  background: rgba(50,200,100,0.12);
  border: 1px solid rgba(50,200,100,0.3);
  color: #5de890;
  display: block;
}
.form-notice.error {
  background: rgba(200,50,50,0.12);
  border: 1px solid rgba(200,50,50,0.3);
  color: #f07070;
  display: block;
}

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
  background: #080808;
  border-top: 1px solid var(--color-border);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}
.footer-brand .logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 16px;
  display: block;
}
.footer-brand .logo span { color: var(--color-gold); }
.footer-brand p { color: var(--color-muted); font-size: 0.9rem; }
.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--color-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--color-gold); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: all var(--transition);
}
.footer-social a svg { display: block; }
.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--color-muted);
  font-size: 0.82rem;
  margin: 0;
}
.footer-bottom a { color: var(--color-muted); }
.footer-bottom a:hover { color: var(--color-gold); }

/* =========================================
   SINGLE POST
   ========================================= */
.post-header {
  padding: 120px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-alt), var(--color-bg));
  border-bottom: 1px solid var(--color-border);
}
.post-header .post-meta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 20px;
}
.post-header .post-meta a { color: var(--color-gold); }
.post-header h1 { max-width: 760px; margin: 0 auto 24px; }
.post-content {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 24px;
}
.post-content p,
.post-content li { font-size: 1.05rem; line-height: 1.8; color: var(--color-text); }
.post-content h2,
.post-content h3 { margin: 40px 0 16px; }
.post-content img { border-radius: 4px; margin: 32px 0; }
.post-content blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--color-bg-alt);
  font-style: italic;
  color: var(--color-muted);
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, transparent 100%),
              var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-title);
  position: absolute;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.page-hero .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
  display: block;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--color-muted); max-width: 480px; margin: 0 auto; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-intro { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }

  #primary-nav,
  .nav-social { display: none; }
  .nav-toggle { display: flex; flex-direction: column; }

  #primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--color-bg);
    z-index: 999;
    padding: 32px 24px;
  }
  #primary-nav.open ul {
    flex-direction: column;
    gap: 24px;
  }
  #primary-nav.open a { font-size: 1.3rem; }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-intro .about-image::before { display: none; }

  .gig-item {
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }
  .gig-action { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .video-grid, .news-grid, .music-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .members-grid { grid-template-columns: 1fr; }
}

/* =========================================
   UTILITIES
   ========================================= */
.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
