/* No external fonts — using system Helvetica Neue throughout */

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

:root {
  --bg:        #0c0909;
  --bg-alt:    #151010;
  --bg-card:   #1c1515;
  --fg:        #e4ddd2;
  --muted:     #7a7068;
  --border:    #2c2020;
  --accent:    #8b2020;
  --accent-dk: #6e1818;
}

/* ── Base ────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* Film grain texture overlay — sits above everything, passes all clicks through */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a { color: var(--accent); }

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

/* ── Navigation ──────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  border-bottom: 3px solid var(--accent);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem;
  height: 68px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.nav-left  { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

nav > a {
  padding: 0 2.5rem;
}

.nav-links a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Hero (Home) ─────────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

/* Logo band — hero background photo with dark overlay so logo stays readable */
.hero-logo-band {
  width: 100%;
  min-height: 110vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url(hero-bg.jpg) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-logo-band.bg-ready {
  opacity: 1;
}

.hero-nav {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.hero-nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.15s;
  animation: float 3s ease-in-out infinite;
}

.hero-nav a:nth-child(2) { animation-delay: 0.4s; }
.hero-nav a:nth-child(3) { animation-delay: 0.8s; }

/* ── Hero email signup ── */
.signup-wrap {
  position: relative;
  display: block;
  width: max-content;
  margin: 0.5rem auto 0;
}

.signup-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--fg);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.signup-wrap.submitted .signup-fill {
  width: 100%;
}


.signup-wrap.submitted form {
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.signup-wrap.done .signup-fill {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-email-signup {
  display: flex;
  gap: 0;
}

.hero-email-signup input[type="email"] {
  background: transparent;
  border: 1px solid var(--fg);
  border-right: none;
  color: var(--fg);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  width: 220px;
  outline: none;
  transition: border-color 0.15s;
}

.hero-email-signup input[type="email"]::placeholder {
  color: var(--muted);
  letter-spacing: 1.5px;
}

.hero-email-signup input[type="email"]:focus {
  border-color: var(--fg);
}

.hero-email-signup button {
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.hero-email-signup button:hover {
  background: transparent;
  color: var(--fg);
}

.hero-nav a:hover {
  color: var(--accent);
}

.signup-thankyou {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
  pointer-events: none;
}

.signup-wrap.done .signup-thankyou {
  opacity: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* brightness(0) → black letters; invert(1) → white; sepia+brightness tints to warm off-white */
.logo-hero-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16rem;
}

.logo-hero-wrap img.logo-hero {
  margin-bottom: 0;
}

@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

img.logo-hero {
  display: block;
  height: clamp(6rem, 18vw, 18rem);
  width: auto;
  max-width: 90vw;
  filter: brightness(0) invert(1) sepia(0.18) brightness(0.9);
}

/* Dark lower band — tagline + CTAs */
.hero-lower {
  width: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.75rem 2rem 3.25rem;
  gap: 0;
  background: var(--bg);
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.hero .tagline {
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Nav brand logo ──────────────────────────────────────────────── */
img.logo-nav {
  display: block;
  height: 44px;
  width: auto;
  filter:
    drop-shadow(0 0 2px rgba(112, 124, 68, 0.15))
    drop-shadow(0 0 12px rgba(112, 124, 68, 0.65))
    drop-shadow(0 0 28px rgba(112, 124, 68, 0.5));
}

/* ── Page Header (inner pages) ───────────────────────────────────── */
.page-header {
  text-align: center;
  padding: 4rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: center / cover no-repeat;
  filter: blur(12px);
  transform: scale(1.05);
  z-index: 0;
  opacity: 0.45;
}

.page-header--merch::before   { background-image: url('header-bg-merch.jpg'); }
.page-header--gallery::before { background-image: url('header-bg-gallery.jpg'); }
.page-header--shows::before   { background-image: url('header-bg-shows.jpg'); background-position: center 30%; }

.page-header > * {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: 2px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}

.page-header p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Section wrapper ─────────────────────────────────────────────── */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.2rem;
  letter-spacing: 1px;
  border-left: 4px solid var(--fg);
  padding-left: 0.9rem;
  margin-bottom: 2rem;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s;
}

.btn-solid {
  background: var(--accent);
  color: #fff;
}

.btn-solid:hover {
  background: var(--accent-dk);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Home — About ────────────────────────────────────────────────── */
/* ── About section background ────────────────────────────────────── */
.about-section {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url(about-bg.jpg) center/cover no-repeat;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ── Home — News ─────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-top: 3px solid var(--fg);
}

.news-date {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.news-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Shows ───────────────────────────────────────────────────────── */
.shows-table {
  width: 100%;
  border-collapse: collapse;
}

.shows-table thead th {
  text-align: left;
  padding: 0.6rem 1rem;
  border-bottom: 2px solid var(--fg);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.shows-table tbody td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.shows-table tbody tr:hover td {
  background: var(--bg-alt);
}

.show-date {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--accent);
  white-space: nowrap;
}

.show-venue {
  font-weight: 700;
}

.show-city {
  color: var(--muted);
  font-size: 0.95rem;
}

.show-support {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.badge-sold {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--border);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Merch ───────────────────────────────────────────────────────── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}

.merch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}

.merch-card:hover {
  border-color: var(--fg);
}

.merch-img {
  aspect-ratio: 1;
  background: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.merch-body {
  padding: 1.1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.merch-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.merch-name {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 1px;
}

.merch-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

/* ── Gallery ─────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  transition: border-color 0.15s;
}

.gallery-item:hover {
  border-color: var(--fg);
}

.gallery-item.span-4  { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-item.span-8  { grid-column: span 8; aspect-ratio: 16/7; }
.gallery-item.span-6  { grid-column: span 6; aspect-ratio: 3/2; }
.gallery-item.span-3  { grid-column: span 3; aspect-ratio: 1; }

/* ── Contact ─────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 0.75rem 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--fg);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group select option {
  background: var(--bg-alt);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-aside h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.contact-info-list li {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-info-list li strong {
  color: var(--fg);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.social-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--fg);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}

.social-list a:hover { color: var(--accent); }

.social-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent);
}

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
  background: #000;
}

/* ── Footer nav links row ── */
.footer-nav {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  padding: 2rem 2rem 0;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.15s;
}

.footer-nav a:hover,
.footer-nav a.active {
  color: var(--fg);
}

/* ── Footer social + cicada row ── */
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11rem;
}

.footer-social {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.social-icon-link {
  display: flex;
  align-items: center;
  color: var(--muted);
  transition: color 0.15s;
}

.social-icon-link:hover {
  color: var(--fg);
}

.social-icon-link svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.footer-logo {
  height: 4.5rem;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.footer-copy {
  text-align: center;
  padding: 0 2rem 1.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

footer a:hover { color: var(--fg); }

/* ── Divider ─────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery-item.span-8 { grid-column: span 12; }
  .gallery-item.span-4 { grid-column: span 6; }
  .gallery-item.span-3 { grid-column: span 6; }
}

@media (max-width: 640px) {
  nav {
    grid-template-columns: 1fr;
    height: auto;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
    justify-items: center;
  }

  .nav-left, .nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero h1 { letter-spacing: 2px; }

  .form-row { grid-template-columns: 1fr; }

  .gallery-item.span-4,
  .gallery-item.span-8,
  .gallery-item.span-6,
  .gallery-item.span-3 {
    grid-column: span 12;
    aspect-ratio: 16/9;
  }

  .shows-table thead { display: none; }
  .shows-table td { display: block; padding: 0.4rem 1rem; }
  .shows-table td:first-child { padding-top: 1rem; }
  .shows-table td:last-child  { padding-bottom: 1rem; }
  .shows-table tbody tr { border-bottom: 1px solid var(--border); }
  .shows-table tbody td { border-bottom: none; }

  .player { flex-direction: column; }
  .player-art,
  .player-art-placeholder { width: 100%; aspect-ratio: 1; height: auto; }
}

/* ── Music Player ────────────────────────────────────────────────── */
.player {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.player-art {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.player-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.player-art-placeholder {
  width: 100%;
  height: 100%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.player-center {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  flex: 1;
}

.player-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--fg);
  background: transparent;
  color: var(--fg);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  padding-left: 4px; /* optical center for play triangle */
}

.player-play-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.player-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.player-artist {
  font-size: 1rem;
  color: var(--fg);
}

.player-track {
  font-size: 0.85rem;
  color: var(--muted);
}

.player-album {
  font-size: 0.85rem;
  color: var(--muted);
}

.player-bottom {
  width: 100%;
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.player-seek {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  outline: none;
  cursor: pointer;
  border-radius: 2px;
}

.player-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--fg);
  cursor: pointer;
  transition: background 0.15s;
}

.player-seek::-webkit-slider-thumb:hover {
  background: var(--accent);
}

.player-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--fg);
  cursor: pointer;
  border: none;
}

.player-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ── Mobile ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {

  /* Logo: width-based sizing prevents squishing on narrow screens */
  img.logo-hero {
    height: auto;
    width: 85vw;
    max-width: 85vw;
  }

  /* Logo: no extra bottom margin — space-between handles vertical distribution */
  .logo-hero-wrap {
    margin-bottom: 0;
  }

  /* Hero: fit visible viewport, spread logo/LISTEN/form to top, middle, bottom */
  .hero-logo-band {
    min-height: 100vh;
    min-height: 100svh;
    justify-content: space-between;
    gap: 0;
    padding: 3rem 1.5rem 3.5rem;
    background:
      linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
      url(hero-bg.jpg) center 40%/cover no-repeat;
  }

  /* LISTEN slightly smaller */
  .hero-nav a {
    font-size: 1.2rem;
  }

  /* Form: stack input above button */
  .hero-email-signup {
    flex-direction: column;
    width: calc(100vw - 3rem);
  }

  .hero-email-signup input[type="email"] {
    width: 100%;
    border-right: 1px solid var(--fg);
    border-bottom: none;
    box-sizing: border-box;
  }

  .hero-email-signup button {
    width: 100%;
  }

  /* Wrap matches form width */
  .signup-wrap {
    width: calc(100vw - 3rem);
  }

  /* Footer: shrink gaps so icons stay in one row */
  .footer-inner {
    gap: 1.5rem;
    padding: 2.5rem 1.5rem 2rem;
  }

  .social-icon-link svg {
    width: 28px;
    height: 28px;
  }

  .footer-logo {
    height: 3.5rem;
  }
}
