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

:root {
  --bg:        #0e0b08;
  --bg-alt:    #141009;
  --bg-card:   #1a1510;
  --amber:     #c9832a;
  --amber-lt:  #e8a84a;
  --cream:     #f0e6d0;
  --muted:     #8a7a65;
  --border:    rgba(201,131,42,0.18);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --max-w:     1160px;
  --nav-h:     64px;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

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

section {
  padding: 100px 0;
}

/* ── Typography helpers ───────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 40px;
  line-height: 1.15;
}

/* ── Button ───────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber-lt);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn:hover {
  background: var(--amber);
  color: var(--bg);
}

/* ── Placeholder images ───────────────────────────────────────── */
.placeholder-img {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}

/* ── Nav ──────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: background 0.4s, backdrop-filter 0.4s;
}

#nav.scrolled {
  background: rgba(14,11,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--amber-lt);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--amber-lt); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* warm gradient suggesting candlelit venue */
  background:
    radial-gradient(ellipse 80% 60% at 50% 70%, rgba(120,60,10,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(80,40,5,0.2) 0%, transparent 60%),
    var(--bg);
}
/* Noise texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  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.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-pre {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.9;
}

.hero-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-guitar {
  height: clamp(3.5rem, 10vw, 8rem);
  width: auto;
  filter: invert(1) brightness(0.9);
  mix-blend-mode: screen;
  opacity: 0.55;
  transform: rotate(10deg);
  flex-shrink: 0;
  margin-bottom: -1.2rem;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  opacity: 0.65;
  max-width: 420px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--amber);
  opacity: 0.5;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 22px; height: 22px; }

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

/* ── About ────────────────────────────────────────────────────── */
#about {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image .placeholder-img.tall {
  aspect-ratio: 3/4;
  width: 100%;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.about-text p {
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--amber-lt);
  line-height: 1;
}
.stat span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Gallery ──────────────────────────────────────────────────── */
#gallery {
  background: var(--bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}

.gallery-item { cursor: zoom-in; transition: opacity 0.2s; }
.gallery-item:hover { opacity: 0.85; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

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

.gallery-item.placeholder-img { height: 100%; }

/* ── Instagram CTA ────────────────────────────────────────────── */
#instagram-cta {
  padding: 48px 0;
  background: var(--bg);
  text-align: center;
}

.insta-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.insta-cta-link:hover { color: var(--amber-lt); }

/* ── Videos ───────────────────────────────────────────────────── */
#videos {
  background: var(--bg);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: #100d09;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,131,42,0.15);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-lt);
  cursor: pointer;
  transition: background 0.2s;
}
.play-btn:hover { background: var(--amber); color: var(--bg); }
.play-btn svg { width: 22px; height: 22px; margin-left: 3px; }

.video-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.video-info {
  padding: 20px 22px 24px;
}
.video-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}
.video-info p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Contact ──────────────────────────────────────────────────── */
#contact {
  background: var(--bg-alt);
}

.contact-wrap {
  max-width: 720px;
}

.contact-sub {
  color: var(--cream);
  opacity: 0.65;
  margin-top: -20px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

input, textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, textarea:focus { border-color: var(--amber); }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0;
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--amber-lt);
}

.footer-inner > p {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber-lt); }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-top: 4px;
}
.footer-instagram:hover { color: var(--amber-lt); }

.nav-instagram {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav-instagram:hover { opacity: 1; }

.footer-copy {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.5;
  letter-spacing: 0.04em;
  text-transform: none !important;
  margin-top: 8px;
}

/* ── Lightbox ─────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: var(--cream); font-size: 2rem;
  cursor: pointer; opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }

/* ── Mobile Nav Drawer ────────────────────────────────────────── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(14,11,8,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--amber-lt); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; max-width: 400px; margin: 0 auto; width: 100%; }
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 1; }

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

  .form-row { grid-template-columns: 1fr; }

  .about-stats { gap: 24px; flex-wrap: wrap; }
}
