/* v1.5.1 Neuborn webfont settings.
   Place the licensed Neuborn font files in ../fonts/ using these exact filenames. */
@font-face {
  font-family: "Neuborn";
  src: url("../fonts/Neuborn-Regular.otf") format("opentype"),
       local("Neuborn Regular"),
       local("Neuborn-Regular");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neuborn";
  src: url("../fonts/Neuborn-Medium.otf") format("opentype"),
       local("Neuborn Medium"),
       local("Neuborn-Medium");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neuborn";
  src: url("../fonts/Neuborn-Bold.otf") format("opentype"),
       local("Neuborn Bold"),
       local("Neuborn-Bold");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neuborn Hollow";
  src: url("../fonts/Neuborn-RegularHollow.otf") format("opentype"),
       local("Neuborn Regular Hollow"),
       local("Neuborn-RegularHollow");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neuborn Hollow";
  src: url("../fonts/Neuborn-MediumHollow.otf") format("opentype"),
       local("Neuborn Medium Hollow"),
       local("Neuborn-MediumHollow");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.065);
  --text: #eeeeea;
  --muted: #a8a8a0;
  --dim: #6f6f68;
  --line: rgba(238, 238, 234, 0.18);
  --line-strong: rgba(238, 238, 234, 0.34);
  --accent: #d8d6c4;
  --accent-muted: #bdb9a3;
  --accent-line: rgba(216, 214, 196, 0.62);
  --accent-soft: rgba(216, 214, 196, 0.075);
  --accent-glow: rgba(216, 214, 196, 0.14);
  --accent: #d8d6c4;
  --accent-soft: rgba(216, 214, 196, 0.14);
  --accent-line: rgba(216, 214, 196, 0.42);
  --max: 1180px;
  --pad: clamp(1rem, 3vw, 2rem);
  --brand-font: "Neuborn Hollow", "Neuborn", "Inter", system-ui, sans-serif;
  --body-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.08), transparent 26rem),
    radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.045), transparent 22rem),
    linear-gradient(135deg, var(--bg), #090909 46%, #030303);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.5;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 75%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

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

a:hover,
a:focus-visible {
  color: #fff;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-150%);
  background: var(--text);
  color: var(--bg);
  padding: 0.65rem 0.85rem;
}

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

.section-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.site-header {
  width: min(100%, calc(var(--max) + var(--pad) * 2));
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  font-family: var(--brand-font);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  border: 1px solid var(--line-strong);
  padding: 0.55rem 0.7rem;
  line-height: 1;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  min-height: 76vh;
  display: grid;
  align-content: end;
  gap: 2rem;
  padding-block: clamp(5.5rem, 12vw, 9rem) 2rem;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--brand-font);
  text-transform: uppercase;
  letter-spacing: 0.055em;
  line-height: 0.94;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(4.4rem, 19vw, 14rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.4rem, 8vw, 5.7rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.1rem, 3vw, 1.55rem);
}

.hero__intro {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  padding-block: 2rem 5rem;
}

.tile,
.event-card,
.release-panel,
.podcast-card,
.resident-card,
.merch-panel,
.about-section {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
}

.tile {
  min-height: 220px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tile:hover,
.tile:focus-visible {
  border-color: var(--line-strong);
  background: var(--panel-strong);
  transform: translateY(-2px);
}

.tile__number {
  color: var(--dim);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.tile__title {
  font-family: var(--brand-font);
  font-size: clamp(1.75rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.tile__text {
  max-width: 24rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.content-section {
  padding-block: 4rem;
  scroll-margin-top: 5.5rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading--row {
  display: grid;
  gap: 1rem;
}

.section-note {
  margin: 0;
  color: var(--muted);
  max-width: 24rem;
}

.card-list,
.podcast-stack,
.resident-grid {
  display: grid;
  gap: 1rem;
}

.event-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  min-height: 170px;
}

.event-card__poster,
.release-art,
.resident-card__image {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.025)),
    #111;
  color: var(--text);
  font-family: var(--brand-font);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.event-card__body {
  padding: 1rem;
}

.event-card p,
.resident-card p {
  color: var(--muted);
  margin: 0.65rem 0 0;
}

.event-card a,
.resident-card a,
.footer-links a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
}

.release-panel {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.release-art {
  min-height: 270px;
  border: 1px solid var(--line);
  align-content: center;
  gap: 1rem;
  text-align: center;
}

.release-art span {
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 0.92;
}

.release-art small {
  color: var(--muted);
  letter-spacing: 0.18em;
}

.release-details {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.release-details div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.release-details dt {
  color: var(--dim);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-details dd {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.podcast-card {
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.play-dot {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  position: relative;
}

.play-dot::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-left: 0.5rem solid var(--text);
  border-top: 0.32rem solid transparent;
  border-bottom: 0.32rem solid transparent;
}

.waveform {
  grid-column: 1 / -1;
  height: 34px;
  opacity: 0.62;
  background: repeating-linear-gradient(90deg, var(--muted) 0 2px, transparent 2px 7px);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, #000 70%, transparent 100%);
}

.resident-card {
  padding: 1rem;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
}

.resident-card__image {
  min-height: 92px;
  border: 1px solid var(--line);
  font-size: 2rem;
}

.about-section {
  padding-block: 4rem;
}

.about-copy {
  max-width: 880px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.15rem, 3vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.site-footer {
  padding-block: 3rem;
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-email {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: clamp(1.4rem, 6vw, 3.2rem);
  font-family: var(--brand-font);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

@media (min-width: 720px) {
  .site-nav {
    display: flex;
  }

  .hero__meta,
  .site-footer,
  .section-heading--row {
    grid-template-columns: 1fr auto;
    display: grid;
    align-items: end;
  }

  .tile-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .tile {
    grid-column: span 3;
  }

  .tile--large,
  .tile--wide {
    grid-column: span 6;
  }

  .release-panel,
  .resident-grid,
  .merch-panel {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .event-card {
    grid-template-columns: 150px 1fr;
  }
}

@media (min-width: 980px) {
  .tile {
    grid-column: span 2;
  }

  .tile--large {
    grid-column: span 3;
  }

  .tile--long,
  .tile--wide {
    grid-column: span 3;
  }

  .card-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card__poster {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .podcast-card {
    grid-template-columns: auto 220px 1fr;
  }

  .waveform {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* v1.3 refinements: staggered desktop tiles, mobile menu, footer meta, mobile back-to-top */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font: inherit;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--text);
  content: "";
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle__lines::before {
  top: -5px;
}

.menu-toggle__lines::after {
  top: 5px;
}

.site-header.is-menu-open .site-nav {
  display: grid;
}

.site-header .site-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: var(--pad);
  right: var(--pad);
  padding: 0.8rem;
  background: rgba(5, 5, 5, 0.96);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  gap: 0;
}

.site-header .site-nav a {
  display: block;
  padding: 0.85rem 0.2rem;
  border-bottom: 1px solid var(--line);
}

.site-header .site-nav a:last-child {
  border-bottom: 0;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  color: var(--dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-meta p {
  margin: 0;
}

.footer-meta a {
  color: var(--muted);
  border-bottom: 1px solid rgba(168, 168, 160, 0.35);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid var(--line-strong);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

  .site-header .site-nav,
  .site-header.is-menu-open .site-nav {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    gap: 1rem;
  }

  .site-header .site-nav a {
    padding: 0;
    border-bottom: 0;
  }

  .tile--events {
    grid-column: span 4;
  }

  .tile--label {
    grid-column: span 2;
  }

  .tile--podcast,
  .tile--residents {
    grid-column: span 3;
  }

  .tile--merch {
    grid-column: span 2;
  }

  .tile--about {
    grid-column: span 4;
  }

  .back-to-top {
    display: none;
  }
}

@media (min-width: 980px) {
  .tile-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .tile--events {
    grid-column: span 5;
  }

  .tile--label {
    grid-column: span 3;
  }

  .tile--podcast {
    grid-column: span 4;
  }

  .tile--residents {
    grid-column: span 4;
  }

  .tile--merch {
    grid-column: span 3;
  }

  .tile--about {
    grid-column: span 5;
  }
}


/* v1.4.1 refinements: corrected accent variables and strengthened unified link interactions */
a,
button {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.text-link {
  color: var(--text);
  border-bottom: 1px solid rgba(238, 238, 234, 0.24);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
  border-color: var(--accent-line);
}

.site-nav a {
  position: relative;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.035);
}

@media (min-width: 720px) {
  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-header .site-nav a:hover,
  .site-header .site-nav a:focus-visible {
    background: transparent;
  }
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--accent);
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

.menu-toggle:hover .menu-toggle__lines,
.menu-toggle:hover .menu-toggle__lines::before,
.menu-toggle:hover .menu-toggle__lines::after,
.menu-toggle:focus-visible .menu-toggle__lines,
.menu-toggle:focus-visible .menu-toggle__lines::before,
.menu-toggle:focus-visible .menu-toggle__lines::after {
  background: var(--accent);
}

.social-row,
.release-links,
.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-row a,
.release-links a,
.mini-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.72rem 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.social-row a:hover,
.social-row a:focus-visible,
.release-links a:hover,
.release-links a:focus-visible,
.mini-links a:hover,
.mini-links a:focus-visible {
  color: var(--accent);
  border-color: var(--accent-line);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(216, 214, 196, 0.035), 0 10px 30px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}

.social-row--compact {
  gap: 0.5rem;
}

.social-row--compact a {
  min-height: 2.15rem;
  padding: 0.55rem 0.68rem;
  font-size: 0.66rem;
}

.footer-links {
  gap: 0.75rem;
}

.footer-links a {
  margin-top: 0;
  border-bottom: 0;
}

.tile {
  overflow: hidden;
  position: relative;
}

.tile::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
  opacity: 0;
  transform: translateX(-12%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.tile:hover,
.tile:focus-visible {
  border-color: var(--accent-line);
  background: linear-gradient(145deg, rgba(216, 214, 196, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 76px rgba(0,0,0,0.42), 0 0 0 1px rgba(216, 214, 196, 0.045), inset 0 0 28px rgba(216, 214, 196, 0.025);
}

.tile:hover::after,
.tile:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.tile:hover .tile__title,
.tile:focus-visible .tile__title {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
  letter-spacing: 0.045em;
}

.tile:hover .tile__number,
.tile:focus-visible .tile__number {
  color: var(--muted);
}

.event-card,
.release-card,
.resident-card,
.podcast-card,
.merch-panel {
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.event-card:hover,
.event-card:focus-within,
.release-card:hover,
.release-card:focus-within,
.resident-card:hover,
.resident-card:focus-within,
.podcast-card:hover,
.podcast-card:focus-within,
.merch-panel:hover,
.merch-panel:focus-within {
  border-color: var(--accent-line);
  background: var(--panel-strong);
  transform: translateY(-2px);
}

.action-link,
.event-card a,
.resident-card a {
  position: relative;
  width: fit-content;
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, padding-left 180ms ease;
}

.action-link:hover,
.action-link:focus-visible,
.event-card a:hover,
.event-card a:focus-visible,
.resident-card a:hover,
.resident-card a:focus-visible {
  color: var(--accent);
  border-color: var(--accent-line);
  background: linear-gradient(90deg, rgba(216, 214, 196, 0.08), transparent);
  padding-left: 0.35rem;
  transform: translateX(2px);
}

.event-card:hover .event-card__poster,
.event-card:focus-within .event-card__poster {
  color: var(--accent);
}

.release-panel--featured {
  margin-bottom: 3rem;
}

.release-content {
  display: grid;
  gap: 1.1rem;
}

.release-links {
  padding-top: 0.2rem;
}

.section-heading--small {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.section-heading--small h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

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

.release-card {
  border: 1px solid var(--line);
  background: var(--panel);
  display: grid;
  min-height: 100%;
}

.release-card__art {
  min-height: 170px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.02)),
    #111;
  color: var(--dim);
  font-family: var(--brand-font);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.release-card__body {
  padding: 1rem;
}

.release-card__body h3 {
  margin-top: 0.4rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.release-card__body p:not(.kicker) {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.mini-links {
  gap: 0.45rem;
  margin-top: 1rem;
}

.mini-links a {
  min-height: 2.25rem;
  padding: 0.6rem 0.7rem;
  font-size: 0.65rem;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--accent);
  border-color: var(--accent-line);
}

.back-to-top {
  width: 2.8rem;
  height: 2.8rem;
  background: rgba(5, 5, 5, 0.42);
  border-color: rgba(238, 238, 234, 0.2);
  color: rgba(238, 238, 234, 0.68);
  opacity: 0.66;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  opacity: 0.95;
  color: var(--accent);
  border-color: var(--accent-line);
  background: rgba(5, 5, 5, 0.7);
  transform: translateY(-2px);
}

@media (max-width: 719px) {
  .social-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .social-row a {
    width: 100%;
  }

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

@media (min-width: 620px) {
  .release-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .release-panel--featured {
    align-items: stretch;
  }

  .release-content {
    align-content: space-between;
  }

  .release-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .release-card__art {
    min-height: 150px;
  }
}


/* v1.4.3 refinements: add merch path for client review */
@media (min-width: 720px) {
  .tile--merch {
    grid-column: span 2;
  }

  .tile--about {
    grid-column: span 4;
  }
}

@media (min-width: 980px) {
  .tile--merch {
    grid-column: span 3;
  }

  .tile--about {
    grid-column: span 5;
  }
}

/* v1.4.4 correction: preserve v1.4.3 merch additions, restore v1.4.2 white hover behavior */
:root {
  --accent: #ffffff;
  --accent-muted: #eeeeea;
  --accent-line: rgba(238, 238, 234, 0.38);
  --accent-soft: rgba(255, 255, 255, 0.045);
  --accent-glow: rgba(255, 255, 255, 0.08);
}

.text-link:hover,
.text-link:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible,
.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: #fff;
}

.social-row a:hover,
.social-row a:focus-visible,
.release-links a:hover,
.release-links a:focus-visible,
.mini-links a:hover,
.mini-links a:focus-visible {
  color: #fff;
  border-color: rgba(238, 238, 234, 0.42);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}

.tile:hover,
.tile:focus-visible {
  border-color: rgba(238, 238, 234, 0.36);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 76px rgba(0,0,0,0.42), inset 0 0 28px rgba(255, 255, 255, 0.018);
}

.tile:hover .tile__title,
.tile:focus-visible .tile__title {
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,0.055);
  letter-spacing: 0.04em;
}

.tile::after {
  background: linear-gradient(90deg, transparent, rgba(238, 238, 234, 0.36), transparent);
}

.action-link:hover,
.action-link:focus-visible,
.event-card a:hover,
.event-card a:focus-visible,
.resident-card a:hover,
.resident-card a:focus-visible {
  color: #fff;
  border-color: rgba(238, 238, 234, 0.42);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent);
}

.event-card:hover .event-card__poster,
.event-card:focus-within .event-card__poster {
  color: #fff;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: #fff;
  border-color: rgba(238, 238, 234, 0.4);
}

@media (max-width: 719px) {
  .social-row--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* v1.4.8 refinements: persistent desktop/mobile back-to-top button + cache-busted assets */
.back-to-top,
.back-to-top:link,
.back-to-top:visited,
.back-to-top:hover,
.back-to-top:focus,
.back-to-top:focus-visible,
.back-to-top:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  background: rgba(5, 5, 5, 0.42);
  border: 1px solid rgba(238, 238, 234, 0.2);
  color: rgba(238, 238, 234, 0.68);
  opacity: 0.66;
  box-shadow: none;
  transform: none;
}

@media (min-width: 720px) {
  .back-to-top,
  .back-to-top:link,
  .back-to-top:visited,
  .back-to-top:hover,
  .back-to-top:focus,
  .back-to-top:focus-visible,
  .back-to-top:active {
    display: inline-flex;
  }
}


/* v1.4.9 refinements: real event flyers, release placeholder art, SoundCloud embeds, live/coming-soon links */
.social-row .link-disabled,
.release-links .link-disabled,
.mini-links .link-disabled,
.footer-links .link-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.72rem 0.9rem;
  color: rgba(238, 238, 234, 0.38);
  border: 1px solid rgba(238, 238, 234, 0.08);
  background: rgba(255, 255, 255, 0.012);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  cursor: default;
}

.link-disabled small {
  display: inline-block;
  margin-left: 0.4rem;
  color: rgba(238, 238, 234, 0.32);
  font-size: 0.72em;
  letter-spacing: 0.08em;
}

.social-row--compact .link-disabled {
  min-height: 2.15rem;
  padding: 0.55rem 0.68rem;
  font-size: 0.66rem;
}

.mini-links .link-disabled {
  min-height: 2.25rem;
  padding: 0.6rem 0.7rem;
  font-size: 0.65rem;
}

.link-disabled--inline {
  width: fit-content;
  border-bottom: 1px solid rgba(238, 238, 234, 0.12);
}

.event-card__poster--image {
  display: block;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #050505;
}

.event-card__poster--image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(20%) saturate(0.92) contrast(1.04) brightness(0.82);
  transition: filter 180ms ease, transform 220ms ease;
}

.event-card:hover .event-card__poster--image img,
.event-card:focus-within .event-card__poster--image img {
  filter: grayscale(0%) saturate(1.02) contrast(1.06) brightness(0.92);
  transform: scale(1.018);
}

.release-art--image,
.release-card__art--image {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.release-art--image img,
.release-card__art--image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08) brightness(0.62);
}

.release-art--image::after,
.release-card__art--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.08), rgba(5,5,5,0.42));
  pointer-events: none;
}

.release-art__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  padding: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.08);
}

.release-card__art--image {
  min-height: 190px;
}

.release-card__art--image::before {
  content: "TIII";
  position: absolute;
  z-index: 2;
  left: 0.85rem;
  bottom: 0.72rem;
  color: rgba(238, 238, 234, 0.72);
  font-family: var(--brand-font);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.podcast-embed-list {
  display: grid;
  gap: 1rem;
}

.podcast-embed-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0.75rem;
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.podcast-embed-card:hover,
.podcast-embed-card:focus-within {
  border-color: rgba(238, 238, 234, 0.36);
  background: var(--panel-strong);
  transform: translateY(-2px);
}

.podcast-embed-code iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #050505;
}

.podcast-embed-code > div {
  margin-top: 0.45rem;
  opacity: 0.62;
}

.section-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.25rem;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
}

.section-link:hover,
.section-link:focus-visible {
  color: #fff;
  border-color: rgba(238, 238, 234, 0.42);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent);
  padding-left: 0.35rem;
  transform: translateX(2px);
}

@media (max-width: 719px) {
  .social-row .link-disabled,
  .release-links .link-disabled,
  .mini-links .link-disabled,
  .footer-links .link-disabled {
    width: 100%;
  }
}

@media (min-width: 980px) {
  .event-card__poster--image {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event-card__poster--image img {
    min-height: 360px;
  }
}


/* v1.5.0 refinements: chronological event order, equal flyer frames, restored five-link latest release rows */
.card-list--events .event-card {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}

.card-list--events .event-card__poster--image {
  aspect-ratio: 4 / 5;
  width: 100%;
  min-height: 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.card-list--events .event-card__poster--image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.card-list--events .event-card__body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.card-list--events .event-card__body .action-link {
  margin-top: auto;
}

.latest-release-note {
  color: var(--dim);
}


/* v1.5.1 refinements: webfont-ready Neuborn settings and merch panel consistency */
.merch-panel__body {
  padding: 1rem;
}

.merch-panel__body p:not(.kicker) {
  color: var(--muted);
  margin: 0.65rem 0 0;
}

.merch-panel__body .action-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  padding: 0;
  min-height: auto;
}

.merch-panel__body .action-link.link-disabled,
.merch-panel__body .action-link.link-disabled--inline {
  color: var(--text);
  cursor: default;
}

.merch-panel__body .action-link.link-disabled:hover,
.merch-panel__body .action-link.link-disabled:focus-visible {
  color: var(--text);
  border-color: var(--line-strong);
  background: transparent;
  padding-left: 0;
  transform: none;
}

@media (min-width: 720px) {
  .merch-panel__body {
    align-self: stretch;
  }
}


/* v1.5.2 refinements: full flyer visibility, resident photos/bios, merch mark label alignment */
.card-list--events .event-card__poster--image img {
  object-fit: fill;
  object-position: center;
}

.event-card:hover .event-card__poster--image img,
.event-card:focus-within .event-card__poster--image img {
  transform: none;
}

.resident-card--image {
  grid-template-columns: 132px 1fr;
  align-items: stretch;
}

.resident-card__image--photo {
  min-height: 168px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050505;
}

.resident-card__image--photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.06) brightness(0.82);
  transition: filter 180ms ease, transform 220ms ease;
}

.resident-card:hover .resident-card__image--photo img,
.resident-card:focus-within .resident-card__image--photo img {
  filter: grayscale(82%) contrast(1.08) brightness(0.92);
  transform: scale(1.018);
}

.merch-panel__mark {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100%;
  padding: 1rem;
  color: var(--dim);
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 719px) {
  .resident-card--image {
    grid-template-columns: 1fr;
  }

  .resident-card__image--photo {
    min-height: 260px;
  }

  .merch-panel__mark {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}


/* v1.5.3 final prototype refinements: residents, podcast embeds, section CTAs, merch height */
.resident-grid {
  grid-template-columns: 1fr;
}

.resident-card__image--photo {
  aspect-ratio: 1 / 1;
  min-height: 0;
  align-self: start;
}

.resident-card__image--photo img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.merch-panel__mark {
  min-height: 120px;
}

.merch-panel__body {
  align-self: center;
}

.releases-more-link small {
  display: inline-block;
  margin-left: 0.45rem;
  color: rgba(238, 238, 234, 0.32);
  font-size: 0.72em;
  letter-spacing: 0.08em;
}

@media (min-width: 720px) {
  .resident-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resident-card {
    grid-template-columns: 0.72fr 1fr;
  }

  .resident-card__image--photo,
  .resident-card__image--photo img {
    min-height: 0;
  }
}

@media (max-width: 719px) {
  .merch-panel__mark {
    min-height: 72px;
  }
}


/* v1.5.5 refinements: section notes, subtle diagonal section breaks, merch CTA hover parity */
.content-section {
  position: relative;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: var(--pad);
  right: var(--pad);
  height: clamp(1.6rem, 3.5vw, 3rem);
  pointer-events: none;
  opacity: 0.52;
  background:
    linear-gradient(164deg, transparent calc(50% - 0.5px), rgba(238, 238, 234, 0.18) 50%, transparent calc(50% + 0.5px));
}

.content-section:nth-of-type(even)::before {
  background:
    linear-gradient(16deg, transparent calc(50% - 0.5px), rgba(238, 238, 234, 0.14) 50%, transparent calc(50% + 0.5px));
}

.section-heading--row .section-note {
  align-self: end;
}

.merch-store-link {
  margin-top: 1rem;
}

.merch-panel__body .merch-store-link.link-disabled,
.merch-panel__body .merch-store-link.link-disabled--inline {
  color: var(--text);
  cursor: default;
}

.merch-panel__body .merch-store-link.link-disabled:hover,
.merch-panel__body .merch-store-link.link-disabled:focus-visible {
  color: #fff;
  border-color: rgba(238, 238, 234, 0.42);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent);
  padding-left: 0.35rem;
  transform: translateX(2px);
}

/* v1.5.6 refinements: solid Neuborn for smaller content titles */
.event-card h3,
.release-card__body h3,
.resident-card h3,
.merch-panel__body h3 {
  font-family: "Neuborn", "Inter", system-ui, sans-serif;
}

/* v1.5.7 final tweak: top-left brand mark uses solid Neuborn instead of hollow */
.brand-mark {
  font-family: "Neuborn", "Inter", system-ui, sans-serif;
}

/* v1.5.7.1: featured upcoming release artwork shown in full color with no overlays */
.release-art--plain img {
  filter: none;
}

.release-art--plain::after {
  display: none;
}


/* v1.6 client-requested revision preview: hero image/logo, uniform tiles, event cleanup, release accordion */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.22) 0%, rgba(5, 5, 5, 0.48) 58%, rgba(5, 5, 5, 0.96) 100%),
    var(--typeiii-hero-bg-image, url("../img/bg.jpg")) center top / cover no-repeat;
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 42%;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.98));
}

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

.brand-mark--image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.58rem;
}

.brand-mark--image img {
  display: block;
  width: 92px;
  max-width: 24vw;
  height: auto;
}

.hero-logo {
  margin-top: 1rem;
  font-size: 0;
  line-height: 1;
}

.hero-logo img {
  display: block;
  width: min(720px, 92vw);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(238, 238, 234, 0.05));
}

@media (min-width: 980px) {
  .hero {
    min-height: 58vh;
    padding-block: 4.5rem 1.5rem;
  }
}

@media (min-width: 720px) {
  .tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .tile,
  .tile--events,
  .tile--label,
  .tile--podcast,
  .tile--residents,
  .tile--merch,
  .tile--about {
    grid-column: auto !important;
    min-height: 220px;
    height: 100%;
  }
}

@media (min-width: 980px) {
  .tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tile,
  .tile--events,
  .tile--label,
  .tile--podcast,
  .tile--residents,
  .tile--merch,
  .tile--about {
    min-height: 240px;
  }
}

.card-list--events .event-card__poster--image {
  display: block;
  padding: 0;
  line-height: 0;
}

.card-list--events .event-card__poster--image img {
  display: block;
  vertical-align: top;
  transform: none;
  transform-origin: center center;
  transition: filter 180ms ease;
}

.card-list--events .event-card:hover .event-card__poster--image img,
.card-list--events .event-card:focus-within .event-card__poster--image img {
  transform: none;
  filter: grayscale(0%) saturate(1.02) contrast(1.06) brightness(0.92);
}

.release-accordion {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.release-accordion__summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.release-accordion__summary::-webkit-details-marker {
  display: none;
}

.release-accordion__title {
  display: block;
  margin-top: 0.45rem;
  font-family: "Neuborn", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.release-accordion__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.release-accordion__toggle::before {
  content: "–";
}

.release-accordion:not([open]) .release-accordion__toggle::before {
  content: "+";
}

.release-accordion .release-grid {
  padding: 1rem;
}

/* v1.6.1 tweaks */
.brand-mark--image {
  padding: 0.2rem;
  background: transparent;
  border: 0;
}

.brand-mark--image img {
  display: block;
  width: 78px;
  max-width: 18vw;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.release-card .mini-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  justify-items: stretch;
}

.release-card .mini-links a,
.release-card .mini-links .link-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  min-height: 2.65rem;
  padding: 0.72rem 0.9rem;
  box-sizing: border-box;
}

.release-card .mini-links .link-disabled small {
  display: none;
}


/* v1.6.1.1 refinements: compact top bar, true top anchor, no event flyer top gap */
html {
  scroll-padding-top: 0;
}

.site-header {
  padding-block: 0.55rem;
}

.brand-mark--image {
  padding: 0;
}

.brand-mark--image img {
  width: 46px;
  max-width: 13vw;
}

@media (max-width: 719px) {
  .site-header {
    padding-block: 0.5rem;
  }

  .brand-mark--image img {
    width: 40px;
    max-width: 12vw;
  }
}

#top {
  scroll-margin-top: 0;
}

.card-list--events .event-card__poster--image {
  padding: 0;
  border-top: 0;
  line-height: 0;
}

.card-list--events .event-card__poster--image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}


/* v1.6.1.2 refinements: solid footer email, stacked release card buttons, zero event flyer top gap */
.footer-email {
  font-family: "Neuborn", "Inter", system-ui, sans-serif;
}

.release-card .mini-links {
  grid-template-columns: 1fr;
}

.release-card .mini-links a,
.release-card .mini-links .link-disabled {
  width: 100%;
  min-width: 100%;
}

.card-list--events .event-card__poster,
.card-list--events .event-card__poster--image {
  display: block;
  margin: 0;
  padding: 0 !important;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  align-content: start;
  place-items: initial;
}

.card-list--events .event-card__poster--image img {
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: top;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: fill;
  object-position: center top;
}


/* v1.7 client-approved direction: restore hollow hero, visible top-left mark, staggered tiles, and spacious hero */
.hero {
  min-height: 76vh;
  align-content: end;
  padding-block: clamp(5.5rem, 12vw, 9rem) 2rem;
}

.hero h1,
#hero-title {
  margin-top: 1rem;
  font-family: var(--brand-font);
  font-size: clamp(4.4rem, 19vw, 14rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand-mark--image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.58rem;
  background: transparent;
  border: 1px solid var(--line-strong);
}

.brand-mark--image img {
  display: block;
  width: 92px;
  max-width: 24vw;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 719px) {
  .brand-mark--image img {
    width: 82px;
    max-width: 28vw;
  }
}

@media (min-width: 720px) {
  .tile-grid {
    grid-template-columns: repeat(6, 1fr);
    align-items: stretch;
  }

  .tile {
    min-height: 220px;
    height: auto;
  }

  .tile--events {
    grid-column: span 4 !important;
  }

  .tile--label {
    grid-column: span 2 !important;
  }

  .tile--podcast,
  .tile--residents {
    grid-column: span 3 !important;
  }

  .tile--merch {
    grid-column: span 2 !important;
  }

  .tile--about {
    grid-column: span 4 !important;
  }
}

@media (min-width: 980px) {
  .hero {
    min-height: 76vh;
    padding-block: clamp(5.5rem, 12vw, 9rem) 2rem;
  }

  .tile-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .tile--events {
    grid-column: span 5 !important;
  }

  .tile--label {
    grid-column: span 3 !important;
  }

  .tile--podcast {
    grid-column: span 4 !important;
  }

  .tile--residents {
    grid-column: span 4 !important;
  }

  .tile--merch {
    grid-column: span 3 !important;
  }

  .tile--about {
    grid-column: span 5 !important;
  }
}


/* v1.7.1 refinements: hide hero text until hollow font loads, solid top-left mark, newsletter, hero email hover */
.hero-title.is-font-loading {
  opacity: 0;
}

.hero-title.is-font-ready {
  opacity: 1;
  transition: opacity 220ms ease;
}

.brand-mark {
  font-family: "Neuborn", "Inter", system-ui, sans-serif;
}

.hero-email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.15rem;
  padding: 0.55rem 0.68rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-email-link:hover,
.hero-email-link:focus-visible {
  color: #fff;
  border-color: rgba(238, 238, 234, 0.42);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}

.newsletter-section {
  padding-block: 4rem;
}

.newsletter-panel {
  display: grid;
  gap: 1.25rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  padding: clamp(1rem, 3vw, 2rem);
}

.newsletter-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  gap: 0.75rem;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 3rem;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.48);
  color: var(--text);
  font: inherit;
}

.newsletter-form input {
  padding: 0.75rem 0.85rem;
}

.newsletter-form input::placeholder {
  color: rgba(238, 238, 234, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.95rem;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  color: #fff;
  border-color: rgba(238, 238, 234, 0.42);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}

.newsletter-note {
  margin: 0;
  color: var(--dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (min-width: 720px) {
  .newsletter-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: end;
  }

  .newsletter-panel .section-heading,
  .newsletter-note {
    grid-column: 1 / -1;
  }

  .newsletter-form {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}


/* v1.7.1.2 final prototype refinements: true top scroll, hero email action link, newsletter copy, SEO-safe structure */
.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hero-contact-link {
  margin-top: 0;
  width: fit-content;
}

.newsletter-note {
  max-width: 620px;
}

.hero-email-link {
  display: inline-block;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}


/* v1.7.1.3 refinements: extended hero contact underline, stacked featured release links, desktop nav underline */
@media (min-width: 720px) {
  .hero-contact-link {
    display: block;
    width: 100%;
    padding-bottom: 0.2rem;
  }
}

.release-panel--featured .release-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  align-items: stretch;
}

.release-panel--featured .release-links a,
.release-panel--featured .release-links .link-disabled {
  width: 100%;
  min-width: 100%;
  text-align: center;
}

@media (min-width: 720px) {
  .site-header .site-nav a {
    position: relative;
  }

  .site-header .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.42rem;
    height: 1px;
    background: rgba(238, 238, 234, 0.58);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header .site-nav a:hover::after,
  .site-header .site-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
  }
}


/* v1.7.1.4 refinements: long underline section CTAs + compact featured label links on desktop */
.section-link,
.events-more-link,
.podcast-more-link,
.releases-more-link,
.merch-store-link {
  display: flex;
  width: 100%;
  padding-bottom: 0.24rem;
}

.footer-email {
  display: block;
  width: 100%;
  padding-bottom: 0.24rem;
}

.footer-meta .text-link {
  display: inline-flex;
  min-width: min(100%, 18rem);
  padding-bottom: 0.18rem;
}

@media (min-width: 720px) {
  .release-panel--featured .release-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
  }

  .release-panel--featured .release-links a,
  .release-panel--featured .release-links .link-disabled {
    width: auto;
    min-width: 0;
    flex: 1 1 calc(50% - 0.65rem);
  }
}

@media (min-width: 980px) {
  .release-panel--featured .release-links a,
  .release-panel--featured .release-links .link-disabled {
    flex-basis: calc(50% - 0.65rem);
  }
}


/* v1.7.1.5 refinements: keep long underline only for hero contact, restore section/footer links, stagger featured label buttons */
.section-link,
.events-more-link,
.podcast-more-link,
.releases-more-link,
.merch-store-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 0;
}

.footer-email {
  display: inline-block;
  width: auto;
  padding-bottom: 0;
}

.footer-meta .text-link {
  display: inline;
  min-width: 0;
  padding-bottom: 0;
}

/* Keep the extended underline only where it was originally intended */
@media (min-width: 720px) {
  .hero-contact-link {
    display: block;
    width: 100%;
    padding-bottom: 0.2rem;
  }
}

/* Featured Label buttons: compact staggered grid on desktop, stacked on mobile */
@media (min-width: 720px) {
  .release-panel--featured .release-links {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: stretch;
  }

  .release-panel--featured .release-links a,
  .release-panel--featured .release-links .link-disabled {
    width: auto;
    min-width: 0;
    flex: none;
    text-align: center;
  }

  .release-panel--featured .release-links > :nth-child(1) {
    grid-column: span 5;
  }

  .release-panel--featured .release-links > :nth-child(2) {
    grid-column: span 7;
  }

  .release-panel--featured .release-links > :nth-child(n+3) {
    grid-column: span 3;
  }
}


/* v1.7.1.6 final polish: 3x2 platform grids for featured Label and footer */
@media (min-width: 720px) {
  .release-panel--featured .release-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: stretch;
  }

  .release-panel--featured .release-links > * {
    grid-column: auto !important;
    width: 100%;
    min-width: 0;
    flex: none;
    text-align: center;
  }
}

.footer-platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.footer-platform-grid a,
.footer-platform-grid .link-disabled {
  width: 100%;
  margin-top: 0;
  text-align: center;
  border-bottom: 0;
}

@media (min-width: 720px) {
  .footer-platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* v1.7.1.7 footer contact/platform grid includes Instagram and Facebook */
@media (min-width: 720px) {
  .footer-platform-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* v1.7.1.8 footer links grouped by purpose: social/presence + music platforms */
.footer-platform-groups {
  display: grid;
  gap: 0.65rem;
}

.footer-link-group {
  display: grid;
  gap: 0.65rem;
}

.footer-link-group a,
.footer-link-group .link-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.65rem;
  margin-top: 0;
  padding: 0.72rem 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
  color: #fff;
  border-color: rgba(238, 238, 234, 0.42);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}

@media (min-width: 720px) {
  .footer-platform-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-link-group--presence {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-link-group--music {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* v1.7.1.9 comparison: use SVG logo in hero only */
.hero-logo--svg {
  margin-top: 1rem;
  font-size: 0;
  line-height: 1;
}

.hero-logo--svg img {
  display: block;
  width: min(720px, 92vw);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(238, 238, 234, 0.05));
}


/* v1.7.2 mobile nav readability adjustment */
@media (max-width: 719px) {
  .site-header .site-nav a {
    font-size: 0.86rem;
    letter-spacing: 0.13em;
  }
}


/* v1.7.2.1 event flyer hover stability fix */
.card-list--events .event-card__poster,
.card-list--events .event-card__poster:hover,
.card-list--events .event-card__poster:focus-visible,
.card-list--events .event-card__poster--image,
.card-list--events .event-card__poster--image:hover,
.card-list--events .event-card__poster--image:focus-visible {
  padding-left: 0 !important;
  transform: none !important;
  background: #050505;
}

.card-list--events .event-card__poster::before,
.card-list--events .event-card__poster::after,
.card-list--events .event-card__poster--image::before,
.card-list--events .event-card__poster--image::after {
  transform: none !important;
}

.card-list--events .event-card__poster--image img,
.card-list--events .event-card__poster--image:hover img,
.card-list--events .event-card__poster--image:focus-visible img,
.card-list--events .event-card:hover .event-card__poster--image img,
.card-list--events .event-card:focus-within .event-card__poster--image img {
  transform: none !important;
}

/* Keep the subtle slide interaction only on the text CTA inside event cards */
.card-list--events .event-card__body .action-link:hover,
.card-list--events .event-card__body .action-link:focus-visible {
  padding-left: 0.35rem;
  transform: translateX(2px);
}


/* v1.7.2.2 mobile event flyer brightness */
@media (max-width: 719px) {
  .card-list--events .event-card__poster--image img,
  .card-list--events .event-card__poster--image:hover img,
  .card-list--events .event-card__poster--image:focus-visible img,
  .card-list--events .event-card:hover .event-card__poster--image img,
  .card-list--events .event-card:focus-within .event-card__poster--image img {
    filter: grayscale(0) brightness(1) contrast(1) !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* v1.7.2.3 mobile nav readability + jump-link alignment */
@media (max-width: 719px) {
  .site-header .site-nav a {
    font-size: clamp(1.06rem, 4.7vw, 1.34rem) !important;
    letter-spacing: 0.11em;
    line-height: 1.05;
  }

  section[id] {
    scroll-margin-top: 0 !important;
  }

  html {
    scroll-padding-top: 0 !important;
  }
}


/* v1.7.2.4 mobile homepage tile title scale */
@media (max-width: 719px) {
  .tile__title {
    font-size: clamp(2.4rem, 10vw, 3rem) !important;
    letter-spacing: 0.025em;
    line-height: 0.9;
  }
}


/* v1.7.2.5 approved hollow hero + no first-load fallback flash + mobile clipping fix */
@font-face {
  font-family: "Neuborn Hollow";
  src: url("../fonts/Neuborn-RegularHollow.otf") format("opentype"),
       local("Neuborn Regular Hollow"),
       local("Neuborn-RegularHollow");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

#hero-title.hero-title {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 1rem;
  margin-left: -0.055em;
  padding-top: 0.1em;
  padding-left: 0.075em;
  overflow: visible;
  font-family: "Neuborn Hollow", "Neuborn", "Inter", system-ui, sans-serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  will-change: opacity;
}

#hero-title.hero-title.is-font-loading {
  visibility: hidden !important;
  opacity: 0 !important;
}

#hero-title.hero-title.is-font-ready {
  visibility: visible !important;
  opacity: 1 !important;
  transition: opacity 220ms ease;
}

.hero__content {
  overflow: visible;
}

@media (max-width: 719px) {
  #hero-title.hero-title {
    margin-left: -0.035em;
    padding-top: 0.14em;
    padding-left: 0.105em;
    line-height: 1;
  }
}

/* v1.7.2.5 one-page Impressum placeholder */
.impressum-section {
  grid-column: 1 / -1;
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.impressum-section h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.8rem, 6vw, 3.6rem);
}

.impressum-placeholder {
  max-width: 760px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.impressum-placeholder p {
  margin: 0;
}

.impressum-placeholder p + p {
  margin-top: 0.55rem;
}


/* v1.7.2.6 footer credit update + collapsible Impressum */
.impressum-toggle,
.impressum-close {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.impressum-toggle {
  color: inherit;
  padding: 0;
}

.impressum-close {
  display: inline-block;
  margin-top: 0.95rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impressum-section[hidden] {
  display: none !important;
}

.impressum-section {
  scroll-margin-top: 1rem;
}


/* v1.7.2.7 hero scale refinement */
#hero-title.hero-title {
  font-size: clamp(5.4rem, 18vw, 17.25rem) !important;
}

@media (max-width: 719px) {
  #hero-title.hero-title {
    font-size: clamp(5.2rem, 25vw, 8.15rem) !important;
    max-width: calc(100vw - 2rem);
  }
}


/* v1.7.2.8 optional Artists + Gallery sections */
.artist-grid {
  align-items: stretch;
}

.artist-card__image img,
.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-section {
  overflow: visible;
}

.instagram-feed-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.instagram-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.instagram-tile::after {
  content: "IG";
  position: absolute;
  right: 0.65rem;
  bottom: 0.55rem;
  color: rgba(238, 238, 234, 0.72);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 180ms ease;
}

.instagram-tile:hover,
.instagram-tile:focus-visible {
  border-color: var(--accent-line);
  background: var(--panel-strong);
  box-shadow: 0 24px 76px rgba(0,0,0,0.42), 0 0 0 1px rgba(216, 214, 196, 0.045);
  transform: translateY(-2px);
}

.instagram-tile:hover::after,
.instagram-tile:focus-visible::after {
  opacity: 1;
}

.instagram-tile img {
  filter: grayscale(0.25) brightness(0.82) contrast(1.05);
  transition: filter 180ms ease, transform 180ms ease;
}

.instagram-tile:hover img,
.instagram-tile:focus-visible img {
  filter: grayscale(0) brightness(1) contrast(1);
  transform: scale(1.035);
}

.gallery-more-link {
  margin-top: 1.25rem;
}

@media (min-width: 720px) {
  .instagram-feed-preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .instagram-tile img {
    filter: grayscale(0) brightness(1) contrast(1);
  }
}


/* v1.7.2.9 stable 8-card homepage nav grid + expandable artists grid */
@media (min-width: 980px) {
  .tile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(220px, auto);
    align-items: stretch;
  }

  .tile-grid .tile,
  .tile-grid .tile--large,
  .tile-grid .tile--wide,
  .tile-grid .tile--long,
  .tile-grid .tile--events,
  .tile-grid .tile--label,
  .tile-grid .tile--podcast,
  .tile-grid .tile--residents,
  .tile-grid .tile--artists,
  .tile-grid .tile--gallery,
  .tile-grid .tile--merch,
  .tile-grid .tile--about {
    grid-column: span 1 !important;
    min-height: 230px;
  }

  .tile-grid .tile:nth-child(odd) {
    transform: translateY(0);
  }

  .tile-grid .tile:nth-child(even) {
    transform: translateY(18px);
  }

  .tile-grid .tile:hover,
  .tile-grid .tile:focus-visible {
    transform: translateY(-2px);
  }

  .tile-grid .tile:nth-child(even):hover,
  .tile-grid .tile:nth-child(even):focus-visible {
    transform: translateY(14px);
  }

  .tile__title {
    font-size: clamp(2.35rem, 3.8vw, 4rem);
  }

  .artist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 720px) and (max-width: 979px) {
  .tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch;
  }

  .tile-grid .tile,
  .tile-grid .tile--large,
  .tile-grid .tile--wide,
  .tile-grid .tile--long {
    grid-column: span 1 !important;
  }

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

.artist-grid {
  align-items: stretch;
}

.artist-card {
  grid-template-columns: 1fr;
}

.artist-card .resident-card__image {
  min-height: 260px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.artist-card h3 {
  word-break: normal;
  overflow-wrap: anywhere;
}

.artist-card p {
  font-size: 0.88rem;
}


/* v1.7.2.10 stable horizontal homepage nav grid refinement */
@media (min-width: 980px) {
  .tile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(230px, auto);
    align-items: stretch;
  }

  .tile-grid .tile,
  .tile-grid .tile--large,
  .tile-grid .tile--wide,
  .tile-grid .tile--long,
  .tile-grid .tile--events,
  .tile-grid .tile--label,
  .tile-grid .tile--podcast,
  .tile-grid .tile--residents,
  .tile-grid .tile--artists,
  .tile-grid .tile--gallery,
  .tile-grid .tile--merch,
  .tile-grid .tile--about {
    grid-column: span 1 !important;
    min-height: 230px;
    transform: none !important;
  }

  .tile-grid .tile:nth-child(even),
  .tile-grid .tile:nth-child(odd) {
    transform: none !important;
  }

  .tile-grid .tile:hover,
  .tile-grid .tile:focus-visible,
  .tile-grid .tile:nth-child(even):hover,
  .tile-grid .tile:nth-child(even):focus-visible,
  .tile-grid .tile:nth-child(odd):hover,
  .tile-grid .tile:nth-child(odd):focus-visible {
    transform: translateY(-2px) !important;
  }

  /* Horizontal stagger only: alternate the internal content rhythm without changing card height */
  .tile-grid .tile:nth-child(4n + 2),
  .tile-grid .tile:nth-child(4n + 4) {
    padding-left: 1.35rem;
  }

  .tile-grid .tile:nth-child(4n + 1),
  .tile-grid .tile:nth-child(4n + 3) {
    padding-right: 1.35rem;
  }

  .tile__title {
    font-size: clamp(2.35rem, 3.8vw, 4rem);
  }
}


/* v1.7.2.11 length-wise staggered homepage nav grid */
@media (min-width: 980px) {
  .tile-grid {
    grid-template-columns: repeat(24, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(230px, auto);
    align-items: stretch;
  }

  .tile-grid .tile,
  .tile-grid .tile--large,
  .tile-grid .tile--wide,
  .tile-grid .tile--long,
  .tile-grid .tile--events,
  .tile-grid .tile--label,
  .tile-grid .tile--podcast,
  .tile-grid .tile--residents,
  .tile-grid .tile--artists,
  .tile-grid .tile--gallery,
  .tile-grid .tile--merch,
  .tile-grid .tile--about {
    min-height: 230px;
    padding-left: 1rem;
    padding-right: 1rem;
    transform: none !important;
  }

  .tile-grid .tile:nth-child(1) { grid-column: span 5 !important; }
  .tile-grid .tile:nth-child(2) { grid-column: span 7 !important; }
  .tile-grid .tile:nth-child(3) { grid-column: span 5 !important; }
  .tile-grid .tile:nth-child(4) { grid-column: span 7 !important; }

  .tile-grid .tile:nth-child(5) { grid-column: span 7 !important; }
  .tile-grid .tile:nth-child(6) { grid-column: span 5 !important; }
  .tile-grid .tile:nth-child(7) { grid-column: span 7 !important; }
  .tile-grid .tile:nth-child(8) { grid-column: span 5 !important; }

  .tile-grid .tile:nth-child(even),
  .tile-grid .tile:nth-child(odd) {
    transform: none !important;
  }

  .tile-grid .tile:hover,
  .tile-grid .tile:focus-visible,
  .tile-grid .tile:nth-child(even):hover,
  .tile-grid .tile:nth-child(even):focus-visible,
  .tile-grid .tile:nth-child(odd):hover,
  .tile-grid .tile:nth-child(odd):focus-visible {
    transform: translateY(-2px) !important;
  }
}


/* WordPress dynamic nav-card count protection. Keeps v1.7.2.11 length-wise staggered card language for edited card counts. */
.tile-grid.nav-count-1 .tile { grid-column: 1 / -1; }
.tile-grid.nav-count-2 .tile:nth-child(1) { grid-column: span 11; }
.tile-grid.nav-count-2 .tile:nth-child(2) { grid-column: span 13; }
.tile-grid.nav-count-3 .tile:nth-child(1) { grid-column: span 8; }
.tile-grid.nav-count-3 .tile:nth-child(2) { grid-column: span 10; }
.tile-grid.nav-count-3 .tile:nth-child(3) { grid-column: span 6; }
.tile-grid.nav-count-4 .tile:nth-child(1) { grid-column: span 11; }
.tile-grid.nav-count-4 .tile:nth-child(2) { grid-column: span 13; }
.tile-grid.nav-count-4 .tile:nth-child(3) { grid-column: span 13; }
.tile-grid.nav-count-4 .tile:nth-child(4) { grid-column: span 11; }
.tile-grid.nav-count-5 .tile:nth-child(1) { grid-column: span 9; }
.tile-grid.nav-count-5 .tile:nth-child(2) { grid-column: span 7; }
.tile-grid.nav-count-5 .tile:nth-child(3) { grid-column: span 8; }
.tile-grid.nav-count-5 .tile:nth-child(4) { grid-column: span 13; }
.tile-grid.nav-count-5 .tile:nth-child(5) { grid-column: span 11; }
.tile-grid.nav-count-6 .tile:nth-child(1) { grid-column: span 7; }
.tile-grid.nav-count-6 .tile:nth-child(2) { grid-column: span 10; }
.tile-grid.nav-count-6 .tile:nth-child(3) { grid-column: span 7; }
.tile-grid.nav-count-6 .tile:nth-child(4) { grid-column: span 8; }
.tile-grid.nav-count-6 .tile:nth-child(5) { grid-column: span 7; }
.tile-grid.nav-count-6 .tile:nth-child(6) { grid-column: span 9; }
.tile-grid.nav-count-7 .tile:nth-child(1) { grid-column: span 5; }
.tile-grid.nav-count-7 .tile:nth-child(2) { grid-column: span 7; }
.tile-grid.nav-count-7 .tile:nth-child(3) { grid-column: span 5; }
.tile-grid.nav-count-7 .tile:nth-child(4) { grid-column: span 7; }
.tile-grid.nav-count-7 .tile:nth-child(5) { grid-column: span 7; }
.tile-grid.nav-count-7 .tile:nth-child(6) { grid-column: span 5; }
.tile-grid.nav-count-7 .tile:nth-child(7) { grid-column: span 12; }
.tile-grid.nav-count-8 .tile:nth-child(1), .tile-grid.nav-count-9 .tile:nth-child(1), .tile-grid.nav-count-10 .tile:nth-child(1), .tile-grid.nav-count-11 .tile:nth-child(1), .tile-grid.nav-count-12 .tile:nth-child(1) { grid-column: span 5; }
.tile-grid.nav-count-8 .tile:nth-child(2), .tile-grid.nav-count-9 .tile:nth-child(2), .tile-grid.nav-count-10 .tile:nth-child(2), .tile-grid.nav-count-11 .tile:nth-child(2), .tile-grid.nav-count-12 .tile:nth-child(2) { grid-column: span 7; }
.tile-grid.nav-count-8 .tile:nth-child(3), .tile-grid.nav-count-9 .tile:nth-child(3), .tile-grid.nav-count-10 .tile:nth-child(3), .tile-grid.nav-count-11 .tile:nth-child(3), .tile-grid.nav-count-12 .tile:nth-child(3) { grid-column: span 5; }
.tile-grid.nav-count-8 .tile:nth-child(4), .tile-grid.nav-count-9 .tile:nth-child(4), .tile-grid.nav-count-10 .tile:nth-child(4), .tile-grid.nav-count-11 .tile:nth-child(4), .tile-grid.nav-count-12 .tile:nth-child(4) { grid-column: span 7; }
.tile-grid.nav-count-8 .tile:nth-child(5), .tile-grid.nav-count-9 .tile:nth-child(5), .tile-grid.nav-count-10 .tile:nth-child(5), .tile-grid.nav-count-11 .tile:nth-child(5), .tile-grid.nav-count-12 .tile:nth-child(5) { grid-column: span 7; }
.tile-grid.nav-count-8 .tile:nth-child(6), .tile-grid.nav-count-9 .tile:nth-child(6), .tile-grid.nav-count-10 .tile:nth-child(6), .tile-grid.nav-count-11 .tile:nth-child(6), .tile-grid.nav-count-12 .tile:nth-child(6) { grid-column: span 5; }
.tile-grid.nav-count-8 .tile:nth-child(7), .tile-grid.nav-count-9 .tile:nth-child(7), .tile-grid.nav-count-10 .tile:nth-child(7), .tile-grid.nav-count-11 .tile:nth-child(7), .tile-grid.nav-count-12 .tile:nth-child(7) { grid-column: span 7; }
.tile-grid.nav-count-8 .tile:nth-child(8), .tile-grid.nav-count-9 .tile:nth-child(8), .tile-grid.nav-count-10 .tile:nth-child(8), .tile-grid.nav-count-11 .tile:nth-child(8), .tile-grid.nav-count-12 .tile:nth-child(8) { grid-column: span 5; }
.tile-grid.nav-count-9 .tile:nth-child(9) { grid-column: span 24; }
.tile-grid.nav-count-10 .tile:nth-child(9), .tile-grid.nav-count-11 .tile:nth-child(9), .tile-grid.nav-count-12 .tile:nth-child(9) { grid-column: span 11; }
.tile-grid.nav-count-10 .tile:nth-child(10), .tile-grid.nav-count-11 .tile:nth-child(10), .tile-grid.nav-count-12 .tile:nth-child(10) { grid-column: span 13; }
.tile-grid.nav-count-11 .tile:nth-child(11) { grid-column: span 24; }
.tile-grid.nav-count-12 .tile:nth-child(11) { grid-column: span 13; }
.tile-grid.nav-count-12 .tile:nth-child(12) { grid-column: span 11; }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }


/* v1.7.2.16 mobile/tablet homepage nav-card sizing patch
   Keeps the v1.7.2.11 length-wise stagger only on desktop.
   Prevents dynamic nav-count desktop spans from affecting mobile/tablet layouts. */
@media (max-width: 719px) {
  .tile-grid {
    grid-template-columns: 1fr !important;
  }

  .tile-grid[class*="nav-count-"] .tile,
  .tile-grid[class*="nav-count-"] .tile--large,
  .tile-grid[class*="nav-count-"] .tile--wide,
  .tile-grid[class*="nav-count-"] .tile--long {
    grid-column: 1 / -1 !important;
    width: 100%;
  }
}

@media (min-width: 720px) and (max-width: 979px) {
  .tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tile-grid[class*="nav-count-"] .tile,
  .tile-grid[class*="nav-count-"] .tile--large,
  .tile-grid[class*="nav-count-"] .tile--wide,
  .tile-grid[class*="nav-count-"] .tile--long {
    grid-column: span 1 !important;
    width: 100%;
  }
}


/* v1.7.3 final client adjustment patch */
/* Restore the earlier v1.7.1.8 hero TYPE III scale while preserving the v1.7.2 font-loading and mobile clipping fixes. */
#hero-title.hero-title {
  font-size: clamp(4.4rem, 19vw, 14rem) !important;
  line-height: 0.94;
}

/* Keep the newer v1.7.2.11 desktop length-wise stagger, but make mobile nav cards uniform and easier to scan. */
@media (max-width: 719px) {
  #hero-title.hero-title {
    font-size: clamp(4.4rem, 19vw, 14rem) !important;
    max-width: calc(100vw - 2rem);
    line-height: 1;
  }

  .tile-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 220px !important;
  }

  .tile-grid .tile,
  .tile-grid .tile--large,
  .tile-grid .tile--wide,
  .tile-grid .tile--long,
  .tile-grid .tile--events,
  .tile-grid .tile--label,
  .tile-grid .tile--podcast,
  .tile-grid .tile--residents,
  .tile-grid .tile--artists,
  .tile-grid .tile--gallery,
  .tile-grid .tile--merch,
  .tile-grid .tile--about {
    grid-column: 1 / -1 !important;
    width: 100%;
    min-height: 220px;
    height: 220px;
  }

  .tile__title {
    font-size: clamp(2.25rem, 9.25vw, 2.9rem) !important;
    line-height: 0.9;
    white-space: nowrap;
  }

  .tile__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

/* v1.7.3.1 artist image behavior patch
   Match Artist image treatment to Gallery image behavior instead of the Residents black-and-white photo treatment. */
.artist-card .resident-card__image--photo img,
.artist-card__image img {
  filter: grayscale(0.25) brightness(0.82) contrast(1.05) !important;
  transition: filter 180ms ease, transform 180ms ease;
}

.artist-card:hover .resident-card__image--photo img,
.artist-card:focus-within .resident-card__image--photo img,
.artist-card:hover .artist-card__image img,
.artist-card:focus-within .artist-card__image img {
  filter: grayscale(0) brightness(1) contrast(1) !important;
  transform: scale(1.035);
}

@media (max-width: 719px) {
  .artist-card .resident-card__image--photo img,
  .artist-card__image img {
    filter: grayscale(0) brightness(1) contrast(1) !important;
  }
}

/* v1.7.3.4 focused client patch
   1) Restore the hero/header visual rhythm to the v1.7.1.8 reference.
   2) Align homepage nav-card titles to a consistent desktop baseline without limiting description length.
   Nothing else is intentionally changed. */
.hero {
  min-height: 76vh;
  align-content: end;
  gap: 2rem;
  padding-block: clamp(5.5rem, 12vw, 9rem) 2rem;
}

#hero-title.hero-title {
  width: auto !important;
  max-width: 100% !important;
  margin-top: 1rem !important;
  margin-left: 0 !important;
  padding: 0 !important;
  overflow: visible;
  font-family: var(--brand-font) !important;
  font-size: clamp(4.4rem, 19vw, 14rem) !important;
  font-weight: 400 !important;
  line-height: 0.94 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase;
  transform: none !important;
}

.hero__content {
  overflow: visible;
}

.hero__intro {
  max-width: 720px;
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero__meta {
  gap: 0.65rem;
}

@media (max-width: 719px) {
  .hero {
    min-height: 76vh;
    padding-block: clamp(5.5rem, 12vw, 9rem) 2rem;
  }

  #hero-title.hero-title {
    width: auto !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 0 !important;
    font-size: clamp(4.4rem, 19vw, 14rem) !important;
    line-height: 0.94 !important;
  }
}

@media (min-width: 720px) {
  .tile-grid .tile,
  .tile-grid .tile--large,
  .tile-grid .tile--wide,
  .tile-grid .tile--long,
  .tile-grid .tile--events,
  .tile-grid .tile--label,
  .tile-grid .tile--podcast,
  .tile-grid .tile--residents,
  .tile-grid .tile--artists,
  .tile-grid .tile--gallery,
  .tile-grid .tile--merch,
  .tile-grid .tile--about {
    min-height: 260px !important;
    display: grid !important;
    grid-template-rows: 1.25rem 7.3rem minmax(3.25rem, auto);
    align-content: stretch;
    justify-content: stretch;
  }

  .tile-grid {
    grid-auto-rows: minmax(260px, auto) !important;
  }

  .tile__number {
    align-self: start;
  }

  .tile__title {
    align-self: end;
  }

  .tile__text {
    align-self: end;
    margin: 0;
  }
}

/* v1.7.3.5 focused client patch
   1) Match the hero TYPE III wordmark rendering to the v1.7.1.8 reference.
   2) Align homepage nav-card descriptions to a consistent starting height on desktop/tablet.
   No other areas are changed. */
#hero-title.hero-title {
  width: auto !important;
  max-width: 100% !important;
  margin-top: 1rem !important;
  margin-left: 0 !important;
  padding: 0 !important;
  overflow: visible;
  font-family: var(--brand-font) !important;
  font-size: clamp(4.4rem, 19vw, 14rem) !important;
  font-weight: 800 !important;
  line-height: 0.94 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase;
  transform: none !important;
}

@media (max-width: 719px) {
  #hero-title.hero-title {
    width: auto !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 0 !important;
    font-size: clamp(4.4rem, 19vw, 14rem) !important;
    font-weight: 800 !important;
    line-height: 0.94 !important;
  }
}

@media (min-width: 720px) {
  .tile-grid .tile,
  .tile-grid .tile--large,
  .tile-grid .tile--wide,
  .tile-grid .tile--long,
  .tile-grid .tile--events,
  .tile-grid .tile--label,
  .tile-grid .tile--podcast,
  .tile-grid .tile--residents,
  .tile-grid .tile--artists,
  .tile-grid .tile--gallery,
  .tile-grid .tile--merch,
  .tile-grid .tile--about {
    min-height: 280px !important;
    display: grid !important;
    grid-template-rows: 1.25rem 8.25rem minmax(4rem, auto) !important;
    align-content: stretch !important;
    justify-content: stretch !important;
  }

  .tile-grid {
    grid-auto-rows: minmax(280px, auto) !important;
  }

  .tile__number {
    grid-row: 1;
    align-self: start !important;
  }

  .tile__title {
    grid-row: 2;
    align-self: end !important;
    margin: 0 !important;
  }

  .tile__text {
    grid-row: 3;
    align-self: start !important;
    margin: 0 !important;
  }
}

/* v1.7.3.6 focused nav-card spacing patch
   Adds breathing room between aligned nav-card titles and descriptions.
   Keeps the v1.7.3.5 hero wordmark unchanged. */
@media (min-width: 720px) {
  .tile-grid .tile,
  .tile-grid .tile--large,
  .tile-grid .tile--wide,
  .tile-grid .tile--long,
  .tile-grid .tile--events,
  .tile-grid .tile--label,
  .tile-grid .tile--podcast,
  .tile-grid .tile--residents,
  .tile-grid .tile--artists,
  .tile-grid .tile--gallery,
  .tile-grid .tile--merch,
  .tile-grid .tile--about {
    min-height: 300px !important;
    grid-template-rows: 1.25rem 7.85rem minmax(4.95rem, auto) !important;
  }

  .tile-grid {
    grid-auto-rows: minmax(300px, auto) !important;
  }

  .tile-grid .tile__text {
    margin-top: 1.1rem !important;
    line-height: 1.45;
  }

  .tile-grid .tile:hover .tile__title,
  .tile-grid .tile:focus-visible .tile__title {
    letter-spacing: 0.03em !important;
  }
}

/* v1.7.3.7 focused nav-card height tightening patch
   Shortens the homepage nav cards after the spacing fix while preserving room for 3-line descriptions.
   Keeps hero wordmark, layout, content, media library, favicon, and all other functionality unchanged. */
@media (min-width: 720px) {
  .tile-grid .tile,
  .tile-grid .tile--large,
  .tile-grid .tile--wide,
  .tile-grid .tile--long,
  .tile-grid .tile--events,
  .tile-grid .tile--label,
  .tile-grid .tile--podcast,
  .tile-grid .tile--residents,
  .tile-grid .tile--artists,
  .tile-grid .tile--gallery,
  .tile-grid .tile--merch,
  .tile-grid .tile--about {
    min-height: 286px !important;
    grid-template-rows: 1.25rem 7.35rem minmax(4.55rem, auto) !important;
  }

  .tile-grid {
    grid-auto-rows: minmax(286px, auto) !important;
  }

  .tile-grid .tile__text {
    margin-top: 0.95rem !important;
    line-height: 1.42;
  }
}

/* v1.7.3.8 focused nav-card spacing refinement
   Restores more of the v1.7.1.8 breathing room between nav-card titles and descriptions
   while preserving aligned title/description starts and safe room for 3-line descriptions.
   Keeps hero wordmark and all other v1.7.3.7 functionality unchanged. */
@media (min-width: 720px) {
  .tile-grid .tile,
  .tile-grid .tile--large,
  .tile-grid .tile--wide,
  .tile-grid .tile--long,
  .tile-grid .tile--events,
  .tile-grid .tile--label,
  .tile-grid .tile--podcast,
  .tile-grid .tile--residents,
  .tile-grid .tile--artists,
  .tile-grid .tile--gallery,
  .tile-grid .tile--merch,
  .tile-grid .tile--about {
    min-height: 296px !important;
    grid-template-rows: 1.25rem 7.65rem minmax(5.25rem, auto) !important;
  }

  .tile-grid {
    grid-auto-rows: minmax(296px, auto) !important;
  }

  .tile-grid .tile__title {
    align-self: end !important;
    margin: 0 !important;
  }

  .tile-grid .tile__text {
    align-self: start !important;
    margin-top: 1.25rem !important;
    line-height: 1.42;
  }

  .tile-grid .tile:hover .tile__title,
  .tile-grid .tile:focus-visible .tile__title {
    letter-spacing: 0.03em !important;
  }
}

/* v1.7.3.14 focused hero wordmark alignment patch
   Starts from v1.7.3.8. Adjusts only the hero TYPE III wordmark horizontal alignment.
   Desktop is nudged 7px right; mobile receives a stronger right nudge to prevent T clipping.
   Font size, font weight, letter spacing, line height, nav cards, and all other styling remain unchanged. */
#hero-title.hero-title {
  transform: translateX(7px) !important;
}

@media (max-width: 719px) {
  #hero-title.hero-title {
    transform: translateX(20px) !important;
  }
}

/* v1.7.3.15 focused mobile hero wordmark safety patch
   Desktop alignment remains locked from v1.7.3.14.
   Mobile receives a left-side rendering buffer so the first T glyph does not clip,
   without changing font size, font weight, letter spacing, line height, nav cards, or layout. */
@media (max-width: 719px) {
  .hero__content,
  .hero-title-wrap,
  #hero-title.hero-title {
    overflow: visible !important;
  }

  #hero-title.hero-title {
    transform: translateX(4px) !important;
    padding-left: 16px !important;
    margin-left: -16px !important;
    max-width: calc(100% + 16px) !important;
  }
}
