:root {
  --bg: #0f0e11;
  --surface: #17161b;
  --surface-alt: #201e25;
  --text: #f1eff3;
  --text-muted: #a9a4b0;
  --border: rgba(241, 239, 243, 0.14);
  --accent: #c98d92;
  --accent-2: #7f8fa8;
  --secondary: #242229;
  --on-accent: #131216;
  --deep: #09080b;
  --radius: 4px;
  --radius-btn: 2px;
  --font-heading: 'Century Gothic', 'Apple Gothic', 'Segoe UI', sans-serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1120px;
  --section-pad: 88px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -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);
}

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;
}

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;
}

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-2);
  margin-bottom: 0.75rem;
}

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

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

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

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

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

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

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

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--text);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.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);
}

.btn--text {
  background: transparent;
  border: none;
  color: var(--accent);
  padding: 0;
  border-radius: 0;
  justify-content: flex-start;
}

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

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

.independence {
  margin: 1.25rem 0 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.page-hero {
  padding: 3rem 0 0;
}

.page-hero .independence {
  margin-top: 1.5rem;
}

.hero-letterbox {
  width: 100%;
  overflow: hidden;
  background: var(--deep);
}

.hero-letterbox img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  text-align: center;
  padding: 2.75rem 0 2rem;
  width: min(100% - 40px, 720px);
  margin-inline: auto;
}

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

.hero-copy::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--border);
  margin: 0 auto;
}

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

.band--alt {
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}

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

.section-head {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  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;
  }
}

.cat-rows {
  border-top: 1px solid var(--border);
}

.cat-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cat-row h3 {
  margin: 0;
}

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

.notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.note-card {
  padding: 0;
  border: none;
  background: transparent;
}

.note-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--accent);
}

.note-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-align: left;
  cursor: pointer;
}

.accordion__btn span:last-child {
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.accordion__panel {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.accordion__item.is-open .accordion__btn span:last-child {
  transform: rotate(45deg);
}

.quotes {
  max-width: 820px;
  margin-inline: auto;
}

.quote {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.quote:first-child {
  padding-top: 0;
}

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

.quote blockquote {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.venue-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.venue-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.venue-row__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: var(--radius);
  flex-shrink: 0;
}

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

.venue-row__body {
  text-align: center;
  min-width: 0;
}

.venue-row__body h2 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 0 0 0.35rem;
}

.venue-row__meta {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.venue-row__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.venue-row__action {
  flex-shrink: 0;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.venue-card__photo {
  aspect-ratio: 1;
  overflow: hidden;
}

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

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.25rem 1.4rem;
}

.venue-card__body h2 {
  font-size: clamp(18px, 2vw, 20px);
  margin: 0 0 0.5rem;
}

.venue-card__rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 0 0.85rem;
  border: none;
}

.venue-card__meta {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.venue-card__body p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  flex: 1;
}

.venue-card__body .btn--text {
  margin-top: auto;
}

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

.editorial-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.editorial-index {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
}

.editorial-index h2 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.editorial-index ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.editorial-index li {
  margin: 0 0 0.75rem;
}

.editorial-index a {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

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

.editorial-prose section {
  margin-bottom: 3rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.editorial-prose h2 {
  margin-bottom: 1rem;
}

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

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

.legal-body h2 {
  margin-top: 2.25rem;
}

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

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

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

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

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

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

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
}

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

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

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.form-agree input {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

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

.form-error {
  display: none;
  margin-top: 0.4rem;
  color: var(--accent);
  font-size: 0.85rem;
}

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

.form-status {
  margin-top: 1rem;
  color: var(--accent);
  font-size: 0.92rem;
}

.contact-email-line {
  margin-top: 1.75rem;
  color: var(--text-muted);
}

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

.confirm-panel h2 {
  margin-bottom: 0.75rem;
}

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

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

.sitemap-group h2 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.sitemap-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-group li {
  margin: 0 0 0.65rem;
}

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

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

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

.footer-main {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) 1.6fr;
  gap: 3rem;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 360px;
}

.footer-brand .footer-mail {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.footer-groups-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-about {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 0;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-group h3 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-group li {
  margin: 0 0 0.5rem;
}

.footer-group a {
  color: var(--text);
  font-size: 0.92rem;
}

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

.footer-large-mail {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 1.5rem;
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--accent);
}

.footer-large-mail:hover {
  color: var(--accent-2);
}

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

.footer-bottom {
  background: var(--surface-alt);
  padding: 1.35rem 0;
}

.footer-bottom__inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom .independence {
  margin: 1rem 0 0;
  background: transparent;
}

.footer-consent {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-consent button {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.footer-consent button:hover {
  color: var(--accent);
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  pointer-events: none;
}

.consent-banner__panel {
  pointer-events: auto;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.25rem 1.35rem;
  background: rgba(23, 22, 27, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: translateY(110%);
  transition: transform 320ms ease;
}

.consent-banner.is-visible .consent-banner__panel {
  transform: translateY(0);
}

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

.consent-banner p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

.consent-banner__policy {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: underline;
}

.consent-dialog-root {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(9, 8, 11, 0.72);
}

.consent-dialog-root.is-open {
  display: flex;
}

.consent-dialog {
  width: min(100%, 420px);
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.consent-dialog h2 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

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

.consent-cat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.consent-cat p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.consent-cat input {
  margin-top: 0.2rem;
}

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

@media (min-width: 900px) {
  .consent-banner {
    left: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    width: min(400px, calc(100% - 2.5rem));
    padding: 0;
  }

  .consent-banner__panel {
    border-radius: var(--radius);
  }
}

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

  .footer-main {
    gap: 2rem;
  }
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: none;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0;
  }

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

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

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

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

  .editorial-index {
    position: static;
  }

  .editorial-index ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
  }

  .editorial-index li {
    margin: 0;
  }
}

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

  .cat-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .venue-row {
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto;
  }

  .venue-row__thumb {
    width: 96px;
    height: 96px;
    grid-row: 1 / 2;
  }

  .venue-row__body {
    text-align: left;
    grid-column: 2;
  }

  .venue-row__action {
    grid-column: 1 / -1;
  }

  .venue-row__action .btn {
    width: 100%;
  }

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

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

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

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

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

@media (max-width: 480px) {
  .container,
  .site-header__inner,
  .footer-main,
  .footer-bottom__inner,
  .footer-large-mail,
  .footer-rule,
  .hero-copy {
    width: min(100% - 28px, var(--max));
  }

  .contact-panel,
  .confirm-panel {
    padding: 1.35rem;
  }

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

  .venue-row__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
