/* ======================================================================
   VERTIGO — stylesheet
   Sections below, in order: variables/reset, nav, hero, shared section
   styles, music, shows, about, gallery + lightbox, socials, merch,
   contact, footer, scroll-reveal, responsive.
   ====================================================================== */

/* ---------- Variables ---------- */
:root {
  --bg: #0a0a0c;
  --bg-alt: #101013;
  --bg-raised: #17161b;
  --fg: #ececee;
  --muted: #9c98a4;
  --muted-dim: #6f6c78;
  --accent: #c81d3f;       /* blood red — primary accent */
  --accent-hover: #e2294c;
  --accent-2: #6e6a8c;     /* dusky violet — atmosphere / secondary */
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height: 76px;
  --container-width: 1180px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Offset anchored sections so the fixed nav doesn't cover their titles */
section[id] { scroll-margin-top: var(--nav-height); }

/* ---------- Typography helpers ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 44px;
}

.section {
  padding: 110px 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* ---------- Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 500;
  background: rgba(10, 10, 12, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

/* Solidifies once the hero has scrolled past, so the nav reads clearly over content */
.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.85);
  border-bottom-color: var(--border);
}

.nav {
  max-width: var(--container-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--fg);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--fg);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.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);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(35%) contrast(1.1) brightness(0.55);
  /* Permanently cropped in a bit (not animated) — gives the parallax drift in
     script.js room to move without ever showing an edge, and avoids a "zoom
     snapping in" moment on the first scroll tick. */
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200, 29, 63, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.4) 40%, rgba(10,10,12,0.95) 100%);
}

/* subtle film-grain texture, pure CSS (no image asset needed) */
.hero-grain {
  position: absolute;
  inset: -10px;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04) 0, transparent 2px),
    repeating-radial-gradient(circle at 70% 60%, rgba(255,255,255,0.03) 0, transparent 2px);
  background-size: 3px 3px, 5px 5px;
  animation: grainDrift 7s ease-in-out infinite;
}

@keyframes grainDrift {
  0%, 100% { background-position: 0 0, 0 0; }
  50% { background-position: 30px 18px, -22px 14px; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  line-height: 0;
}

.hero-logo {
  width: 100%;
  max-width: min(90vw, 820px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 40px rgba(200, 29, 63, 0.4));
}

.hero-tagline {
  margin-top: 18px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--muted);
  letter-spacing: 0.04em;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  animation: bob 2.4s ease-in-out infinite;
}

.scroll-cue-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, var(--muted));
}

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

/* ---------- Music ---------- */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.release-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.release-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(200, 29, 63, 0.16);
}

.release-cover {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-alt);
}

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

.release-info {
  padding: 18px 20px 20px;
}

.release-type {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 3px;
  padding: 2px 8px;
  margin-bottom: 10px;
}

.release-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}

.release-year {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Placeholder area for a future Spotify/Bandcamp <iframe> embed */
.release-embed-placeholder {
  border: 1px dashed var(--border-strong);
  border-radius: 4px;
  padding: 14px;
  font-size: 0.78rem;
  color: var(--muted-dim);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.5;
}

.release-links {
  display: flex;
  gap: 10px;
}

.release-link {
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 9px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  color: var(--muted);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.release-link:hover {
  border-color: var(--accent);
  color: var(--fg);
}

/* iframe embed, once wired up via RELEASES[].embed in script.js */
.release-embed iframe {
  width: 100%;
  border: 0;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* ---------- Shows ---------- */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-top: 1px solid var(--border);
}

.show-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s var(--ease);
}

.show-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.show-date {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--accent);
  text-transform: uppercase;
}

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

.show-city {
  color: var(--muted);
}

.show-ticket-btn {
  justify-self: end;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.show-ticket-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--border-strong);
  border-radius: 6px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  margin-bottom: 90px;
}

.about-photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-paragraphs p {
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 16px;
}

.about-paragraphs p:last-child {
  margin-bottom: 0;
}

/* Each paragraph fades in on its own, clearly after the previous one —
   bigger gaps than the generic .stagger-grid pattern used elsewhere,
   since there are only three of them. */
.about-paragraphs > p {
  opacity: 0;
}

.about-paragraphs.is-visible > p {
  animation: cardIn 0.6s var(--ease) both;
}

.about-paragraphs.is-visible > p:nth-child(1) { animation-delay: 0s; }
.about-paragraphs.is-visible > p:nth-child(2) { animation-delay: 0.35s; }
.about-paragraphs.is-visible > p:nth-child(3) { animation-delay: 0.7s; }

.lineup-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 26px;
  color: var(--muted);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.lineup-member {
  display: block;
  text-align: center;
  transition: transform 0.3s var(--ease);
}

.lineup-member:hover {
  transform: translateY(-4px);
}

.lineup-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
}

.lineup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s var(--ease);
}

.lineup-member:hover .lineup-photo img {
  filter: grayscale(0%);
}

.lineup-name {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
  filter: grayscale(10%) contrast(1.02);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 8, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--fg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.6rem;
  color: var(--fg);
  padding: 10px 16px;
  opacity: 0.75;
  transition: opacity 0.2s var(--ease);
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

/* ---------- Socials ---------- */
.socials-container {
  text-align: center;
}

.socials-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

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

.social-link:hover {
  color: var(--fg);
  border-color: var(--accent);
  transform: translateY(-3px);
}

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

.merch-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.merch-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(200, 29, 63, 0.16);
}

.merch-image {
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
}

.merch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-info {
  padding: 16px 18px 20px;
}

.merch-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.merch-price {
  color: var(--muted);
  margin-bottom: 14px;
}

.merch-buy {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  transition: background 0.25s var(--ease);
}

.merch-buy:hover { background: var(--accent-hover); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
}

.contact-email {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.contact-email:hover {
  border-color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
  color: var(--fg);
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 12px 14px;
  resize: vertical;
  transition: border-color 0.25s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.btn {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 30px;
  border-radius: 4px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.2em;
}

.form-status.is-success {
  color: #8fd19e;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 50px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer-copy {
  color: var(--muted-dim);
  font-size: 0.85rem;
}

/* ---------- Member pages (members/*.html) ---------- */
.member-topbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.member-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.back-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

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

.member-main {
  padding: 70px 0 110px;
}

.member-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: start;
}

.member-photo-lg {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.member-photo-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.member-role {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}

.member-bio p {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 16px;
}

.member-bio p:last-child {
  margin-bottom: 0;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered pop-in for grid children (release/lineup/gallery/merch cards),
   triggered once the parent .stagger-grid gets .is-visible from the same
   scroll-reveal observer. */
.stagger-grid > * {
  opacity: 0;
}

.stagger-grid.is-visible > * {
  animation: cardIn 0.55s var(--ease) both;
}

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

.stagger-grid.is-visible > *:nth-child(8n+1) { animation-delay: 0s; }
.stagger-grid.is-visible > *:nth-child(8n+2) { animation-delay: 0.05s; }
.stagger-grid.is-visible > *:nth-child(8n+3) { animation-delay: 0.1s; }
.stagger-grid.is-visible > *:nth-child(8n+4) { animation-delay: 0.15s; }
.stagger-grid.is-visible > *:nth-child(8n+5) { animation-delay: 0.2s; }
.stagger-grid.is-visible > *:nth-child(8n+6) { animation-delay: 0.25s; }
.stagger-grid.is-visible > *:nth-child(8n+7) { animation-delay: 0.3s; }
.stagger-grid.is-visible > *:nth-child(8n+8) { animation-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue { animation: none; }
  .stagger-grid > * { opacity: 1; }
  .stagger-grid.is-visible > * { animation: none; }
  .about-paragraphs > p { opacity: 1; }
  .about-paragraphs.is-visible > p { animation: none; }
  .hero-grain { animation: none; }
}

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

  .show-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "date date"
      "venue city"
      "ticket ticket";
    row-gap: 10px;
  }
  .show-date { grid-area: date; }
  .show-venue { grid-area: venue; }
  .show-city { grid-area: city; }
  .show-ticket-btn { grid-area: ticket; justify-self: start; }
}

@media (max-width: 720px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }

  .nav-menu.is-open {
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 16px 24px;
    width: 100%;
  }

  .nav-link::after { display: none; }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  /* Releases intentionally left off this list — each card carries a badge,
     title, year, embed placeholder and two buttons, which is too much
     content to cram into a forced second column on a phone. The base
     auto-fill grid already collapses it to one column naturally here. */
  .merch-grid {
    grid-template-columns: 1fr 1fr;
  }

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