/* ============================================================
   WRECK OF TIME — Ghost Theme Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

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

:root {
  --gold:       #c9a84c;
  --gold-dim:   #8a6c2e;
  --gold-glow:  rgba(201,168,76,0.15);
  --blood:      #7a1c1c;
  --deep:       #0a0a0f;
  --surface:    #12121a;
  --surface2:   #1a1a26;
  --surface3:   #22222f;
  --text:       #e8e4d8;
  --muted:      #7a7870;
  --muted2:     #5a5850;
  --border:     rgba(201,168,76,0.12);
  --border2:    rgba(255,255,255,0.06);
  --font-title: 'Cinzel', serif;
  --font-body:  'Raleway', sans-serif;
  --max-w:      1200px;
  --nav-h:      72px;
}

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

body {
  background: var(--deep);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.divider {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 2.5rem;
}
.divider.center { margin-left: auto; margin-right: auto; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--deep); }
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  background: var(--gold);
  color: var(--deep);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s;
}
.btn-solid:hover { background: transparent; color: var(--gold); }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: linear-gradient(to bottom, rgba(10,10,15,0.97), rgba(10,10,15,0.0));
  transition: background 0.4s;
}
.site-nav.scrolled {
  background: rgba(10,10,15,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}
.nav-logo span {
  display: block;
  font-size: 0.48rem;
  letter-spacing: 0.45em;
  color: var(--muted);
  font-weight: 400;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,15,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  font-family: var(--font-body);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 60%, rgba(122,28,28,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 90%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0f 0%, #0e0e16 50%, #0a0a0f 100%);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 2rem;
  animation: fadeUp 1.2s ease both;
}
.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 100px rgba(201,168,76,0.18);
  animation: fadeUp 1s ease 0.4s both;
}
.hero-title em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 0.5em;
  letter-spacing: 0.4em;
  font-weight: 400;
  margin-top: 0.5em;
}
.hero-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2.5rem;
  animation: fadeUp 1s ease 0.7s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  animation: fadeUp 1s ease 0.9s both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted2);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--muted2), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(122,28,28,0.12), transparent 70%),
    var(--deep);
  border-bottom: 1px solid var(--border2);
}
.page-header .section-label { justify-content: center; display: flex; }
.page-header .section-title { font-size: clamp(2.2rem, 5vw, 4rem); }

/* ── NEWS / BLOG ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  margin-top: 3rem;
}
.post-card {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.3s;
}
.post-card:hover { transform: translateY(-4px); }
.post-card-image {
  aspect-ratio: 16/9;
  background: var(--surface2);
  overflow: hidden;
  position: relative;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: grayscale(20%);
}
.post-card:hover .post-card-image img { transform: scale(1.05); }
.post-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
}
.post-card-image-placeholder span {
  font-family: var(--font-title);
  font-size: 3rem;
  color: rgba(201,168,76,0.1);
  letter-spacing: 0.1em;
}
.post-card-bar {
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.post-card:hover .post-card-bar { height: 100%; }
.post-card-body { padding: 1.5rem; }
.post-card-tag {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.post-card-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.8rem;
  transition: color 0.2s;
}
.post-card:hover .post-card-title { color: var(--gold); }
.post-card-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border2);
}
.post-card-date { font-size: 0.68rem; color: var(--muted2); letter-spacing: 0.1em; }
.post-card-read {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Featured post */
.post-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.post-card.featured .post-card-image { aspect-ratio: auto; min-height: 300px; }
.post-card.featured .post-card-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.post-card.featured .post-card-title { font-size: 1.6rem; }

/* ── SINGLE POST ── */
.post-full { padding: 4rem 0 8rem; }
.post-full-header { text-align: center; margin-bottom: 4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border2); }
.post-full-tag {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.post-full-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.post-full-meta {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.post-full-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  filter: grayscale(15%);
  margin-bottom: 4rem;
}
.post-full-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
  color: #ccc9bb;
}
.post-full-content h2 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}
.post-full-content h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--text);
  margin: 2rem 0 0.8rem;
}
.post-full-content p { margin-bottom: 1.5rem; }
.post-full-content a { color: var(--gold); border-bottom: 1px solid var(--gold-dim); transition: border-color 0.2s; }
.post-full-content a:hover { border-color: var(--gold); }
.post-full-content blockquote {
  border-left: 2px solid var(--gold);
  margin: 2rem 0;
  padding: 0.5rem 0 0.5rem 2rem;
  color: var(--muted);
  font-style: italic;
}
.post-full-content img {
  width: 100%;
  margin: 2rem auto;
  filter: grayscale(10%);
}
.post-full-content figure { margin: 2rem 0; }
.post-full-content figcaption {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}
.post-full-content ul, .post-full-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.post-full-content li { margin-bottom: 0.4rem; }

/* ── DISCOGRAPHY ── */
.disco-list { margin-top: 4rem; }
.disco-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border2);
}
.disco-item:first-child { border-top: 1px solid var(--border2); }
.disco-cover {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  overflow: hidden;
}
.disco-cover img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%); transition: filter 0.4s; }
.disco-cover:hover img { filter: none; }
.disco-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
}
.disco-cover-placeholder span { font-family: var(--font-title); font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); }
.disco-cover-placeholder strong { font-family: var(--font-title); font-size: 1.1rem; color: var(--text); text-align: center; padding: 0 0.5rem; }
.disco-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.disco-corner.tl { top: -6px; left: -6px; border-width: 1px 0 0 1px; }
.disco-corner.tr { top: -6px; right: -6px; border-width: 1px 1px 0 0; }
.disco-corner.bl { bottom: -6px; left: -6px; border-width: 0 0 1px 1px; }
.disco-corner.br { bottom: -6px; right: -6px; border-width: 0 1px 1px 0; }
.disco-info {}
.disco-year { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.disco-title { font-family: var(--font-title); font-size: 1.8rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; line-height: 1.1; }
.disco-type { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.disco-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.8; max-width: 55ch; margin-bottom: 1.5rem; }
.disco-credits { font-size: 0.75rem; color: var(--muted2); line-height: 1.7; border-top: 1px solid var(--border2); padding-top: 1rem; }
.disco-credits strong { color: var(--muted); font-weight: 500; }
.disco-tracklist { margin-top: 1.5rem; }
.disco-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
  cursor: default;
  transition: padding-left 0.2s;
}
.disco-track:hover { padding-left: 0.4rem; }
.disco-track:hover .disco-track-num { color: var(--gold); }
.disco-track-num { font-family: var(--font-title); font-size: 0.65rem; color: var(--muted2); width: 1.4rem; transition: color 0.2s; }
.disco-track-name { flex: 1; color: var(--text); }
.disco-track-dur { font-size: 0.72rem; color: var(--muted2); }
.disco-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ── BAND MEMBERS ── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.member-card {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}
.member-photo {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--surface2);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(30%);
  transition: filter 0.4s, transform 0.5s;
}
.member-card:hover .member-photo img { filter: grayscale(10%); transform: scale(1.04); }
.member-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--surface2), var(--surface3));
}
.member-initial-big {
  font-family: var(--font-title);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(201,168,76,0.07);
  user-select: none;
}
.member-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10,10,15,1), transparent);
}
.member-bar {
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s ease;
  z-index: 2;
}
.member-card:hover .member-bar { height: 100%; }
.member-info { padding: 1.8rem; }
.member-name { font-family: var(--font-title); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.member-role { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.member-bio { font-size: 0.82rem; color: var(--muted); line-height: 1.8; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}
.gallery-item-inner {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s, transform 0.5s;
}
.gallery-item:hover img { filter: none; transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { color: var(--gold); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(10,10,15,0.9), transparent);
  font-size: 0.72rem;
  color: var(--text);
  opacity: 0;
  transition: opacity 0.3s;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,5,8,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ── TOUR DATES ── */
.shows-list { margin-top: 3rem; }
.show-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border2);
  transition: padding-left 0.25s;
  cursor: default;
}
.show-item:first-child { border-top: 1px solid var(--border2); }
.show-item:hover { padding-left: 1rem; }
.show-date-block {}
.show-day {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.show-month-year { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.show-venue { font-family: var(--font-title); font-size: 1.05rem; color: var(--text); margin-bottom: 0.2rem; }
.show-location { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--muted); }
.show-support { font-size: 0.68rem; color: var(--muted2); margin-top: 0.2rem; }
.show-tickets-btn {
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: transparent;
  white-space: nowrap;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.show-tickets-btn:hover { background: var(--gold); color: var(--deep); }
.show-tickets-btn.sold-out { border-color: var(--muted2); color: var(--muted2); cursor: not-allowed; }
.no-shows {
  text-align: center;
  padding: 5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ── STREAMING ── */
.streaming-section { background: var(--surface); padding: 6rem 0; border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }
.streaming-inner { text-align: center; }
.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.platform-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--surface2);
  color: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.platform-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }
.platform-icon { font-size: 1rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border2);
  padding: 5rem 0 3rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 2rem;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.footer-tagline { font-size: 0.62rem; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; }
.footer-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.8; margin-top: 1.2rem; max-width: 28ch; }
.footer-nav-group {}
.footer-nav-title { font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-links a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.footer-nav-links a:hover { color: var(--text); }
.footer-social-group {}
.footer-social-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-social-links a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.footer-social-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.65rem; color: var(--muted2); letter-spacing: 0.05em; }
.footer-ghost { font-size: 0.65rem; color: var(--muted2); }
.footer-ghost a { color: var(--muted2); border-bottom: 1px solid var(--muted2); transition: color 0.2s; }
.footer-ghost a:hover { color: var(--muted); }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0;
}
.pagination a, .pagination span {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border2);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { border-color: var(--gold); color: var(--gold); }

/* ── ERROR PAGES ── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-code {
  font-family: var(--font-title);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 1rem;
}
.error-msg { font-family: var(--font-title); font-size: 1.5rem; color: var(--text); margin-bottom: 1rem; }
.error-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .disco-item { grid-template-columns: 180px 1fr; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: center; }
  .post-card.featured { grid-template-columns: 1fr; }
  .post-card.featured .post-card-image { min-height: 220px; }
  .post-card.featured .post-card-body { padding: 1.5rem; }
  .disco-item { grid-template-columns: 1fr; gap: 2rem; }
  .disco-cover { max-width: 200px; }
  .members-grid { grid-template-columns: 1fr; }
  .show-item { grid-template-columns: 90px 1fr; gap: 1rem; }
  .show-tickets-btn { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  section { padding: 5rem 0; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ============================================================
   GHOST CARD ASSETS — Required by Ghost theme validator
   ============================================================ */

/* Width utilities — REQUIRED by Ghost */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 2rem calc(50% - 42.5vw);
}
.kg-width-full {
  position: relative;
  width: 100vw;
  margin: 2rem calc(50% - 50vw);
}

/* Ghost card base */
.kg-card { margin: 2rem 0; }
.kg-card + .kg-card { margin-top: 0; }

/* Image card */
.kg-image-card img { width: 100%; }
.kg-image-card figcaption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
}

/* Gallery card */
.kg-gallery-card { margin: 2rem 0; }
.kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kg-gallery-row {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.kg-gallery-image { flex: 1; overflow: hidden; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(10%); transition: filter 0.4s; }
.kg-gallery-image img:hover { filter: none; }

/* Bookmark card */
.kg-bookmark-card { margin: 2rem 0; }
.kg-bookmark-container {
  display: flex;
  background: var(--surface2);
  border: 1px solid var(--border2);
  text-decoration: none;
  transition: border-color 0.2s;
}
.kg-bookmark-container:hover { border-color: var(--border); }
.kg-bookmark-content { padding: 1.2rem; flex: 1; }
.kg-bookmark-title { font-weight: 500; color: var(--text); font-size: 0.9rem; margin-bottom: 0.3rem; }
.kg-bookmark-description { font-size: 0.78rem; color: var(--muted); line-height: 1.5; margin-bottom: 0.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 0.5rem; }
.kg-bookmark-icon { width: 16px; height: 16px; }
.kg-bookmark-publisher { font-size: 0.72rem; color: var(--muted2); }
.kg-bookmark-thumbnail { width: 140px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

/* Embed / video card */
.kg-embed-card { margin: 2rem 0; }
.kg-embed-card iframe { width: 100%; border: none; }
.kg-video-card { margin: 2rem 0; position: relative; }
.kg-video-card video { width: 100%; display: block; }

/* Audio card */
.kg-audio-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface2);
  border: 1px solid var(--border2);
  padding: 1rem 1.2rem;
  margin: 2rem 0;
}
.kg-audio-card audio { flex: 1; }

/* Code card */
.kg-code-card { margin: 2rem 0; }
.kg-code-card pre {
  background: var(--surface2);
  border: 1px solid var(--border2);
  padding: 1.5rem;
  overflow-x: auto;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text);
}

/* Callout card */
.kg-callout-card {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--surface2);
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
}
.kg-callout-emoji { font-size: 1.2rem; flex-shrink: 0; }
.kg-callout-text { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

/* Toggle card */
.kg-toggle-card { margin: 2rem 0; border: 1px solid var(--border2); }
.kg-toggle-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}
.kg-toggle-content { padding: 0 1.2rem 1rem; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* Button card */
.kg-button-card { margin: 2rem 0; text-align: center; }
.kg-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.kg-btn:hover { background: var(--gold); color: var(--deep); }
.kg-btn-accent { background: var(--gold); color: var(--deep); }
.kg-btn-accent:hover { background: transparent; color: var(--gold); }

/* Header card */
.kg-header-card {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--surface2);
  margin: 2rem 0;
}
.kg-header-card h2 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text);
  margin-bottom: 1rem;
}
.kg-header-card p { color: var(--muted); font-size: 0.9rem; }

/* Divider card */
.kg-divider { border: none; border-top: 1px solid var(--border2); margin: 2.5rem 0; }

/* NFT / Product cards (stub) */
.kg-nft-card, .kg-product-card { margin: 2rem 0; background: var(--surface2); border: 1px solid var(--border2); padding: 1.5rem; }

/* File card */
.kg-file-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface2);
  border: 1px solid var(--border2);
  padding: 1rem 1.2rem;
  margin: 2rem 0;
  text-decoration: none;
  transition: border-color 0.2s;
}
.kg-file-card:hover { border-color: var(--border); }
.kg-file-card-contents { flex: 1; }
.kg-file-card-title { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.kg-file-card-caption { font-size: 0.75rem; color: var(--muted); }
.kg-file-card-metadata { font-size: 0.7rem; color: var(--muted2); margin-top: 0.2rem; }

/* Responsive kg cards */
@media (max-width: 768px) {
  .kg-width-wide, .kg-width-full { width: 100%; margin-left: 0; margin-right: 0; }
  .kg-bookmark-thumbnail { display: none; }
}

/* ============================================================
   GHOST EDITOR CONTENT STYLING
   All page content written in Ghost Admin editor
   ============================================================ */

/* Make Ghost gallery cards look like our gallery grid */
.gallery-content .kg-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}
.gallery-content .kg-gallery-row {
  display: contents;
}
.gallery-content .kg-gallery-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-content .kg-gallery-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s, transform 0.5s;
}
.gallery-content .kg-gallery-image img:hover {
  filter: none;
  transform: scale(1.05);
}

/* Video embeds - make YouTube iframes responsive and styled */
.videos-content .kg-embed-card {
  margin: 0 0 2px 0;
}
.videos-content .kg-embed-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
  border: none;
}
/* Grid layout for video embeds when placed side by side */
.videos-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  align-items: start;
}
.videos-content .kg-embed-card,
.videos-content p,
.videos-content h2,
.videos-content h3 {
  grid-column: 1 / -1;
}
/* Video card styling - each embed + its following heading/text grouped */
.videos-content .kg-embed-card + h2,
.videos-content .kg-embed-card + h3 {
  background: var(--surface);
  padding: 1rem 1.2rem 0.3rem;
  margin-top: -2px;
  grid-column: auto;
}

/* Member/bio cards from Ghost editor - use callout cards for members */
.post-full-content .kg-callout-card {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 0 0 2px 0;
}
.post-full-content .kg-callout-text {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Shows/tour list styling - use toggle cards or simple paragraphs */
.post-full-content h2 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--text);
  margin: 2.5rem 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border2);
}
.post-full-content h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--gold);
  margin: 1.5rem 0 0.3rem;
  letter-spacing: 0.05em;
}

/* Discography - use bookmark cards or headers + text */
.post-full-content .kg-bookmark-container {
  background: var(--surface2);
  border: 1px solid var(--border);
}
.post-full-content .kg-bookmark-title { color: var(--text); }
.post-full-content .kg-bookmark-description { color: var(--muted); }
.post-full-content .kg-bookmark-publisher { color: var(--muted2); }

/* Full-width images in page content */
.post-full-content .kg-image-card.kg-width-wide img,
.post-full-content .kg-image-card.kg-width-full img {
  filter: grayscale(15%);
}

/* HR dividers in content */
.post-full-content hr {
  border: none;
  border-top: 1px solid var(--border2);
  margin: 3rem 0;
}

/* ============================================================
   ELFSIGHT WIDGET INTEGRATION
   ============================================================ */

/* Give Elfsight widgets full width and remove default margins */
.gh-content .elfsight-app,
.gh-content [class*="elfsight-app"] {
  width: 100% !important;
  max-width: 100% !important;
}

/* HTML card containing Elfsight widget */
.kg-html-card {
  width: 100%;
  margin: 0;
}

/* Gallery page — Elfsight Instagram feed full bleed */
.gallery-content .kg-html-card {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* Videos page — YouTube widget full width */
.videos-content .kg-html-card {
  width: 100%;
}

/* Override Elfsight light backgrounds to match dark theme */
.eapps-instagram-feed-posts-item-template-classic .eapps-instagram-feed-posts-item-overlay,
.eapps-youtube-gallery-container {
  background: var(--surface) !important;
}
