:root {
  --bg: #141019;
  --surface: #1d1725;
  --surface-alt: #261e31;
  --text: #f2eef6;
  --text-muted: #b0a3bd;
  --border: rgba(242, 238, 246, 0.14);
  --accent: #d8c08e;
  --accent-2: #9b7fc0;
  --secondary: #2b2236;
  --on-accent: #1a1421;
  --deep: #0d0a11;
  --radius: 20px;
  --radius-btn: 999px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Palatino Linotype', Palatino, serif;
  --content: 1120px;
  --section-pad: 88px;
  --header-h: 72px;
  --header-h-shrink: 56px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-2);
}

ul {
  list-style: none;
}

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

h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.16;
}

h2 {
  font-size: clamp(24px, 3.8vw, 36px);
}

.kicker {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.container {
  width: min(100% - 2.5rem, var(--content));
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.section--deep {
  background: var(--deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-btn);
  border: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  background: var(--accent);
  color: var(--on-accent);
}

.btn:hover {
  background: var(--accent-2);
  color: var(--text);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
}

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

.btn--full {
  width: 100%;
}

.link-arrow {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
}

.link-arrow:hover {
  color: var(--accent-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: min-height 0.2s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1.5rem;
  transition: min-height 0.2s ease;
}

.site-header.is-shrunk .site-header__inner {
  min-height: var(--header-h-shrink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.brand:hover {
  color: var(--accent);
}

.brand img {
  width: 36px;
  height: 35px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero__copy p {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 36em;
}

.hero__notice {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 36em;
  line-height: 1.55;
  border-left: 2px solid var(--accent);
  padding-left: 0.9rem;
}

.hero__frame {
  position: relative;
  padding: 10px;
}

.hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  transform: translate(8px, 8px);
  pointer-events: none;
}

.hero__frame img {
  width: 100%;
  height: clamp(360px, 52vw, 520px);
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}

.category-rows {
  display: flex;
  flex-direction: column;
}

.category-row {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.category-row:first-child {
  border-top: 1px solid var(--border);
}

.category-row h3 {
  font-size: 1.25rem;
}

.category-row p {
  color: var(--text-muted);
  margin: 0;
}

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

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

.about-band__cols p {
  color: var(--text-muted);
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.35;
  color: var(--accent);
  max-width: 22em;
  margin-bottom: 1.75rem;
}

.mission-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-body p {
  color: var(--text-muted);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-strip figcaption {
  margin-top: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-hero {
  padding: calc(var(--section-pad) * 0.72) 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero p {
  color: var(--text-muted);
  max-width: 40em;
  margin-top: 1rem;
}

.band-list {
  display: flex;
  flex-direction: column;
}

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

.venue-band__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.venue-band__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
}

.venue-band__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 0.35rem;
}

.venue-band__loc {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

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

.venue-band__inner > .venue-band__loc {
  margin-bottom: 0.85rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: var(--section-pad) 0;
}

.venue-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.venue-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.venue-card__body h2 {
  font-size: 1.2rem;
}

.venue-card__loc {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
}

.venue-card__body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  flex: 1;
}

.venue-card--quiet .venue-card__body h2 {
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--accent);
}

.venue-card--quiet .link-arrow {
  margin-top: auto;
  align-self: flex-start;
}

.venue-card--grand .venue-card__media {
  position: relative;
}

.venue-card--grand .venue-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  background: rgba(13, 10, 17, 0.72);
}

.venue-card--grand .venue-card__overlay h2 {
  font-size: 1.1rem;
  color: var(--text);
}

.venue-card--grand .btn {
  margin-top: auto;
  align-self: flex-start;
}

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

.catalog-close p {
  color: var(--text-muted);
  max-width: 40em;
}

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

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

.editorial-block:first-child {
  padding-top: 0;
}

.editorial-block:last-child {
  border-bottom: none;
}

.editorial-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.65rem;
}

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

.editorial-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 48em;
}

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

.contact-col {
  max-width: 640px;
  margin: 0 auto;
}

.contact-col > p {
  color: var(--text-muted);
  margin: 1rem 0 2rem;
}

.contact-email {
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

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

.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: 2px;
}

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

.agree-row input {
  margin-top: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.agree-row label {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.agree-row label a {
  color: var(--accent);
  text-decoration: underline;
}

.field-error {
  color: #e8a0a0;
  font-size: 0.88rem;
  margin-top: 0.4rem;
  font-family: var(--font-heading);
}

.form-status[aria-live] {
  margin-top: 1rem;
  color: #e8a0a0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.confirm-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.confirm-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.confirm-panel .ref {
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 600;
}

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

.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(20px, 2.5vw, 26px);
  margin: 2.25rem 0 0.85rem;
}

.legal-body h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--accent);
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  max-width: 48em;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin-bottom: 1rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: var(--section-pad) 0;
}

.sitemap-group h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.sitemap-group a {
  display: block;
  font-family: var(--font-heading);
  color: var(--text-muted);
  padding: 0.4rem 0;
}

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

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  margin-top: auto;
}

.footer-independence {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 1.25rem 0 0;
  max-width: 52em;
}

.footer-upper {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0 2.75rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 28em;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.footer-group a {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  padding: 0.3rem 0;
}

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

.footer-lower {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 1.1rem 0;
}

.footer-lower__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-lower__inner p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

.footer-lower__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
}

.footer-lower__links a,
.footer-lower__links button {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.footer-lower__links a:hover,
.footer-lower__links button:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

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

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

.consent-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2000;
  width: min(400px, calc(100vw - 2.5rem));
  background: var(--deep);
  color: var(--text);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.2rem;
  box-shadow: var(--shadow);
  border-bottom: 2px solid var(--accent);
}

.consent-banner[hidden],
.consent-dialog[hidden] {
  display: none !important;
}

.consent-banner h2 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.consent-banner > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.consent-banner__links {
  margin-bottom: 1rem;
}

.consent-banner__links a {
  font-size: 0.85rem;
  font-family: var(--font-heading);
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.consent-actions .btn {
  flex: 1 1 auto;
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
}

.consent-actions .consent-accept {
  order: -1;
  flex: 1 1 100%;
}

.consent-dialog {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(13, 10, 17, 0.72);
}

.consent-dialog__panel {
  width: min(420px, 100%);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  max-height: min(90vh, 640px);
  overflow-y: auto;
}

.consent-dialog__panel h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.consent-cat {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.consent-cat:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
}

.consent-cat label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

.consent-cat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.4rem 0 0 1.8rem;
  font-weight: 400;
  font-family: var(--font-body);
}

.consent-cat input {
  margin-top: 0.15rem;
  accent-color: var(--accent);
}

.consent-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.consent-dialog__actions .btn {
  flex: 1;
  font-size: 0.85rem;
  padding: 0.7rem 0.9rem;
}

@media (max-width: 1024px) {
  .footer-upper {
    grid-template-columns: 1fr 1fr;
  }

  .hero__grid {
    gap: 2.5rem;
  }

  .card-grid {
    gap: 1.35rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    display: none;
  }

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

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

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

  .hero__frame img {
    height: clamp(280px, 60vw, 420px);
  }

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

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

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

  .category-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

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

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
  }

  .photo-strip figure {
    flex: none;
  }

  .photo-strip img {
    height: 200px;
  }

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

  .footer-upper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 600px) {
  .consent-actions {
    flex-direction: column;
  }

  .consent-actions .consent-accept {
    order: 0;
  }

  .consent-actions .btn {
    width: 100%;
  }
}

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

  .container {
    width: min(100% - 1.5rem, var(--content));
  }
}

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

  .brand span {
    font-size: 0.95rem;
  }

  .hero__frame::before {
    transform: translate(5px, 5px);
  }

  .consent-banner {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}
