/*
Theme Name: Citizen Keith
Theme URI: https://citizenkeith.com
Author: Keith Hanlon
Description: Custom theme for citizenkeith.com — musician, engineer, producer.
Version: 1.0
*/

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:       #0c0a08;
  --paper:     #f0e8d8;
  --amber:     #c8943a;
  --amber-dim: #8a6020;
  --rust:      #8b3a1c;
  --smoke:     #1e1a14;
  --fog:       #2e2820;
  --ghost:     rgba(200,148,58,0.12);
  --line:      rgba(200,148,58,0.22);

  --serif:   'Cormorant Garamond', Georgia, serif;
  --display: 'Cormorant', Georgia, serif;
  --mono:    'Overpass Mono', 'Courier New', monospace;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--amber-dim); }

/* ── NAV ────────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: linear-gradient(to bottom, rgba(12,10,8,0.96) 60%, transparent);
  backdrop-filter: blur(2px);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--amber); }

/* WordPress menu reset */
#site-nav .nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0; padding: 0;
}
#site-nav .nav-menu li { margin: 0; }
#site-nav .nav-menu a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.6);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
#site-nav .nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
#site-nav .nav-menu a:hover { color: var(--paper); }
#site-nav .nav-menu a:hover::after { transform: scaleX(1); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 4rem 6rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-name {
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}
.hero-name span {
  display: block;
  color: var(--amber);
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(240,232,216,0.65);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  border: 1px solid var(--amber);
}
.btn-primary:hover {
  background: transparent;
  color: var(--amber);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(240,232,216,0.3);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ── TAPE REEL ILLUSTRATION ─────────────────────────────── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reel-container {
  position: relative;
  width: 360px;
  height: 360px;
  opacity: 0;
  animation: fadeIn 1.2s 0.7s forwards;
}

.reel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--line);
  position: relative;
  animation: spin 18s linear infinite;
}

.reel-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--fog);
  border: 2px solid var(--amber-dim);
  box-shadow: 0 0 40px rgba(200,148,58,0.15);
}
.reel-hub::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.7;
}

.spoke {
  position: absolute;
  top: 50%; left: 50%;
  width: 45%;
  height: 1px;
  background: var(--line);
  transform-origin: left center;
}
.spoke:nth-child(1) { transform: rotate(0deg); }
.spoke:nth-child(2) { transform: rotate(60deg); }
.spoke:nth-child(3) { transform: rotate(120deg); }
.spoke:nth-child(4) { transform: rotate(180deg); }
.spoke:nth-child(5) { transform: rotate(240deg); }
.spoke:nth-child(6) { transform: rotate(300deg); }

.tape-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(200,148,58,0.08);
}

.reel-label {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-dim);
  white-space: nowrap;
}

.vu-meter {
  position: absolute;
  bottom: 6rem;
  right: 4rem;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 60px;
}
.vu-bar {
  width: 4px;
  background: var(--amber);
  border-radius: 2px 2px 0 0;
  opacity: 0.4;
  animation: vu 1.5s ease-in-out infinite alternate;
}
.vu-bar:nth-child(1)  { height: 20%; animation-delay: 0s; }
.vu-bar:nth-child(2)  { height: 55%; animation-delay: 0.1s; }
.vu-bar:nth-child(3)  { height: 80%; animation-delay: 0.2s; }
.vu-bar:nth-child(4)  { height: 65%; animation-delay: 0.05s; }
.vu-bar:nth-child(5)  { height: 90%; animation-delay: 0.3s; }
.vu-bar:nth-child(6)  { height: 45%; animation-delay: 0.15s; }
.vu-bar:nth-child(7)  { height: 70%; animation-delay: 0.25s; }
.vu-bar:nth-child(8)  { height: 35%; animation-delay: 0.1s; }
.vu-bar:nth-child(9)  { height: 85%; animation-delay: 0.35s; }
.vu-bar:nth-child(10) { height: 50%; animation-delay: 0.2s; }
.vu-bar:nth-child(11) { height: 15%; animation-delay: 0.4s; }
.vu-bar:nth-child(12) { height: 60%; animation-delay: 0.05s; }

/* ── SECTION DIVIDER ────────────────────────────────────── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber-dim), transparent);
  opacity: 0.4;
}

/* ── SECTION WRAPPER ────────────────────────────────────── */
.site-section {
  padding: 7rem 5rem;
  position: relative;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--paper);
  line-height: 1;
}

.section-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin-left: 1rem;
}

/* ── SELECTED PRODUCTIONS ───────────────────────────────── */
#work { background: var(--ink); }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.prod-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--fog);
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.prod-card-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) sepia(20%);
  transition: transform 0.5s ease, filter 0.4s ease;
  display: block;
}

.prod-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,8,0.95) 30%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.prod-card:hover .prod-card-overlay { opacity: 1; }
.prod-card:hover .prod-card-art {
  transform: scale(1.04);
  filter: grayscale(10%) sepia(10%);
}

.prod-card-static {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(12,10,8,0.88) 40%, transparent 80%);
}

.prod-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--amber-dim);
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--fog) 0%, var(--smoke) 100%);
  border: 1px solid var(--line);
}

.prod-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 0.25rem;
}
.prod-artist {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.prod-meta {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(240,232,216,0.4);
  margin-top: 0.3rem;
}

/* ── DISCOGRAPHY ────────────────────────────────────────── */
#discography { background: var(--smoke); }

.disco-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--line);
  background: transparent;
  color: rgba(240,232,216,0.5);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--amber);
  color: var(--amber);
  background: var(--ghost);
}

.disco-list { display: flex; flex-direction: column; }

.disco-year-group { margin-bottom: 1rem; }

.disco-year {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(200,148,58,0.12);
  line-height: 1;
  margin-bottom: -0.5rem;
  margin-left: -0.1rem;
  user-select: none;
}

.disco-entries { border-top: 1px solid var(--line); }

.disco-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(200,148,58,0.06);
  gap: 2rem;
  transition: background 0.15s, padding 0.15s;
}
.disco-entry:hover {
  background: var(--ghost);
  padding-left: 0.5rem;
}

.disco-credit {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--paper);
}
.disco-credit em {
  color: rgba(240,232,216,0.65);
}
.disco-label-text {
  font-size: 0.8rem;
  color: rgba(240,232,216,0.4);
  font-style: normal;
  display: block;
  margin-top: 0.1rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.disco-role {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dim);
  text-align: right;
  white-space: nowrap;
}

.disco-show-more {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.disco-discogs-link {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--amber-dim);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.disco-discogs-link:hover {
  color: var(--amber);
  border-color: var(--amber);
}

.disco-empty {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(240,232,216,0.3);
  text-align: center;
  padding: 3rem 0;
  letter-spacing: 0.1em;
}

/* ── MUSIC ──────────────────────────────────────────────── */
#music { background: var(--ink); }

.music-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.music-intro {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,232,216,0.75);
  margin-bottom: 2rem;
}
.music-intro strong { color: var(--paper); font-weight: 400; }

.music-aliases {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.alias-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dim);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  display: inline-block;
  width: fit-content;
}

.music-content-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(240,232,216,0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.music-content-text p { margin-bottom: 1em; }

.bandcamp-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.bandcamp-note {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: rgba(240,232,216,0.35);
  text-transform: uppercase;
}

.album-shelf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.album-item {
  background: var(--fog);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.album-item-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  filter: sepia(15%) saturate(80%);
  display: block;
}
.album-item:hover .album-item-art { transform: scale(1.06); }

.album-item-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(12,10,8,0.92) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.3s;
}
.album-item:hover .album-item-info { transform: translateY(0); }

.album-item-title {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--paper);
}
.album-item-year {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-top: 0.2rem;
  text-transform: uppercase;
}

.album-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--amber-dim);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--fog) 0%, var(--smoke) 100%);
  border: 1px solid var(--line);
}

/* ── ABOUT ──────────────────────────────────────────────── */
#about { background: var(--fog); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 7rem;
}

.about-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--smoke);
  border: 1px solid var(--line);
  position: relative;
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(10%) saturate(85%);
}
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--amber-dim);
  letter-spacing: 0.12em;
  position: relative;
}
.about-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(200,148,58,0.03) 20px,
    rgba(200,148,58,0.03) 21px
  );
}

.about-stats {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200,148,58,0.1);
  gap: 1rem;
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.4);
  flex-shrink: 0;
}
.stat-value {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--amber);
  text-align: right;
}

.about-body {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240,232,216,0.8);
}
.about-body p { margin-bottom: 1.75rem; }
.about-body p:first-child::first-letter {
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 700;
  font-style: italic;
  float: left;
  line-height: 0.75;
  margin-right: 0.1em;
  color: var(--amber);
}
.about-body strong { color: var(--paper); font-weight: 400; }
.about-body a { color: var(--amber); text-decoration: none; }
.about-body a:hover { text-decoration: underline; }

.studio-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.badge {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line);
  color: rgba(240,232,216,0.5);
}

/* ── CONTACT ────────────────────────────────────────────── */
#contact {
  background: var(--ink);
  text-align: center;
  padding: 8rem 5rem;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: 'CONTACT';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(200,148,58,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.contact-headline {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.contact-sub {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(240,232,216,0.55);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.contact-sub p { margin-bottom: 0.5em; }

.services-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.service-chip {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dim);
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
}

.contact-email {
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--amber);
  text-decoration: none;
  display: block;
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--paper); }

.contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────────────────── */
#site-footer {
  background: var(--smoke);
  padding: 2.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-name {
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(240,232,216,0.4);
}
#site-footer .nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
#site-footer .nav-menu a {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
#site-footer .nav-menu a:hover { color: var(--amber); }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes vu {
  from { transform: scaleY(0.3); opacity: 0.25; }
  to   { transform: scaleY(1);   opacity: 0.55; }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr 1.5fr; gap: 4rem; }
}
@media (max-width: 900px) {
  #site-nav { padding: 1.2rem 2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 2rem 4rem; }
  .hero-right { display: none; }
  .site-section { padding: 5rem 2rem; }
  #contact { padding: 6rem 2rem; }
  .music-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-sidebar { position: static; }
  #site-footer { padding: 2rem; flex-direction: column; text-align: center; }
  #site-nav .nav-menu { gap: 1.5rem; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .album-shelf { grid-template-columns: 1fr 1fr; }
  #site-nav .nav-menu { display: none; } /* mobile nav — add hamburger if desired */
}
