:root {
  --bg: #f3f2ef;
  --surface: #faf9f6;
  --text: #21211f;
  --muted: #6f6b64;
  --accent: #c9a74b;
  --accent-deep: #a6832f;
  --border: rgba(33, 33, 31, 0.16);
  --shadow: 0 12px 32px rgba(20, 18, 14, 0.08);
  --maxw: 1180px;
  --mobile-header-h: 72px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

html.font-loading body {
  visibility: hidden;
}

html.fonts-ready body {
  visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Literata", Georgia, serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 167, 75, 0.12) 0, transparent 30%),
    radial-gradient(circle at 95% 0%, rgba(60, 60, 56, 0.05) 0, transparent 24%),
    var(--bg);
  line-height: 1.6;
}

body.is-loading *,
body.is-loading *::before,
body.is-loading *::after {
  transition: none !important;
  animation: none !important;
}

body.menu-open,
body.popup-open {
  overflow: hidden;
  padding-right: var(--scrollbar-comp, 0px);
}

section[id] {
  scroll-margin-top: 31px;
}

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

.skip-link {
  position: absolute;
  top: -50px;
  left: 12px;
  padding: 8px 10px;
  background: var(--text);
  color: #fff;
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

@supports (content-visibility: auto) {
  .section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.95rem;
}

h1,
h2,
h3,
.brand,
.btn,
.desktop-nav a,
.mobile-menu a {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.9rem);
}

h2 {
  font-size: clamp(1.8rem, 4.1vw, 3.1rem);
}

h3 {
  font-size: 1.35rem;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  text-decoration: none;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.brand-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  margin-right: 10px;
}

.desktop-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.11em;
  color: #3b3934;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--accent-deep);
  outline: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 167, 75, 0.2);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #20201e;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(6px);
}

body.menu-open .menu-icon {
  background: transparent;
}

body.menu-open .menu-icon::before {
  transform: rotate(45deg);
}

body.menu-open .menu-icon::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  padding: 112px 26px 42px;
  border: 0;
  background: rgba(249, 248, 244, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
}

.mobile-menu a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.36rem;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  color: #22201c;
  text-align: center;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--accent-deep);
  outline: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  border: 0;
  background: rgba(12, 10, 8, 0.42);
  padding: 0;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

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

.hero.section {
  padding-top: 56px;
  padding-bottom: 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 34px;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-media {
  max-width: 320px;
  justify-self: start;
}

.hero-copy {
  max-width: none;
  padding: 8px 0;
  align-self: center;
}

.hero-copy-main,
.hero-copy-cta {
  min-width: 0;
}

.hero-copy h1 {
  margin: 0 0 12px;
}

.hero-copy .lead {
  margin: 0 0 14px;
  max-width: 60ch;
  font-size: clamp(1.1rem, 1.25vw, 1.38rem);
  line-height: 1.56;
  color: #2e2b25;
}

.hero-copy .release-note {
  margin: 0 0 16px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.03rem, 1.18vw, 1.25rem);
  font-weight: 600;
  color: #343026;
  max-width: 60ch;
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.hero-social-links {
  display: none;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(250, 249, 246, 0.9);
  text-decoration: none;
  color: #22201c;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.9rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.platform-link:hover,
.platform-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.platform-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-bandcamp .platform-icon,
.platform-apple .platform-icon {
  fill: currentColor;
  stroke: none;
}

.platform-facebook .platform-icon {
  fill: currentColor;
  stroke: none;
}

.platform-spotify {
  border-color: rgba(30, 185, 84, 0.65);
}

.platform-spotify:hover,
.platform-spotify:focus-visible {
  background: rgba(30, 185, 84, 0.14);
}

.platform-bandcamp {
  border-color: rgba(99, 157, 176, 0.65);
}

.platform-bandcamp:hover,
.platform-bandcamp:focus-visible {
  background: rgba(99, 157, 176, 0.14);
}

.platform-apple {
  border-color: rgba(33, 33, 31, 0.28);
}

.platform-apple:hover,
.platform-apple:focus-visible {
  background: rgba(33, 33, 31, 0.1);
}

.platform-instagram {
  border-color: rgba(221, 74, 129, 0.45);
}

.platform-instagram:hover,
.platform-instagram:focus-visible {
  background: rgba(221, 74, 129, 0.1);
}

.platform-youtube {
  border-color: rgba(255, 0, 0, 0.3);
}

.platform-youtube:hover,
.platform-youtube:focus-visible {
  background: rgba(255, 0, 0, 0.08);
}

.platform-bandsintown {
  border-color: rgba(201, 167, 75, 0.6);
}

.platform-bandsintown:hover,
.platform-bandsintown:focus-visible {
  background: rgba(201, 167, 75, 0.12);
}

.platform-facebook {
  border-color: rgba(24, 119, 242, 0.34);
}

.platform-facebook:hover,
.platform-facebook:focus-visible {
  background: rgba(24, 119, 242, 0.08);
}

.lead {
  font-size: 1.1rem;
  margin: 0 0 22px;
}

.release-note {
  margin: 0 0 22px;
  font-weight: 600;
  color: #333027;
}

.legal-main {
  padding: 56px 0 76px;
}

.legal-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-article {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(250, 249, 246, 0.96);
  box-shadow: var(--shadow);
  padding: 34px clamp(18px, 4vw, 44px);
}

.legal-title {
  margin: 0 0 12px;
}

.legal-updated {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.legal-content h3 {
  margin: 22px 0 10px;
  font-size: 1.46rem;
}

.legal-content p,
.legal-content li {
  margin: 0 0 11px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-content a {
  color: #2d2b27;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--accent-deep);
  outline: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-deep);
  background: var(--accent);
  color: #201d16;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: #dfbe63;
  outline: none;
}

.btn-light {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #ece8de;
}

.stream-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.stream-list a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  color: #3b372f;
}

.stream-list a:hover,
.stream-list a:focus-visible {
  border-color: currentColor;
  outline: none;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.album-cover-wrap img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.section-photo {
  margin: 0;
}

.section-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.lineup,
.tracklist {
  margin: 0 0 20px;
  padding-left: 22px;
}

.lineup-title {
  margin: 18px 0 8px;
  font-weight: 600;
}

.discography-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.discography-list article {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 14px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.discography-list article img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(20, 18, 14, 0.16);
}

.discography-list p {
  margin: 8px 0 0;
}

.discography-list a {
  color: #2c2b28;
}

.section-biography {
  background: linear-gradient(180deg, rgba(250, 249, 246, 0.8), rgba(245, 242, 235, 0.8));
}

.biography-layout {
  align-items: center;
}

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

.collab-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.collab-card img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 12px;
}

.collab-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.collab-card a {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.86rem;
  text-decoration: none;
  color: #2f2c26;
}

.collab-card a:hover,
.collab-card a:focus-visible {
  color: var(--accent-deep);
  outline: none;
}

.live-gallery-label {
  margin-top: 34px;
}

.live-gallery {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.live-gallery-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.live-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.live-gallery-card-tall img {
  aspect-ratio: 3 / 4;
}

.live-gallery-card figcaption {
  padding: 10px 12px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section-media {
  background: rgba(250, 249, 246, 0.72);
}

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

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
}

.blocked-embed {
  width: 100%;
  min-height: 208px;
  border: 1px dashed rgba(33, 33, 31, 0.26);
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(243, 242, 239, 0.9), rgba(248, 245, 238, 0.9));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
}

.blocked-embed[data-embed-provider="youtube"] {
  aspect-ratio: 16 / 9;
  border: 0;
  background: transparent;
}

.blocked-widget {
  min-height: 190px;
  aspect-ratio: auto;
}

.blocked-embed-inner p {
  margin: 0 0 10px;
  font-size: 0.98rem;
  color: #3f3d39;
}

.video-card p {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  order: -1;
  text-align: center;
}

.section-tour {
  background: linear-gradient(180deg, rgba(250, 249, 246, 0.5), rgba(236, 232, 223, 0.6));
}

.recording-layout,
.tour-layout {
  align-items: center;
}

.recording-contact-grid {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.recording-contact-grid .stack-form {
  background: rgba(250, 249, 246, 0.88);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.recording-photo img {
  border-radius: 20px;
}

.tour-photo img {
  border-radius: 20px;
}

.tour-widget {
  margin: 8px 0 0;
  width: 100%;
  min-height: 260px;
}

.tour-widget .bit-widget {
  font-family: "Literata", Georgia, serif;
}

.tour-widget .bit-widget-container {
  margin-top: 4px;
}

.tour-widget[data-embed-loaded="1"] {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: block;
  place-items: initial;
  text-align: left;
  padding: 0;
  overflow: visible;
  box-shadow: none;
}

.tour-widget[data-bandsintown-mode="date-only"][data-embed-loaded="1"] {
  min-height: 220px;
}

.tour-widget[data-embed-loaded="1"] .bit-widget {
  width: 100% !important;
  max-width: 100%;
}

.tour-widget[data-bandsintown-mode="date-only"][data-embed-loaded="1"] .bit-widget-container {
  margin-top: 0;
  max-height: 430px;
  overflow-y: auto;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-widget,
.tour-widget[data-bandsintown-mode="date-only"] .bit-container,
.tour-widget[data-bandsintown-mode="date-only"] .bit-event-lists,
.tour-widget[data-bandsintown-mode="date-only"] .bit-events-container,
.tour-widget[data-bandsintown-mode="date-only"] .bit-upcoming-events-container,
.tour-widget[data-bandsintown-mode="date-only"] .bit-upcoming-events {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-follow-section-wrapper,
.tour-widget[data-bandsintown-mode="date-only"] .bit-play-my-city-wrapper,
.tour-widget[data-bandsintown-mode="date-only"] .bit-play-my-city-heading-text,
.tour-widget[data-bandsintown-mode="date-only"] .bit-play-my-city-cta,
.tour-widget[data-bandsintown-mode="date-only"] .bit-nav-bar-container,
.tour-widget[data-bandsintown-mode="date-only"] .bit-event-buttons,
.tour-widget[data-bandsintown-mode="date-only"] .bit-rsvp-container,
.tour-widget[data-bandsintown-mode="date-only"] .bit-offers-container,
.tour-widget[data-bandsintown-mode="date-only"] .bit-offers,
.tour-widget[data-bandsintown-mode="date-only"] .bit-rsvp,
.tour-widget[data-bandsintown-mode="date-only"] .bit-mobile-social-share-button,
.tour-widget[data-bandsintown-mode="date-only"] .bit-mobile-date-and-share-wrapper,
.tour-widget[data-bandsintown-mode="date-only"] .bit-location-under-mobile,
.tour-widget[data-bandsintown-mode="date-only"] .bit-location-under-desktop,
.tour-widget[data-bandsintown-mode="date-only"] .bit-titleWrapper,
.tour-widget[data-bandsintown-mode="date-only"] .bit-venue,
.tour-widget[data-bandsintown-mode="date-only"] a[href*="utm_campaign=bit_logo"] {
  display: none !important;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-event,
.tour-widget[data-bandsintown-mode="date-only"] .bit-event:hover {
  text-decoration: none;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-event {
  display: block;
  border: 1px solid rgba(33, 33, 31, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  margin: 0 0 12px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(20, 18, 14, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-event:hover,
.tour-widget[data-bandsintown-mode="date-only"] .bit-event:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(166, 131, 47, 0.34);
  box-shadow: 0 10px 24px rgba(20, 18, 14, 0.08);
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-event:last-child {
  margin-bottom: 0;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-date-card {
  display: grid;
  gap: 5px;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-date-only {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.08rem;
  color: #25231f;
  line-height: 1.05;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-date-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #5f5a53;
  font-size: 0.9rem;
  line-height: 1.3;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-date-time,
.tour-widget[data-bandsintown-mode="date-only"] .bit-date-city {
  display: inline-flex;
  align-items: center;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-date-time::before,
.tour-widget[data-bandsintown-mode="date-only"] .bit-date-city::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-date-time::before {
  background: #272520;
}

.tour-widget[data-bandsintown-mode="date-only"] .bit-date-separator {
  display: inline-flex;
  align-items: center;
  color: #8b847b;
  padding: 0 1px;
}
.section-press {
  background: rgba(250, 249, 246, 0.74);
}

.quote-grid {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.quote-grid blockquote {
  margin: 0;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
}

.quote-grid cite {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.94rem;
}

.press-links {
  margin: 16px 0 0;
}

.press-links a {
  color: #2d2c29;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.stack-form,
.newsletter-form {
  display: grid;
  gap: 12px;
}

.stack-form label,
.newsletter-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 10px 12px;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(201, 167, 75, 0.35);
  border-color: var(--accent);
}

.form-status {
  min-height: 1.4em;
  margin: 2px 0 0;
  color: #3f3d39;
}

.newsletter-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.newsletter-form {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-gated {
  width: 100%;
}

.newsletter-placeholder {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 18px;
  border: 1px dashed rgba(33, 33, 31, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.newsletter-placeholder p {
  margin: 0;
  max-width: 34ch;
}

.newsletter-live[hidden] {
  display: none !important;
}

.site-footer {
  margin-top: 14px;
  padding: 22px 0 14px;
  background: #191917;
  color: #f2efe8;
}

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

.site-footer .brand {
  color: #f2efe8;
  font-size: 1.03rem;
}

.site-footer a {
  color: #f2efe8;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #e5c36b;
  outline: none;
}

.link-button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: inherit;
  cursor: pointer;
  padding: 0;
}

.link-button:hover,
.link-button:focus-visible {
  color: #e5c36b;
  outline: none;
}

.social-links,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.8rem;
}

.footer-note {
  margin: 10px 0 0;
  text-align: center;
  color: #bfb9ad;
  font-size: 0.78rem;
}

.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 16, 12, 0.52);
}

.newsletter-popup[hidden] {
  display: none;
}

.newsletter-popup-panel {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(250, 248, 243, 0.95);
  box-shadow: 0 26px 46px rgba(19, 17, 13, 0.28);
  padding: 22px 20px 18px;
}

.newsletter-popup-panel h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.newsletter-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: #2a2722;
  cursor: pointer;
  font-size: 1rem;
}

.newsletter-popup-close:hover,
.newsletter-popup-close:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.newsletter-popup-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.newsletter-popup-form .newsletter-placeholder {
  padding: 16px;
}

.cmp-banner,
.cmp-modal {
  position: fixed;
  inset: auto 18px 18px 18px;
  z-index: 165;
}

.cmp-banner[hidden],
.cmp-modal[hidden] {
  display: none;
}

.cmp-panel,
.cmp-modal-panel {
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(250, 249, 246, 0.97);
  box-shadow: 0 24px 44px rgba(19, 17, 13, 0.26);
  padding: 18px 18px 16px;
}

.cmp-panel h2,
.cmp-modal-panel h2 {
  margin-bottom: 10px;
}

.cmp-panel p {
  margin: 0 0 12px;
}

.cmp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cmp-modal {
  inset: 0;
  background: rgba(18, 16, 12, 0.54);
  display: grid;
  place-items: center;
  padding: 20px;
}

.cmp-modal-panel {
  width: min(620px, 100%);
  position: relative;
}

.cmp-close {
  top: 14px;
  right: 14px;
}

.cmp-form {
  display: grid;
  gap: 12px;
}

.cmp-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.cmp-row input[type="checkbox"] {
  margin-top: 4px;
  width: 17px;
  height: 17px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 52px;
  height: 52px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top-ring {
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}

.ring-track,
.ring-progress {
  fill: none;
  stroke-width: 2.4;
}

.ring-track {
  stroke: rgba(34, 32, 28, 0.14);
}

.ring-progress {
  stroke: var(--accent);
  stroke-linecap: round;
}

.back-to-top-arrow {
  position: absolute;
  inset: 4px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(252, 251, 246, 0.95);
  box-shadow: 0 10px 22px rgba(18, 16, 12, 0.22);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #1b1a17;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 760px) {
  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

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

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

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

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

  .newsletter-popup-form {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 760px) and (max-width: 1039px) {
  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
  }

  .site-footer .brand {
    text-align: center;
  }

  .social-links,
  .legal-links {
    justify-content: center;
    text-align: center;
    gap: 7px 12px;
  }
}

@media (min-width: 1040px) and (max-width: 1290px) {
  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .social-links,
  .legal-links {
    justify-content: center;
    text-align: center;
    gap: 8px 14px;
  }
}

@media (min-width: 1040px) {
  .hero .container {
    width: min(1480px, calc(100% - 64px));
  }

  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .menu-overlay {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 16px;
  }

  .social-links {
    justify-self: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px 14px;
  }

  .legal-links {
    justify-self: end;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(280px, 0.56fr) minmax(780px, 1.44fr);
    gap: 56px;
  }

  .hero-media {
    max-width: 387px;
  }

  .hero-copy {
    padding-right: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(250px, 0.62fr);
    column-gap: 36px;
    align-items: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.95rem, 4.2vw, 4.05rem);
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    margin: 0 0 14px;
  }

  .hero-copy .lead,
  .hero-copy .release-note {
    max-width: none;
  }

  .hero-copy .lead {
    font-size: clamp(1.1rem, 1.22vw, 1.45rem);
    line-height: 1.5;
  }

  .hero-copy-cta {
    align-self: center;
  }

  .hero-copy-cta .release-note {
    margin: 0 0 16px;
    max-width: 20ch;
    line-height: 1.32;
  }

  .hero-platforms {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 11px;
    margin-top: 0;
  }

  .platform-link {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
  }

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

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

  .live-gallery {
    grid-template-columns: 1fr 0.8fr 1fr;
  }
}

@media (max-width: 1039px) {
  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 210;
  }

  main {
    padding-top: 0;
  }

  .hero.section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--mobile-header-h) + 14px);
    padding-bottom: 24px;
    background-image:
      linear-gradient(180deg, rgba(16, 15, 12, 0.08), rgba(16, 15, 12, 0.24)),
      url("../wp-content/uploads/2020/12/DSC6392-127dp-Copia.jpg");
    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .hero .container {
    width: min(var(--maxw), calc(100% - 56px));
    margin-block: auto;
  }

  .header-inner {
    width: min(var(--maxw), calc(100% - 22px));
    min-height: var(--mobile-header-h);
    justify-content: center;
    position: relative;
  }

  .site-header .brand {
    font-size: 0.98rem;
    letter-spacing: 0.14em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .menu-toggle {
    width: 30px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    width: 24px;
    height: 2.2px;
    background: #151513;
  }

  .menu-icon::before {
    transform: translateY(-7px);
  }

  .menu-icon::after {
    transform: translateY(7px);
  }
  .hero-grid {
    display: block;
    min-height: auto;
    position: relative;
  }

  .hero-media {
    display: none;
  }

  .hero-copy {
    width: min(100%, 660px);
    max-width: 660px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(201, 167, 75, 0.16), transparent 40%),
      linear-gradient(180deg, rgba(247, 245, 238, 0.4), rgba(247, 245, 238, 0.24));
    box-shadow: 0 18px 38px rgba(15, 13, 10, 0.18);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: grid;
    gap: 14px;
    text-align: center;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-copy .release-note {
    margin: 0;
    max-width: none;
    font-size: clamp(0.92rem, 3.3vw, 1.28rem);
    line-height: 1.1;
    letter-spacing: clamp(0.01em, 0.12vw, 0.04em);
    color: #2b261d;
    white-space: nowrap;
  }

  .hero-copy-cta {
    display: grid;
    gap: 10px;
  }

  .hero-platforms,
  .hero-social-links {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-social-links {
    display: grid;
    margin-top: 4px;
  }

  .hero-copy-main,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead {
    display: none;
  }

  .platform-link {
    justify-content: center;
    padding: 12px 14px;
    min-height: 48px;
    width: min(100%, 380px);
    gap: 9px;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-align: center;
    background: rgba(250, 249, 246, 0.66);
    border-color: rgba(255, 255, 255, 0.5);
    margin-inline: auto;
  }

  .platform-icon {
    display: block;
    width: 15px;
    height: 15px;
  }
}

@media (min-width: 760px) and (max-width: 1039px) {
  .mobile-menu {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 12px;
    padding: calc(var(--mobile-header-h) + 20px) 56px 40px;
  }

  .mobile-menu a {
    display: block;
    min-height: 0;
    width: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 1.18rem;
    letter-spacing: 0.11em;
    padding: 6px 10px;
    text-align: center;
  }
}

@media (max-width: 759px) {
  .hero.section {
    background-position: center calc(var(--mobile-header-h) + 6%);
    background-attachment: fixed;
  }

  .section {
    padding: 64px 0;
  }

  .platform-link {
    width: 74%;
  }

  .container,
  .narrow {
    width: min(var(--maxw), calc(100% - 28px));
  }

  .hero .container {
    width: min(var(--maxw), calc(100% - 34px));
  }

  .legal-shell {
    width: min(980px, calc(100% - 28px));
  }

  .section-recording {
    padding-bottom: 30px;
  }

  .section-newsletter {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .tour-widget[data-bandsintown-mode="date-only"][data-embed-loaded="1"] .bit-widget-container {
    max-height: 340px;
  }

  .tour-widget[data-bandsintown-mode="date-only"] .bit-event {
    padding: 13px 14px;
    margin-bottom: 10px;
  }

  .tour-widget[data-bandsintown-mode="date-only"] .bit-date-only {
    font-size: 1rem;
  }

  .tour-widget[data-bandsintown-mode="date-only"] .bit-date-meta {
    gap: 6px;
    font-size: 0.86rem;
  }

  .recording-contact-grid {
    margin-top: 24px;
    padding-top: 22px;
  }

  .newsletter-box {
    padding: 22px 18px;
  }

  .mobile-menu {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 8px;
    padding: calc(var(--mobile-header-h) + 18px) 20px 22px;
  }

  .mobile-menu a {
    display: block;
    min-height: 0;
    width: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: clamp(1.02rem, 4.3vw, 1.14rem);
    letter-spacing: 0.11em;
    padding: 6px 10px;
    text-align: center;
  }

  .section-photo img,
  .album-cover-wrap img,
  .recording-photo img,
  .tour-photo img,
  .live-gallery-card,
  .video-card,
  .recording-contact-grid .stack-form {
    border-radius: 24px;
  }

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

  .video-card,
  .blocked-embed,
  .blocked-embed-inner {
    min-width: 0;
  }

  .blocked-embed-inner .btn {
    min-width: 0;
    white-space: normal;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }

  .site-footer .brand {
    position: static;
    left: auto;
    transform: none;
    display: inline-block;
    margin: 0 auto 2px;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.13em;
  }

  .social-links,
  .legal-links {
    justify-content: center;
    text-align: center;
    gap: 6px 12px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .footer-note {
    margin-top: 6px;
    font-size: 0.74rem;
  }

  .newsletter-popup {
    padding: 14px;
  }

  .blocked-embed-inner .btn {
    width: 100%;
  }

  .cmp-banner,
  .cmp-modal {
    inset: auto 10px 10px 10px;
  }

  .cmp-modal {
    inset: 0;
    padding: 14px;
  }
}

/* Prevent scroll jank on many mobile GPUs while preserving desktop parallax look */
@media (hover: none) and (pointer: coarse) {
  .hero.section {
    background-attachment: scroll !important;
  }

  .mobile-menu,
  .hero-copy,
  .back-to-top-arrow {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
