:root {
  --bg: #f5f6f1;
  --surface: #ffffff;
  --surface-alt: #e8ebe2;
  --text: #16211b;
  --text-muted: #4e5b52;
  --border: rgba(22, 33, 27, 0.12);
  --accent: #2f5d3f;
  --accent-2: #a68a4e;
  --secondary: #24382c;
  --on-accent: #ffffff;
  --dark: #131f18;
  --radius: 20px;
  --radius-pill: 999px;
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1240px;
  --section-pad: 128px;
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(44px, 7.5vw, 84px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(30px, 5vw, 50px);
}

h3 {
  font-size: clamp(22px, 3vw, 30px);
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
  font-weight: 400;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

.section--surface {
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--bg) 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.link-arrow:hover {
  border-bottom-color: var(--accent);
  color: var(--secondary);
}

.link-arrow::after {
  content: "→";
  font-size: 1.1em;
}

.notice-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}

.notice-strip p {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-solid {
  background: var(--surface);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  z-index: 2;
}

.brand img {
  width: 40px;
  height: 47px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-center {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 1.35rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-contact {
  justify-self: end;
}

.nav-contact a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 2px;
}

.nav-contact a[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: max(62vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-accent);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 31, 24, 0.55) 0%, rgba(19, 31, 24, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(100% - 48px, 900px);
  padding: 4rem 0;
}

.hero__content .kicker {
  color: var(--accent-2);
}

.hero__content h1 {
  color: var(--on-accent);
  margin-bottom: 1.25rem;
}

.hero__content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 42ch;
  margin-inline: auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  position: relative;
}

.category-card__img {
  flex: 1;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

.category-card__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: -5rem 1rem 0;
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem 1.85rem;
}

.category-card__panel h3 {
  margin-bottom: 0.75rem;
}

.category-card__panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding-left: 2rem;
  border-left: 1px solid var(--border);
}

.timeline__item {
  position: relative;
  padding: 0 0 2.75rem 2rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.45rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  border: 2px solid var(--bg);
}

.timeline__item h3 {
  margin-bottom: 0.6rem;
}

.timeline__item p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.about-band {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--section-pad) 0;
}

.about-band__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.about-band h2 {
  color: var(--on-accent);
}

.about-band__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-band p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-block {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
}

.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.quote-block p {
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.testimonials-grid > div:first-child p {
  color: var(--text-muted);
  margin-top: 1rem;
}

.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--surface);
  margin-bottom: 1rem;
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial p {
  color: var(--text);
  margin-bottom: 0.85rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.closing-cta {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: var(--section-pad) 0;
}

.closing-cta h2 {
  color: var(--on-accent);
  margin-bottom: 1.25rem;
}

.closing-cta p {
  max-width: 48ch;
  margin: 0 auto 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.closing-cta .link-arrow {
  color: var(--accent-2);
  margin-top: 1rem;
}

.closing-cta .link-arrow:hover {
  color: var(--on-accent);
  border-bottom-color: var(--on-accent);
}

.page-hero {
  padding: calc(var(--section-pad) * 0.7) 0 calc(var(--section-pad) * 0.55);
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--bg) 100%);
}

.page-hero h1 {
  max-width: none;
  margin-inline: 0;
}

.page-hero p {
  max-width: 60ch;
  margin-inline: 0;
  color: var(--text-muted);
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

.venue-meta {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0.85rem;
}

.catalog {
  padding-bottom: var(--section-pad);
}

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.venue-row:first-of-type {
  border-top: 1px solid var(--border);
}

.venue-row--flip {
  grid-template-columns: 1fr 40%;
}

.venue-row--flip .venue-row__media {
  order: 2;
}

.venue-row--flip .venue-row__body {
  order: 1;
}

.venue-row__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.venue-row__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.venue-row__body h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 0.5rem;
}

.venue-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0.75rem 0 1.15rem;
  border: 0;
}

.venue-row__body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 48ch;
}

.venue-bleed {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 2.5rem;
}

.venue-bleed__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.venue-bleed__body {
  padding: 2.25rem 2.5rem 2.5rem;
}

.venue-bleed__body h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 0.5rem;
}

.venue-bleed__body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 58ch;
}

.venue-band {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.venue-band:first-of-type {
  border-top: 1px solid var(--border);
}

.venue-band__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.venue-band__media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  min-height: 280px;
}

.venue-band__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: rgba(19, 31, 24, 0.62);
  color: var(--on-accent);
}

.venue-band__label h2 {
  color: var(--on-accent);
  font-size: clamp(24px, 3.2vw, 36px);
}

.venue-band__content {
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
}

.venue-band__content .venue-meta {
  margin-bottom: 1rem;
}

.venue-band__content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.catalog-close {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 62ch;
}

.editorial-narrow {
  max-width: 70ch;
  margin-inline: auto;
  padding: 0 0 var(--section-pad);
}

.editorial-narrow section {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border);
}

.editorial-narrow section:last-child {
  border-bottom: 0;
}

.editorial-narrow h2 {
  margin-bottom: 1.25rem;
}

.editorial-narrow p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.editorial-lead {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.5px;
  max-width: none;
  margin-bottom: 3.5rem;
  color: var(--text);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  padding-bottom: var(--section-pad);
}

.editorial-grid section h2 {
  margin-bottom: 1.15rem;
}

.editorial-grid p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto var(--section-pad);
}

.contact-wrap > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-email {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem 0 1rem;
}

.agree-row input {
  margin-top: 0.35rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.form-error {
  color: #8a2f2f;
  font-size: 13px;
  margin-top: 0.4rem;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-status {
  margin-top: 1rem;
  color: #8a2f2f;
  font-size: 14px;
}

.confirm-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--surface);
}

.confirm-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(26px, 4vw, 36px);
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.sitemap-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto var(--section-pad);
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 1.15rem 0;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: -0.5px;
}

.sitemap-list a:hover {
  color: var(--accent);
}

.legal-body {
  max-width: 70ch;
  margin: 0 auto var(--section-pad);
}

.legal-body h1 {
  margin-bottom: 0.75rem;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 2.25rem 0 0.85rem;
}

.legal-body h3 {
  margin: 1.5rem 0 0.6rem;
}

.legal-body p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  padding-top: 4.5rem;
}

.footer-brand-band {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-band .brand {
  margin-bottom: 1.25rem;
}

.footer-brand-band .brand-name {
  font-size: clamp(28px, 4vw, 42px);
}

.footer-blurb {
  max-width: 52ch;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.footer-pills span {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-email-large {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.5px;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-email-large:hover {
  color: var(--secondary);
}

.footer-links {
  width: min(100% - 48px, var(--max));
  margin: 2.5rem auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant: small-caps;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  display: inline-block;
  padding: 0.3rem 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-independence {
  width: min(100% - 48px, var(--max));
  margin: 0 auto 2rem;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 1.5rem 0 2.25rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom .cookie-line {
  margin-top: 0.5rem;
  font-size: 12px;
}

.footer-bottom button {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.consent {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.consent.is-open {
  transform: translateY(0);
}

.consent__panel {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(19, 31, 24, 0.22);
  padding: 1.5rem;
  max-width: 520px;
  margin-inline: auto;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.consent__text {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 1.15rem;
}

.consent__cats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.consent__cat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 14px;
  color: var(--text);
}

.consent__cat input {
  width: 16px;
  height: 16px;
}

.consent__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.consent__actions button {
  width: 100%;
  padding: 0.8rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
}

.consent__actions button[data-consent="accept"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.consent__manage {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: block;
  margin: 0 auto 0.65rem;
}

.consent__policy {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 420px;
    padding: 0;
  }

  .consent__panel {
    margin: 0;
  }

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

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

@media (max-width: 1024px) {
  :root {
    --section-pad: 96px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .category-card {
    min-height: 0;
  }

  .about-band__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .nav-contact {
    display: none;
  }

  .nav-center {
    position: fixed;
    inset: 0;
    background: rgba(19, 31, 24, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    justify-content: stretch;
    align-items: stretch;
  }

  .nav-center.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    position: absolute;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100%;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 1.75rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .nav-center.is-open .nav-links {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 15px;
  }

  .nav-links .mobile-contact {
    display: list-item;
  }

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

@media (min-width: 901px) {
  .nav-links .mobile-contact {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
    --header-h: 72px;
  }

  .container,
  .notice-strip p,
  .nav-inner,
  .footer-brand-band,
  .footer-links,
  .footer-independence,
  .footer-bottom {
    width: min(100% - 32px, var(--max));
  }

  .venue-row,
  .venue-row--flip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .venue-row--flip .venue-row__media,
  .venue-row--flip .venue-row__body {
    order: initial;
  }

  .venue-row__media img {
    aspect-ratio: 16 / 10;
  }

  .about-band__cols {
    grid-template-columns: 1fr;
  }

  .venue-bleed__body {
    padding: 1.5rem;
  }

  .venue-band__media img {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 64px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-pills {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero__content p {
    font-size: 0.98rem;
  }

  .category-card__panel {
    margin: -4rem 0.65rem 0;
  }
}
