/* ===== CSS Variables — He & I Brand Colors ===== */
:root {
  --maroon: #8A0808;
  --maroon-dark: #6B0606;
  --red: #DD1D1D;
  --red-dark: #B81818;
  --purple: #7D4897;
  --purple-dark: #5E3672;
  --gold: #D4A843;
  --gold-light: #E8C86A;
  --cream: #FFF8F0;
  --dark: #1A0A0A;
  --dark-surface: #2A1215;
  --text-light: #FFFFFF;
  --text-muted: rgba(255,255,255,0.7);
  --text-dark: #333;
  --max-width: 1100px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  background: var(--dark);
}

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

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

ul {
  list-style: none;
}

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

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--maroon));
  color: var(--text-light);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-dark), var(--maroon-dark));
}

.btn-secondary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--text-light);
}

/* ===== Header ===== */
.site-header {
  background: linear-gradient(180deg, rgba(26,10,10,0.95), rgba(26,10,10,0.85));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,168,67,0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 300px;
}

.logo-banner {
  position: relative;
  background: url('/images/slides/slide1.png') center center / cover no-repeat;
  border-radius: 6px;
  padding: 0.4rem 1.2rem;
  overflow: hidden;
  gap: 0.6rem;
}

.logo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,10,10,0.55);
  border-radius: 6px;
}

.logo-banner-text-main {
  position: relative;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
  font-weight: bold;
  font-style: italic;
  color: #E8C86A;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  line-height: 1;
}

.logo-banner-sep {
  position: relative;
  width: 1px;
  align-self: stretch;
  margin: 0.2rem 0;
  background: linear-gradient(180deg, transparent, #D4A843, transparent);
}

.logo-banner-text-sub {
  position: relative;
  font-family: 'Trebuchet MS', 'Helvetica Neue', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #E8C86A;
  letter-spacing: 2.5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  line-height: 1;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}

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

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

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all 0.3s;
}

/* ===== Hero Slideshow ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,10,10,0.6) 0%, rgba(138,8,8,0.4) 50%, rgba(26,10,10,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 3px 15px rgba(0,0,0,0.5);
  color: var(--gold-light);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  color: var(--text-light);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  background: var(--gold);
}

/* ===== About Section ===== */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--dark), var(--dark-surface));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-intro {
  font-size: 1.15rem !important;
  color: var(--text-light) !important;
  font-style: italic;
}

.about-photo img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  border: 2px solid rgba(212,168,67,0.3);
}

.members-list {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.member {
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  text-align: center;
}

.member-name {
  display: block;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
}

.member-role {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Album Section ===== */
.album-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--maroon-dark), var(--purple-dark));
}

.album-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.album-cover img {
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.album-cover img:hover {
  transform: scale(1.03);
}

.album-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.album-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.album-subtitle {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.album-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.album-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.album-payment-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== Music Section ===== */
.music-section {
  padding: 5rem 0;
  background: var(--dark);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.music-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.music-card-img {
  position: relative;
  overflow: hidden;
}

.music-card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.music-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138,8,8,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.music-card:hover .music-play-overlay {
  opacity: 1;
}

.music-card--playing .music-play-overlay {
  opacity: 1;
  background: rgba(212,168,67,0.5);
}

.music-card--playable {
  cursor: pointer;
}

.music-card-audio {
  display: none;
}

.music-card-info {
  padding: 1rem 1.25rem;
}

.music-card-info h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.music-type {
  font-size: 0.85rem;
  color: var(--gold);
}

/* ===== Shop Section ===== */
.shop-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--dark-surface), var(--dark));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-card.sold-out {
  opacity: 0.65;
}

.product-img {
  position: relative;
  background: rgba(255,255,255,0.03);
}

.product-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.sold-out-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.7);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.product-info {
  padding: 1rem;
}

.product-info h3 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
}

/* ===== Social Section ===== */
.social-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--purple-dark), var(--maroon));
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.social-link:hover {
  transform: translateY(-4px);
}

.social-link img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s;
}

.social-link:hover img {
  border-color: var(--gold);
}

.social-link span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 5rem 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-grid--single {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

.form-group textarea {
  resize: vertical;
}

.contact-newsletter {
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-newsletter h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-newsletter p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===== Footer ===== */
.site-footer {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--dark), #0D0505);
  border-top: 1px solid rgba(212,168,67,0.15);
  text-align: center;
}

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

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
}

.footer-tagline {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin: 0.5rem 0;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ===== Page Hero (subpages) ===== */
.page-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: 65px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,10,10,0.7) 0%, rgba(138,8,8,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  color: var(--gold-light);
  text-shadow: 0 3px 15px rgba(0,0,0,0.5);
}

/* ===== Page Sections ===== */
.page-section {
  padding: 4rem 0;
  background: var(--dark);
}

.page-section--alt {
  background: var(--dark-surface);
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
}

/* ===== Who We Are ===== */
.whowe-intro {
  max-width: 800px;
  margin: 0 auto;
}

.whowe-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.whowe-photo img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  border: 2px solid rgba(212,168,67,0.2);
}

.whowe-story p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.member-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.member-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.member-card-role {
  display: block;
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.member-card-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Album Page Hero ===== */
.album-hero {
  padding: 5rem 0 4rem;
  margin-top: 65px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--maroon-dark) 50%, var(--purple-dark) 100%);
}

.album-hero-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: center;
}

.album-hero-cover img {
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.album-hero-info h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.album-hero-subtitle {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.album-hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.album-hero-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===== Track List ===== */
.tracklist-section {
  padding: 5rem 0;
  background: var(--dark);
}

.tracklist {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 1rem;
}

.track-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s;
}

.track-card:hover {
  border-color: rgba(212,168,67,0.25);
}

.track-card--reverse {
  direction: rtl;
}

.track-card--reverse > * {
  direction: ltr;
}

.track-img {
  position: relative;
}

.track-img img {
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.track-number {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--maroon);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.track-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.track-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.track-desc p {
  margin-bottom: 0.75rem;
}

.track-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  color: var(--gold-light);
  font-style: italic;
  font-size: 1.05rem;
}

/* ===== Album CTA ===== */
.album-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--maroon-dark), var(--purple-dark));
}

/* ===== Journey Photo Page ===== */
.journey-hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  margin-top: 65px;
}

.journey-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.journey-slide.active {
  opacity: 1;
}

.journey-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,10,10,0.5) 0%, rgba(138,8,8,0.3) 50%, rgba(26,10,10,0.7) 100%);
  z-index: 1;
}

.journey-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.journey-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  color: var(--gold-light);
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
}

.journey-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.journey-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.journey-dot.active {
  background: var(--gold);
}

.journey-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.journey-gallery-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.journey-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  border-color: rgba(212,168,67,0.4);
}

.journey-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 201;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-light);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(212,168,67,0.3);
  border-color: var(--gold);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 201;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .journey-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-hero-content h1 {
    font-size: 2.2rem;
  }

  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26,10,10,0.98);
    border-bottom: 1px solid rgba(212,168,67,0.2);
    padding: 1rem 1.5rem;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .about-grid,
  .album-grid,
  .contact-grid,
  .whowe-story-grid,
  .album-hero-grid {
    grid-template-columns: 1fr;
  }

  .members-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2rem auto 0;
  }

  .track-card,
  .track-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .track-img {
    max-width: 200px;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }

  .album-hero-info h1 {
    font-size: 2rem;
  }

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

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

  .social-link img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .journey-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

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

  .newsletter-form {
    flex-direction: column;
  }

  .members-list {
    flex-direction: column;
  }
}
