: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;
  --deep: #0a0b0d;
  --radius: 6px;
  --radius-btn: 2px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --container: 1080px;
  --section-pad: 76px;
}

*,
*::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: 15px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

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

h1 {
  font-size: clamp(36px, 5.5vw, 58px);
}

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

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 1em;
}

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

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.lede {
  color: var(--text-muted);
  max-width: 62ch;
}

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

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  margin-bottom: 10px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--on-accent);
  padding: 8px 14px;
  z-index: 100;
  font-size: 12px;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

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

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px 10px;
  position: relative;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-lockup:hover {
  text-decoration: none;
}

.brand-lockup img {
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.3px;
}

.header-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 26px;
  padding: 0 24px 14px;
  border-top: 1px solid var(--border);
}

.header-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 2px;
}

.header-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.header-links a[aria-current="page"] {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

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

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

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

  .header-links {
    display: none;
    border-top: none;
    flex-direction: column;
    gap: 0;
    padding: 0 16px 8px;
  }

  .site-header.nav-open .header-links {
    display: flex;
  }

  .header-links a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
  }

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

.site-hero {
  position: relative;
  min-height: max(62vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.site-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 13, 0.62) 0%, rgba(10, 11, 13, 0.55) 45%, rgba(10, 11, 13, 0.84) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 72px 24px;
}

.hero-inner h1 {
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-inner p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 56ch;
  margin: 0 auto;
}

.hero-notice {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(236, 238, 240, 0.28);
  font-size: 12px;
  color: var(--text-muted);
  display: inline-block;
  max-width: 62ch;
}

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

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

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

.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.18s ease;
}

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

.card-photo {
  margin: 0;
  overflow: hidden;
  background: var(--secondary);
}

.card-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cat-card:hover .card-photo img {
  transform: scale(1.02);
}

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

.cat-card-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.cat-card-body p {
  color: var(--text-muted);
  font-size: 13.5px;
  flex: 1;
}

.explore-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: var(--accent);
  max-width: 26ch;
  margin: 0 0 34px;
}

.mission-copy {
  border-left: 2px solid var(--accent);
  padding-left: 28px;
}

.mission-copy p {
  color: var(--text-muted);
  max-width: 66ch;
  margin-bottom: 1.2em;
}

@media (max-width: 560px) {
  .mission-copy {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--accent);
    padding-top: 24px;
  }
}

.strip-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
}

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

.strip-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

.strip-caption {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

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

.closing-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .closing-band {
    grid-template-columns: 1fr;
  }
}

.closing-band p {
  color: var(--text-muted);
  max-width: 56ch;
}

.notice-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 30px 28px;
}

.notice-panel h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.notice-line {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.page-head {
  padding: 64px 0 44px;
  border-bottom: 1px solid var(--border);
}

.page-head h1 {
  margin-bottom: 14px;
}

.page-head .lede {
  font-size: 15px;
}

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

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

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

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

.venue-card .card-photo img {
  aspect-ratio: 1 / 1;
}

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

.venue-title-line {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.venue-title-line h3 {
  font-size: 22px;
  margin: 0;
}

.venue-name-inline {
  font-size: 20px;
  margin: 0;
  line-height: 1.35;
}

.venue-name-inline .venue-loc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  white-space: nowrap;
}

.venue-loc {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.venue-loc .middot {
  color: var(--accent);
  margin: 0 6px;
}

.venue-desc {
  color: var(--text-muted);
  font-size: 13.5px;
  margin: 0;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  padding: 12px 18px;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease;
}

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

.venue-card .btn {
  width: 100%;
  margin-top: auto;
}

.row-card {
  display: grid;
  grid-template-columns: 40% 60%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.18s ease;
}

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

.row-card .row-photo {
  margin: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  align-self: stretch;
}

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

.row-card:hover .row-photo img {
  transform: scale(1.02);
}

.row-card .row-body {
  padding: 28px 30px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.row-card.flip .row-photo {
  order: 2;
  margin: 20px 20px 20px 0;
}

.row-card.flip .row-body {
  order: 1;
  padding: 28px 0 28px 30px;
}

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

  .row-card .row-photo,
  .row-card.flip .row-photo {
    order: 1;
    margin: 20px 20px 0;
  }

  .row-card .row-photo img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .row-card .row-body,
  .row-card.flip .row-body {
    order: 2;
    padding: 20px 24px 26px;
  }
}

.row-body .venue-desc {
  font-size: 14px;
}

.row-foot {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.row-foot .btn {
  width: 100%;
}

.stack-rows {
  display: grid;
  gap: 28px;
}

.page-closing {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

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

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

.band:first-of-type {
  border-top: none;
}

.band-photo {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
}

.band-photo img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.band-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 24px 16px;
  background: rgba(10, 11, 13, 0.68);
}

.band-photo h3 {
  margin: 0;
  font-size: 24px;
  text-align: center;
  color: #fff;
}

.band-photo h3 .venue-loc {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.band-copy {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 24px 52px;
  text-align: center;
}

.band-copy .venue-desc {
  font-size: 14px;
  margin-bottom: 20px;
}

.band-copy .btn {
  min-width: 240px;
  display: inline-block;
}

@media (max-width: 768px) {
  .band-photo img {
    aspect-ratio: 16 / 9;
  }
}

.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h1 {
  margin-bottom: 16px;
}

.prose .updated {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 30px;
}

.prose h2 {
  margin-top: 44px;
  font-size: 24px;
}

.prose h3 {
  margin-top: 28px;
}

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

.prose ul,
.prose ol {
  color: var(--text-muted);
  padding-left: 22px;
}

.band-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.band-alt:first-of-type {
  border-top: none;
  padding-top: 44px;
}

.band-alt .band-photo-box {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.band-alt .band-photo-box img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.band-alt h2 {
  margin-bottom: 18px;
}

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

.band-alt.flip .band-text {
  order: -1;
}

@media (max-width: 768px) {
  .band-alt,
  .band-alt.flip {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0;
  }

  .band-alt.flip .band-text {
    order: 0;
  }
}

.ed-band {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.ed-band:first-of-type {
  border-top: none;
}

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

.ed-band-inner {
  max-width: 720px;
}

.ed-band.alt .ed-band-inner {
  margin-left: auto;
}

.ed-band h2 {
  margin-bottom: 22px;
}

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

.contact-band {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.contact-band h1 {
  margin-bottom: 14px;
}

.contact-band p {
  color: var(--text-muted);
  max-width: 64ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  grid-column: 1 / -1;
}

.agree-row input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.agree-row label {
  font-size: 13px;
  color: var(--text-muted);
}

.agree-row label a {
  text-decoration: underline;
}

.agree-error,
.form-error {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: #e08573;
  margin: 4px 0 0;
  min-height: 1em;
}

.form-status {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--accent-2);
  margin: 0;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 640px;
}

.confirm-panel h2 {
  font-size: 26px;
}

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

.confirm-ref {
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.confirm-panel .btn {
  margin-top: 18px;
}

.sitemap-row {
  line-height: 2.4;
  color: var(--text-muted);
}

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

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

.sitemap-row .middot {
  color: var(--accent);
  margin: 0 12px;
}

.cookie-manage-link {
  display: inline-block;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}

.site-footer {
  background: var(--surface-alt);
  padding: 64px 0 28px;
}

.footer-brand-band {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 44px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-band .brand-lockup {
  margin-bottom: 18px;
}

.footer-brand-band .brand-name {
  font-size: 30px;
}

.footer-blurb {
  color: var(--text-muted);
  max-width: 62ch;
  font-size: 13.5px;
  margin-bottom: 14px;
}

.footer-email {
  font-size: 13.5px;
}

.footer-columns {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 12.5px;
  color: var(--text-muted);
}

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

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
}

.footer-notice {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

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

.footer-bar .copyright {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.cookie-settings-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  border-top: none;
  border-left: none;
  border-right: none;
  padding-bottom: 2px;
  cursor: pointer;
  background: none;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.cookie-settings-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 380px;
  max-width: calc(100vw - 40px);
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  padding: 24px 24px 20px;
}

.consent-banner[hidden] {
  display: none;
}

@media (max-width: 640px) {
  .consent-banner {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 14px 14px 0 0;
  }
}

.consent-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

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

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 16px;
}

.consent-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.consent-cat input {
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.consent-cat .cat-note {
  color: var(--text-muted);
  font-size: 11px;
  margin-left: auto;
  text-align: right;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-bottom: 12px;
}

.consent-accept {
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  font-family: var(--font-body);
}

.consent-accept:hover {
  filter: brightness(1.08);
}

.consent-link-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12.5px;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px 0;
  font-family: var(--font-body);
}

.consent-link-btn:hover {
  color: var(--text);
}

.consent-policy {
  font-size: 12px;
  color: var(--text-muted);
}

.consent-policy a {
  text-decoration: underline;
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
