/* ==========================================================================
   Benny Valentine — Outlaw Country Landing Page
   ========================================================================== */

:root {
  --color-charcoal: #18181A;
  --color-charcoal-soft: #222225;
  --color-amber: #D67425;
  --color-amber-light: #E8934F;
  --color-off-white: #EFECE6;
  --color-off-white-dim: rgba(239, 236, 230, 0.7);

  --font-heading: 'Bevan', 'Georgia', serif;
  --font-label: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-width: 1140px;
  --section-padding: clamp(4rem, 8vw, 7rem);

  --transition-fast: 0.2s ease;
  --transition-base: 0.4s ease;
}

/* -------------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-charcoal);
  color: var(--color-off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-amber);
  color: var(--color-charcoal);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  font-family: var(--font-label);
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   Grain overlay — subtle noise texture across the whole page
   ------------------------------------------------------------------------- */
body {
  position: relative;
}

.grain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-amber);
  color: var(--color-charcoal);
}
.btn-primary:hover { background: var(--color-amber-light); }

.btn-outline {
  background: transparent;
  color: var(--color-off-white);
  border-color: rgba(239, 236, 230, 0.35);
}
.btn-outline:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

/* -------------------------------------------------------------------------
   Header / Nav
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1rem 0;
  background: transparent;
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}
.site-header.scrolled {
  background: rgba(24, 24, 26, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.65rem 0;
  box-shadow: 0 1px 0 rgba(239,236,230,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  display: none;
}
@media (min-width: 560px) {
  .brand-name { display: block; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.site-nav a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--color-off-white-dim);
  transition: color var(--transition-fast);
}
.site-nav a:hover,
.site-nav a.active { color: var(--color-off-white); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--color-amber);
  transition: width var(--transition-fast);
}
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

.nav-cta {
  color: var(--color-amber) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 501;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-off-white);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  margin: 0 auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
}

@media (max-width: 859px) {
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--color-charcoal-soft);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    font-size: 1rem;
    box-shadow: -8px 0 24px rgba(0,0,0,0.4);
  }
  .site-nav.open { transform: translateX(0); }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(214, 116, 37, 0.10), transparent 60%),
    var(--color-charcoal);
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-embers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-emblem {
  width: clamp(90px, 12vw, 140px);
  height: auto;
  border-radius: 50%;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s ease both;
}
@media (max-width: 559px) {
  .hero-emblem {
    width: clamp(135px, 34vw, 170px);
  }
}

.hero-title {
  animation: fadeUp 0.9s ease 0.1s both;
  line-height: 0;
}
.hero-title img {
  width: clamp(280px, 88vw, 1150px);
  height: auto;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.4)) drop-shadow(0 0 60px rgba(214,116,37,0.14));
}

.hero-tagline {
  margin-top: 1.25rem;
  font-family: var(--font-label);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-amber);
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-actions {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.9s ease 0.3s both;
}

.scroll-cue {
  position: absolute;
  z-index: 1;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(239,236,230,0.35);
  border-radius: 14px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--color-amber);
  border-radius: 50%;
  animation: scrollCue 1.8s ease-in-out 4;
}

@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------------------
   Shared section styles
   ------------------------------------------------------------------------- */
section:not(.hero) {
  padding: var(--section-padding) 0;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-amber);
  margin-bottom: 0.75rem;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  text-transform: uppercase;
}
.section-title.center { text-align: center; }

.section-lead {
  margin-top: 1rem;
  color: var(--color-off-white-dim);
  font-size: 1.05rem;
  max-width: 46ch;
}
.section-lead.center { text-align: center; margin-left: auto; margin-right: auto; }

/* -------------------------------------------------------------------------
   Bio
   ------------------------------------------------------------------------- */
.bio {
  background: var(--color-charcoal-soft);
  border-top: 1px solid rgba(239,236,230,0.06);
  border-bottom: 1px solid rgba(239,236,230,0.06);
}

.bio-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.bio-media {
  justify-self: center;
}
.bio-media img {
  width: clamp(160px, 30vw, 260px);
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.bio-text {
  margin-top: 1.25rem;
  color: var(--color-off-white-dim);
  font-size: 1.05rem;
  max-width: 60ch;
}
.bio-text p + p {
  margin-top: 1.1rem;
}

@media (min-width: 760px) {
  .bio-inner {
    grid-template-columns: 260px 1fr;
    gap: 4rem;
  }
  .bio-media { justify-self: start; }
}

/* -------------------------------------------------------------------------
   Music
   ------------------------------------------------------------------------- */
.album-hero {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.album-hero-cover {
  width: clamp(220px, 42vw, 380px);
  height: auto;
  aspect-ratio: 640 / 650;
  border-radius: 16px;
  border: 1px solid rgba(239,236,230,0.16);
  box-shadow: 0 22px 50px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}

.album-hero-callout {
  padding: 1.25rem 2rem;
  border: 1px solid rgba(214,116,37,0.5);
  border-radius: 12px;
}

.album-hero-label {
  margin: 0;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-off-white-dim);
}

.album-hero-date {
  margin: 0.4rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-amber);
}

.album-hero-sub {
  margin: 0.4rem 0 0;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--color-off-white-dim);
}

.music-grid {
  margin-top: 3rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: safe center;
  gap: 1.75rem 1.25rem;
  max-width: 980px;
  margin-inline: auto;
  overflow-x: auto;
  padding: 0.5rem 1.25rem 1.25rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.music-grid::-webkit-scrollbar {
  height: 6px;
}
.music-grid::-webkit-scrollbar-track {
  background: transparent;
}
.music-grid::-webkit-scrollbar-thumb {
  background: rgba(214,116,37,0.4);
  border-radius: 999px;
}

.music-card {
  position: relative;
  flex: 0 0 220px;
  max-width: 220px;
  scroll-snap-align: start;
  aspect-ratio: 5 / 7;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(214,116,37,0.07), transparent 65%),
    var(--color-charcoal-soft);
  border: 1.5px solid rgba(239,236,230,0.16);
  border-radius: 16px;
  box-shadow: inset 0 0 0 5px rgba(24,24,26,0.6), inset 0 0 0 6px rgba(214,116,37,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
.music-card:hover {
  border-color: rgba(214,116,37,0.5);
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 5px rgba(24,24,26,0.6), inset 0 0 0 6px rgba(214,116,37,0.32);
}

.music-card--player {
  background-image:
    linear-gradient(to bottom, rgba(24,24,26,0.1) 0%, rgba(24,24,26,0.6) 48%, rgba(24,24,26,0.95) 100%),
    var(--cover-image);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.card-badge {
  position: absolute;
  top: -0.7rem;
  right: -0.6rem;
  z-index: 2;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: var(--color-amber);
  color: var(--color-charcoal);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(6deg);
  box-shadow: 0 0 0 0 rgba(214,116,37,0.55);
  animation: badge-pulse 2.4s ease-out infinite;
}
@keyframes badge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(214,116,37,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(214,116,37,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,116,37,0); }
}
@media (prefers-reduced-motion: reduce) {
  .card-badge { animation: none; }
}

.card-index {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--color-amber);
  line-height: 1;
}
.card-index--top {
  top: 0.85rem;
  left: 0.9rem;
}
.card-index--bottom {
  bottom: 0.85rem;
  right: 0.9rem;
  transform: rotate(180deg);
}
.card-index-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.card-emblem {
  width: clamp(56px, 18vw, 74px);
  height: clamp(56px, 18vw, 74px);
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(214,116,37,0.35));
  margin-bottom: 1rem;
}

.card-play {
  width: clamp(56px, 18vw, 70px);
  height: clamp(56px, 18vw, 70px);
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1.5px solid rgba(214,116,37,0.5);
  background: rgba(214,116,37,0.08);
  color: var(--color-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.card-play:hover {
  background: rgba(214,116,37,0.18);
  border-color: var(--color-amber);
  transform: scale(1.05);
}
.card-play svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.card-play .icon-play {
  margin-left: 2px;
}
.card-play.is-playing .icon-play {
  display: none;
}
.card-play:not(.is-playing) .icon-pause {
  display: none;
}

.card-audio {
  margin-top: 0.85rem;
  width: 100%;
}
.card-audio-bar {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(239,236,230,0.15);
  cursor: pointer;
  overflow: hidden;
}
.card-audio-fill {
  width: 0%;
  height: 100%;
  background: var(--color-amber);
  border-radius: 999px;
  transition: width 0.1s linear;
}
.card-audio-time {
  margin-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: var(--color-off-white-dim);
}

.card-body h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.card-body p {
  margin-top: 0.5rem;
  color: var(--color-off-white-dim);
  font-size: 0.85rem;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-label {
  margin: 0 0 0.35rem;
  color: var(--color-amber);
  font-size: 0.7rem;
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.wanted-poster {
  position: relative;
  max-width: 560px;
  margin: 3rem auto 0;
  transform: rotate(-1.2deg);
}

.wanted-poster-paper {
  position: relative;
  padding: 2.5rem 1.75rem 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(43,32,22,0.08), transparent 60%),
    #e8ddc2;
  border: 2px solid rgba(43,32,22,0.7);
  outline: 1px solid rgba(43,32,22,0.25);
  outline-offset: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  text-align: center;
  clip-path: polygon(
    0% 0%,
    93% 0%, 95% 3.5%, 98.5% 3%, 97% 6%, 100% 9%,
    100% 100%,
    7% 100%, 5% 96.5%, 1.5% 97%, 3% 94%, 0% 91%
  );
}

.wanted-poster-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 45% 35% at 6% 4%, rgba(50,26,8,0.6), transparent 70%),
    radial-gradient(ellipse 40% 32% at 96% 6%, rgba(50,26,8,0.55), transparent 70%),
    radial-gradient(ellipse 42% 34% at 3% 97%, rgba(50,26,8,0.6), transparent 70%),
    radial-gradient(ellipse 48% 36% at 98% 95%, rgba(50,26,8,0.55), transparent 70%),
    radial-gradient(ellipse 70% 25% at 50% 102%, rgba(50,26,8,0.35), transparent 75%),
    radial-gradient(circle at 68% 32%, rgba(80,50,20,0.15), transparent 22%),
    radial-gradient(circle at 22% 68%, rgba(80,50,20,0.12), transparent 18%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.wanted-poster-paper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 20% 16% at -2% -2%, #0a0603 0%, #1c0f05 22%, rgba(120,60,10,0.65) 45%, rgba(214,116,37,0.25) 62%, transparent 78%),
    radial-gradient(ellipse 16% 20% at 101% -1%, #0a0603 0%, #1c0f05 20%, rgba(120,60,10,0.6) 42%, rgba(214,116,37,0.22) 60%, transparent 76%),
    radial-gradient(ellipse 18% 22% at -1% 101%, #0a0603 0%, #1c0f05 22%, rgba(120,60,10,0.65) 44%, rgba(214,116,37,0.25) 62%, transparent 78%),
    radial-gradient(ellipse 22% 18% at 102% 102%, #0a0603 0%, #1c0f05 24%, rgba(120,60,10,0.65) 46%, rgba(214,116,37,0.25) 64%, transparent 80%);
  background-repeat: no-repeat;
}

.wanted-poster-pin {
  position: absolute;
  top: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e8934f, #a8460f 75%);
  box-shadow: 0 3px 4px rgba(0,0,0,0.5);
}
.wanted-poster-pin--left { left: 14%; }
.wanted-poster-pin--right { right: 14%; }

.wanted-poster-eyebrow {
  font-family: 'Rye', var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.4rem, 9vw, 3.4rem);
  letter-spacing: 0.06em;
  color: #2b2016;
  text-transform: uppercase;
  line-height: 1;
}

.wanted-poster-emblem {
  width: clamp(72px, 20vw, 96px);
  height: clamp(72px, 20vw, 96px);
  margin: 0.75rem auto 0;
  border-radius: 50%;
  border: 2px solid rgba(43,32,22,0.7);
  display: block;
}

.wanted-poster-tag {
  margin-top: 0.4rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(43,32,22,0.6);
}

.wanted-tracklist {
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px dashed rgba(43,32,22,0.35);
  list-style: none;
  display: grid;
  gap: 0.6rem 1.5rem;
  text-align: left;
}
@media (min-width: 520px) {
  .wanted-tracklist { grid-template-columns: 1fr 1fr; }
}
.wanted-tracklist li {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(43,32,22,0.75);
  border-bottom: 1px dotted rgba(43,32,22,0.25);
  padding-bottom: 0.4rem;
}
.wanted-tracklist li.is-available {
  color: #a8460f;
  font-weight: 700;
}
.wanted-tracklist li.is-available a {
  color: inherit;
  text-decoration: none;
}
.wanted-tracklist li.is-available a:hover {
  text-decoration: underline;
}
.wanted-tracklist li.is-available::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.5em;
  border-top: 0.32em solid transparent;
  border-bottom: 0.32em solid transparent;
  border-left: 0.48em solid currentColor;
  vertical-align: middle;
}

.wanted-poster-footer {
  margin-top: 1.75rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43,32,22,0.55);
}

.music-cta {
  margin-top: 3.5rem;
  text-align: center;
}
.music-cta p {
  margin-bottom: 1.25rem;
  color: var(--color-off-white-dim);
}

/* -------------------------------------------------------------------------
   Wallpaper
   ------------------------------------------------------------------------- */
.wallpaper-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.wallpaper-preview {
  width: clamp(160px, 40vw, 220px);
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(239,236,230,0.16);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.wallpaper-content .section-lead {
  margin-top: 0.75rem;
  max-width: 46ch;
}

.wallpaper-content .btn {
  margin-top: 1.5rem;
}

@media (min-width: 760px) {
  .wallpaper-inner {
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    text-align: left;
    justify-items: start;
  }
}

/* -------------------------------------------------------------------------
   Shows
   ------------------------------------------------------------------------- */
.shows {
  background: var(--color-charcoal-soft);
  border-top: 1px solid rgba(239,236,230,0.06);
  border-bottom: 1px solid rgba(239,236,230,0.06);
}
.shows-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 640px;
}

/* -------------------------------------------------------------------------
   Newsletter
   ------------------------------------------------------------------------- */
.newsletter-inner {
  max-width: 560px;
  text-align: center;
}

.newsletter-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 540px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input[type="email"] {
  flex: 1;
  background: var(--color-charcoal-soft);
  border: 1.5px solid rgba(239,236,230,0.2);
  color: var(--color-off-white);
  padding: 0.95rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 999px;
  transition: border-color var(--transition-fast);
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(239,236,230,0.4);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-amber);
}

.newsletter-status {
  margin-top: 1rem;
  min-height: 1.2em;
  font-family: var(--font-label);
  font-size: 0.9rem;
  color: var(--color-amber);
}

.newsletter-note {
  margin-top: 1.5rem;
  color: var(--color-off-white-dim);
  font-size: 0.9rem;
}
.newsletter-note a {
  color: var(--color-amber);
  border-bottom: 1px solid rgba(214,116,37,0.4);
}
.newsletter-note a:hover { border-color: var(--color-amber); }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(239,236,230,0.08);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  opacity: 0.9;
}

.footer-socials {
  display: flex;
  gap: 1.1rem;
}
.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(239,236,230,0.2);
  border-radius: 50%;
  color: var(--color-off-white-dim);
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
  transform: translateY(-2px);
}

.footer-copy {
  color: var(--color-off-white-dim);
  font-size: 0.85rem;
}
.footer-email {
  font-family: var(--font-label);
  font-size: 0.85rem;
  color: var(--color-amber);
}
.footer-email:hover { text-decoration: underline; }

/* -------------------------------------------------------------------------
   Scroll reveal
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-emblem, .hero-title, .hero-tagline, .hero-actions { animation: none; }
  .scroll-cue span { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
