/* =========================================================
   MUNYAKAZI DEO — Main Stylesheet
   Palette: Deep charcoal bg · Mahogany accent · Warm grey text
   ========================================================= */

:root {
  --bg:         #0d0b09;
  --bg-2:       #131008;
  --bg-card:    #1a1410;
  --bg-raised:  #221c15;
  --mahogany:   #8B3A2A;
  --mahogany-l: #b5503c;
  --mahogany-d: #5c2418;
  --gold:       #c9a96e;
  --gold-l:     #e0c48a;
  --grey-1:     #e8e0d4;  /* near-white warm */
  --grey-2:     #c4b89e;  /* body text */
  --grey-3:     #8a7d6a;  /* muted */
  --grey-4:     #4a3f32;  /* divider */
  --grey-5:     #2a211a;  /* subtle bg */
  --white:      #f5f0e8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-mono:    'Space Mono', monospace;
  --max-w:      1200px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--grey-2);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* LOADER */
#site-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#site-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--mahogany);
  animation: pulse-letter 1.2s ease infinite;
}
@keyframes pulse-letter {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.9); }
}

/* HEADER */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,11,9,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-4);
  transition: var(--transition);
}
#site-header.scrolled { border-bottom-color: var(--mahogany-d); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex; flex-direction: column;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--grey-1);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--mahogany-l);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-3);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--mahogany);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--grey-1);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--grey-2);
  transition: var(--transition);
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: var(--bg-2);
  border-bottom: 1px solid var(--grey-4);
  padding: 1.5rem 2rem;
  flex-direction: column; gap: 1.2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-2);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--mahogany-l); }

/* PAGE WRAPPER */
.page-wrap { padding-top: 70px; }

/* =========================================================
   HERO — HOME
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 50%, #1a0e08 100%);
}
.hero-texture {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(139,58,42,0.04) 60px, rgba(139,58,42,0.04) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(139,58,42,0.03) 80px, rgba(139,58,42,0.03) 81px);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text {}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mahogany-l);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fade-up 0.8s 0.3s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--grey-1);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fade-up 0.8s 0.5s ease forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--mahogany-l);
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--grey-3);
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 440px;
  opacity: 0; animation: fade-up 0.8s 0.7s ease forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fade-up 0.8s 0.9s ease forwards;
}
.hero-image-col {
  position: relative;
  opacity: 0; animation: fade-in 1.2s 0.6s ease forwards;
}
.hero-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 600px;
  overflow: hidden;
}
.hero-img-frame::before {
  content: '';
  position: absolute; inset: -1px;
  border: 1px solid var(--mahogany-d);
  z-index: 2;
  pointer-events: none;
}
.hero-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(15%) brightness(0.85);
  transition: filter 0.6s ease;
}
.hero-img-frame:hover img { filter: sepia(5%) brightness(0.95); }
.hero-img-corner {
  position: absolute; bottom: -1rem; right: -1rem;
  width: 60%; height: 60%;
  border: 1px solid var(--mahogany);
  z-index: 0;
  pointer-events: none;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey-4);
  animation: bob 2s ease infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px; background: var(--grey-4);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--mahogany);
  color: var(--grey-1);
  border: 1px solid var(--mahogany);
}
.btn-primary:hover {
  background: var(--mahogany-l);
  border-color: var(--mahogany-l);
}
.btn-outline {
  background: transparent;
  color: var(--grey-2);
  border: 1px solid var(--grey-4);
}
.btn-outline:hover {
  border-color: var(--grey-2);
  color: var(--grey-1);
}
.btn-ghost {
  background: transparent;
  color: var(--mahogany-l);
  border: none;
  padding-left: 0;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost:hover { color: var(--gold); }

/* =========================================================
   SECTION STRUCTURE
   ========================================================= */
.section {
  padding: 6rem 0;
}
.section-alt { background: var(--bg-2); }
.section-raised { background: var(--bg-card); }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-head {
  margin-bottom: 3.5rem;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mahogany-l);
  margin-bottom: 0.8rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--grey-1);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--mahogany-l); }
.section-desc {
  margin-top: 1rem;
  color: var(--grey-3);
  font-size: 1rem;
  max-width: 560px;
}
.divider {
  width: 48px; height: 2px;
  background: var(--mahogany);
  margin: 1.5rem 0;
}

/* =========================================================
   SHOWS
   ========================================================= */
.shows-list { display: flex; flex-direction: column; gap: 0; }
.show-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--grey-5);
  transition: background var(--transition);
}
.show-row:first-child { border-top: 1px solid var(--grey-5); }
.show-row:hover { background: var(--bg-raised); padding-left: 1rem; padding-right: 1rem; margin: 0 -1rem; }
.show-date-block { text-align: center; }
.show-date-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--grey-1);
  line-height: 1;
}
.show-date-mon {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mahogany-l);
}
.show-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey-1);
}
.show-venue { font-size: 0.85rem; color: var(--grey-3); }
.show-location { font-size: 0.9rem; color: var(--grey-2); }
.show-country {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-4);
}
.show-status-badge {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.badge-upcoming { background: var(--mahogany-d); color: var(--mahogany-l); }
.badge-past { background: var(--grey-5); color: var(--grey-4); }
.badge-soldout { background: var(--gold); color: var(--bg); }

/* =========================================================
   MUSIC / ALBUMS
   ========================================================= */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.album-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-5);
  transition: border-color var(--transition), transform var(--transition);
}
.album-card:hover {
  border-color: var(--grey-4);
  transform: translateY(-4px);
}
.album-cover {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--bg-raised);
}
.album-cover img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(10%) brightness(0.9);
  transition: filter var(--transition), transform var(--transition);
}
.album-card:hover .album-cover img {
  filter: sepia(5%) brightness(1);
  transform: scale(1.03);
}
.album-cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--mahogany-d);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-raised) 100%);
}
.album-info { padding: 1.5rem; }
.album-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mahogany-l);
  margin-bottom: 0.4rem;
}
.album-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--grey-1);
  margin-bottom: 0.4rem;
}
.album-year { font-size: 0.85rem; color: var(--grey-3); }
.album-desc { font-size: 0.9rem; color: var(--grey-3); margin: 0.8rem 0 1.2rem; line-height: 1.5; }
.album-tracks { border-top: 1px solid var(--grey-5); padding-top: 1rem; margin-bottom: 1.2rem; }
.track-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(74,63,50,0.3);
  color: var(--grey-3);
  transition: color var(--transition);
}
.track-row:hover { color: var(--grey-1); }
.track-num { color: var(--grey-4); min-width: 1.5rem; font-family: var(--font-mono); font-size: 0.65rem; }
.track-dur { color: var(--grey-4); font-family: var(--font-mono); font-size: 0.65rem; }
.album-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.stream-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-3);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--grey-4);
  transition: var(--transition);
}
.stream-link:hover { color: var(--grey-1); border-color: var(--grey-2); }

/* =========================================================
   VIDEOS
   ========================================================= */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.video-card {
  position: relative; cursor: pointer;
  border: 1px solid var(--grey-5);
  background: var(--bg-card);
  transition: border-color var(--transition), transform var(--transition);
}
.video-card:hover {
  border-color: var(--mahogany);
  transform: translateY(-3px);
}
.video-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--bg-raised);
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) sepia(15%);
  transition: filter var(--transition);
}
.video-card:hover .video-thumb img { filter: brightness(0.9) sepia(5%); }
.video-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-raised), var(--bg-card));
  font-size: 2rem; color: var(--mahogany-d);
}
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-play-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(139,58,42,0.8);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--mahogany-l);
  transition: var(--transition);
}
.video-card:hover .video-play-circle {
  background: var(--mahogany);
  transform: scale(1.1);
}
.video-play-circle svg { width: 18px; height: 18px; fill: var(--grey-1); margin-left: 3px; }
.video-cat-tag {
  position: absolute; top: 0.6rem; left: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(13,11,9,0.85);
  color: var(--mahogany-l);
  padding: 0.25rem 0.5rem;
}
.video-info { padding: 1rem 1.2rem; }
.video-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--grey-1);
  margin-bottom: 0.3rem;
}
.video-desc { font-size: 0.82rem; color: var(--grey-3); line-height: 1.4; }

/* VIDEO MODAL */
.video-modal {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
}
.video-modal.open { display: flex; align-items: center; justify-content: center; }
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,3,2,0.92);
  backdrop-filter: blur(8px);
}
.video-modal-inner {
  position: relative; z-index: 1;
  width: 90vw; max-width: 900px;
  background: var(--bg-card);
  border: 1px solid var(--grey-4);
}
.video-modal-close {
  position: absolute; top: -2.5rem; right: 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--grey-3);
  background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.video-modal-close:hover { color: var(--grey-1); }
.video-modal-title-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--grey-5);
}
.video-modal-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--grey-1);
}
.video-modal-cat {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mahogany-l);
}
.video-modal-frame {
  aspect-ratio: 16/9;
  background: #000;
}
.video-modal-frame iframe { width: 100%; height: 100%; }
.video-modal-playlist {
  display: flex; gap: 0;
  border-top: 1px solid var(--grey-5);
  overflow-x: auto;
  max-height: 80px;
}
.video-playlist-item {
  flex: 0 0 auto;
  padding: 0.6rem 1rem;
  cursor: pointer;
  border-right: 1px solid var(--grey-5);
  transition: background var(--transition);
  min-width: 120px;
}
.video-playlist-item:hover, .video-playlist-item.active {
  background: var(--bg-raised);
}
.vpi-title {
  font-size: 0.75rem;
  color: var(--grey-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.vpi-cat {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--mahogany-l);
  letter-spacing: 0.1em;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start;
}
.about-portrait {
  position: sticky; top: 5rem;
}
.about-portrait-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--grey-4);
  position: relative;
}
.about-portrait-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(10%) brightness(0.85);
}
.about-portrait-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--bg-raised) 0%, var(--mahogany-d) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 5rem;
  color: var(--mahogany-l); opacity: 0.4;
}
.about-portrait-name {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--grey-1);
}
.about-portrait-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem;
}
.about-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--grey-4);
  color: var(--grey-3);
}
.about-body { font-size: 1rem; line-height: 1.85; color: var(--grey-2); }
.about-body p { margin-bottom: 1.4rem; }

/* Timeline */
.timeline { margin-top: 3rem; }
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--grey-1);
  margin-bottom: 2rem;
}
.timeline-row {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--grey-5);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mahogany-l);
  padding-top: 0.2rem;
}
.timeline-events { font-size: 0.9rem; color: var(--grey-2); line-height: 1.6; }
.timeline-events li { margin-bottom: 0.2rem; }
.timeline-events li::before { content: '— '; color: var(--mahogany); }

/* Press quotes */
.press-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.press-card {
  background: var(--bg-card);
  border-left: 3px solid var(--mahogany);
  padding: 1.5rem;
}
.press-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--grey-1);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.press-source {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mahogany-l);
}

/* Featured in */
.featured-list {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}
.featured-item {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--grey-3);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--grey-5);
  transition: var(--transition);
}
.featured-item:hover { color: var(--grey-1); border-color: var(--grey-3); }

/* =========================================================
   EXPERIENCES
   ========================================================= */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-5);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.exp-card:hover {
  border-color: var(--mahogany);
  transform: translateY(-4px);
}
.exp-icon {
  font-size: 1.8rem; margin-bottom: 1.2rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-raised); color: var(--mahogany-l);
  border: 1px solid var(--mahogany-d);
  font-family: var(--font-mono);
}
.exp-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--grey-1);
  margin-bottom: 0.5rem;
}
.exp-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mahogany-l);
  margin-bottom: 1rem;
}
.exp-desc { font-size: 0.92rem; color: var(--grey-3); line-height: 1.6; margin-bottom: 1.5rem; }
.exp-meta { border-top: 1px solid var(--grey-5); padding-top: 1rem; margin-bottom: 1.2rem; }
.exp-meta-row {
  display: flex; justify-content: space-between;
  font-size: 0.82rem;
  padding: 0.25rem 0;
  color: var(--grey-3);
}
.exp-meta-key { color: var(--grey-4); font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; }
.exp-meta-val { color: var(--grey-2); }

/* =========================================================
   NEWS / BLOG
   ========================================================= */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-5);
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
}
.news-card:hover { border-color: var(--grey-4); transform: translateY(-4px); }
.news-img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--bg-raised);
}
.news-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(10%) brightness(0.8); transition: filter var(--transition); }
.news-card:hover .news-img img { filter: sepia(5%) brightness(0.95); }
.news-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--mahogany-d);
  background: linear-gradient(135deg, var(--bg-raised), var(--bg-card));
}
.news-body { padding: 1.5rem; }
.news-meta {
  display: flex; gap: 1rem; align-items: center;
  margin-bottom: 0.8rem;
}
.news-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mahogany-l);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--mahogany-d);
}
.news-date { font-family: var(--font-mono); font-size: 0.6rem; color: var(--grey-4); }
.news-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--grey-1);
  margin-bottom: 0.6rem;
  line-height: 1.3;
  transition: color var(--transition);
}
.news-card:hover .news-title { color: var(--gold-l); }
.news-excerpt { font-size: 0.88rem; color: var(--grey-3); line-height: 1.5; margin-bottom: 1rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--grey-1);
  margin-bottom: 1rem;
}
.contact-info-text { font-size: 0.95rem; color: var(--grey-3); line-height: 1.7; margin-bottom: 2rem; }
.contact-social-list { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-social-link {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-3);
  transition: color var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--grey-5);
}
.contact-social-link:hover { color: var(--mahogany-l); }
.contact-social-link svg { width: 16px; height: 16px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-3);
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-raised);
  border: 1px solid var(--grey-4);
  color: var(--grey-1);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--mahogany);
}
.form-select option { background: var(--bg-raised); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit { align-self: flex-start; }
.form-success {
  background: rgba(139,58,42,0.15);
  border: 1px solid var(--mahogany);
  color: var(--mahogany-l);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  display: none;
}
.form-success.visible { display: block; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--grey-5);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.page-hero-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mahogany-l);
  margin-bottom: 0.8rem;
  display: block;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--grey-1);
  line-height: 1.1;
}
.page-hero-desc {
  margin-top: 1rem;
  color: var(--grey-3);
  max-width: 500px;
  font-size: 1rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--grey-5);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
}
.footer-brand { margin-bottom: 2.5rem; }
.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--grey-1);
  margin-bottom: 0.3rem;
}
.footer-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mahogany-l);
  margin-bottom: 0.5rem;
}
.footer-loc { font-size: 0.85rem; color: var(--grey-4); }
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-4);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--grey-2); }
.footer-social {
  display: flex; gap: 1rem; margin-bottom: 2rem;
}
.footer-social a {
  color: var(--grey-4); transition: color var(--transition);
}
.footer-social a:hover { color: var(--mahogany-l); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--grey-5);
  padding-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--grey-4);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   HOME SECTION PREVIEW STRIPS
   ========================================================= */
.home-shows-strip { }
.home-strip-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--grey-5);
}
.home-strip-row:first-child { border-top: 1px solid var(--grey-5); }
.home-strip-date {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--mahogany-l);
  letter-spacing: 0.1em;
  min-width: 80px;
}
.home-strip-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--grey-1);
  flex: 1; padding: 0 1.5rem;
}
.home-strip-loc { font-size: 0.82rem; color: var(--grey-3); min-width: 120px; text-align: right; }

/* Inanga callout */
.inanga-callout {
  padding: 5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--grey-5);
  border-bottom: 1px solid var(--grey-5);
}
.inanga-quote-wrap { max-width: 700px; margin: 0 auto; text-align: center; }
.inanga-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--grey-1);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.inanga-quote-mark {
  font-size: 5rem; line-height: 0;
  color: var(--mahogany-d);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 1rem;
}
.inanga-attr {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mahogany-l);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image-col { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .show-row { grid-template-columns: 70px 1fr auto; }
  .show-location { display: none; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  .header-inner { padding: 0 1rem; }
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .hero-title { font-size: 2.8rem; }
  .show-row { grid-template-columns: 60px 1fr; gap: 1rem; }
  .show-row > *:last-child { display: none; }
  .video-modal-inner { width: 95vw; }
}

/* =========================================================
   ENHANCEMENTS — Polish pass
   ========================================================= */

/* Grain overlay for depth */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  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.03'/%3E%3C/svg%3E");
  opacity: 0.025;
}

/* Selection color */
::selection { background: var(--mahogany-d); color: var(--grey-1); }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--grey-5); }
::-webkit-scrollbar-thumb:hover { background: var(--mahogany-d); }

/* Focus ring */
:focus-visible { outline: 1px solid var(--mahogany); outline-offset: 3px; }

/* Nav toggle animation when open */
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* HOME — Hero image decorative lines */
.hero-img-frame::after {
  content: 'Inanga World Wide';
  position: absolute; bottom: 1.2rem; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(181,80,60,0.6);
  z-index: 3;
}

/* SHOW ROWS — hover slide effect */
.show-row {
  position: relative;
  cursor: default;
}
.show-row::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--mahogany);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.show-row:hover::before { transform: scaleY(1); }

/* ALBUM CARD — number overlay on cover */
.album-cover::after {
  content: attr(data-year);
  position: absolute; bottom: 0.8rem; right: 0.8rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(232,224,212,0.35);
  z-index: 1;
}

/* SECTION decorative number */
.section-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(139,58,42,0.07);
  line-height: 1;
  position: absolute;
  top: -1rem;
  right: 0;
  pointer-events: none;
  user-select: none;
}

/* INANGA callout — decorative Inanga shape */
.inanga-symbol {
  display: block;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.3;
  color: var(--mahogany);
}

/* Pulse dot for upcoming shows */
.pulse-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mahogany-l);
  margin-right: 0.5rem;
  animation: pulse-ring 2s ease infinite;
  vertical-align: middle;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(181,80,60,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(181,80,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(181,80,60,0); }
}

/* CONTACT form — input label float hint */
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--grey-4);
  font-style: italic;
}

/* Press card left border glow on hover */
.press-card {
  transition: border-color var(--transition), box-shadow var(--transition);
}
.press-card:hover {
  border-left-color: var(--mahogany-l);
  box-shadow: -4px 0 20px rgba(139,58,42,0.15);
}

/* Milestone marker */
.timeline-row {
  position: relative;
}
.timeline-row::before {
  content: '';
  position: absolute; left: 70px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mahogany-d);
  border: 1px solid var(--mahogany);
}

/* Video modal — keyboard hint */
.video-modal-close::after {
  content: 'ESC';
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  margin-left: 0.4rem;
  color: var(--grey-5);
}

/* Footer — mahogany rule above */
#site-footer::before {
  content: '';
  display: block;
  width: 48px; height: 2px;
  background: var(--mahogany);
  margin-bottom: 4rem;
}

/* Page hero — subtle bottom fade */
.page-hero {
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* Section alt — page hero after override */
.page-hero + .section-alt .page-hero::after {
  background: linear-gradient(to bottom, transparent, var(--bg-2));
}

/* Link underline style for inline prose */
.about-body a {
  color: var(--mahogany-l);
  border-bottom: 1px solid var(--mahogany-d);
  transition: color var(--transition), border-color var(--transition);
}
.about-body a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Experiences card hover border glow */
.exp-card:hover {
  box-shadow: 0 0 30px rgba(139,58,42,0.12);
}

/* News card — read more hover */
.news-card:hover .btn-ghost {
  color: var(--gold);
}

/* HOME — about teaser grid responsive */
@media (max-width: 800px) {
  .index-about-grid { grid-template-columns: 1fr !important; }
  .index-about-timeline { border-left: none !important; padding-left: 0 !important; margin-top: 2rem; }
}

/* ADMIN media — copy toast */
#copy-toast { border-radius: 2px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono, monospace); }
