:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #0b0c10;
  --muted: #4a4f5a;
  --border: rgba(0, 0, 0, 0.12);
  --surface: #f5f5f7;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1100px;
  --header-height: 68px;
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --header-font-family: "Oswald", "Arial Narrow", sans-serif;
  --header-font-style: normal;
  --section-font-family: "Oswald", "Arial Narrow", sans-serif;
  --body-preview-font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
}

.theme-white {
  --bg: #ffffff;
}

.theme-black {
  --bg: #0b0c10;
  --ink: #f5f5f7;
  --muted: #c4c7cf;
  --border: rgba(255, 255, 255, 0.16);
  --surface: rgba(255, 255, 255, 0.08);
}

.theme-baby-blue {
  --bg: #e8f3ff;
}

.theme-seafoam {
  --bg: #dff4ef;
}

.theme-olive {
  --bg: #e6e2c8;
}

.theme-off-white {
  --bg: #f7f5ef;
}

.theme-cream {
  --bg: #fdfdfd;
}

.theme-rich-cream {
  --bg: #f3ecd9;
}

.font-default {
  --header-font-family: var(--font-display);
  --header-font-style: normal;
}

.font-copperplate {
  --header-font-family: "Copperplate Gothic", "Copperplate", "Georgia", serif;
  --header-font-style: normal;
}

.font-playfair {
  --header-font-family: "Playfair Display", "Didot", "Bodoni MT", serif;
  --header-font-style: normal;
}

.font-baskerville {
  --header-font-family: "Baskerville", "Baskerville Old Face", "Times New Roman", serif;
  --header-font-style: normal;
}

.font-garamond {
  --header-font-family: "Garamond", "Adobe Garamond Pro", "Times New Roman", serif;
  --header-font-style: normal;
}

.font-bodoni {
  --header-font-family: "Bodoni MT", "Didot", "Bodoni 72", serif;
  --header-font-style: normal;
}

.font-didot {
  --header-font-family: "Didot", "Bodoni MT", "Times New Roman", serif;
  --header-font-style: normal;
}

.font-georgia {
  --header-font-family: "Georgia", "Times New Roman", serif;
  --header-font-style: normal;
}

.font-rockwell {
  --header-font-family: "Rockwell", "Rockwell Nova", "Roboto Slab", serif;
  --header-font-style: normal;
}

.font-franklin {
  --header-font-family: "Franklin Gothic Medium", "Franklin Gothic", "Arial", sans-serif;
  --header-font-style: normal;
}

.font-gill {
  --header-font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  --header-font-style: normal;
}

.font-futura {
  --header-font-family: "Futura", "Futura PT", "Avenir Next", sans-serif;
  --header-font-style: normal;
}

.font-avenir {
  --header-font-family: "Avenir Next", "Avenir", "Helvetica Neue", sans-serif;
  --header-font-style: normal;
}

.font-helvetica {
  --header-font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --header-font-style: normal;
}

.font-optima {
  --header-font-family: "Optima", "Segoe UI", "Helvetica Neue", sans-serif;
  --header-font-style: normal;
}

.font-palatino {
  --header-font-family: "Palatino", "Palatino Linotype", "Book Antiqua", serif;
  --header-font-style: normal;
}

.font-bookman {
  --header-font-family: "Bookman Old Style", "Bookman", "Georgia", serif;
  --header-font-style: normal;
}

.font-century {
  --header-font-family: "Century Gothic", "CenturyGothic", "Gill Sans", sans-serif;
  --header-font-style: normal;
}

.font-courier {
  --header-font-family: "Courier Prime", "Courier New", monospace;
  --header-font-style: normal;
}

.font-mono {
  --header-font-family: "Space Mono", "Menlo", "Consolas", monospace;
  --header-font-style: normal;
}

.font-comic {
  --header-font-family: "Comic Neue", "Comic Sans MS", cursive;
  --header-font-style: normal;
}

.font-impact {
  --header-font-family: "Impact", "Haettenschweiler", "Arial Black", sans-serif;
  --header-font-style: normal;
}

.font-oswald {
  --header-font-family: "Oswald", "Arial Narrow", sans-serif;
  --header-font-style: normal;
}

.section-font-toggle {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.section-font-toggle select {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}

.section-font-bebas {
  --section-font-family: "Bebas Neue", "Arial Narrow", sans-serif;
}

.section-font-oswald {
  --section-font-family: "Oswald", "Arial Narrow", sans-serif;
}

.section-font-league {
  --section-font-family: "League Gothic", "Arial Narrow", sans-serif;
}

.section-font-roboto {
  --section-font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
}

.section-font-teko {
  --section-font-family: "Teko", "Arial Narrow", sans-serif;
}

.body-font-toggle {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.body-font-toggle select {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}

.body-font-grotesk {
  --body-preview-font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.body-font-inter {
  --body-preview-font-family: "Inter", "Segoe UI", sans-serif;
}

.body-font-work-sans {
  --body-preview-font-family: "Work Sans", "Segoe UI", sans-serif;
}

.body-font-source-sans {
  --body-preview-font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

.body-font-georgia {
  --body-preview-font-family: "Georgia", "Times New Roman", serif;
}

.body-font-helvetica {
  --body-preview-font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.body-preview {
  font-family: var(--body-preview-font-family);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  min-height: var(--header-height);
  gap: 16px;
  overflow: visible;
}

.header-center-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.toolbar-align-toggle {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.listen-icon-toggle {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.listen-icon-toggle select {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}

.toolbar-align-toggle select {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}

body.toolbar-align-center .header-center-group {
  margin-left: auto;
  margin-right: auto;
  gap: 4px;
  flex: 0 0 auto;
}

body.toolbar-align-center .site-nav {
  margin-left: 0;
}

body.toolbar-align-center .brand {
  width: 110px;
}

body.toolbar-align-center .brand-mark {
  left: 0;
}

body.toolbar-align-right .header-center-group {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  height: 44px;
  width: 160px;
  z-index: 2;
}

.brand-mark {
  height: 88px;
  width: auto;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(calc(-50% + 4px));
  display: block;
  z-index: 2;
}

.brand-mark {
  transform: translateY(calc(-50% + 4px)) scale(1.06, 0.94);
  transform-origin: center;
}

body.toolbar-logo-official .brand-mark {
  transform: translateY(calc(-50% + 4px)) scale(0.64, 0.568);
}

body.toolbar-logo-bg-transparent .brand-mark {
  transform: translateY(calc(-50% - 1px)) scale(0.8);
}

body.hero-logo-official .alt-hero img {
  transform: scale(0.7);
  transform-origin: center;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  transform: translateY(3px);
  margin-left: auto;
}

body.nav-align-center .site-nav {
  flex: 1;
  width: 100%;
  justify-content: center;
}

.site-nav.is-open {
  display: flex;
}

.toolbar-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.toolbar-controls {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  display: grid;
  gap: 8px;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.toolbar-controls.is-hidden {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.toolbar-controls.is-hidden {
  display: none;
}

.shows-past {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 1400ms ease, opacity 900ms ease, transform 900ms ease, margin-top 900ms ease;
}

.shows-past.is-hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  margin-top: 0;
  pointer-events: none;
}

.shows-past h4 {
  margin: 16px 0 4px;
  font-family: var(--section-font-family);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-toggle {
  display: flex;
  align-items: center;
}

.theme-toggle select {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}

.nav-link {
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 0.95rem;
  font-family: var(--header-font-family);
  font-style: var(--header-font-style);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-link.is-active,
.nav-link:hover,
.nav-link:focus {
  border-bottom-color: var(--ink);
}

.page {
  min-height: calc(100vh - var(--header-height));
}

.view-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

#home.view-section {
  display: block;
  align-items: stretch;
  justify-content: flex-start;
  padding: 24px 0;
}


.view-section.is-hidden {
  display: none;
}

.view-frame {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-content {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.view-section:not(#home)::before {
  content: "";
  position: absolute;
  inset: 24px;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)),
    url("Assets/blondgurualbum.jpg");
  background-size: cover;
  background-position: center calc(50% - 120px);
  z-index: 0;
}

.view-content h2 {
  font-family: var(--header-font-family);
  font-style: var(--header-font-style);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

#bio .view-content {
  color: #ffffff;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

#bio .view-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

#bio .view-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)),
    url("Assets/blondgurualbum.jpg");
  background-size: cover;
  background-position: center calc(50% - 120px);
}

.alt-view::before {
  display: none;
}

.alt-view .view-frame {
  background: var(--bg);
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
}

.alt-hero {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
}

.alt-hero img {
  width: min(1248px, 80vw);
  height: auto;
}

.alt-copy {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.alt-copy p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
}

.alt-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.alt-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alt-social {
  display: flex;
  gap: 10px;
  margin-top: 0;
  justify-content: flex-start;
  width: auto;
  align-items: center;
}

.alt-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #000;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  text-decoration: none;
  color: #fff;
  background: #000;
}

.alt-social a.listen-badge {
  background: transparent;
  border: none;
  border-radius: 0;
}

.listen-icon-brand {
  display: block;
}

.listen-icon-black {
  display: none;
  width: 16px;
  height: 16px;
  fill: #fff;
}

body.listen-icons-black .listen-icon-brand {
  display: none;
}

body.listen-icons-black .listen-icon-black {
  display: block;
}

body.listen-icons-black .alt-social a.listen-badge {
  background: #000;
  border: 1px solid #000;
  border-radius: 50%;
  color: #fff;
}

.listen-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.listen-badge {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
}

.listen-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.listen-label {
  font-family: var(--section-font-family);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.alt-social .listen-label {
  height: 36px;
  letter-spacing: 0.04em;
}

.hero-buy-row .listen-label {
  height: 40px;
}

.alt-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.alt-album {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0 48px;
}

.alt-album img {
  width: min(900px, 85vw);
  height: auto;
}

.alt-album .alt-copy {
  width: min(900px, 85vw);
  padding-top: 12px;
  align-items: center;
  text-align: center;
}

.alt-view--side .view-frame {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 48px 48px;
  flex-wrap: wrap;
}

.alt-view--side {
  display: block;
  padding: 24px 0 0;
}

.alt-view--side .view-frame {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
}

.alt-view--side .alt-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  top: -40px;
}

.alt-view--side .alt-hero {
  min-height: auto;
  width: 100%;
  justify-content: flex-start;
  height: 220px;
}

.alt-view--side .alt-hero img {
  width: 100%;
  margin-bottom: 0;
  transform: scale(1.06, 0.94);
  transform-origin: center;
}

.alt-view--side .alt-copy {
  max-width: 100%;
  margin: 0;
  padding: 30px 0 0;
  width: 100%;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.alt-view--side .alt-album {
  flex: 1 1 0;
  min-width: 0;
  justify-content: flex-end;
  padding: 0;
}

.hero-actions-row {
  width: 100%;
  flex-basis: 100%;
  justify-content: center;
  margin-top: -14px;
}

.alt-album .hero-actions-row {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin-top: 26px;
  flex-wrap: nowrap;
}

.alt-album .alt-social {
  justify-content: center;
  width: auto;
  flex: 0 1 auto;
}

.alt-album .hero-buy-row {
  justify-content: center;
  flex: 0 0 auto;
}


.alt-view--side .alt-album img {
  width: 100%;
}

.alt-photo {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0 64px;
}

.alt-photo-wrap {
  width: 100%;
  margin-left: 0;
}

.alt-photo img {
  width: 100%;
  height: auto;
}

.alt-photo-bio {
  max-width: 420px;
  padding-top: 12px;
}


.alt-photo-bio h3 {
  margin: 0 0 12px;
  font-family: var(--section-font-family);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alt-video {
  width: 100%;
  margin: 0;
  padding: 0 0 48px;
}

.alt-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #000;
  display: block;
}

.alt-shows-embeds {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 0 24px 64px;
}

.alt-shows-embeds h3 {
  margin: 0 0 12px;
  font-family: var(--section-font-family);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shows-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.link-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.alt-shows {
  display: grid;
  gap: 12px;
  text-align: left;
  width: 100%;
}

.show-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  background: var(--surface);
  color: var(--ink);
}

.show-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

.show-card strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.alt-shop {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.alt-shop h3 {
  margin: 0 0 16px;
  font-family: var(--section-font-family);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 6px 0;
  scrollbar-width: none;
}

.shop-grid::-webkit-scrollbar {
  display: none;
}

.shop-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  flex: 0 0 clamp(220px, 30vw, 300px);
  scroll-snap-align: start;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.2);
}

.shop-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.merch-buy-link {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.merch-buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 36px;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid #000;
  background: #fff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  white-space: nowrap;
}

.shop-card h4 {
  margin: 0;
  font-size: 1.02rem;
}

.shop-card p {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.shop-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.shop-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.shop-track {
  overflow: hidden;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.carousel-arrow:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .shop-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    display: none;
  }

  .shop-grid {
    padding-right: 0;
  }
}


@media (max-width: 720px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

.shop-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  display: block;
}

.shop-note {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.alt-music {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.alt-music h3 {
  margin: 0 0 16px;
  font-family: var(--section-font-family);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.music-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.music-card {
  border: none;
  border-radius: var(--radius-md);
  padding: 16px;
  background: transparent;
  display: grid;
  row-gap: 10px;
  column-gap: 16px;
  --music-actions-width: 280px;
  --music-gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 280px);
  align-items: start;
  position: relative;
}

.music-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - var(--music-actions-width) - (var(--music-gap) * 2));
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  z-index: 0;
}

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

.music-embed-header {
  grid-column: 1 / -1;
  grid-row: 1;
  width: calc(100% - var(--music-actions-width) - (var(--music-gap) * 2));
  margin-left: auto;
  margin-right: auto;
}

.music-embed-header h4 {
  margin: 0;
  font-size: 1rem;
}

.music-embed-header p {
  margin: 0;
  color: var(--muted);
}

.music-player iframe {
  width: calc(100% - var(--music-actions-width) - (var(--music-gap) * 2));
  height: 100%;
}

.music-player {
  grid-column: 1 / -1;
  height: 352px;
  grid-row: 2;
  display: flex;
  justify-content: center;
}

.music-buy-row {
  justify-content: flex-end;
}

.music-actions {
  grid-column: 1 / -1;
  grid-row: 4;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 0;
  align-self: center;
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: nowrap;
}

.music-actions-label {
  grid-column: 1 / 3;
  grid-row: 3;
  align-self: center;
  text-align: center;
  width: calc(100% - var(--music-actions-width) - (var(--music-gap) * 2));
  margin-left: auto;
  margin-right: auto;
}
.music-stream-label {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.music-buy-link {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--ink);
  white-space: nowrap;
}
.music-meta h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.music-meta p {
  margin: 0 0 10px;
  color: var(--muted);
}

.music-links {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 6px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-right: 28px;
}

.music-buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.music-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
}

.music-links a::before,
.music-links a::after {
  content: none !important;
}

.music-links a {
  box-shadow: none !important;
  outline: none;
}

.music-link-sep {
  color: var(--muted);
}

.hero-buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  align-items: center;
}

.hero-buy-link {
  font-family: var(--section-font-family);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.music-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #000;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  transition: transform 160ms ease, box-shadow 160ms ease;
}


.bandcamp-logo {
  height: 30px;
  width: auto;
  display: inline-block;
  vertical-align: -2px;
  margin-left: -4px;
}

.merch-buy .bandcamp-logo {
  height: 18px;
  margin-left: 0;
  vertical-align: middle;
}


.music-buy:hover,
.music-buy:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}


@media (max-width: 900px) {
  .music-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
  }

  .music-card::before {
    display: none;
  }

  .music-embed-header {
    order: 1;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .music-actions-label {
    order: 3;
    width: 100%;
  }

  .music-player {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    order: 2;
    height: 352px;
  }

  .music-player iframe {
    width: 100%;
  }

  .music-actions {
    order: 4;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    gap: 6px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .music-stream-label {
    order: 1;
    flex: 0 0 auto;
    font-size: 0.8rem;
    text-align: center;
  }

  .music-links {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 0;
    gap: 4px;
    font-size: 0.78rem;
    flex-wrap: nowrap;
    text-align: center;
  }

  .music-buy-link {
    order: 3;
    flex: 0 0 auto;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-align: center;
    margin-top: 0;
  }
}

.alt-media,
.alt-press,
.alt-social-section,
.alt-contact {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.alt-media h3,
.alt-press h3,
.alt-social-section h3,
.alt-contact h3 {
  margin: 0 0 16px;
  font-family: var(--section-font-family);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-slideshow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.media-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}

.media-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 400ms ease;
  cursor: zoom-in;
}

.media-slide.is-active {
  opacity: 1;
}

.media-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

@media (max-width: 700px) {
  .media-slideshow {
    grid-template-columns: 1fr;
  }

  .media-nav {
    width: 100%;
    border-radius: 999px;
  }
}

.video-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 820px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.press-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.press-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--surface);
}

.press-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.press-card a::after {
  content: "↗";
  font-size: 0.9em;
}

.press-card p {
  margin: 0 0 8px;
}

.alt-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.alt-social-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.instagram-embed {
  width: 100%;
  max-width: 675px;
  margin: 0 auto 16px;
  display: flex;
  justify-content: center;
}

.instagram-embed blockquote,
.instagram-embed iframe {
  margin-left: auto;
  margin-right: auto;
}

.follow-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.follow-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
}

.follow-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #000;
  display: grid;
  place-items: center;
  color: #000;
  background: #fff;
  text-decoration: none;
}

.follow-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px 40px;
  display: grid;
  gap: 16px;
  position: relative;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #000;
  display: grid;
  place-items: center;
  color: #fff;
  background: #000;
  text-decoration: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a {
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 100;
}

.lightbox img {
  max-width: min(86vw, 1100px);
  max-height: 80vh;
  border-radius: var(--radius-sm);
}

.lightbox button {
  width: 38px;
  height: 38px;
  background: rgba(12, 13, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.4rem;
}

.footer-badge {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-badge img {
  width: 60px;
  height: auto;
  display: block;
}

@media (max-width: 960px) {
  .alt-shows-embeds {
    grid-template-columns: 1fr;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 960px) {
  .alt-view--side .view-frame {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px 48px;
    flex-wrap: wrap;
  }

  .alt-view--side .alt-hero,
  .alt-view--side .alt-album {
    width: 100%;
  }
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--surface);
}

.image-card {
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.alt-contact .contact-form {
  margin: 0 auto;
  gap: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font: inherit;
}

.contact-form button {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0;
}

@media (min-width: 721px) {
  .contact-form button {
    margin-bottom: 50px;
  }
}

.alt-contact p {
  text-align: center;
}

.alt-contact {
  padding-bottom: 0;
}

.booking-logo {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  overflow: hidden;
}

.booking-logo img {
  display: block;
  margin-bottom: -24px;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    left: 16px;
  }

  .brand {
    margin: 0 auto;
    justify-content: center;
  }

  .brand-mark {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 18px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    transform: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  }

  .alt-view--side .alt-left {
    order: 1;
    align-items: center;
    text-align: center;
    width: 100%;
    top: 0;
  }

  .alt-view--side .alt-album {
    order: 2;
    margin-top: -15px;
  }

  .hero-actions-row {
    order: 3;
    margin-top: -19px;
  }

  .alt-album .hero-actions-row {
    flex-direction: column;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 18px;
  }

  .alt-view--side .alt-hero {
    justify-content: center;
    margin-top: -60px;
    min-height: auto;
  }

  .alt-view--side .view-frame {
    min-height: auto;
  }

  .alt-view--side .alt-hero img {
    margin-bottom: 0;
  }

  .alt-view--side .alt-copy {
    align-items: center;
    text-align: center;
    margin-top: -52px;
  }

  .alt-social {
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-buy-row {
    justify-content: center;
    width: 100%;
  }

  .hero-buy-link {
    text-align: center;
    white-space: normal;
  }

  .follow-icons {
    justify-content: center;
    flex-wrap: nowrap;
  }

  .follow-icons a {
    width: 32px;
    height: 32px;
  }

  .follow-icons svg {
    width: 14px;
    height: 14px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-badge {
    display: none;
  }


  .alt-photo-wrap {
    padding-left: 16px;
  }

  .alt-photo-bio {
    margin-left: -6px;
    padding-right: 12px;
  }

  .alt-photo-bio p {
    line-height: 1.6;
  }
}

@media (min-width: 721px) {
  .alt-photo-bio p {
    font-size: 22px;
    line-height: 1.6;
  }

  .booking-logo {
    display: none;
  }
}
