:root {
  --bg: #111214;
  --surface: #191b1e;
  --surface-alt: #212429;
  --text: #eceef0;
  --text-muted: #a2a8b0;
  --border: rgba(236, 238, 240, 0.14);
  --accent: #e0a43b;
  --accent-2: #7d8b99;
  --secondary: #262a30;
  --on-accent: #15161a;
  --band-dark: #0a0b0d;
  --radius: 0px;
  --radius-btn: 6px;
  --max: 1120px;
  --font-heading: Rockwell, "Courier Bold", Georgia, serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --pad-section: 88px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover {
  text-decoration: underline;
}

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

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

p {
  margin-bottom: 1em;
}

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

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

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

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

.section--dark {
  background: var(--band-dark);
}

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

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

.page-title-block {
  padding: 48px 0 0;
}

.page-title-block h1 {
  margin-bottom: 16px;
}

.page-title-block .lead {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.independence {
  margin: 28px 0 0;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 72ch;
}

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

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

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

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-btn);
  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 {
  display: flex;
  align-items: center;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant: small-caps;
  padding: 4px 0;
}

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

.hero-quiet {
  background: var(--surface-alt);
  padding: clamp(64px, 10vw, 120px) 0;
}

.hero-quiet .kicker {
  margin-bottom: 20px;
}

.hero-quiet .kicker::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 18px;
}

.hero-quiet h1 {
  max-width: 18ch;
  margin-inline: 0;
  margin-bottom: 22px;
}

.hero-quiet .intro {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0;
}

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

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

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

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

.category-card h3 {
  margin: 0;
}

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

.category-card .text-link {
  margin-top: auto;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link:hover {
  text-decoration: underline;
}

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

.notes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.note-item {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.note-item h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

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

.about-lead {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto 48px;
}

.about-lead p {
  color: var(--text-muted);
  margin-top: 16px;
}

.about-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-cols article {
  padding-top: 18px;
  border-top: 2px solid var(--accent);
}

.about-cols h3 {
  margin-bottom: 12px;
}

.about-cols p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.mission-split::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.mission-split h2 {
  margin-bottom: 18px;
}

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

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

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-strip figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-head {
  margin-bottom: 40px;
  max-width: 62ch;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.venue-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.venue-card h2 {
  font-size: clamp(18px, 2vw, 22px);
  margin: 0;
}

.venue-card__rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  border: 0;
  margin: 2px 0 4px;
}

.venue-card__meta {
  color: var(--accent-2);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.venue-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin: 0;
}

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

.listing-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.listing-btn:hover {
  text-decoration: underline;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.listing-btn::after {
  content: "→";
}

.venue-card--bordered {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  overflow: visible;
}

.venue-card--bordered img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-card--bordered .venue-card__body {
  padding: 18px 4px 4px;
}

.venue-card--bordered .venue-card__hairline {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 8px 0 14px;
}

.venue-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  background: var(--surface);
  overflow: hidden;
}

.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 img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.venue-row__body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.venue-row h2 {
  font-size: clamp(20px, 2.4vw, 28px);
}

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

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

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

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

.editorial h2 {
  margin-bottom: 18px;
}

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

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

.contact-wrap .intro {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-email {
  margin-bottom: 28px;
  color: var(--text-muted);
}

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

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

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

.form-group textarea {
  min-height: 140px;
  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;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

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

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

.form-error {
  color: #e07070;
  font-size: 13px;
  margin: 6px 0 16px;
  min-height: 1.2em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

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

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

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

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

.legal-body {
  max-width: 72ch;
  margin: 0 auto;
  padding: 24px 0 var(--pad-section);
}

.legal-body h1 {
  margin-bottom: 12px;
}

.legal-body h2 {
  margin: 36px 0 14px;
  font-size: clamp(20px, 2.5vw, 28px);
}

.legal-body h3 {
  margin: 24px 0 10px;
}

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

.legal-body ul {
  margin: 0 0 1em 1.25em;
}

.legal-body li {
  margin-bottom: 0.5em;
}

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

.sitemap-list li {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-list a {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

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

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

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

.footer-about {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.footer-adult {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 28px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 40px;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  max-width: 720px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
}

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

.footer-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0 0 20px;
}

.footer-notices {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.55;
  max-width: 72ch;
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  align-items: center;
}

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

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
}

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

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

.consent-bar {
  position: relative;
  z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.consent-bar[hidden] {
  display: none !important;
}

.consent-bar__inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.consent-bar__copy {
  flex: 1 1 280px;
  min-width: 0;
}

.consent-bar__copy strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.consent-bar__copy p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.consent-bar__copy a {
  color: var(--accent);
}

.consent-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.consent-bar__actions .consent-btn--accept {
  order: -1;
}

.consent-btn {
  padding: 8px 14px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--text);
}

.consent-btn:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

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

.consent-btn--ghost {
  background: transparent;
}

.consent-dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 13, 0.72);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.consent-dialog h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.consent-dialog > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.consent-cat {
  border-top: 1px solid var(--border);
  padding: 14px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.consent-cat:last-of-type {
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.consent-cat label {
  flex: 1;
}

.consent-cat strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.consent-cat span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.consent-cat input {
  margin-top: 3px;
}

.consent-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.linkish {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.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 (max-width: 1024px) {
  .notes-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

@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);
    padding: 12px 20px 20px;
    display: none;
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }

  .site-nav a {
    display: block;
    padding: 12px 4px;
  }

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

  .about-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-split::before {
    display: none;
  }
}

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

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

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

  .venue-row__media img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .venue-row__body {
    padding: 24px 22px 28px;
  }

  .photo-strip {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .photo-strip figure {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

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

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

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

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

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

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

  .consent-bar__actions .consent-btn--accept {
    order: -1;
  }

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

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

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

  .container,
  .site-header__inner,
  .consent-bar__inner {
    width: min(100% - 28px, var(--max));
  }
}

@media (max-width: 480px) {
  .hero-quiet {
    padding: 48px 0;
  }

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

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