:root {
  --paper: #f7efd8;
  --paper-deep: #ead39d;
  --ink: #161411;
  --vinyl: #050505;
  --red: #c71f2d;
  --turquoise: #1eaaa6;
  --chrome: #d7d4ca;
  --shadow: 0 16px 36px rgba(22, 20, 17, .18);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  color: var(--ink);
  background: var(--paper);
  font-family: Avenir Next, Trebuchet MS, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20px 20px, rgba(22,20,17,.11) 1px, transparent 1.6px) 0 0 / 9px 9px,
    linear-gradient(135deg, rgba(199,31,45,.08), transparent 28rem),
    var(--paper);
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: .12em; text-underline-offset: .18em; }

.skip-link {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 20;
  padding: .65rem .85rem;
  background: var(--turquoise);
  color: var(--vinyl);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.top-strip {
  height: 9px;
  background: repeating-linear-gradient(90deg, var(--red) 0 24px, var(--paper) 24px 34px, var(--turquoise) 34px 58px, var(--vinyl) 58px 64px);
  background-size: 64px 100%;
  animation: top-strip-slide 1.1s linear infinite;
}

@keyframes top-strip-slide {
  from { background-position: 0 0; }
  to { background-position: 64px 0; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  background: rgba(247,239,216,.94);
  border-bottom: 3px solid var(--vinyl);
  backdrop-filter: blur(12px);
}

.header-inner, .footer-inner, .section {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

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

.brand img { width: 148px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  padding: .65rem .78rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .88rem;
}

.site-nav a:hover, .site-nav a:focus-visible {
  background: var(--red);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: .55rem;
  border: 2px solid var(--vinyl);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  padding: .65rem .8rem;
  text-transform: uppercase;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 3px;
  background: currentColor;
  content: "";
}

.menu-toggle-lines::before { transform: translateY(-7px); }
.menu-toggle-lines::after { transform: translateY(4px); }

.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 5px solid var(--vinyl);
  background: var(--vinyl);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.86), rgba(5,5,5,.46) 46%, rgba(5,5,5,.18)),
    radial-gradient(circle at 72% 18%, rgba(30,170,166,.45), transparent 26rem);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 32px));
  margin: 0 auto 7vh max(16px, calc((100% - var(--max)) / 2));
  color: var(--paper);
  text-shadow: 0 3px 0 var(--vinyl);
}

.kicker {
  margin: 0 0 .6rem;
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.hero .kicker { color: var(--turquoise); }

h1, h2, h3 {
  margin: 0;
  line-height: 1.02;
  font-family: Georgia, Times New Roman, serif;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.8rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: 1.55rem; }

p { line-height: 1.65; }

.hero-copy p:not(.kicker) {
  max-width: 58ch;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-intro { font-weight: 700; }

.hero-actions, .concert-actions, .form-actions, .album-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.2rem;
}

.button, .concert-actions a, .album-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1rem;
  border: 2px solid var(--vinyl);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--vinyl);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary, .concert-actions a:nth-child(odd), .album-links a:first-child {
  background: var(--red);
  color: var(--paper);
}

.button.secondary, .concert-actions a:nth-child(even), .album-links a:nth-child(even) {
  background: var(--turquoise);
  color: var(--vinyl);
}

.section { padding: clamp(3rem, 7vw, 6rem) 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.breadcrumbs {
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.band-intro {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.band-intro img, .post-featured {
  border: 4px solid var(--vinyl);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.member-grid, .video-grid, .album-grid, .gallery-grid, .concert-list, .news-list {
  display: grid;
  gap: 1rem;
}

.member-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.member-card, .news-item, .concert-card, .album-card, .product-card, .contact-panel, .timeline-item {
  border: 3px solid var(--vinyl);
  border-radius: var(--radius);
  background: rgba(247,239,216,.9);
  box-shadow: 6px 6px 0 rgba(5,5,5,.18);
}

.member-card {
  overflow: hidden;
}

.member-card h3, .member-card p { margin-inline: 1rem; }
.member-card h3 { margin-top: 1rem; }
.member-card p { margin-bottom: 1rem; font-weight: 800; }

.news-list { grid-template-columns: 1fr; }

.news-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 1rem;
}

.news-item img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

.news-item time, .concert-card time {
  color: var(--red);
  font-weight: 900;
}

.prose {
  max-width: 860px;
}

.prose h1 { margin-bottom: 1.5rem; }
.prose img { border-radius: var(--radius); }

.post-featured {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.timeline {
  display: grid;
  gap: 1.25rem;
}

.timeline-item {
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: -10px;
  width: 20px;
  height: 20px;
  border: 3px solid var(--vinyl);
  border-radius: 50%;
  background: var(--red);
}

.concert-list {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.concert-card {
  min-width: 0;
  padding: 1.25rem;
}

.concert-card h2 {
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.album-grid { grid-template-columns: 1fr; }

.album-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.4rem;
  padding: 1rem;
}

.album-card img {
  border: 2px solid var(--vinyl);
  border-radius: 6px;
}

.track-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style-position: inside;
}

.track-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: .45rem 0;
  border-bottom: 1px dashed rgba(22,20,17,.38);
}

.video-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.lite-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--vinyl);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  background: var(--vinyl);
  cursor: pointer;
}

.lite-video img, .lite-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lite-video span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-size: 1.5rem;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid var(--vinyl);
  border-radius: var(--radius);
  background: var(--chrome);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5,5,5,.88);
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-height: 88vh;
  width: auto;
  border: 4px solid var(--paper);
}

.lightbox button {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-size: 2rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.pagination a, .pagination span {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 2px solid var(--vinyl);
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 900;
  text-decoration: none;
}

.pagination .active a {
  background: var(--vinyl);
  color: var(--paper);
}

.contact-grid, .product-card {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 1rem;
}

.contact-panel, .product-card { padding: 1.25rem; }

.concert-archive-heading { margin-top: clamp(3rem, 7vw, 6rem); }

.section-action { margin-top: 2rem; text-align: center; }

label {
  display: grid;
  gap: .35rem;
  margin-bottom: .85rem;
  font-weight: 900;
}

input, textarea {
  width: 100%;
  border: 2px solid var(--vinyl);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--ink);
  font: inherit;
  padding: .75rem;
}

.booking-output { min-height: 130px; }

.phone-link, .price {
  color: var(--red);
  font-size: 1.8rem;
  font-weight: 950;
}

.record-art {
  aspect-ratio: 1;
  border: 8px solid var(--chrome);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--red) 0 13%, var(--paper) 13% 18%, var(--vinyl) 18% 26%, #1c1c1c 26% 30%, var(--vinyl) 30% 100%);
  box-shadow: inset 0 0 0 28px rgba(255,255,255,.04), var(--shadow);
}

.stock-badge {
  display: inline-block;
  margin: 0 0 .75rem;
  padding: .35rem .6rem;
  border: 2px solid var(--vinyl);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--paper);
  font-weight: 900;
}

.site-footer {
  border-top: 5px solid var(--vinyl);
  background: var(--vinyl);
  color: var(--paper);
}

.footer-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 2rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    top: 101px;
    right: 16px;
    left: 16px;
    z-index: 15;
    display: grid;
    gap: .25rem;
    padding: 1rem;
    border: 3px solid var(--vinyl);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav[hidden] { display: none; }
  .site-nav a { min-height: 44px; }

  .band-intro, .member-grid, .album-card, .contact-grid, .product-card {
    grid-template-columns: 1fr;
  }

  .member-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 861px) {
  .site-nav[hidden] { display: flex; }
}

@media (max-width: 560px) {
  .hero {
    min-height: 620px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .hero-copy {
    margin-bottom: 4vh;
  }

  .member-grid, .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-card h3 {
    font-size: 1.25rem;
  }

  .member-card h3, .member-card p {
    margin-inline: .7rem;
  }

  .section, .header-inner, .footer-inner {
    width: min(100% - 24px, var(--max));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
