/* ── Griffon (self-hosted display font) ── */
@font-face {
  font-family: 'Griffon';
  src: url('../fonts/Griffon-ExtraLight.otf') format('opentype');
  font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Griffon';
  src: url('../fonts/Griffon-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Griffon';
  src: url('../fonts/Griffon-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Griffon';
  src: url('../fonts/Griffon-Semibold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Griffon';
  src: url('../fonts/Griffon-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #C9A84C; --gold-light: #E8C96A; --gold-pale: #F5E6B8;
  --gold-dark: #8B6914; --black: #0A0800; --black-mid: #1A1500;
  --black-soft: #2A2100; --cream: #F0E6CC; --text-muted: #9A8A5A;
}
html { scroll-behavior: smooth; }
body {
  background: var(--black); color: var(--cream);
  font-family: 'Crimson Pro', Georgia, serif; font-size: 18px;
  line-height: 1.7; overflow-x: hidden;
}
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 3rem;
  background: linear-gradient(to bottom, rgba(10,8,0,0.97) 0%, rgba(10,8,0,0.0) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(10,8,0,0.97); }
.nav-logo {
  font-family: 'Griffon', 'Playfair Display', serif; font-size: 1rem;
  letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase;
  text-decoration: none; flex-shrink: 0;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none; z-index: 201;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(10,8,0,0.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'DM Mono', monospace; font-size: 0.9rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--gold); }

/* ── HERO ── */
#hero { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: flex-end; padding: 8rem 3rem 5rem 5rem; position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase;
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
h1 { font-family: 'Griffon', 'Playfair Display', serif; font-size: clamp(3.5rem, 7vw, 7rem); line-height: 0.95; font-weight: 900; color: var(--cream); margin-bottom: 0.15em; }
h1 em { font-style: italic; color: var(--gold); display: block; font-size: 0.75em; }
.hero-sub { font-family: 'Crimson Pro', serif; font-style: italic; font-size: 1.2rem; color: var(--text-muted); margin-top: 1.5rem; margin-bottom: 3rem; max-width: 380px; line-height: 1.5; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-gold {
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 1rem 1.5rem; background: var(--gold);
  color: var(--black); border: none; cursor: pointer; text-decoration: none;
  transition: background 0.3s, transform 0.2s; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 1rem 2.5rem; background: transparent;
  color: var(--gold); border: 1px solid var(--gold); cursor: pointer;
  text-decoration: none; transition: all 0.3s; display: inline-block;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }
.hero-right { position: relative; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; filter: sepia(20%) contrast(1.05); }
.hero-right::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--black) 0%, rgba(10,8,0,0.4) 25%, transparent 60%); z-index: 1; }
.hero-right::after  { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(to top, var(--black) 0%, transparent 100%); z-index: 1; }
.photo-credit { position: absolute; bottom: 1.5rem; right: 1.5rem; font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(201,168,76,0.4); z-index: 2; text-transform: uppercase; }
.hero-stripe { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--gold), transparent); z-index: 3; }

/* ── ABOUT ── */
#about { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; padding: 8rem 5rem; background: var(--black-mid); border-top: 1px solid rgba(201,168,76,0.1); border-bottom: 1px solid rgba(201,168,76,0.1); }
.about-text h2 { font-family: 'Griffon', 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.1; margin-bottom: 2rem; }
.about-text h2 em { font-style: italic; color: var(--gold); }
.section-tag { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.section-tag::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.about-text .lead { font-style: italic; font-size: 1.2rem; color: var(--gold-pale); margin-bottom: 1.5rem; line-height: 1.6; }
.about-text p { color: rgba(240,230,204,0.75); margin-bottom: 1.2rem; }
.about-visual { display: flex; flex-direction: column; justify-content: center; gap: 2rem; }
.quote-block { padding: 1.75rem; border-left: 2px solid var(--gold-dark); background: rgba(201,168,76,0.03); }
.quote-block blockquote { font-style: italic; font-size: 1.05rem; color: var(--cream); margin-bottom: 0.75rem; line-height: 1.5; }
.quote-block cite { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; }

/* ── SHOWS ── */
#shows { padding: 8rem 5rem; }
#shows h2, #music h2, #contact h2, #gallery h2 { font-family: 'Griffon', 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.1; margin-bottom: 3rem; }
#shows h2 em, #music h2 em, #contact h2 em, #gallery h2 em { font-style: italic; color: var(--gold); }
.shows-grid { display: flex; flex-direction: column; border-top: 1px solid rgba(201,168,76,0.15); }
.show-row { display: grid; grid-template-columns: 80px 1fr auto auto; align-items: center; gap: 2rem; padding: 1.8rem 0; border-bottom: 1px solid rgba(201,168,76,0.1); transition: background 0.2s; }
.show-row:hover { background: rgba(201,168,76,0.03); }
.show-date { text-align: center; }
.show-date .day   { display: block; font-family: 'Griffon', 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.show-date .month { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--text-muted); text-transform: uppercase; }
.show-date .year  { display: block; font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--gold-dark); margin-top: 0.15rem; }
.show-venue    { font-size: 1.05rem; color: var(--cream); margin-bottom: 0.2rem; }
.show-location { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; }
.show-band     { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 0.3rem; }
.show-tag      { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.8rem; white-space: nowrap; }
.show-tag.sold-out  { color: var(--text-muted); border: 1px solid rgba(154,138,90,0.3); }
.show-tag.few-left  { color: var(--gold); border: 1px solid rgba(201,168,76,0.4); }
.show-tag.available { color: #7fcf8e; border: 1px solid rgba(127,207,142,0.4); }
.show-ticket-btn { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.6rem 1.4rem; border: 1px solid var(--gold); color: var(--gold); text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.show-ticket-btn:hover  { background: var(--gold); color: var(--black); }
.show-ticket-btn.disabled { opacity: 0.3; pointer-events: none; }

/* ── MUSIC ── */
#music { padding: 8rem 5rem; background: var(--black-mid); border-top: 1px solid rgba(201,168,76,0.1); }
.albums-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.album-card { position: relative; cursor: pointer; }
.album-cover { aspect-ratio: 1; background: var(--black-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.album-card:hover .album-cover img { transform: scale(1.05); }
.album-cover-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 2rem; text-align: center; color: var(--text-muted); }
.album-icon { font-size: 3rem; color: var(--gold-dark); }
.album-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,0,0.95) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.3s; }
.album-card:hover .album-overlay { opacity: 1; }
.album-overlay .album-title { font-family: 'Griffon', 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); }
.album-overlay .album-year  { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-top: 0.3rem; }
.album-name-bar { padding: 1rem 0; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(201,168,76,0.15); }
.album-name-bar .title { font-size: 1rem; color: var(--cream); }
.album-name-bar .year  { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--text-muted); }
.album-latest-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--black); font-family: 'DM Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.6rem; z-index: 2; }
a.album-card { display: block; text-decoration: none; color: inherit; }

/* ── GALLERY ── */
#gallery { padding: 8rem 5rem; background: var(--black); border-top: 1px solid rgba(201,168,76,0.1); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.gallery-grid .wide { grid-column: span 2; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--black-soft); cursor: pointer; }
.gallery-item.wide { aspect-ratio: 16/7; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(15%) contrast(1.05); transition: transform 0.5s, filter 0.4s; }
.gallery-item:hover img { transform: scale(1.04); filter: sepia(0%) contrast(1.1); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,0,0.7) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1.25rem; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-caption { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--gold-pale); text-transform: uppercase; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(10,8,0,0.97); z-index: 1000; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; padding: 1rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 80vh; object-fit: contain; border: 1px solid rgba(201,168,76,0.15); }
.lightbox-credit { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--text-muted); text-transform: uppercase; text-align: center; }
.lightbox-close { position: fixed; top: 1.5rem; right: 1.5rem; font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; color: var(--text-muted); cursor: pointer; text-transform: uppercase; background: none; border: 1px solid rgba(154,138,90,0.3); padding: 0.4rem 0.9rem; }
.lightbox-close:hover { color: var(--gold); border-color: var(--gold); }

/* ── CONTACT ── */
#contact { padding: 8rem 5rem; text-align: center; border-top: 1px solid rgba(201,168,76,0.1); }
#contact .section-tag { justify-content: center; }
#contact .section-tag::before { display: none; }
#contact .sub { color: var(--text-muted); font-style: italic; margin-bottom: 4rem; font-size: 1.1rem; }
.contact-cards { display: flex; justify-content: center; gap: 2rem; margin-bottom: 4rem; flex-wrap: wrap; }
.contact-card { padding: 2rem 2.5rem; border: 1px solid rgba(201,168,76,0.2); background: rgba(201,168,76,0.03); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; min-width: 200px; }
.contact-card .icon  { font-size: 1.5rem; color: var(--gold); }
.contact-card .label { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.contact-card .value a { color: var(--cream); text-decoration: none; font-size: 0.95rem; }
.contact-card .value a:hover { color: var(--gold); }
.social-row { display: flex; justify-content: center; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.social-link { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.social-link:hover { color: var(--gold); }

/* ── SVG LOGO ── */
.site-logo-svg { display: inline-block; vertical-align: middle; }
.nav-logo .site-logo-svg { width: 28px; height: 33px; margin-right: 0.6rem; }
.nav-logo .site-logo-svg path.logo-shape  { fill: var(--gold) !important; }
.nav-logo .site-logo-svg path.logo-detail { fill: var(--black) !important; }
.nav-logo:hover .site-logo-svg path.logo-shape { fill: var(--gold-light) !important; }
.footer-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-decoration: none; }
.footer-logo-wrap .site-logo-svg { width: 64px; height: 75px; }
.footer-logo-wrap .site-logo-svg path.logo-shape  { fill: url(#gold-shimmer) !important; }
.footer-logo-wrap .site-logo-svg path.logo-detail { fill: var(--black-mid) !important; }
.footer-logo-wrap:hover .site-logo-svg path.logo-shape { fill: url(#gold-shimmer) !important; }
.footer-name { font-family: 'Griffon', 'Playfair Display', serif; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
.drawer-logo { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.drawer-logo .site-logo-svg { width: 48px; height: 56px; }
.drawer-logo .site-logo-svg path.logo-shape  { fill: var(--gold-dark) !important; }
.drawer-logo .site-logo-svg path.logo-detail { fill: var(--black) !important; }

/* ── FOOTER ── */
footer { padding: 3rem 5rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; border-top: 1px solid rgba(201,168,76,0.1); text-align: center; }
footer .copy { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--text-muted); }

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
  nav { padding: 1.1rem 2rem; }
  .hero-left { padding: 8rem 2.5rem 5rem 3rem; }
  #about { gap: 4rem; padding: 7rem 3rem; }
  #shows, #music, #contact, #gallery { padding: 6rem 3rem; }
  .albums-grid { gap: 1.25rem; }
  footer { padding: 2rem 3rem; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; background: rgba(10,8,0,0.97); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  #hero { grid-template-columns: 1fr; min-height: 100svh; position: relative; }
  .hero-right { position: absolute; inset: 0; z-index: 0; display: block !important; }
  .hero-right::before { background: linear-gradient(to bottom, rgba(10,8,0,0.55) 0%, rgba(10,8,0,0.3) 40%, rgba(10,8,0,0.75) 100%); }
  .hero-right::after { height: 50%; }
  .hero-left { position: relative; z-index: 2; padding: 7rem 1.5rem 3.5rem; justify-content: flex-end; min-height: 100svh; }
  h1 { font-size: clamp(3rem, 11vw, 5rem); }
  .hero-sub { font-size: 1.1rem; max-width: 100%; margin-bottom: 2.5rem; }
  .hero-ctas { flex-direction: column; gap: 0.75rem; }
  .btn-gold, .btn-outline { text-align: center; padding: 0.9rem 2rem; }
  .photo-credit { font-size: 0.55rem; bottom: 1rem; right: 1rem; }

  #about { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }

  #shows { padding: 5rem 1.5rem; }
  .show-row { grid-template-columns: 64px 1fr auto; gap: 1rem; padding: 1.4rem 0; }
  .show-tag { display: none; }
  .show-ticket-btn { padding: 0.5rem 1rem; font-size: 0.6rem; }
  .show-ticket-btn.disabled { display: none; }

  #music { padding: 5rem 1.5rem; }
  .albums-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  #gallery { padding: 5rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .gallery-grid .wide { grid-column: span 2; }
  .gallery-item.wide { aspect-ratio: 16/9; }

  #contact { padding: 5rem 1.5rem; }
  .contact-cards { flex-direction: column; align-items: stretch; gap: 1rem; }
  .contact-card { min-width: unset; padding: 1.5rem; flex-direction: row; justify-content: flex-start; gap: 1.25rem; text-align: left; }
  .contact-card .icon { font-size: 1.2rem; flex-shrink: 0; }
  .social-row { gap: 1.5rem; }

  footer { grid-template-columns: 1fr; justify-items: center; gap: 1rem; padding: 2.5rem 1.5rem; text-align: center; }
  footer .copy { text-align: center; }
}

/* ── PHONE (≤ 480px) ── */
@media (max-width: 480px) {
  .nav-logo { font-size: 0.8rem; letter-spacing: 0.12em; }
  h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-sub { font-size: 1rem; }

  #about { padding: 4rem 1.25rem; gap: 2.5rem; }
  .quote-block { padding: 1.25rem; }

  #shows { padding: 4rem 1.25rem; }
  .show-row { grid-template-columns: 52px 1fr auto; gap: 0.75rem; padding: 1.1rem 0; }
  .show-date .day { font-size: 1.6rem; }
  .show-venue { font-size: 0.95rem; }
  .show-ticket-btn { padding: 0.45rem 0.8rem; }

  #music { padding: 4rem 1.25rem; }
  .albums-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }

  #gallery { padding: 4rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .wide { grid-column: span 1; }
  .gallery-item.wide { aspect-ratio: 4/3; }

  #contact { padding: 4rem 1.25rem; }
  .contact-card { padding: 1.25rem; }
  .social-row { gap: 1.25rem; }
}

/* ── Animated gold gradient for the italic accent words ── */
h1 em,
.about-text h2 em,
#shows h2 em, #music h2 em, #contact h2 em, #gallery h2 em,
.footer-name,
footer .copy {
  background-image: repeating-linear-gradient(to right,
    #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%,
    #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%,
    #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  will-change: background-position;
  animation: animate-gradient 12s linear infinite;
}
@keyframes animate-gradient {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}
/* Respect users who prefer reduced motion — keep the gradient, drop the animation */
@media (prefers-reduced-motion: reduce) {
  h1 em,
  .about-text h2 em,
  #shows h2 em, #music h2 em, #contact h2 em, #gallery h2 em,
  .footer-name,
  footer .copy {
    animation: none;
  }
}
