:root {
  --bg: #0e1116;
  --surface: #161b22;
  --surface-alt: #1d232c;
  --text: #eef1f5;
  --text-muted: #a3adba;
  --border: rgba(238, 241, 245, 0.14);
  --accent: #c8a45c;
  --accent-2: #7fa8c9;
  --secondary: #232b36;
  --on-accent: #141821;
  --deep: #080b0f;
  --radius: 14px;
  --radius-btn: 0px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: Georgia, 'Times New Roman', serif;
  --content: 1120px;
  --section-pad: 88px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

h3 {
  font-size: clamp(18px, 2.4vw, 22px);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  width: min(100% - 40px, var(--content));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.2px;
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px 18px;
  flex-wrap: wrap;
}

.nav-center a,
.nav-contact a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

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

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-btn);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

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

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

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

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

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

.link-arrow::after {
  content: "→";
}

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

.section-alt {
  background: var(--surface-alt);
}

.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero .intro {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05em;
}

.hero-corner {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background: var(--bg);
}

.hero-corner .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-corner .hero-copy {
  max-width: 620px;
}

.hero-corner .hero-lede {
  margin-left: clamp(24px, 8vw, 96px);
  margin-top: 28px;
  color: var(--text-muted);
  max-width: 460px;
  font-size: 1.05em;
}

.hero-corner .hero-notice {
  margin-top: 28px;
  margin-left: clamp(24px, 8vw, 96px);
  max-width: 460px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

.hero-corner .hero-photo {
  position: absolute;
  right: max(20px, calc((100% - var(--content)) / 2));
  bottom: -48px;
  width: min(340px, 38vw);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.hero-corner .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hero-corner .hero-photo:hover img {
  transform: scale(1.02);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-2px);
}

.category-card .media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.category-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card:hover .media img {
  transform: scale(1.02);
}

.category-card .body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.category-card h3 {
  margin: 0;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.95em;
  flex: 1;
}

.region-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.region-tile {
  background: var(--bg);
  padding: 28px 24px;
}

.region-tile h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent);
}

.region-tile p {
  color: var(--text-muted);
  font-size: 0.95em;
  margin: 0;
}

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

.testimonials-grid .framing {
  color: var(--text-muted);
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-block {
  border: 1px solid var(--border);
  padding: 22px 24px;
  background: var(--surface);
}

.quote-block blockquote {
  margin: 0 0 12px;
  color: var(--text);
  font-style: italic;
}

.quote-block cite {
  font-family: var(--font-heading);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

.closing-cta .panel {
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--surface);
  display: flex;
  align-items: center;
}

.closing-cta .panel p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.catalog-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.venue-card:hover {
  transform: translateY(-2px);
}

.venue-card .media {
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.venue-card.tall .media {
  aspect-ratio: 4 / 5;
}

.venue-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.venue-card:hover .media img {
  transform: scale(1.02);
}

.venue-card .body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.venue-card h2,
.venue-card h3 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
}

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

.venue-meta {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.venue-card .desc {
  color: var(--text-muted);
  flex: 1;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.masonry-grid .venue-card:nth-child(even) {
  flex-direction: column-reverse;
}

.masonry-grid .venue-card:nth-child(even) .body {
  padding-top: 28px;
}

.band-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.band-card {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.band-card:first-child {
  padding-top: 0;
}

.band-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.band-card .media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 21 / 9;
  margin-bottom: 28px;
}

.band-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.band-card:hover .media img {
  transform: scale(1.02);
}

.band-card .content {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.band-card .rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  border: none;
  margin: 0;
}

.band-card.bordered {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: none;
}

.band-card.bordered:last-child {
  margin-bottom: 0;
}

.band-card.bordered .media {
  margin-bottom: 24px;
  border-radius: calc(var(--radius) - 4px);
}

.band-card.bordered .hairline {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
  margin: 8px 0;
}

.catalog-close {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 680px;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  padding: var(--section-pad) 0;
}

.editorial-nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.editorial-nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.4;
}

.editorial-nav a:hover {
  color: var(--accent);
}

.editorial-content section {
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.editorial-content section:last-child {
  margin-bottom: 0;
}

.editorial-content p {
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: var(--section-pad) 0;
  align-items: start;
}

.contact-intro .email-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent);
}

.contact-form {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

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

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.agree-row input {
  margin-top: 4px;
  flex-shrink: 0;
  width: auto;
}

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

.agree-row label a {
  color: var(--accent-2);
}

.field-error {
  color: #e07070;
  font-size: 13px;
  font-family: var(--font-heading);
  margin-top: 6px;
  display: none;
}

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

.form-actions {
  margin-top: 24px;
}

.form-status {
  margin-top: 12px;
  color: #e07070;
  font-size: 14px;
  font-family: var(--font-heading);
}

.confirm-panel {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.confirm-panel h2 {
  margin-bottom: 12px;
}

.confirm-panel p {
  color: var(--text-muted);
}

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

.legal-body {
  padding: var(--section-pad) 0;
  max-width: 760px;
}

.legal-body h2 {
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.legal-body h3 {
  margin-top: 1.4em;
  margin-bottom: 0.5em;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.legal-body .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 1.5em;
}

.sitemap-list {
  padding: var(--section-pad) 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sitemap-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

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

.sitemap-row a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

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

.sitemap-row span {
  color: var(--text-muted);
  font-size: 0.95em;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.footer-top {
  width: min(100% - 40px, var(--content));
  margin-inline: auto;
  padding: 48px 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  max-width: 640px;
  justify-content: flex-end;
  align-items: center;
}

.footer-links .group-kicker {
  width: 100%;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-links a,
.footer-links button {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

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

.footer-rule {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border);
  height: 0;
}

.footer-bottom {
  background: var(--surface-alt);
  padding: 28px 20px;
  text-align: center;
}

.footer-bottom .independence {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 14px;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 14px;
}

.footer-legal a,
.footer-legal button {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  font-family: var(--font-heading);
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  display: none;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

.consent-banner.is-visible {
  display: block;
}

.consent-inner {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.consent-copy h2 {
  font-size: 16px;
  margin: 0 0 6px;
  font-family: var(--font-heading);
}

.consent-copy p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
}

.consent-copy .policy-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-family: var(--font-heading);
  color: var(--accent-2);
}

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 14px;
}

.consent-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text);
}

.consent-cat input {
  accent-color: var(--accent);
}

.consent-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.consent-actions .btn {
  text-align: center;
  width: 100%;
  font-size: 13px;
  padding: 10px 16px;
}

.consent-cats .btn-save {
  display: none;
  width: auto;
  padding: 8px 14px;
  font-size: 12px;
}

.consent-banner.is-managing .consent-cats .btn-save {
  display: inline-block;
}

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

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-corner .hero-photo {
    width: min(280px, 34vw);
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .nav-center,
  .nav-contact {
    display: none;
  }

  .nav-inner.is-open .nav-center,
  .nav-inner.is-open .nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 1 / -1;
    padding-bottom: 16px;
    gap: 4px;
  }

  .nav-inner.is-open .nav-contact {
    padding-bottom: 20px;
  }

  .hero-corner .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-corner {
    padding-bottom: 200px;
  }

  .hero-corner .hero-lede,
  .hero-corner .hero-notice {
    margin-left: 0;
  }

  .hero-corner .hero-photo {
    right: 20px;
    width: min(240px, 55vw);
  }

  .testimonials-grid,
  .closing-cta,
  .contact-layout,
  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .editorial-nav {
    position: static;
  }

  .catalog-grid-2,
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .masonry-grid .venue-card:nth-child(even) {
    flex-direction: column;
  }

  .sitemap-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .consent-inner {
    grid-template-columns: 1fr;
  }

  .consent-actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }

  .consent-actions .btn {
    width: auto;
    flex: 1 1 auto;
  }
}

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

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

  .band-card .media {
    aspect-ratio: 16 / 9;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-links .group-kicker {
    text-align: left;
  }
}

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

@media (max-width: 480px) {
  .container,
  .nav-inner,
  .footer-top,
  .footer-rule {
    width: min(100% - 28px, var(--content));
  }

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

  .hero-corner {
    padding: 56px 0 180px;
  }

  .contact-form,
  .confirm-panel {
    padding: 24px 18px;
  }

  .consent-banner {
    padding: 16px;
  }

  .consent-actions {
    flex-direction: column;
  }

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