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

:root {
  --charcoal: #111111;
  --charcoal-mid: #1a1a1a;
  --charcoal-light: #222222;
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.3);
  --gold-glow: rgba(201, 168, 76, 0.15);
  --rust: #a0522d;
  --cream: #f0ebe3;
  --cream-dim: rgba(240, 235, 227, 0.65);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--charcoal);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--cream);
}

::selection {
  background: var(--gold);
  color: var(--charcoal);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.4);
  padding: 0.8rem 3rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--gold);
}

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

.nav-links a {
  color: var(--cream-dim);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
  color: var(--gold);
  text-shadow: 0 0 80px rgba(201, 168, 76, 0.25);
  margin-bottom: 1rem;
  animation: fadeInUp 1.4s ease-out;
}

.hero .subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 0.3em;
  color: var(--cream-dim);
  font-weight: 300;
  text-transform: uppercase;
  animation: fadeInUp 1.4s ease-out 0.3s both;
}

.hero .hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  letter-spacing: 0.25em;
  color: rgba(240, 235, 227, 0.35);
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 1.5rem;
  animation: fadeInUp 1.4s ease-out 0.6s both;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInUp 1.4s ease-out 1s both;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: pulse 2.5s infinite;
}

/* ===== FULL-BLEED IMAGES ===== */
.full-bleed-image {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.full-bleed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease;
}

.full-bleed-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.3) 0%,
    transparent 30%,
    transparent 70%,
    rgba(17, 17, 17, 0.5) 100%
  );
  pointer-events: none;
}

/* ===== SECTIONS ===== */
section {
  padding: 7rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-intro {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}

/* ===== ABOUT ===== */
.about-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin-top: 1rem;
}

.about-text p {
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.85;
}

.about-text .lead {
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.8;
}

.about-continued {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== QUOTE ===== */
.quote-section {
  padding: 6rem 2rem;
  background: var(--charcoal-mid);
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
  position: relative;
  padding: 0 2rem;
}

.quote-inner blockquote::before {
  content: '\201E';
  position: absolute;
  top: -0.5em;
  left: -0.5rem;
  font-size: 4rem;
  color: var(--gold-dim);
  font-style: normal;
  line-height: 1;
}

/* ===== GALLERY ===== */
#gallery {
  max-width: 1200px;
}

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

.gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(20%) brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.15);
  transition: background var(--transition);
  pointer-events: none;
}

.gallery-item:hover::after {
  background: transparent;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 2rem;
  padding: 1rem;
  transition: color var(--transition), opacity var(--transition);
  opacity: 0.6;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  color: var(--gold);
}

.lightbox-close {
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
}

.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

/* ===== MUSIC ===== */
.music-section {
  max-width: 1000px;
}

.music-players {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.youtube-feature {
  margin-bottom: 3rem;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal-light);
}

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

.spotify-embed {
  border-radius: 12px;
  overflow: hidden;
}

.albums-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.album-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(240, 235, 227, 0.06);
  color: var(--cream);
  transition: color var(--transition);
}

.album-item:hover {
  color: var(--gold);
}

.album-year {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  min-width: 40px;
  font-weight: 500;
}

.album-name {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.album-item--yt {
  margin-top: 0.5rem;
  border-bottom: none;
}

/* ===== LIVE ===== */
.shows-list {
  display: flex;
  flex-direction: column;
}

.show-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(240, 235, 227, 0.06);
  transition: background var(--transition);
}

.show-item:hover {
  background: rgba(201, 168, 76, 0.03);
}

.show-date {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 500;
}

.show-info h4 {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.show-info p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin-top: 0.2rem;
}

.show-status {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
  color: var(--gold);
  white-space: nowrap;
}

/* ===== CONTACT ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 1rem;
}

.contact-info p {
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.contact-info a {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
}

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

.contact-form input,
.contact-form textarea {
  background: var(--charcoal-light);
  border: 1px solid rgba(240, 235, 227, 0.08);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  transition: border-color var(--transition);
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(240, 235, 227, 0.3);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form button {
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 2.5rem;
  font-size: 0.78rem;
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background var(--transition), color var(--transition);
}

.contact-form button:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(240, 235, 227, 0.06);
  padding: 3rem 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: var(--cream-dim);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

footer .copyright {
  font-size: 0.7rem;
  color: rgba(240, 235, 227, 0.25);
  letter-spacing: 0.12em;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav.scrolled {
    padding: 0.7rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  section {
    padding: 5rem 1.5rem;
  }

  .full-bleed-image {
    height: 50vh;
    min-height: 280px;
  }

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

  .gallery-item--wide {
    grid-column: span 2;
  }

  .show-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .show-status {
    justify-self: start;
  }

  .music-players {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .quote-inner blockquote {
    padding: 0 0.5rem;
  }
}

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

  .gallery-item--wide {
    grid-column: span 1;
    aspect-ratio: 16 / 9;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }
}
