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

:root {
  --espresso:   #1E0F07;
  --bark:       #3A1C0B;
  --terracotta: #B85C2A;
  --clay:       #C97A4A;
  --sand:       #D9BFA0;
  --parchment:  #F2E8D9;
  --cream:      #FAF5EE;
  --gold:       #A67C52;
  --muted:      #8C6B53;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* GRAIN */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  transition: background .4s, border-color .4s;
}
nav.scrolled {
  background: rgba(242,232,217,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(56,28,11,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bark);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--terracotta); }

/* burger — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--espresso);
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-image-side {
  position: relative;
  background: var(--bark);
  overflow: hidden;
}
.hero-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(30,15,7,.3) 0%,transparent 60%);
}
.hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  display: block;
  background: linear-gradient(160deg,#3A1C0B 0%,#6B3520 40%,#B85C2A 100%);
}
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  display: block;
}
.hero-silhouette {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.artist-svg { width: 100%; height: 100%; display: block; }
.hero-content-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 4rem 5rem 5rem;
  position: relative;
}
.hero-label {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem,7vw,7rem);
  font-weight: 300;
  line-height: .9;
  color: var(--espresso);
  margin-bottom: 2rem;
}
.hero-name em { font-style: italic; color: var(--terracotta); }
.hero-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 320px;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 1.5rem; align-items: center; }
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: var(--sand);
  display: block;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(.6); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  border: none;
  padding: .9rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--bark); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--espresso); border-color: var(--espresso); }

/* ── SECTION BASE ── */
section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.section-label {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--clay); display: block; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem,4vw,4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 3rem;
}
.section-title em { font-style: italic; color: var(--terracotta); }

/* ── BIO ── */
#bio { background: var(--parchment); }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.bio-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--bark);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.bio-text p:first-of-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.6;
  font-weight: 400;
}
.bio-visual { position: relative; }
.bio-frame {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg,#5C2E14 0%,#9C4E24 50%,#C97A4A 100%);
  position: relative;
  overflow: hidden;
}
.bio-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-frame-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 60%; height: 60%;
  border: 2px solid var(--sand);
  z-index: -1;
}
.bio-credits {
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .1em;
  margin-top: .6rem;
  text-align: right;
}
.bio-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(58,28,11,.12);
}
.bio-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
}
.bio-stat-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}

/* ── MUSIC ── */
#music { background: var(--cream); }
.music-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.albums-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.album-card { cursor: pointer; }
.album-artwork {
  display: block;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  text-decoration: none;
}
.album-artwork-bg, .album-artwork-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}
.album-card:hover .album-artwork-bg,
.album-card:hover .album-artwork-img { transform: scale(1.04); }
.album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,15,7,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.album-card:hover .album-overlay { opacity: 1; }
.play-btn {
  width: 52px; height: 52px;
  border: 2px solid rgba(250,245,238,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn svg { fill: white; margin-left: 3px; }
.album-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: .3rem;
}
.album-meta { font-size: .75rem; color: var(--muted); letter-spacing: .06em; }
.album-type {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--parchment);
  color: var(--clay);
  padding: .2rem .6rem;
  margin-top: .5rem;
}
.alb-1 { background: linear-gradient(145deg,#3A1C0B,#8C3E18); }
.alb-2 { background: linear-gradient(145deg,#5C2E0B,#C97A4A); }
.alb-3 { background: linear-gradient(145deg,#2A1A0A,#6B3520); }
.alb-4 { background: linear-gradient(145deg,#4A2010,#B85C2A); }

/* ── CONCERTS ── */
#concerts { background: var(--espresso); }
#concerts .section-label { color: var(--clay); }
#concerts .section-label::before { background: var(--clay); }
#concerts .section-title { color: var(--parchment); }
.concerts-empty {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(217,191,160,0.5);
  padding: 3rem 0;
}
.concerts-list { display: flex; flex-direction: column; }
.concert-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(217,191,160,.1);
  gap: 2rem;
  transition: background .2s;
}
.concert-row:first-child { border-top: 1px solid rgba(217,191,160,.1); }
.concert-row:hover { background: rgba(217,191,160,.04); }
.concert-date-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}
.concert-date-month {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .1rem;
}
.concert-venue {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--parchment);
}
.concert-city { font-size: .8rem; color: var(--muted); margin-top: .2rem; }
.concert-info { font-size: .78rem; color: rgba(217,191,160,.5); }
.btn-ticket {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border: 1px solid rgba(184,92,42,.4);
  padding: .6rem 1.4rem;
  transition: all .25s;
  white-space: nowrap;
}
.btn-ticket:hover { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.sold-out { color: rgba(217,191,160,.3); border-color: rgba(217,191,160,.15); pointer-events: none; }

/* ── VIDEOS ── */
#videos { background: var(--parchment); }
.videos-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; }
.video-card { position: relative; overflow: hidden; background: var(--bark); cursor: pointer; }
.video-card.video-featured { grid-row: 1 / 3; }
.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s;
}
.video-card.video-featured .video-thumb { aspect-ratio: 9/10; }
.video-card:hover .video-thumb { transform: scale(1.04); opacity: .8; }
.video-card a { display: block; position: relative; text-decoration: none; }
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(30,15,7,.85) 0%,transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--parchment);
  margin-bottom: .3rem;
}
.video-card.video-featured .video-title { font-size: 1.8rem; }
.video-duration { font-size: .72rem; color: rgba(217,191,160,.6); }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  border: 2px solid rgba(250,245,238,.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.video-card:hover .video-play { opacity: 1; }
.vid-1 { background: linear-gradient(145deg,#2A1005,#8C4020); }
.vid-2 { background: linear-gradient(145deg,#3A180A,#C97A4A); }
.vid-3 { background: linear-gradient(145deg,#1E0F07,#5C2E14); }
.videos-empty {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--muted);
  padding: 3rem 0;
}

/* ── SOCIALS ── */
#socials { background: var(--bark); padding: 4rem 0; }
.socials-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.socials-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--parchment);
}
.socials-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--sand);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .6rem 1.2rem;
  border: 1px solid rgba(217,191,160,.2);
  transition: all .25s;
}
.social-link:hover { border-color: var(--clay); color: var(--parchment); }
.social-link svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--espresso);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { display: flex; align-items: center; text-decoration: none; }
.footer-logo img { height: 28px; width: auto; display: block; }
footer p { font-size: .7rem; color: rgba(217,191,160,.3); letter-spacing: .1em; }
footer a { color: rgba(217,191,160,.5); text-decoration: none; }
footer a:hover { color: var(--sand); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .albums-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(242,232,217,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(58,28,11,.1);
    padding: .5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .9rem 1.5rem; display: block; }
  .nav-burger { display: flex; }

  #hero { grid-template-columns: 1fr; }
  .hero-image-side { height: 55svh; min-height: auto; }
  .hero-placeholder, .hero-photo { min-height: 55svh; }
  .hero-content-side { padding: 3rem 1.5rem; }
  .hero-scroll { display: none; }

  .container { padding: 0 1.5rem; }
  section { padding: 5rem 0; }

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

  .videos-grid { grid-template-columns: 1fr; }
  .video-card.video-featured { grid-row: auto; }

  .concert-row { grid-template-columns: 60px 1fr auto; }
  .concert-info { display: none; }

  .socials-inner { flex-direction: column; align-items: flex-start; }
  footer { padding: 2rem 1.5rem; justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .music-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-name { font-size: clamp(3rem,14vw,4.5rem); }
}