@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --cream: #e2ddd4;
  --cream2: #1e1c19;
  --cream3: #252320;
  --charcoal: #0f0e0c;
  --charcoal2: #1a1814;
  --charcoal3: #2a2824;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --gold-pale: #2a2415;
  --text: #d0ccc4;
  --text-muted: #7a7468;
  --border: rgba(232,228,220,0.1);
  --border-gold: rgba(201,168,76,0.3);
}

body {
  background: #111009;
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--charcoal); text-decoration: none; }
img { max-width: 100%; display: block; }

/* HEADER */
header {
  background: var(--charcoal);
  text-align: center;
  padding: 22px 20px 0;
  position: relative;
}
.site-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  text-decoration: none;
}
.site-title:hover { text-decoration: none; color: var(--gold-light); }
.site-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  padding: 12px 20px;
  display: block;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
nav a:hover { color: var(--cream); text-decoration: none; }
nav a.active { color: var(--gold-light); border-bottom-color: var(--gold); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
  position: absolute; right: 16px; top: 20px;
}
.hamburger span { display: block; width: 24px; height: 1px; background: var(--cream); }
@media (max-width: 700px) {
  header { position: relative; }
  .site-title { font-size: 2rem; }
  .hamburger { display: flex; }
  nav { display: none; flex-direction: column; padding: 0.5rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
  nav.open { display: flex; }
  nav a { padding: 10px 20px; }
}

/* HERO */
.home-hero {
  width: 100%; position: relative; overflow: hidden;
  height: 88vh; max-height: 780px; min-height: 480px;
}
.home-hero .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 5%; display: block;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,24,20,0.1) 0%, rgba(26,24,20,0.05) 25%, rgba(26,24,20,0.6) 70%, rgba(26,24,20,0.93) 100%);
  z-index: 1;
}
.hero-text {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 40px 52px;
}
.hero-rule { width: 48px; height: 1px; background: var(--gold); margin-bottom: 18px; }
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900; color: var(--cream);
  line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 14px;
}
.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold-light);
}
@media (max-width: 600px) {
  .home-hero { height: 70vh; }
  .hero-text { padding: 28px 24px; }
  .hero-name { font-size: 2.6rem; }
}

/* PAGE CONTENT */
.page-content { max-width: 960px; margin: 0 auto; padding: 52px 32px 80px; }
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--cream); padding-bottom: 12px;
  border-bottom: 1px solid var(--border); margin-bottom: 32px;
}
hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

/* HOME RELEASE SECTION */
.home-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.home-release {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 52px; align-items: start;
  padding: 52px 32px; max-width: 960px; margin: 0 auto;
}
.home-release-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--cream); line-height: 1.15; margin-bottom: 8px;
}
.home-release-text .release-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.home-release-text p { font-size: 1rem; color: var(--text); line-height: 1.85; margin-bottom: 10px; }
.home-awards { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.home-award-item {
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem; letter-spacing: 0.04em;
  color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.home-award-item::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.home-release-right { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 24px; }
.home-release-right img { width: 100%; box-shadow: 0 12px 48px rgba(26,24,20,0.15); }
.spotify-wrap { background: var(--charcoal); }
.spotify-embed { width: 100%; }
@media (max-width: 700px) {
  .home-release { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .home-release-right { position: static; }
}

/* GOLD RULE DIVIDER */
.gold-rule { display: flex; align-items: center; gap: 16px; padding: 0 32px; max-width: 960px; margin: 0 auto; }
.gold-rule::before, .gold-rule::after { content: ''; flex: 1; height: 1px; background: var(--border-gold); }
.gold-rule-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* SOCIAL SECTION */
.social-section { background: var(--charcoal); padding: 36px 32px; }
.social-section-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.social-section-label { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--cream); flex: 1; }
.social-icons { display: flex; gap: 14px; align-items: center; }
.social-icons a img { width: 32px; height: 32px; opacity: 0.7; transition: opacity 0.2s; }
.social-icons a:hover img { opacity: 1; }

/* IG SECTION */
.ig-section { background: var(--charcoal2); padding: 40px 32px; }
.ig-section-inner { max-width: 960px; margin: 0 auto; }

/* BUTTONS */
.btn {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 11px 28px;
  background: var(--charcoal); color: var(--cream);
  border: 1px solid var(--charcoal); cursor: pointer;
  transition: all 0.2s; text-decoration: none; text-align: center;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); text-decoration: none; }
.btn-outline { background: transparent; color: var(--cream); border-color: rgba(232,228,220,0.4); }
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

/* BIO */
.bio-layout { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.bio-photo { position: sticky; top: 24px; }
.bio-photo img { width: 100%; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.bio-text p { margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.85; color: var(--text); }
.bio-quote { font-style: italic; font-size: 1.05rem; color: var(--cream); margin-bottom: 14px; padding-left: 18px; border-left: 2px solid var(--gold); line-height: 1.6; }
@media (max-width: 680px) { .bio-layout { grid-template-columns: 1fr; } .bio-photo { position: static; } }

/* PRESS */
.press-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.press-more h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; color: var(--cream); border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 20px; }
.press-item { margin-bottom: 36px; }
.press-item-logo { max-height: 44px; width: auto; max-width: 200px; margin-bottom: 10px; opacity: 0.9; filter: brightness(1.1); }
.press-item-meta { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; }
.press-item-quote { font-size: 0.96rem; line-height: 1.7; color: var(--text); margin-bottom: 10px; font-style: italic; }
.press-item-read { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
.press-item-read:hover { color: var(--gold-light); }
.press-small-item { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.press-small-item:last-child { border-bottom: none; }
.press-small-logo { max-height: 44px; width: auto; max-width: 180px; margin-bottom: 8px; opacity: 0.9; filter: brightness(1.1); }
.press-small-meta { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; }
.press-small-quote { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin-bottom: 6px; font-style: italic; }
@media (max-width: 680px) { .press-columns { grid-template-columns: 1fr; } }

/* SHOWS */
.shows-widget { background: var(--charcoal); color: var(--cream); border: 1px solid rgba(255,255,255,0.08); }
.shows-header { background: var(--charcoal2); padding: 12px 24px; display: flex; gap: 16px; align-items: center; font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.45); border-bottom: 1px solid rgba(255,255,255,0.06); }
.shows-header a { color: rgba(245,240,232,0.45); }
.shows-header a.active-tab { color: var(--cream); }
.show-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 24px; padding: 20px 24px; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
.show-date { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.show-date span { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400; color: rgba(245,240,232,0.4); display: block; margin-top: 4px; }
.show-info .venue { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--cream); margin-bottom: 2px; }
.show-info .city { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(245,240,232,0.45); text-transform: uppercase; }
.show-notify { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; padding: 8px 20px; border: 1px solid rgba(245,240,232,0.25); color: rgba(245,240,232,0.6); background: transparent; cursor: pointer; text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; transition: all 0.2s; }
.show-notify:hover { border-color: var(--gold-light); color: var(--gold-light); }
@media (max-width: 600px) { .show-row { grid-template-columns: 70px 1fr; } .show-notify { display: none; } }

/* VIDEOS */
.videos-intro { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; gap: 20px; }
.videos-intro p { font-size: 0.95rem; color: var(--text-muted); max-width: 600px; font-style: italic; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.video-card { background: var(--charcoal); cursor: pointer; transition: transform 0.25s; }
.video-card:hover { transform: translateY(-4px); }
.video-card .thumb { aspect-ratio: 16/9; background: var(--charcoal2); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-card .play-circle { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; transition: transform 0.2s, background 0.2s; }
.video-card:hover .play-circle { transform: scale(1.1); background: var(--gold-light); }
.play-arrow-inner { width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 14px solid var(--charcoal); margin-left: 3px; }
.video-card .card-body { padding: 1rem 1.1rem 1.1rem; }
.video-card .card-title { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-style: italic; line-height: 1.45; color: var(--cream); margin-bottom: 0.3rem; transition: color 0.2s; }
.video-card:hover .card-title { color: var(--gold-light); }
.video-card .card-desc { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; color: rgba(245,240,232,0.4); line-height: 1.5; }
.video-card .card-link-hint { font-family: 'Montserrat', sans-serif; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 0.5rem; opacity: 0; transition: opacity 0.2s; }
.video-card:hover .card-link-hint { opacity: 1; }
.video-modal { display: none; position: fixed; inset: 0; background: rgba(26,24,20,0.96); z-index: 999; align-items: center; justify-content: center; }
.video-modal.open { display: flex; }
.video-modal-inner { width: 860px; max-width: 95vw; position: relative; }
.video-modal-inner > div { aspect-ratio: 16/9; }
.video-modal-inner iframe { width: 100%; height: 100%; border: none; }
.modal-close { background: none; border: 1px solid rgba(245,240,232,0.3); color: rgba(245,240,232,0.6); font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; cursor: pointer; transition: all 0.2s; }
.modal-close:hover { border-color: var(--gold-light); color: var(--gold-light); }
@media (max-width: 640px) { .video-grid { grid-template-columns: 1fr; } .videos-intro { flex-direction: column; } }

/* PHOTOS */
.photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.photos-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; cursor: pointer; transition: opacity 0.2s; }
.photos-grid img:hover { opacity: 0.82; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(26,24,20,0.97); z-index: 999; 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: 20px; right: 24px; color: var(--cream); font-size: 1.8rem; background: none; border: none; cursor: pointer; opacity: 0.7; }
.lightbox-close:hover { opacity: 1; }
@media (max-width: 640px) { .photos-grid { grid-template-columns: repeat(2, 1fr); } }

/* CONTACT */
.contact-intro { font-size: 1rem; font-style: italic; color: var(--text-muted); margin-bottom: 28px; }
.contact-form { max-width: 580px; display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea { font-family: 'Cormorant Garamond', serif; font-size: 1rem; padding: 12px 16px; border: 1px solid var(--border); color: var(--text); background: #1a1814; outline: none; width: 100%; transition: border-color 0.2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #4a4840; font-style: italic; }
.form-success { display: none; padding: 14px 18px; background: var(--gold-pale); border: 1px solid var(--gold); color: var(--charcoal2); font-size: 0.9rem; margin-top: 8px; }

/* FOOTER */
footer { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-social a img { width: 28px; height: 28px; opacity: 0.6; transition: opacity 0.2s; }
.footer-social a:hover img { opacity: 1; }
.footer-copy { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.12em; color: rgba(245,240,232,0.3); text-transform: uppercase; }

/* MISC */
.home-bio-text p { margin-bottom: 1rem; color: var(--text); line-height: 1.85; font-size: 0.97rem; }
.subscribe-box { background: var(--charcoal2); border: 1px solid var(--border); padding: 20px 24px; margin-top: 12px; }
.subscribe-box p { color: var(--text-muted); }
.page-hero-label { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
