/* ============================================================================
   The Happenings — Denver & Beyond Live Music ( 2026 by karel.design )
   ========================================================================== */

:root {
  --bg: #f7f2e6;
  --bg-raised: #fffdf6;
  --bg-hover: #f0e9d6;
  --ink: #1a1410;
  --ink-soft: #3b3129;
  --ink-dim: #5a5246;
  --ink-muted: #8e8676;
  --line: rgba(26, 20, 16, 0.10);
  --line-strong: rgba(26, 20, 16, 0.22);
  --accent: #d14a1c;
  --accent-ink: #fdf9ed;
  --grain-opacity: 0.035;
  --masthead-hero-image: url("assets/thehappenings_background_top.jpg");

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  color-scheme: light;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #f7f2e6;
    --bg-raised: #fffdf6;
    --bg-hover: #f0e9d6;
    --ink: #1a1410;
    --ink-dim: #5a5246;
    --ink-muted: #8e8676;
    --line: rgba(26, 20, 16, 0.10);
    --line-strong: rgba(26, 20, 16, 0.22);
    --accent: #d14a1c;
    --accent-ink: #fdf9ed;
    --grain-opacity: 0.035;
    color-scheme: light;
  }
}

:root[data-theme="light"] {
  --bg: #f7f2e6;
  --bg-raised: #fffdf6;
  --bg-hover: #f0e9d6;
  --ink: #1a1410;
  --ink-soft: #3b3129;
  --ink-dim: #5a5246;
  --ink-muted: #8e8676;
  --line: rgba(26, 20, 16, 0.10);
  --line-strong: rgba(26, 20, 16, 0.22);
  --accent: #d14a1c;
  --accent-ink: #fdf9ed;
  --grain-opacity: 0.035;
  color-scheme: light;
}

:root[data-theme="dark"] { color-scheme: light; }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  color-scheme: light;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }

.page {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.masthead {
  position: relative;
  margin: -2rem calc(50% - 50vw) 1.8rem;
  padding: 4.25rem 1.25rem 0.7rem;
  overflow-x: clip;
  overflow-y: visible;
}

.site-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  background: rgba(36, 33, 29, 0.82);
  border-bottom: 1px solid rgba(255, 253, 246, 0.16);
  box-shadow: 0 10px 26px rgba(18, 14, 10, 0.15);
  backdrop-filter: blur(4px) saturate(1.08);
  -webkit-backdrop-filter: blur(4px) saturate(1.08);
}

.site-topbar-inner {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-topbar-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.site-topbar-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.site-topbar-logo {
  display: block;
  width: clamp(104px, 9vw, 132px);
  height: auto;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.38));
}

.site-topbar-beta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.43rem 0.16rem;
  border: 1px solid rgba(255, 253, 246, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.12);
  color: #fffdf6;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-topbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fffdf6;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.site-topbar-links a {
  position: relative;
  padding: 0.55rem 0.1rem;
  opacity: 0.9;
  transition: opacity 0.16s ease, color 0.16s ease;
}

.site-topbar-links a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.56rem;
  width: 1px;
  height: 0.72rem;
  transform: translateY(-50%);
  background: rgba(255, 253, 246, 0.55);
}

.site-topbar-links a:hover,
.site-topbar-links a:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.site-mobile-nav {
  display: none;
  position: relative;
  color: #fffdf6;
}

.site-mobile-nav summary {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #fffdf6;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.site-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.site-mobile-nav summary span {
  display: block;
  flex: 0 0 auto;
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 1px 4px rgba(18, 14, 10, 0.28);
}

.site-mobile-nav-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  width: min(220px, calc(100vw - 2.5rem));
  display: grid;
  gap: 0.25rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 253, 246, 0.14);
  border-radius: 18px;
  background: rgba(35, 31, 28, 0.94);
  box-shadow: 0 18px 38px rgba(18, 14, 10, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-mobile-nav-panel a {
  padding: 0.78rem 0.85rem;
  border-radius: 12px;
  color: #fffdf6;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: lowercase;
}

.site-mobile-nav-panel a:hover,
.site-mobile-nav-panel a:focus-visible {
  background: rgba(255, 253, 246, 0.10);
}

.masthead::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.masthead::before {
  top: 0;
  z-index: -2;
  height: clamp(340px, 32vw, 485px);
  background-image: var(--masthead-hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.masthead > * {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.masthead > .site-topbar {
  position: absolute;
  top: 0;
  z-index: 30;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0;
}

.masthead-hero-headline {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  max-width: min(980px, calc(100vw - 2rem));
  min-height: clamp(6rem, 11vw, 8.8rem);
  margin-top: clamp(1.1rem, 2.7vw, 2.15rem);
  margin-bottom: clamp(0.95rem, 1.8vw, 1.5rem);
  color: #fffdf6;
  text-align: center;
}

.masthead-hero-headline[data-headline-ready="false"] {
  visibility: hidden;
}

.masthead-hero-line-one {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.24em;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-shadow: 0 2px 16px rgba(18, 14, 10, 0.62), 0 1px 2px rgba(18, 14, 10, 0.5);
}

.masthead-hero-count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2em;
  padding: 0.04em 0.22em 0.08em;
  border-radius: 0.36em;
  background: var(--accent);
  color: #fffdf6;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: none;
  box-shadow: 0 2px 10px rgba(84, 25, 9, 0.2);
}

.masthead-hero-line-two {
  max-width: min(860px, 92vw);
  margin: 0 auto;
  color: #fffdf6;
  font-family: var(--font-body);
  font-size: clamp(2.15rem, 5vw, 4.15rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: 0 3px 22px rgba(18, 14, 10, 0.7), 0 1px 3px rgba(18, 14, 10, 0.55);
}

.homepage-hero {
  gap: 0.7rem;
  max-width: min(940px, calc(100vw - 2rem));
  margin-bottom: clamp(1rem, 2vw, 1.8rem);
}

.homepage-hero-kicker {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.homepage-hero-title {
  max-width: min(900px, 94vw);
}

.homepage-hero-intro {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 253, 246, 0.94);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(18, 14, 10, 0.44);
}

.brand {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  text-align: center;
  font-family: var(--font-display);
  line-height: 0.9;
  color: var(--ink);
  padding-top: 0.4rem;
}

.brand-article {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink-dim);
  margin-bottom: -0.45rem;
  transform: translateX(-17%);
}

.brand-main {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(4.2rem, 10.5vw, 7.4rem);
  letter-spacing: -0.05em;
  color: var(--accent);
}

.eyebrow-under-brand {
  margin-top: 1.45rem;
  text-align: center;
}

.eyebrow-under-brand {
  display: table;
  width: auto;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0.18rem 0.55rem;
  background: rgba(255, 250, 242, 0.8);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(2px);
}

.masthead-feedback-link-row {
  display: flex;
  justify-content: center;
  margin-top: 0.7rem;
}

.masthead-feedback-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.56rem 1rem;
  border: 1px solid rgba(255, 250, 242, 0.72);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.88);
  color: var(--accent);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(18, 14, 10, 0.10);
  backdrop-filter: blur(3px);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.masthead-feedback-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 14, 10, 0.14);
  background: rgba(255, 250, 242, 0.95);
}

.tagline {
  font-size: 15px;
  color: var(--ink-dim);
  margin: 1rem 0 0;
  max-width: 42rem;
  line-height: 1.42;
}

.tagline-link {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

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

.feedback-panel {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 1.2rem 1.25rem 1.15rem;
  background: rgba(255, 253, 246, 0.86);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  color: var(--ink);
  scroll-margin-top: 7rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 50px rgba(18, 14, 10, 0.06);
}

body.feedback-modal-open {
  overflow: hidden;
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
}

.feedback-modal[hidden] {
  display: none !important;
}

.feedback-modal-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(20, 14, 10, 0.48);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.feedback-modal-sheet {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100vw - 2rem));
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
  transform: translateY(22px) scale(0.985);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.feedback-modal.is-open .feedback-modal-sheet {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.feedback-modal .feedback-panel {
  background: rgba(255, 253, 246, 0.97);
  box-shadow: 0 30px 80px rgba(18, 14, 10, 0.18);
}

.feedback-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.feedback-modal-close:hover {
  color: var(--accent);
  border-color: rgba(209, 74, 28, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.feedback-modal-close svg {
  width: 16px;
  height: 16px;
  display: block;
}

.feedback-kicker {
  margin: 0 0 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.feedback-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.02;
  color: var(--ink);
}

.feedback-intro {
  margin: 0.42rem 0 0;
  color: var(--ink-dim);
  font-size: 0.96rem;
  line-height: 1.5;
}

.feedback-status {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: var(--ink);
}

.feedback-status.is-error {
  color: #b93f1d;
}

.feedback-form {
  display: grid;
  gap: 0.8rem;
}

.feedback-field {
  display: grid;
  gap: 0.34rem;
}

.feedback-field-label {
  color: var(--ink-dim);
  font-size: 0.82rem;
  font-weight: 700;
}

.feedback-field input,
.feedback-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.5;
  padding: 0.95rem 1rem;
}

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

.report-issue-footer-copy {
  margin: -0.1rem 0 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.feedback-field input:focus,
.feedback-field textarea:focus {
  outline: none;
  border-color: rgba(209, 74, 28, 0.55);
  box-shadow: 0 0 0 3px rgba(209, 74, 28, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.feedback-actions {
  display: flex;
  justify-content: flex-start;
}

.feedback-submit {
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease;
}

.feedback-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.feedback-todo {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.feedback-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.theme-switcher {
  display: none;
}

.theme-opt {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 999px;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
  padding: 0;
}

.theme-opt svg { width: 15px; height: 15px; }
.theme-opt:hover { color: var(--ink); }

.theme-opt.is-active {
  background: var(--ink);
  color: var(--bg);
}

.action-center-shell {
  margin: 1.55rem auto 0.25rem;
  max-width: 920px;
  position: relative;
  z-index: 15;
}

.action-center {
  --ac-control-height: 44px;
  --ac-control-font-size: 15px;
  --ac-chip-font-size: 15px;
  --ac-clear-font-size: 14px;
  --ac-calendar-font-size: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.68rem;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(255, 248, 236, 0.22);
  border-radius: 18px;
  position: relative;
  z-index: 1;
  background: rgba(79, 67, 56, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.08);
  transform-origin: top center;
}

.action-search,
.action-calendar-panel {
  grid-column: 1 / -1;
}

.action-refinements {
  grid-column: 1 / 2;
  grid-row: 2;
}

.action-meta-actions {
  grid-column: 2 / 3;
  grid-row: 2;
  justify-self: end;
  align-self: center;
}

.action-clear-btn {
  grid-column: 3 / 4;
  grid-row: 2;
  justify-self: end;
  align-self: center;
}

.action-center-shell.is-compact {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  width: min(920px, calc(100vw - 1.7rem));
  transform: translateX(-50%);
  z-index: 9999 !important;
}

.action-center-shell.is-compact .action-center {
  gap: 0.65rem;
  padding: 0.72rem 0.82rem;
  border-radius: 16px;
  z-index: 10000;
  background: #4f4338;
  box-shadow:
    0 18px 36px rgba(32, 17, 10, 0.22),
    inset 0 1px 0 rgba(255, 248, 236, 0.08);
}

.action-center-shell.is-collapsed .action-center {
  pointer-events: none;
  display: none;
}

.action-center-shell[hidden],
.action-search-suggestions[hidden],
.action-calendar-panel[hidden],
.action-center-tab[hidden],
.action-search-clear[hidden],
.action-clear-btn[hidden],
.back-to-top-btn[hidden] {
  display: none !important;
}

.action-center-tab {
  min-width: 48px;
  height: 48px;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
}

.action-center-tab:hover {
  filter: brightness(1.04);
}

.back-to-top-btn {
  position: fixed;
  left: 50%;
  bottom: calc(var(--back-to-top-browser-offset, 0px) + env(safe-area-inset-bottom, 0px) + 0.9rem);
  transform: translateX(-50%);
  z-index: 10030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 56px;
  padding: 0 1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  overflow: hidden;
  touch-action: manipulation;
}

.back-to-top-btn:hover {
  filter: brightness(1.04);
}

.back-to-top-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.back-to-top-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.back-to-top-btn-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.action-center-tab svg {
  width: 18px;
  height: 18px;
}

.action-center-tab::after {
  content: "Search";
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.action-center-shell.is-collapsed .action-center-tab {
  display: inline-flex !important;
}

.action-center-shell.is-compact:not(.is-collapsed) .action-center-tab {
  display: none !important;
}

@media (min-width: 651px) {
  .back-to-top-btn {
    display: none !important;
  }
}

@media (min-width: 761px) {
  .action-center-shell {
    transition: top 180ms ease, opacity 180ms ease;
  }

  .action-center {
    transition:
      gap 180ms ease,
      padding 180ms ease,
      border-radius 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease,
      opacity 180ms ease;
  }

  .action-center-shell.is-compact .action-center {
    animation: desktop-sticky-reveal 180ms ease-out;
  }
}

@keyframes desktop-sticky-reveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.action-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 0.5rem;
  align-items: start;
}

.action-search-field {
  position: relative;
  min-width: 0;
  z-index: 20;
}

.action-search-clear {
  position: absolute;
  top: 50%;
  right: 0.78rem;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 244, 226, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  z-index: 2;
}

.action-search-clear:hover {
  background: rgba(255, 249, 240, 0.1);
  color: #fff5e7;
}

.action-search-clear span {
  transform: translateY(-1px);
}

.action-search-input,
.action-venue-select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.1);
  color: #fff7ea;
  font-family: var(--font-body);
  font-size: var(--ac-control-font-size);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.action-search-input {
  min-height: var(--ac-control-height);
  padding: 0 2.8rem 0 0.95rem;
}

.action-search-input::placeholder {
  color: rgba(255, 244, 226, 0.72);
  font-weight: 500;
}

.action-search-input::-webkit-search-decoration,
.action-search-input::-webkit-search-cancel-button,
.action-search-input::-webkit-search-results-button,
.action-search-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.action-search-input[type="search"] {
  -webkit-appearance: none;
  appearance: none;
}

.action-search-input:focus,
.action-venue-select:focus {
  outline: none;
  border-color: rgba(255, 249, 240, 0.34);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}

.action-search-submit {
  min-height: var(--ac-control-height);
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.action-search-submit:hover {
  filter: brightness(1.04);
}

.action-search-submit svg {
  width: 18px;
  height: 18px;
}

.action-search-suggestions {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.2rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(53, 42, 34, 0.98), rgba(36, 29, 24, 0.99));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
  z-index: 10020;
}

.action-search-suggestion {
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 0.58rem 0.72rem;
  text-align: left;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
}

.action-search-suggestion-title {
  display: block;
  color: #fff5e7;
}

.action-search-suggestion-title.is-emphasis {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.14rem 0.52rem;
  border-radius: 999px;
  background: rgba(226, 88, 28, 0.18);
  border: 1px solid rgba(226, 88, 28, 0.28);
  color: #ffb587;
  font-weight: 700;
}

.action-search-suggestion.is-free-emphasis {
  border: 1px solid rgba(117, 227, 195, 0.22);
  background: rgba(75, 178, 146, 0.08);
}

.action-search-suggestion-title.is-free-emphasis {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.14rem 0.52rem;
  border-radius: 999px;
  background: rgba(75, 178, 146, 0.16);
  border: 1px solid rgba(117, 227, 195, 0.28);
  color: #8ef0d0;
  font-weight: 700;
}

.action-search-suggestion-meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 11px;
  color: rgba(255, 241, 219, 0.7);
}

.action-search-suggestion:hover,
.action-search-suggestion.is-active {
  background: rgba(255, 248, 236, 0.08);
}

.action-refinements {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.7rem 1rem;
}

.action-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.38rem;
  flex: 1 1 auto;
  min-width: 0;
}

.action-meta-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-wrap: nowrap;
}

.action-chip {
  border-radius: 999px;
}

.action-chip-label-short {
  display: none;
}

.action-chip-moon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  padding-inline: 0.7rem;
}

.action-chip-calendar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  padding-inline: 0.7rem;
}


.action-chip-calendar svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.action-chip-moon svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.action-calendar-panel {
  display: grid;
  gap: 0.72rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 247, 233, 0.14);
  border-radius: 16px;
  background: rgba(43, 33, 27, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.05);
}

.action-calendar-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.action-calendar-panel-copy {
  min-width: 0;
}

.action-calendar-panel-kicker {
  margin: 0 0 0.18rem;
  color: rgba(255, 241, 219, 0.64);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.action-calendar-panel-summary {
  margin: 0;
  color: #fff2df;
  font-size: 12px;
  line-height: 1.4;
}

.action-calendar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.85fr) minmax(0, 1fr);
  gap: 0.55rem;
  align-items: end;
}

.action-calendar-field {
  display: grid;
  gap: 0.28rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.action-calendar-range-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.action-calendar-label {
  color: rgba(255, 241, 219, 0.68);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.action-calendar-input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 249, 240, 0.1);
  color: #fff7ea;
  font-family: var(--font-body);
  font-size: var(--ac-calendar-font-size);
  line-height: 1.2;
  padding: 0 0.78rem;
}

.action-calendar-field:not(.has-value):not(.is-focused) .action-calendar-input {
  color: transparent;
}

.action-calendar-field:not(.has-value):not(.is-focused) .action-calendar-input::-webkit-datetime-edit,
.action-calendar-field:not(.has-value):not(.is-focused) .action-calendar-input::-webkit-datetime-edit-fields-wrapper,
.action-calendar-field:not(.has-value):not(.is-focused) .action-calendar-input::-webkit-datetime-edit-text,
.action-calendar-field:not(.has-value):not(.is-focused) .action-calendar-input::-webkit-datetime-edit-month-field,
.action-calendar-field:not(.has-value):not(.is-focused) .action-calendar-input::-webkit-datetime-edit-day-field,
.action-calendar-field:not(.has-value):not(.is-focused) .action-calendar-input::-webkit-datetime-edit-year-field {
  color: transparent;
}

.action-calendar-input-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.action-calendar-placeholder {
  position: absolute;
  left: 0.82rem;
  right: 2.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 241, 219, 0.78);
  font-family: var(--font-body);
  font-size: var(--ac-calendar-font-size);
  line-height: 1;
  overflow: hidden;
  pointer-events: none;
  text-overflow: ellipsis;
  transition: opacity 0.14s ease;
  white-space: nowrap;
}

.action-calendar-field.has-value .action-calendar-placeholder,
.action-calendar-field.is-focused .action-calendar-placeholder {
  opacity: 0;
}

.action-calendar-input::-webkit-calendar-picker-indicator {
  filter: invert(0.98) sepia(0.04) saturate(0.32) hue-rotate(331deg) brightness(1.1);
  cursor: pointer;
}

.action-calendar-input::-webkit-date-and-time-value {
  display: flex;
  align-items: center;
  min-height: 1.2em;
  text-align: left;
}

@supports (-webkit-touch-callout: none) {
  .action-calendar-input {
    -webkit-appearance: none;
    appearance: none;
    line-height: normal;
  }

  .action-calendar-input::-webkit-date-and-time-value {
    height: 100%;
  }
}

.action-calendar-input:focus {
  outline: none;
  border-color: rgba(255, 249, 240, 0.34);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}

.action-venue-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  flex: 0 0 auto;
}

.action-venue-wrap {
  position: relative;
}

.action-venue-wrap.is-locked {
  width: auto;
  max-width: min(100%, 236px);
}

.action-venue-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 242, 220, 0.7);
}

.action-venue-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.action-venue-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  overflow: visible;
}

.action-venue-icon path {
  fill: #f06a2a;
}

.action-venue-icon circle {
  fill: #fff8ee;
}

.action-venue-wrap.is-locked .action-venue-icon svg {
  display: none;
}

.action-venue-wrap.is-locked .action-venue-icon::before {
  content: "\1F512";
  color: rgba(255, 244, 226, 0.9);
  font-size: 0.86rem;
  line-height: 1;
}

.action-center .chip {
  border-color: rgba(255, 245, 228, 0.28);
  background: rgba(255, 248, 238, 0.12);
  color: #fff3e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--ac-control-height);
  padding: 0 0.9rem;
  font-size: var(--ac-chip-font-size);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 250, 244, 0.05);
}

.action-center .chip:hover {
  border-color: rgba(255, 247, 233, 0.44);
  background: rgba(255, 248, 238, 0.18);
  color: #fff8ef;
}

.action-center .chip.is-active {
  background: #fff5e7;
  color: #2a1d14;
  border-color: #fff5e7;
  box-shadow: 0 8px 18px rgba(17, 10, 6, 0.14);
}

.action-center .chip.is-active:hover {
  background: #ffe0d1;
  color: #2a160d;
  border-color: #ffe0d1;
}

.action-venue-select {
  min-height: var(--ac-control-height);
  min-width: 144px;
  width: 144px;
  padding: 0 2.1rem 0 0.82rem;
  appearance: none;
  color-scheme: light;
  font-weight: 600;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%),
    linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.action-venue-select {
  padding-left: 2.3rem;
}

.action-venue-select.is-locked {
  min-width: 0;
  width: auto;
  max-width: 236px;
  padding-right: 1.1rem;
  background-image: none;
  cursor: not-allowed;
}

.action-venue-select option {
  color: #1f1813;
  background: #fff8ee;
}

.action-venue-select optgroup {
  color: #3f3025;
  background: #fff8ee;
  font-style: normal;
  font-weight: 700;
}

.action-venue-select .venue-region-option {
  font-weight: 700;
  color: #d4471f;
}

.action-clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: var(--ac-control-height);
  padding: 0 0.88rem;
  border: 1px solid rgba(209, 74, 28, 0.14);
  border-radius: 999px;
  background: #f4e7dc;
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-family: var(--font-body);
  font-size: var(--ac-clear-font-size);
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.action-clear-btn:hover {
  border-color: rgba(209, 74, 28, 0.2);
  background: #f6eadf;
  color: var(--accent);
}

.action-clear-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 0.95rem;
}

.action-clear-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.action-clear-btn-label {
  display: inline-block;
}

@media (max-width: 980px) {
  .masthead {
    padding-top: 4.15rem;
  }
  .masthead::before {
    height: clamp(300px, 39vw, 425px);
    background-position: 58% bottom;
  }
  .action-center {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .action-refinements {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 0.55rem;
  }
  .action-chips {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr) minmax(0, 1.24fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
    gap: 0.34rem;
    flex: 1 1 auto;
  }
  .action-center .chip {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    font-size: var(--ac-chip-font-size);
    padding: 6px 10px;
  }
  .action-chip-moon {
    min-width: 0;
    padding-inline: 0.45rem;
  }
  .action-chip-calendar {
    min-width: 0;
    padding-inline: 0.45rem;
  }
  .action-calendar-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.6fr) minmax(0, 0.95fr);
  }
  .action-meta-actions {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 0.42rem;
    width: 100%;
    margin-left: 0;
  }
  .action-meta-actions.has-clear-action {
    grid-column: 1 / 2;
  }
  .action-meta-actions.is-single-action {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: stretch;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
    margin-left: 0;
  }
  .action-meta-actions.is-single-action .action-venue-wrap {
    width: 100%;
  }
  .action-venue-wrap {
    width: 100%;
  }
  .action-venue-select {
    min-height: 38px;
    min-width: 0;
    width: 100%;
    font-size: var(--ac-control-font-size);
  }
  .action-clear-btn {
    grid-column: 2 / 3;
    grid-row: 3;
    width: 100%;
  }
  .action-calendar-panel {
    grid-column: 1 / -1;
    grid-row: 4;
  }
  .action-venue-icon {
    left: 0.76rem;
  }
  .action-venue-label {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
}

@media (min-width: 651px) and (max-width: 980px) {
  .venue-page .action-venue-wrap.is-locked,
  .venue-page .action-venue-select.is-locked {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 650px) {
  .site-topbar {
    min-height: 56px;
  }
  .site-topbar-inner {
    width: calc(100% - 1.7rem);
    min-height: 56px;
  }
  .site-topbar-logo {
    width: 116px;
  }
  .site-topbar-beta {
    padding: 0.16rem 0.38rem 0.14rem;
    font-size: 0.5rem;
  }
  .site-topbar-links {
    display: none;
  }
  .site-mobile-nav {
    display: block;
  }
  .masthead::before {
    height: clamp(250px, 52vw, 360px);
    background-position: 58% top;
  }
  .masthead-hero-headline {
    max-width: calc(100vw - 1.5rem);
    min-height: clamp(4.6rem, 18vw, 6rem);
    gap: 0.28rem;
    margin-top: 0.75rem;
    margin-bottom: 0.8rem;
  }
  .masthead-hero-line-one {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
    letter-spacing: -0.045em;
    text-shadow: 0 1px 5px rgba(18, 14, 10, 0.48), 0 1px 1px rgba(18, 14, 10, 0.42);
  }
  .masthead-hero-line-two {
    max-width: min(94vw, 420px);
    font-size: clamp(1.3rem, 7.15vw, 2.1rem);
    letter-spacing: -0.055em;
    line-height: 0.94;
    text-shadow: 0 2px 8px rgba(18, 14, 10, 0.5), 0 1px 1px rgba(18, 14, 10, 0.42);
  }
  .action-refinements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .action-chips {
    flex-wrap: wrap;
  }
  .action-meta-actions {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.55rem;
  }
  .action-meta-actions.is-single-action {
    display: grid;
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
  }
  .action-meta-actions.is-single-action .action-venue-wrap {
    width: 100%;
  }
  .action-calendar-grid {
    grid-template-columns: 1fr;
  }
  .action-calendar-range-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .action-venue-wrap {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.28rem;
    width: 100%;
    min-width: 0;
    grid-column: 1 / -1;
  }
  .action-venue-select {
    min-width: 0;
    width: 100%;
    max-width: none;
  }
}

.search-context {
  margin: -1px 0 5px;
  font-size: 11px;
  line-height: 1.25;
  color: var(--ink-muted);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
}

.section-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.032em;
  margin: 0;
  color: var(--ink);
}

.homepage-inline-results .section-title {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.homepage-results-title-text {
  min-width: 0;
}

.homepage-results-title-helper {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  white-space: nowrap;
}

.homepage-results-title-helper-icon {
  display: inline-flex;
  width: 0.98rem;
  height: 0.98rem;
  flex: 0 0 auto;
  transform: translateY(0.02rem);
}

.homepage-results-title-helper-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.homepage-results-title-helper-text {
  line-height: 1;
}

.section-date,
.section-meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero-strip {
  margin: 0 0 3rem;
  animation: fade-up 0.5s ease-out;
}

.hero-empty {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
}

.hero-empty .quiet { text-align: center; margin: 0; }

.homepage-dashboard-shell {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.homepage-dashboard-placeholder {
  margin: 0;
  color: var(--ink-dim);
}

.homepage-section {
  display: grid;
  gap: 0.9rem;
}

.homepage-section-header {
  align-items: end;
}

.homepage-section-kicker {
  margin: 0 0 0.28rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.homepage-section-subcopy {
  max-width: 42rem;
  margin: 0.42rem 0 0;
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venue-page .page-breadcrumbs {
  --venue-divider-space: 1.35rem;
  margin: 0 0 var(--venue-divider-space);
  padding: 0 0 var(--venue-divider-space);
  border-bottom: 1px solid rgba(39, 29, 23, 0.1);
}

.page-breadcrumbs a,
.page-breadcrumbs span {
  color: inherit;
  text-decoration: none;
}

.page-breadcrumbs a:hover {
  color: var(--accent-strong);
}

.page-breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0 0.68rem;
  border: 1px solid rgba(39, 29, 23, 0.12);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-muted);
  box-shadow: none;
}

.page-breadcrumbs a.page-breadcrumb-pill:hover {
  border-color: rgba(209, 74, 28, 0.28);
  background: var(--bg-raised);
  color: var(--accent-strong);
}

.page-breadcrumb-separator {
  opacity: 0.58;
}

.venue-page-header {
  position: relative;
  padding-bottom: 1.2rem;
}

.venue-page .masthead-hero-headline {
  visibility: visible;
}

.venue-page-hero-copy {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.2rem 1.25rem 0;
}

.venue-page-hero-copy-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 0.35rem 0.9rem 0.2rem;
}

.venue-page-masthead-copy {
  display: block;
  text-align: center;
}

.venue-page-hero-kicker,
.venue-page-hero-title {
  text-align: center;
}

.venue-page-shell,
.venue-upcoming {
  width: min(1100px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.venue-page-shell {
  margin-top: 1.1rem;
}

.venue-page-profile {
  margin-top: 0;
  --venue-divider-space: 1.35rem;
  padding-top: var(--venue-divider-space);
  padding-bottom: var(--venue-divider-space);
}

.venue-page-utility {
  margin: 1rem 0 0;
  color: rgba(41, 29, 20, 0.92);
  font-size: 1rem;
  line-height: 1.7;
}

.venue-upcoming {
  --venue-divider-space: 1.35rem;
  margin-top: 0;
  padding-top: var(--venue-divider-space);
}

.venue-page-results-header {
  align-items: end;
}

.venue-page .listing-drawer {
  max-height: none;
  overflow: visible;
  border-top-color: var(--line);
}

.venue-page .listing-drawer-inner {
  opacity: 1;
  transform: none;
}

.venue-page .card-indicator {
  display: none;
}

body.venue-page-hydrated .venue-page .listing-drawer {
  max-height: 0;
  overflow: hidden;
  border-top-color: transparent;
}

body.venue-page-hydrated .venue-page .listing-drawer.is-open {
  max-height: 760px;
  border-top-color: var(--line);
}

body.venue-page-hydrated .venue-page .listing-drawer-inner {
  opacity: 0;
  transform: translateY(-4px);
}

body.venue-page-hydrated .venue-page .listing-drawer.is-open .listing-drawer-inner {
  opacity: 1;
  transform: translateY(0);
}

body.venue-page-hydrated .venue-page .card-indicator {
  display: inline-flex;
}

@media (max-width: 650px) {
  .venue-page-hero-copy {
    padding-top: 0.8rem;
  }
}

.homepage-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.homepage-path-card,
.homepage-stat-card,
.homepage-event-card {
  position: relative;
  display: grid;
  gap: 0.48rem;
  padding: 1.1rem 1.12rem;
  border: 1px solid rgba(26, 20, 16, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.96), rgba(250, 244, 231, 0.88)),
    radial-gradient(circle at top right, rgba(209, 74, 28, 0.08), transparent 44%);
  box-shadow: 0 16px 34px rgba(18, 14, 10, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.homepage-path-card:hover,
.homepage-stat-card:hover,
.homepage-event-card:hover {
  transform: translateY(-2px);
  border-color: rgba(209, 74, 28, 0.22);
  box-shadow: 0 22px 40px rgba(18, 14, 10, 0.08);
}

.homepage-path-card-kicker,
.homepage-stat-card-count {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.homepage-path-card-title,
.homepage-stat-card-label {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
}

.homepage-path-card-copy,
.homepage-stat-card-copy {
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

.homepage-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.homepage-market-pill-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.homepage-market-pill {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
  padding: 0.72rem 0.82rem 0.74rem;
  border: 1px solid rgba(26, 20, 16, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.96), rgba(250, 244, 231, 0.88)),
    radial-gradient(circle at top right, rgba(209, 74, 28, 0.08), transparent 44%);
  box-shadow: 0 16px 34px rgba(18, 14, 10, 0.05);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.homepage-market-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(209, 74, 28, 0.22);
  box-shadow: 0 22px 40px rgba(18, 14, 10, 0.08);
}

.homepage-market-pill-label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.homepage-market-pill-count {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.homepage-popular-searches-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.48rem;
  max-width: 1040px;
}

.homepage-popular-search-link {
  display: inline-flex;
  align-items: center;
  min-height: 1.72rem;
  padding: 0 0.72rem;
  border: 1px solid rgba(39, 29, 23, 0.12);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.homepage-popular-search-link:hover {
  border-color: rgba(209, 74, 28, 0.28);
  background: var(--bg-raised);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.homepage-popular-search-link:focus-visible {
  outline: 2px solid rgba(209, 74, 28, 0.34);
  outline-offset: 2px;
  border-color: rgba(209, 74, 28, 0.3);
  background: var(--bg-raised);
  color: var(--accent-strong);
}

.homepage-stat-card {
  min-height: 172px;
  align-content: start;
}

.homepage-stat-card-genre-featured {
  overflow: hidden;
  min-height: 0;
  gap: 0.28rem;
  padding: 0.82rem 0.92rem 0.9rem;
  border-color: rgba(132, 111, 255, 0.28);
  background:
      linear-gradient(180deg, rgba(18, 10, 38, 0.22), rgba(12, 8, 30, 0.8)),
    radial-gradient(circle at top center, rgba(243, 104, 255, 0.22), transparent 40%),
    var(--genre-card-image, linear-gradient(180deg, rgba(18, 10, 38, 0.22), rgba(12, 8, 30, 0.8))) center center / cover no-repeat;
  box-shadow: 0 22px 44px rgba(22, 10, 42, 0.18);
}

.homepage-stat-card-genre-electronic {
  --genre-card-image: url("assets/homepage_genre_electronic.jpg");
}

.homepage-stat-card-genre-house {
  --genre-card-image: url("assets/homepage_genre_house.jpg");
}

.homepage-stat-card-genre-techno {
  --genre-card-image: url("assets/homepage_genre_techno.jpg");
}

.homepage-stat-card-genre-bass {
  --genre-card-image: url("assets/homepage_genre_bass.jpg");
}

.homepage-stat-card-genre-jazz {
  --genre-card-image: url("assets/homepage_genre_jazz.jpg");
}

.homepage-stat-card-genre-bluegrass {
  --genre-card-image: url("assets/homepage_genre_bluegrass.jpg");
}

.homepage-stat-card-genre-rock {
  --genre-card-image: url("assets/homepage_genre_rock.jpg");
}

.homepage-stat-card-genre-jam {
  --genre-card-image: url("assets/homepage_genre_jam.jpg");
}

.homepage-stat-card-genre-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 16, 0.08) 0%, rgba(8, 6, 16, 0.58) 100%);
  pointer-events: none;
}

.homepage-stat-card-genre-featured > * {
  position: relative;
  z-index: 1;
}

.homepage-stat-card-genre-featured:hover {
  border-color: rgba(178, 147, 255, 0.5);
  box-shadow: 0 28px 52px rgba(20, 10, 38, 0.24);
}

.homepage-stat-card-genre-featured .homepage-stat-card-label {
  color: rgba(255, 252, 255, 0.98);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.homepage-stat-card-genre-featured .homepage-stat-card-count {
  color: #ffd4ff;
}

.homepage-stat-card-genre-featured .homepage-stat-card-copy {
  color: rgba(246, 239, 255, 0.94);
  font-size: 0.88rem;
  line-height: 1.42;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.3);
}

.homepage-stat-grid-genres {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.homepage-featured-events .section-meta,
.homepage-browse-grid-section .section-meta {
  align-self: center;
}

.homepage-event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.homepage-event-grid-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homepage-event-card {
  min-height: 220px;
  align-content: start;
}

.homepage-event-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.homepage-event-time {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.homepage-event-status {
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  background: rgba(209, 74, 28, 0.11);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.homepage-event-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.homepage-event-support,
.homepage-event-meta {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.94rem;
}

.homepage-event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.homepage-event-tag {
  padding: 0.2rem 0.56rem;
  border: 1px solid rgba(209, 74, 28, 0.15);
  border-radius: 999px;
  background: rgba(209, 74, 28, 0.06);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
}

.homepage-event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.3rem;
}

.homepage-event-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent);
}

.homepage-event-link-primary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
}

.homepage-event-link.is-disabled {
  cursor: default;
  opacity: 0.58;
}

.homepage-section-empty {
  margin: 0;
  color: var(--ink-dim);
}

.homepage-all-upcoming {
  margin-top: 1.8rem;
}

.homepage-dashboard-shell > .homepage-all-upcoming {
  margin-top: 0;
}

.homepage-all-upcoming[hidden] {
  display: none !important;
}

.homepage-refresh-note {
  margin: 1rem 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.homepage-results-divider {
  margin: 1.5rem 0 0;
  border: 0;
  border-top: 1px solid rgba(88, 62, 38, 0.16);
}

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

  .homepage-market-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-popular-searches-list {
    max-width: none;
  }

  .homepage-stat-grid-genres {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-stat-card-genre-featured {
    min-height: 0;
    padding: 0.74rem 0.82rem 0.82rem;
    gap: 0.24rem;
  }

  .homepage-stat-card-genre-featured .homepage-stat-card-label {
    font-size: 1.04rem;
  }

  .homepage-stat-card-genre-featured .homepage-stat-card-copy {
    font-size: 0.84rem;
    line-height: 1.32;
  }

  .homepage-event-grid-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .homepage-path-grid,
  .homepage-stat-grid,
  .homepage-event-grid,
  .homepage-event-grid-rail {
    grid-template-columns: minmax(0, 1fr);
  }

  .homepage-stat-grid-genres {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .homepage-market-pill-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.72rem;
  }

  .homepage-popular-searches-list {
    gap: 0.48rem 0.42rem;
  }

  .homepage-popular-search-link {
    min-height: 1.68rem;
    padding: 0 0.68rem;
    font-size: 0.69rem;
  }

  .homepage-hero {
    gap: 0.55rem;
  }

  .homepage-hero-intro {
    font-size: 0.96rem;
  }

  .homepage-path-card,
  .homepage-stat-card,
  .homepage-event-card {
    min-height: auto;
    padding: 1rem;
  }

  .homepage-stat-card-genre {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
    min-height: auto;
    padding: 0.72rem 0.82rem 0.74rem;
    border: 1px solid rgba(26, 20, 16, 0.12);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 253, 246, 0.96), rgba(250, 244, 231, 0.88)),
      radial-gradient(circle at top right, rgba(209, 74, 28, 0.08), transparent 44%);
    box-shadow: 0 16px 34px rgba(18, 14, 10, 0.05);
    overflow: hidden;
  }

  .homepage-stat-card-genre-featured::before {
    display: none;
  }

  .homepage-stat-card-genre .homepage-stat-card-label {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    text-shadow: none;
  }

  .homepage-stat-card-genre .homepage-stat-card-count {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    color: var(--accent);
  }

  .homepage-stat-card-genre .homepage-stat-card-copy {
    display: none;
  }
}

.section-empty {
  margin: 0;
  padding: 1rem 0 0;
  color: var(--ink-dim);
  font-size: 0.96rem;
  line-height: 1.55;
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.listing-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

.listing-card:hover,
.listing-card.is-open {
  border-color: var(--accent);
  background: var(--bg-hover);
}

.listing-card:hover {
  transform: translateX(3px);
}

.listing-summary {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
  margin: 0;
  min-height: 0;
  font: inherit;
}

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

:root {
  --listing-sideblock-width: 96px;
  --listing-sideblock-height: 98px;
}

.hero-row {
  display: grid;
  grid-template-columns: var(--listing-sideblock-width) 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  position: relative;
}

.listing-sideblock {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--listing-sideblock-width);
  min-width: var(--listing-sideblock-width);
  min-height: var(--listing-sideblock-height);
  padding: 0.75rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.listing-card:hover .listing-sideblock,
.listing-card.is-open .listing-sideblock {
  border-color: var(--accent);
  color: var(--accent);
}

.listing-sideblock-top {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-bottom: 9px;
  white-space: nowrap;
}

.listing-sideblock-top-relative {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.listing-sideblock-main {
  display: block;
  font-family: var(--font-body);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: var(--ink);
  transition: color 0.15s ease;
}

.listing-sideblock-main-tba {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.listing-sideblock-bottom {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
}

.listing-card:hover .listing-sideblock-main,
.listing-card.is-open .listing-sideblock-main {
  color: var(--accent);
}

.hero-body { min-width: 0; }

.hero-title-row,
.event-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.46rem;
  min-width: 0;
}

.hero-artist {
  font-family: var(--font-body);
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.028em;
  color: var(--ink-strong);
  margin: 0 0 6px;
}

.late-night-marker {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  margin-top: 0.12rem;
  opacity: 0.98;
  filter: drop-shadow(0 0 0.35rem rgba(245, 180, 0, 0.18));
}

.late-night-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-support {
  margin: -2px 0 8px;
  font-size: 0.98rem;
  line-height: 1.42;
  color: var(--ink-muted);
}

.hero-tags,
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.82rem;
}

.genre-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.78rem;
  border: 1px solid rgba(209, 74, 28, 0.10);
  border-radius: 999px;
  background: #f9e9df;
  color: #b4562b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-venue,
.event-venue {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
}

.venue-marker {
  display: inline-flex;
  width: 13px;
  height: 13px;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transform: translateY(-1px);
}

.venue-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}

.card-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--accent);
  opacity: 0.85;
  transition: transform 0.24s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.2s ease;
  padding-right: 4px;
}

.card-indicator svg {
  width: 18px;
  height: 18px;
  display: block;
}

.listing-card:hover .card-indicator { opacity: 1; }
.listing-card.is-open .card-indicator { transform: rotate(180deg); }

.listing-card[data-status="sold_out"] .hero-artist,
.listing-card[data-status="sold_out"] .event-artist { color: var(--ink-dim); }

.controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  margin-bottom: 0.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0 1.15rem;
  margin-bottom: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.control-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.control-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-right: 2px;
}

.chip, .pill {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.chip { border-radius: var(--radius-sm); }
.pill { border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }

.section-controls-filter { gap: 0.6rem; }

.venue-select {
  min-width: 220px;
  padding: 8px 36px 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-raised);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
}

.venue-select:hover,
.venue-select:focus {
  border-color: var(--line-strong);
  outline: none;
}

.chip:hover, .pill:hover {
  border-color: var(--line-strong);
  color: var(--ink);
}

.chip.is-active, .pill.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.chip.is-active:hover, .pill.is-active:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.upcoming { margin-top: 0.45rem; }

.venue-page .venue-upcoming {
  margin-top: 0;
  padding-top: var(--venue-divider-space);
}

.results-active-filters {
  display: grid;
  gap: 0.55rem;
  margin: 0.55rem 0 1rem;
}

.results-active-filters[hidden] {
  display: none !important;
}

.results-active-filters-label {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.results-active-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.78rem;
  border: 1px solid rgba(92, 62, 39, 0.14);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.92);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.results-active-filter-pill-locked {
  cursor: default;
  border-color: rgba(92, 62, 39, 0.18);
  background: rgba(246, 238, 227, 0.96);
}

.results-active-filter-pill:hover {
  border-color: rgba(226, 88, 28, 0.32);
  background: rgba(255, 244, 231, 0.98);
  color: var(--ink-strong);
  transform: translateY(-1px);
}

.results-active-filter-pill-locked:hover {
  border-color: rgba(92, 62, 39, 0.18);
  background: rgba(246, 238, 227, 0.96);
  color: var(--ink);
  transform: none;
}

.results-active-filter-pill-label {
  font-weight: 600;
}

.results-active-filter-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.results-active-filter-pill-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.results-active-filter-pill-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: rgba(226, 88, 28, 0.12);
  color: var(--accent-strong);
  font-size: 0.92rem;
  line-height: 1;
}

.results-active-filter-pill-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: rgba(92, 62, 39, 0.1);
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1;
}

.venue-profile {
  margin: 0 0 1.35rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}

.venue-profile-card {
  padding: 0.1rem 0 0.15rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.venue-profile-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.venue-profile-name {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.venue-profile-address-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.45;
}

.venue-profile-map-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  color: var(--ink);
  flex: 0 0 auto;
}

.venue-profile-map-icon svg {
  width: 100%;
  height: 100%;
}

.venue-profile-address {
  flex: 1 1 18rem;
  min-width: 0;
}

.venue-profile-map-link-row {
  margin-top: 0.3rem;
  padding-left: 0rem;
}

.venue-profile-map-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.venue-profile-map-link:hover {
  color: var(--accent);
  border-bottom-color: rgba(209, 74, 28, 0.35);
}

.venue-profile-details {
  margin-top: 0.6rem;
  color: var(--ink-dim);
  font-size: 0.96rem;
  line-height: 1.55;
}

.venue-profile-details a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.venue-profile-dot {
  color: var(--ink-muted);
  margin: 0 0.15rem;
}

.venue-profile-about {
  margin: 0.8rem 0 0;
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 60rem;
}

.venue-profile {
  margin: 0 0 1.8rem;
  padding: 0 0 1.3rem;
  border-bottom: 1px solid rgba(39, 29, 23, 0.1);
}

.venue-profile-card {
  padding: 0.15rem 0 0.1rem;
}

.venue-profile-card-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.55fr);
  gap: 4.25rem;
  align-items: center;
}

.venue-profile-main {
  min-width: 0;
}

.venue-profile-kicker {
  margin: 0 0 1.05rem;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.venue-profile-name {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
  font-style: normal;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.venue-profile-address-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.9rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.venue-profile-map-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  color: var(--ink);
  flex: 0 0 auto;
  margin-top: 0.08rem;
}

.venue-profile-map-icon svg {
  width: 100%;
  height: 100%;
}

.venue-profile-address {
  min-width: 0;
}

.venue-profile-address-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-width: 0;
  color: var(--ink);
  font-weight: 500;
  border-bottom: none;
}

.venue-profile-address-link span {
  color: var(--accent);
  font-weight: 700;
}

.venue-profile-address-link:hover {
  color: var(--accent);
}

.venue-profile-contact-stack {
  display: grid;
  gap: 0.82rem;
  margin: 0;
  color: var(--ink);
}

.venue-profile-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 1.9rem;
  color: inherit;
  text-decoration: none;
}

.venue-profile-contact-item-link:hover .venue-profile-contact-link {
  color: var(--accent);
}

.venue-profile-contact-item-emphasis {
  align-items: flex-start;
}

.venue-profile-contact-icon {
  width: 1.18rem;
  height: 1.18rem;
  display: inline-flex;
  color: var(--ink);
  flex: 0 0 auto;
  margin-top: 0.08rem;
}

.venue-profile-contact-icon svg {
  width: 100%;
  height: 100%;
}

.venue-profile-contact-content {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
}

.venue-profile-contact-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.venue-profile-contact-link,
.venue-profile-contact-value {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.venue-profile-contact-value.is-muted {
  color: var(--ink-muted);
}

.venue-profile-divider {
  height: 1px;
  margin: 0 0 1.05rem;
  background: rgba(39, 29, 23, 0.1);
}

.venue-page .venue-profile-divider {
  display: none;
}

.venue-profile-about-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0.15rem 0 0.15rem 1.7rem;
  border-left: none;
}

.venue-profile-about-panel::before {
  content: "";
  position: absolute;
  left: -2.1rem;
  top: 50%;
  width: 1px;
  height: min(70%, 11rem);
  transform: translateY(-50%);
  background: rgba(39, 29, 23, 0.14);
}

.venue-profile-about-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0 0 0.46rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.venue-profile-about-info-icon {
  display: inline-flex;
  width: 0.94rem;
  height: 0.94rem;
  color: currentColor;
}

.venue-profile-about-info-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.venue-profile-about-block {
  max-width: 43rem;
}

.venue-profile-about {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.58;
}

.venue-profile-about-panel .venue-profile-about {
  color: color-mix(in srgb, var(--ink-dim) 90%, black);
  font-size: 0.88rem;
  line-height: 1.55;
}

.venue-profile-about strong {
  color: var(--ink);
}

.venue-profile-about-toggle {
  margin-top: 0.7rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  cursor: pointer;
}

.venue-profile-about-toggle[aria-expanded="true"] {
  font-size: 0.9rem;
}

.venue-profile-about-toggle:hover {
  color: color-mix(in srgb, var(--accent) 86%, black);
}

.venue-profile-about-toggle-icon {
  width: 0.9rem;
  height: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.venue-profile-about-toggle-icon svg {
  width: 100%;
  height: 100%;
}

.venue-page .venue-page-profile {
  margin: 0;
  padding: var(--venue-divider-space, 1.35rem) 0;
}

.venue-page .venue-page-utility {
  margin-top: 1.05rem;
}

.event-row {
  display: grid;
  grid-template-columns: var(--listing-sideblock-width) 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
}

.event-body {
  display: block;
  min-width: 0;
}

.event-artist {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
}

.event-support {
  margin: -2px 0 8px;
  font-size: 12px;
  color: var(--ink-dim);
  line-height: normal;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.52rem;
  font-size: 12px;
  line-height: normal;
  color: var(--ink-soft);
}

.event-venue {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 12px;
  line-height: normal;
}

.event-venue-link {
  color: inherit;
  text-decoration: none;
}

.event-venue-link:hover {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 650px) {
  .event-venue-link {
    pointer-events: none;
    cursor: default;
  }
}

.listing-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms cubic-bezier(0.32, 0.72, 0, 1);
  border-top: 1px solid transparent;
}

.listing-drawer.is-open {
  max-height: 760px;
  border-top-color: var(--line);
}

.listing-drawer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem 1rem;
  align-items: end;
  padding: 0.95rem 1.1rem 1.1rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 150ms ease 90ms, transform 220ms cubic-bezier(0.32, 0.72, 0, 1);
}

.drawer-event-details {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.45rem;
}

button,
input,
select,
textarea {
  color-scheme: light;
}

.drawer-event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
}

.drawer-event-fact {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-height: 30px;
  padding: 0.32rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.62);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.drawer-event-fact-link {
  text-decoration: none;
}

.drawer-event-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.drawer-event-fact-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.drawer-event-fact-label {
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-event-fact-value {
  color: var(--ink);
  font-weight: 500;
}

.drawer-event-fact-free-cover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fffdf6;
}

.drawer-event-fact-free-cover .drawer-event-fact-icon,
.drawer-event-fact-free-cover .drawer-event-fact-label,
.drawer-event-fact-free-cover .drawer-event-fact-value {
  color: #fffdf6;
}

.drawer-event-fact-warning {
  border-color: rgba(194, 118, 12, 0.28);
  background: rgba(255, 241, 214, 0.95);
}

.drawer-event-fact-warning .drawer-event-fact-icon,
.drawer-event-fact-warning .drawer-event-fact-label,
.drawer-event-fact-warning .drawer-event-fact-value {
  color: #8b5412;
}

.drawer-listing-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.55;
}

.drawer-listing-note strong {
  color: var(--ink-soft);
}

.drawer-inline-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(209, 74, 28, 0.32);
  text-underline-offset: 3px;
}

.drawer-inline-link {
  display: inline;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.listing-drawer.is-open .listing-drawer-inner {
  opacity: 1;
  transform: translateY(0);
}

.drawer-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: flex-start;
}

.drawer-primary-action {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.drawer-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.drawer-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.drawer-btn-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.drawer-btn-label {
  display: inline-block;
  color: inherit;
}

.drawer-btn-secondary {
  border: 1px solid var(--line-strong);
  background: #f9f3e5;
  color: var(--ink);
  -webkit-text-fill-color: currentColor;
}

.drawer-btn-secondary .drawer-btn-icon {
  color: var(--accent);
}

.drawer-btn-secondary .drawer-btn-label,
.drawer-btn-secondary .drawer-btn-icon {
  -webkit-text-fill-color: currentColor;
}

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

@media (min-width: 901px) {
  .drawer-action-group {
    gap: 0.52rem;
  }

  .drawer-btn {
    gap: 0.42rem;
    padding: 0.64rem 0.82rem;
    font-size: 12px;
    line-height: 1.2;
  }

  .drawer-listing-note {
    font-size: 12px;
  }

  .drawer-btn-icon svg {
    width: 14px;
    height: 14px;
  }
}

.drawer-btn-primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  -webkit-text-fill-color: currentColor;
}

.drawer-btn-primary:hover {
  filter: brightness(1.04);
}

.drawer-btn.is-sold-out {
  border-color: var(--line-strong);
  background: #e4ded3;
  color: var(--ink-muted);
  -webkit-text-fill-color: currentColor;
  filter: none;
}

.drawer-btn.is-sold-out:hover {
  border-color: var(--line-strong);
  background: #ddd6ca;
  color: var(--ink-soft);
  filter: none;
}

.drawer-btn.is-disabled,
.drawer-btn:disabled {
  border-color: var(--line-strong);
  background: #e4ded3;
  color: var(--ink-muted);
  -webkit-text-fill-color: currentColor;
  cursor: not-allowed;
  pointer-events: none;
  filter: none;
  opacity: 0.72;
}

.empty-state {
  padding: 1.5rem 0 1.8rem;
  color: var(--ink-dim);
}

.empty-state-card {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 22rem;
  padding: clamp(2.2rem, 5vw, 3.6rem) 1.4rem;
  border: 1px solid rgba(64, 41, 22, 0.12);
  border-radius: 1.9rem;
  background: rgba(255, 252, 247, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
  text-align: center;
}

.empty-state-icon {
  width: 5.5rem;
  height: 5.5rem;
  color: rgba(162, 138, 115, 0.58);
}

.empty-state-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.empty-state-title {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.empty-state-copy {
  max-width: 34rem;
  margin: 0;
  color: rgba(51, 37, 28, 0.82);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-style: normal;
  line-height: 1.35;
  text-wrap: balance;
}

.empty-state-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.empty-state-btn {
  min-height: 3.35rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.empty-state-btn-secondary {
  border-color: rgba(64, 41, 22, 0.18);
  background: rgba(255, 251, 245, 0.88);
}

.empty-state-btn-primary {
  border-color: rgba(17, 11, 8, 0.9);
  background: #18110d;
  color: #fffaf2;
  box-shadow: 0 8px 20px rgba(24, 17, 13, 0.12);
}

.empty-state-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.empty-state-btn-primary:hover {
  color: #fffdf7;
  border-color: #18110d;
  background: #261a13;
}

.empty-state-btn-secondary:hover {
  background: rgba(255, 247, 238, 0.96);
  color: var(--ink-strong);
}

.results-month-group + .results-month-group {
  margin-top: 1rem;
}

.results-month-heading {
  margin: 0 0 0.6rem;
  padding: 0 0.15rem;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.results-month-list {
  display: grid;
  gap: 0.9rem;
}

.load-more-wrap {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
}

.load-more-wrap[hidden],
.load-more-btn[hidden],
.load-more-sentinel[hidden] {
  display: none !important;
}

.load-more-btn {
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-raised);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.load-more-btn:hover {
  border-color: var(--accent);
  background: var(--bg-hover);
  color: var(--accent);
}

.load-more-sentinel {
  width: 100%;
  height: 1px;
}

.site-footer {
  --footer-content-width: 920px;
  margin-top: clamp(3.4rem, 7vw, 6.5rem);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(2rem, 4.5vw, 3.6rem) 0 clamp(1.4rem, 3vw, 2.2rem);
  border-top: 1px solid rgba(120, 102, 76, 0.22);
  color: var(--ink-muted);
  background: transparent;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(118px, 0.55fr) minmax(118px, 0.55fr) minmax(250px, 1fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
  max-width: var(--footer-content-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-footer-column {
  min-height: 132px;
  padding-right: clamp(1rem, 2.5vw, 2.4rem);
  border-right: 1px solid rgba(120, 102, 76, 0.16);
}

.site-footer-heading {
  margin: 0 0 1.25rem;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer-links {
  display: grid;
  gap: 0.65rem;
}

.site-footer a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.18s ease;
}

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

.site-footer-links a {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.55;
}

.site-footer-contact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  justify-self: end;
  gap: 0.95rem;
  align-items: start;
  max-width: 320px;
  padding-top: 2rem;
}

.site-footer-contact-icon {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--accent);
}

.site-footer-contact-title {
  margin: 0 0 0.28rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.55;
}

.site-footer-contact-copy {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.site-footer-email {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 650;
}

.site-footer-rule {
  width: 100%;
  margin: clamp(2rem, 4vw, 3.3rem) 0 0;
  border: 0;
  border-top: 1px solid rgba(120, 102, 76, 0.2);
}

.site-footer-lower {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  max-width: var(--footer-content-width);
  margin: clamp(1.6rem, 3.5vw, 2.8rem) auto 0;
  padding: 0 1.25rem;
}

.site-footer-rail {
  display: none;
}

.site-footer-rail::before {
  content: "";
  position: absolute;
  top: 3.4rem;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(120, 102, 76, 0.14);
}

.site-footer-spark {
  position: absolute;
  top: 0.15rem;
  left: 50%;
  width: 1.45rem;
  height: 1.45rem;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(209, 74, 28, 0.16);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.site-footer-update {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  margin: 0 0 1.35rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.site-footer-update-dot {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(209, 74, 28, 0.18);
  animation: footer-dot-pulse 1.8s ease-in-out infinite;
}

.site-footer-disclaimer {
  max-width: 610px;
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.site-footer-disclaimer a {
  color: var(--accent);
  font-weight: 640;
}

.site-footer-bottom {
  max-width: var(--footer-content-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer-bottom p {
  margin: 0;
}

@keyframes footer-dot-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(209, 74, 28, 0.18);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 7px rgba(209, 74, 28, 0);
  }
}
.quiet { font-family: var(--font-body); font-style: italic; color: var(--ink-muted); }

@media (prefers-reduced-motion: reduce) {
  .site-footer-update-dot {
    animation: none;
  }
}

.about-page {
  max-width: 1040px;
}

.about-masthead {
  margin-bottom: 1.2rem;
}

.about-masthead .eyebrow-under-brand {
  max-width: min(760px, calc(100vw - 2rem));
  white-space: normal;
  line-height: 1.5;
}

.about-hero {
  position: relative;
  margin: 0 auto 1.05rem;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 18%, rgba(209, 74, 28, 0.10), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 246, 0.96), rgba(247, 242, 230, 0.9));
  box-shadow: 0 18px 60px rgba(32, 24, 17, 0.08);
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 4vw, 2.3rem);
  bottom: clamp(0.8rem, 3vw, 1.7rem);
  width: clamp(76px, 12vw, 138px);
  aspect-ratio: 1;
  border: 1px solid rgba(209, 74, 28, 0.18);
  border-radius: 999px;
  opacity: 0.38;
  pointer-events: none;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
}

.about-hero-art {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(209, 74, 28, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.7), rgba(249, 243, 229, 0.82)),
    radial-gradient(circle at 50% 20%, rgba(209, 74, 28, 0.12), transparent 34%);
  overflow: hidden;
}

.about-hero-art::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 12%;
  bottom: 10%;
  height: 34%;
  border-radius: 999px 999px 0 0;
  border-top: 1px solid rgba(26, 20, 16, 0.14);
  background:
    linear-gradient(135deg, transparent 54%, rgba(209, 74, 28, 0.16) 55%),
    linear-gradient(180deg, rgba(26, 20, 16, 0.05), transparent);
  transform: skewX(-10deg);
}

.about-orbit {
  position: absolute;
  border: 1px solid rgba(209, 74, 28, 0.16);
  border-radius: 999px;
}

.about-orbit-one {
  width: 230px;
  height: 230px;
  top: 12%;
  left: -12%;
}

.about-orbit-two {
  width: 170px;
  height: 170px;
  right: -18%;
  top: 28%;
}

.about-ticket-card {
  position: absolute;
  display: grid;
  gap: 0.28rem;
  padding: 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 253, 246, 0.92);
  box-shadow: 0 18px 42px rgba(32, 24, 17, 0.12);
}

.about-ticket-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.about-ticket-card span {
  color: var(--ink-dim);
  font-size: 0.78rem;
}

.about-ticket-date {
  width: fit-content;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #f6e4d8;
  color: var(--accent) !important;
  font-family: var(--font-mono);
  font-size: 0.64rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-ticket-main {
  top: 16%;
  left: 11%;
  width: min(72%, 230px);
  transform: rotate(-3deg);
}

.about-ticket-small {
  right: 7%;
  bottom: 18%;
  width: min(66%, 205px);
  transform: rotate(4deg);
}

.about-ticket-tiny {
  left: 9%;
  bottom: 9%;
  width: 150px;
  transform: rotate(7deg);
}

.about-kicker {
  margin: 0 0 0.58rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-hero h2,
.about-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.about-hero h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.about-card h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.about-hero h2 {
  max-width: 820px;
  font-size: clamp(1.95rem, 4.95vw, 4.05rem);
}

.about-lede {
  max-width: 720px;
  margin: 1.1rem 0 0;
  color: var(--ink-dim);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.6;
}

.about-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 1.35rem;
  padding: 0 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(209, 74, 28, 0.18);
}

.about-primary-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(209, 74, 28, 0.22);
}

.about-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto 1rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.72);
  box-shadow: 0 10px 30px rgba(32, 24, 17, 0.045);
}

.about-anchor-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.78rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink-dim);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.about-anchor-nav a:hover,
.about-anchor-nav a:focus-visible {
  border-color: rgba(209, 74, 28, 0.18);
  background: #f6e4d8;
  color: var(--accent);
  outline: none;
}

.about-card,
.about-hero {
  scroll-margin-top: 1rem;
}

.about-discovery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.about-mini-scene {
  display: grid;
  gap: 0.18rem;
  min-height: 132px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 246, 0.82);
}

.about-mini-scene strong {
  align-self: end;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.15;
}

.about-mini-scene span:last-child {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.about-scene-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(209, 74, 28, 0.2);
  border-radius: 999px;
  background: #f6e4d8;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.about-scene-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--accent);
  overflow: visible;
}

.about-scene-icon svg path,
.about-scene-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-card {
  min-height: 100%;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 246, 0.9);
  box-shadow: 0 10px 32px rgba(32, 24, 17, 0.045);
}

.about-card-large,
.about-card-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: center;
}

.about-card-large,
.about-card-wide {
  grid-column: 1 / -1;
}

.about-card h3 {
  max-width: 780px;
  margin-bottom: 0.9rem;
  font-size: clamp(1.85rem, 3.4vw, 3.15rem);
}

.about-card p:not(.about-kicker) {
  max-width: 760px;
  margin: 0.78rem 0 0;
  color: var(--ink-dim);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.72;
}

.about-official-card {
  position: relative;
  min-height: clamp(320px, 36vw, 410px);
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  background:
    radial-gradient(circle at 78% 42%, rgba(209, 74, 28, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 246, 0.96), rgba(249, 243, 229, 0.86));
}

.about-official-card > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.about-official-card::before,
.about-official-card::after {
  content: "";
  position: absolute;
  right: -1.15rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(120, 102, 76, 0.18);
  border-radius: 50%;
  background: #f9f3e5;
  z-index: 2;
}

.about-official-card::before {
  top: 4rem;
}

.about-official-card::after {
  bottom: 4rem;
}

.about-contact-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  border-color: rgba(209, 74, 28, 0.22);
  background: #f9f3e5;
}

.about-bottom-pair {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.about-ticket-cut-card {
  border-color: rgba(209, 74, 28, 0.18);
  background:
    radial-gradient(circle at 90% 15%, rgba(209, 74, 28, 0.08), transparent 30%),
    rgba(255, 253, 246, 0.92);
}

.about-corrections-art {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(209, 74, 28, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 22%, rgba(209, 74, 28, 0.12), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(26, 20, 16, 0.06), transparent 28%),
    rgba(255, 253, 246, 0.56);
  overflow: hidden;
}

.about-corrections-art::before {
  content: "";
  position: absolute;
  left: 18%;
  top: 18%;
  width: 52%;
  height: 64%;
  border: 1px solid rgba(26, 20, 16, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(rgba(209, 74, 28, 0.12), rgba(209, 74, 28, 0.12)) 22px 42px / 58% 2px no-repeat,
    linear-gradient(rgba(26, 20, 16, 0.10), rgba(26, 20, 16, 0.10)) 22px 72px / 72% 2px no-repeat,
    linear-gradient(rgba(26, 20, 16, 0.08), rgba(26, 20, 16, 0.08)) 22px 100px / 48% 2px no-repeat,
    rgba(255, 253, 246, 0.92);
  transform: rotate(-4deg);
  box-shadow: 0 18px 36px rgba(32, 24, 17, 0.09);
}

.about-corrections-art::after {
  content: "";
  position: absolute;
  right: 20%;
  top: 24%;
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  transform: rotate(-28deg);
  box-shadow:
    34px -18px 0 -3px rgba(209, 74, 28, 0.35),
    -18px 62px 0 -2px rgba(209, 74, 28, 0.2);
}

.about-correction-note {
  position: absolute;
  right: 9%;
  top: 22%;
  width: min(72%, 220px);
  display: grid;
  gap: 0.28rem;
  padding: 0.86rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 253, 246, 0.94);
  box-shadow: 0 16px 32px rgba(32, 24, 17, 0.12);
  transform: rotate(3deg);
}

.about-correction-note-secondary {
  left: 10%;
  right: auto;
  top: auto;
  bottom: 14%;
  width: min(68%, 205px);
  transform: rotate(-5deg);
}

.about-correction-note strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.12;
}

.about-correction-note span:not(.about-correction-pill) {
  color: var(--ink-dim);
  font-size: 0.78rem;
}

.about-correction-pill {
  width: fit-content;
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  background: #f6e4d8;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-correction-check {
  position: absolute;
  right: 11%;
  bottom: 13%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 1.7rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(209, 74, 28, 0.22);
}

.contact-page {
  max-width: 1040px;
}

.contact-hero .about-hero-copy {
  align-self: center;
}

.contact-hero-copy {
  max-width: 720px;
  margin: 0.78rem 0 0;
  color: var(--ink-dim);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.72;
}

.contact-hero-art {
  position: relative;
  min-height: 330px;
  border: 1px solid rgba(209, 74, 28, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 24%, rgba(209, 74, 28, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 246, 0.72), rgba(249, 243, 229, 0.9));
  overflow: hidden;
}

.contact-envelope {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 25%;
  display: grid;
  gap: 0.36rem;
  min-height: 150px;
  padding: 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    linear-gradient(145deg, transparent 49%, rgba(209, 74, 28, 0.13) 50%),
    linear-gradient(35deg, transparent 49%, rgba(26, 20, 16, 0.06) 50%),
    rgba(255, 253, 246, 0.94);
  box-shadow: 0 20px 44px rgba(32, 24, 17, 0.12);
  transform: rotate(-2deg);
}

.contact-envelope-kicker {
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f6e4d8;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-envelope strong {
  align-self: end;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.12;
}

.contact-envelope span:last-child {
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(209, 74, 28, 0.14);
  border-radius: 999px;
}

.contact-orbit-one {
  width: 180px;
  height: 180px;
  left: -11%;
  top: 10%;
}

.contact-orbit-two {
  width: 210px;
  height: 210px;
  right: -18%;
  bottom: -20%;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
  align-items: start;
}

.contact-form-card,
.contact-faq-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 246, 0.9);
  box-shadow: 0 10px 32px rgba(32, 24, 17, 0.045);
}

.contact-form-card {
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
}

.contact-form-card h3,
.contact-faq-card h3 {
  margin: 0 0 0.95rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.contact-form {
  display: grid;
  gap: 0.78rem;
}

.contact-field {
  display: grid;
  gap: 0.34rem;
}

.contact-field > span {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: baseline;
  color: var(--ink-dim);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-field strong,
.contact-field em {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-field em {
  color: var(--ink-muted);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #fffdf6;
  color: var(--ink);
  font: 500 16px/1.45 var(--font-body);
  padding: 0.78rem 0.9rem;
  color-scheme: light;
  outline: none;
}

.contact-field select {
  appearance: none;
  padding-right: 2.6rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%),
    linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 1.2rem) 50%,
    calc(100% - 0.82rem) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

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

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(209, 74, 28, 0.12);
}

.contact-submit {
  min-height: 50px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font: 800 1rem/1 var(--font-body);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(209, 74, 28, 0.18);
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(209, 74, 28, 0.22);
}

.contact-form-note,
.contact-status {
  margin: 1rem 0 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.contact-status {
  margin: 0 0 1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(62, 119, 82, 0.25);
  border-radius: 14px;
  background: rgba(226, 239, 226, 0.72);
  color: #2e6d48;
  font-weight: 800;
}

.contact-status.is-error {
  border-color: rgba(209, 74, 28, 0.24);
  background: #f6e4d8;
  color: var(--accent);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
}

.form-protection-row {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 1rem;
  border: 1px solid rgba(216, 78, 28, 0.16);
  border-radius: 22px;
  background: rgba(249, 243, 229, 0.6);
}

.form-protection-row:has(iframe) {
  margin: 1.6rem 0 0;
}

.form-protection-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.contact-faq-card {
  position: sticky;
  top: 1rem;
  padding: 1.2rem;
}

.contact-faq-card details {
  border-top: 1px solid var(--line);
  padding: 0.78rem 0;
}

.contact-faq-card details:first-of-type {
  border-top: 0;
}

.contact-faq-card summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.contact-faq-card summary::-webkit-details-marker {
  display: none;
}

.contact-faq-card summary::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.5rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.contact-faq-card details[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.contact-faq-card p {
  margin: 0.5rem 0 0;
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.58;
}

.submit-event-form-card {
  width: 100%;
}

.submit-event-faq-note {
  margin: 0 0 0.9rem;
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.58;
}

.submit-event-hero-art {
  min-height: 360px;
}

.submit-event-pass {
  position: absolute;
  left: 13%;
  right: 13%;
  top: 22%;
  display: grid;
  gap: 0.38rem;
  min-height: 164px;
  padding: 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(209, 74, 28, 0.16), transparent 18%),
    rgba(255, 253, 246, 0.94);
  box-shadow: 0 20px 44px rgba(32, 24, 17, 0.12);
  transform: rotate(2deg);
}

.submit-event-pass strong {
  align-self: end;
  color: var(--ink);
  font-size: 1.36rem;
  line-height: 1.08;
}

.submit-event-pass span:last-child {
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.submit-event-soundwave {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 19%;
  height: 64px;
  background:
    linear-gradient(var(--accent), var(--accent)) 4% 50% / 5px 22px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 16% 50% / 5px 42px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 28% 50% / 5px 30px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 40% 50% / 5px 56px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 52% 50% / 5px 24px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 64% 50% / 5px 46px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 76% 50% / 5px 34px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 88% 50% / 5px 52px no-repeat;
  opacity: 0.42;
}

.submit-event-form-section {
  display: grid;
  gap: 0.78rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(249, 243, 229, 0.42);
}

.submit-event-section-title {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-field small {
  margin-top: -0.12rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.submit-event-other-venue {
  display: grid;
  gap: 0.78rem;
  padding: 0.9rem;
  border: 1px dashed rgba(209, 74, 28, 0.34);
  border-radius: 16px;
  background: rgba(246, 228, 216, 0.28);
}

.submit-event-other-venue[hidden] {
  display: none;
}

.submit-event-time-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.submit-event-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(209, 74, 28, 0.2);
  border-radius: 18px;
  background: #f9f3e5;
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

.submit-event-checkbox input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.14rem;
  accent-color: var(--accent);
}

.about-chaos-art,
.about-search-art,
.about-source-art,
.about-final-word {
  position: relative;
  min-height: 245px;
  border: 1px solid rgba(26, 20, 16, 0.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(209, 74, 28, 0.10), transparent 32%),
    #f9f3e5;
  overflow: hidden;
}

.about-flyer,
.about-clean-card {
  position: absolute;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 253, 246, 0.92);
  box-shadow: 0 14px 30px rgba(32, 24, 17, 0.10);
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-flyer {
  width: 138px;
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 0.8rem;
  text-align: center;
}

.about-flyer-one {
  top: 24px;
  left: 22px;
  transform: rotate(-9deg);
}

.about-flyer-two {
  top: 54px;
  right: 24px;
  transform: rotate(7deg);
}

.about-flyer-three {
  left: 44px;
  bottom: 28px;
  transform: rotate(4deg);
}

.about-clean-card {
  right: 28px;
  bottom: 24px;
  width: 190px;
  padding: 0.85rem;
  background: var(--accent);
  color: var(--accent-ink);
}

.about-clean-card span {
  display: block;
  opacity: 0.82;
  font-size: 0.58rem;
}

.about-clean-card strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--accent-ink);
  font-family: var(--font-body);
  font-size: 0.94rem;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
}

.about-visual-card {
  display: flex;
  flex-direction: column;
}

.about-search-art,
.about-source-art {
  min-height: 178px;
  margin-bottom: 1rem;
  padding: 1rem;
}

.about-search-bar,
.about-search-result {
  border: 1px solid rgba(26, 20, 16, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.88);
}

.about-search-bar {
  position: relative;
  padding: 0.72rem 1rem;
  color: var(--ink);
  font-weight: 700;
}

.about-search-bar::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: 7px 7px 0 -5px var(--accent);
}

.about-search-result {
  width: fit-content;
  margin-top: 0.58rem;
  padding: 0.36rem 0.72rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-source-art {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: center;
  gap: 0.4rem;
}

.about-source-art span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 253, 246, 0.9);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.about-source-logo-node img {
  display: block;
  width: min(116px, 88%);
  height: auto;
}

.about-source-art i {
  height: 1px;
  background: var(--accent);
  position: relative;
}

.about-source-art i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

.about-final-word {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  isolation: isolate;
}

.about-official-card .about-final-word {
  position: absolute;
  inset: 0;
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}

.about-ticket-stub {
  position: relative;
  width: min(430px, 94%);
  min-height: 174px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 1.15rem;
  padding: 1.15rem 1.3rem;
  border: 1px solid rgba(120, 102, 76, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.98), rgba(241, 231, 211, 0.94)),
    repeating-linear-gradient(90deg, rgba(120, 102, 76, 0.08) 0 1px, transparent 1px 12px);
  box-shadow: 0 18px 42px rgba(64, 45, 29, 0.12);
  color: rgba(26, 20, 16, 0.52);
  overflow: hidden;
  transform: rotate(-2deg);
}

.about-official-card .about-ticket-stub {
  position: absolute;
  right: clamp(-2.9rem, -3.2vw, -1.2rem);
  top: 50%;
  width: min(500px, 54%);
  min-height: min(242px, 66%);
  grid-template-columns: 0.18fr minmax(0, 1fr) 0.48fr;
  gap: 0;
  padding: 0;
  border-color: rgba(120, 102, 76, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(225, 207, 169, 0.92) 0 12%, transparent 12%),
    linear-gradient(90deg, transparent 0 74%, rgba(35, 32, 31, 0.96) 74%),
    linear-gradient(135deg, rgba(239, 223, 187, 0.98), rgba(222, 203, 163, 0.92));
  box-shadow: 0 28px 80px rgba(64, 45, 29, 0.16);
  transform: translateY(-50%) rotate(-4deg);
}

.about-ticket-stub::before,
.about-ticket-stub::after {
  content: "";
  position: absolute;
}

.about-ticket-stub::before {
  display: none;
}

.about-ticket-stub::after {
  top: 0;
  bottom: 0;
  left: 73.5%;
  width: 1px;
  background: repeating-linear-gradient(0deg, rgba(255, 253, 246, 0.92) 0 4px, transparent 4px 8px);
  z-index: 2;
}

.about-ticket-left-code {
  position: relative;
  z-index: 3;
  grid-column: 1;
  display: grid;
  place-items: center;
  padding: 0.78rem 0.38rem;
}

.about-ticket-left-bars {
  display: block;
  width: clamp(2rem, 4vw, 2.7rem);
  height: 84%;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(26, 20, 16, 0.86) 0 2px,
      transparent 2px 5px,
      rgba(26, 20, 16, 0.62) 5px 8px,
      transparent 8px 12px,
      rgba(26, 20, 16, 0.82) 12px 14px,
      transparent 14px 19px,
      rgba(26, 20, 16, 0.76) 19px 23px,
      transparent 23px 27px
    );
}

.about-ticket-details {
  display: grid;
  align-content: start;
  grid-column: 2;
  gap: 0.42rem;
  justify-items: start;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(0.9rem, 2vw, 1.35rem);
  text-align: left;
}

.about-ticket-details span,
.about-ticket-meta span {
  font-family: var(--font-mono);
  color: rgba(209, 74, 28, 0.58);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.about-ticket-details strong {
  max-width: 11ch;
  color: rgba(10, 10, 10, 0.86);
  font-size: clamp(1.55rem, 3.1vw, 2.35rem);
  font-weight: 920;
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.about-ticket-details small {
  color: rgba(90, 80, 66, 0.66);
  font-size: 0.72rem;
  font-weight: 650;
}

.about-ticket-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.about-ticket-row span,
.about-ticket-warning {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(209, 74, 28, 0.2);
  border-radius: 999px;
  background: rgba(209, 74, 28, 0.08);
  color: rgba(209, 74, 28, 0.76) !important;
  font-size: 0.56rem !important;
  letter-spacing: 0.11em !important;
  line-height: 1.2;
  padding: 0.28rem 0.42rem;
}

.about-ticket-meta {
  display: grid;
  grid-column: 3;
  align-content: start;
  gap: 0.42rem;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem) 0.9rem;
  border-left: 0;
  text-align: left;
}

.about-ticket-meta span {
  color: rgba(255, 253, 246, 0.82);
  letter-spacing: 0.1em;
}

.about-ticket-barcode {
  display: block;
  align-self: end;
  width: 100%;
  min-height: 42px;
  margin-top: 0.15rem;
  border-radius: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 253, 246, 0.84) 0 2px,
      transparent 2px 5px,
      rgba(255, 253, 246, 0.52) 5px 7px,
      transparent 7px 11px,
      rgba(255, 253, 246, 0.74) 11px 12px,
      transparent 12px 17px
    );
  opacity: 0.78;
}

.legal-page {
  max-width: 980px;
}

.legal-hero {
  align-items: stretch;
}

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

.legal-hero-art {
  position: relative;
  min-height: 290px;
  border: 1px solid rgba(209, 74, 28, 0.16);
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(209, 74, 28, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(255, 253, 246, 0.84), rgba(247, 242, 230, 0.52));
}

.legal-orbit {
  position: absolute;
  border: 1px solid rgba(209, 74, 28, 0.18);
  border-radius: 999px;
}

.legal-orbit-one {
  width: 220px;
  height: 220px;
  left: -58px;
  top: 38px;
}

.legal-orbit-two {
  width: 180px;
  height: 180px;
  right: -42px;
  bottom: -28px;
}

.legal-note-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(290px, 78%);
  padding: 1.25rem;
  transform: translate(-50%, -50%) rotate(-3deg);
  border: 1px solid rgba(26, 20, 16, 0.16);
  border-radius: 20px;
  background: rgba(255, 253, 246, 0.9);
  box-shadow: 0 18px 38px rgba(64, 45, 29, 0.12);
}

.legal-note-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(209, 74, 28, 0.12);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-note-card strong,
.legal-note-card em {
  display: block;
}

.legal-note-card strong {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.15;
}

.legal-note-card em {
  margin-top: 0.28rem;
  color: var(--ink-dim);
  font-style: normal;
}

.legal-content-card {
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 246, 0.78);
  box-shadow: 0 18px 55px rgba(64, 45, 29, 0.08);
}

.legal-prose {
  display: grid;
  gap: 0.85rem;
}

.legal-prose h3,
.legal-prose h4,
.faq-list summary {
  font-family: var(--font-body);
  letter-spacing: -0.04em;
}

.legal-prose h3 {
  margin: 1.1rem 0 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
}

.legal-prose h4 {
  margin: 0.65rem 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.legal-prose p,
.legal-prose li {
  max-width: 72ch;
  margin: 0;
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.7;
}

.legal-prose ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.25rem 0 0;
  padding-left: 1.25rem;
}

.legal-prose a,
.faq-list a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(209, 74, 28, 0.28);
  text-underline-offset: 0.18em;
}

.legal-callout {
  max-width: none !important;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(209, 74, 28, 0.18);
  border-radius: 18px;
  background: rgba(209, 74, 28, 0.08);
  color: var(--ink-soft) !important;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 246, 0.68);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 1rem 3rem 1rem 1.05rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.16s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-list p {
  margin: 0;
  padding: 0 1.05rem 1rem;
  color: var(--ink-dim);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-list p + p {
  padding-top: 0;
}

@media (max-width: 650px) {
  .legal-page {
    max-width: none;
  }

  .legal-hero-art {
    min-height: 220px;
  }

  .legal-note-card {
    width: min(260px, 82%);
    padding: 1rem;
  }

  .legal-content-card {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 22px;
  }

  .legal-prose h3 {
    font-size: 1.35rem;
  }

  .legal-prose p,
  .legal-prose li,
  .faq-list p {
    font-size: 0.98rem;
  }

  .faq-list summary {
    padding: 0.9rem 2.6rem 0.9rem 0.9rem;
  }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 650px) {
  .page { padding: 1rem 0.85rem 2.25rem; }
  .masthead {
    margin: -1rem calc(50% - 50vw) 1.25rem;
    padding: 4.55rem 0.85rem 0.85rem;
  }
  .masthead::before {
    height: clamp(220px, 60vw, 300px);
    background-position: 62% top;
  }
  .eyebrow { font-size: 10px; letter-spacing: 0.14em; }
  .action-center-shell {
    margin: 0.8rem 0 0.5rem;
    max-width: none;
  }
  .action-center {
    --ac-control-height: 46px;
    --ac-control-font-size: 16px;
    --ac-chip-font-size: 16px;
    --ac-clear-font-size: 16px;
    --ac-calendar-font-size: 16px;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 0.65rem;
    padding: 0.72rem 0.72rem 0.56rem;
    border-radius: 16px;
  }
  .action-center-shell.is-compact {
    top: 0.45rem;
    width: calc(100vw - 1rem);
  }
  .action-center-shell.is-compact .action-center {
    padding: 0.62rem 0.68rem;
    border-radius: 14px;
  }
  .action-search {
    grid-area: auto;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 0.45rem;
  }
  .action-search-input {
    min-height: var(--ac-control-height);
    padding: 0 2.55rem 0 0.88rem;
    font-size: var(--ac-control-font-size);
  }
  .action-search-clear {
    right: 0.68rem;
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
  .action-search-submit {
    min-height: var(--ac-control-height);
  }
  .action-search-suggestion {
    font-size: 12px;
    padding: 0.55rem 0.68rem;
  }
  .action-refinements {
    grid-area: auto;
    grid-column: auto;
    grid-row: auto;
    display: block;
    gap: 0.6rem;
  }
  .action-chips {
    grid-area: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) minmax(0, 1.22fr) minmax(0, 0.76fr) minmax(0, 0.76fr);
    gap: 0.34rem;
    flex: none;
    overflow: visible;
    padding-bottom: 0;
  }
  .action-center .chip {
    width: 100%;
    min-height: var(--ac-control-height);
    justify-content: center;
    font-size: var(--ac-chip-font-size);
    padding: 7px 8px;
  }
  .action-chip-label-full {
    display: none;
  }
  .action-chip-label-short {
    display: inline;
  }
  .action-chip-moon {
    min-width: 0;
    padding-inline: 0.4rem;
  }
  .action-chip-calendar {
    min-width: 0;
    padding-inline: 0.4rem;
  }
  .action-chip-calendar svg,
  .action-chip-moon svg {
    width: 1rem;
    height: 1rem;
  }
  .action-calendar-panel {
    grid-area: auto;
    grid-column: auto;
    grid-row: auto;
    gap: 0.68rem;
    padding: 0.78rem;
    border-radius: 14px;
  }
  .action-calendar-panel-header {
    display: grid;
    gap: 0.45rem;
  }
  .action-calendar-panel-summary {
    font-size: 11px;
  }
  .action-calendar-grid {
    grid-template-columns: 1fr;
    gap: 0.48rem;
  }
  .action-calendar-range-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
  }
  .action-calendar-input {
    min-height: var(--ac-control-height);
    height: var(--ac-control-height);
    font-size: var(--ac-calendar-font-size);
    padding: 0 2.25rem 0 0.9rem;
  }
  .action-calendar-placeholder {
    font-size: var(--ac-calendar-font-size);
  }
  .action-meta-actions {
    grid-area: auto;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.55rem;
  }
  .action-venue-wrap {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.28rem;
    width: 100%;
  }
  .action-venue-wrap.is-locked {
    width: 100%;
    max-width: none;
  }
  .action-venue-label {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .action-venue-select {
    min-height: var(--ac-control-height);
    min-width: 0;
    width: 100%;
    max-width: none;
    font-size: var(--ac-control-font-size);
  }
  .action-venue-select.is-locked {
    min-width: 0;
    width: 100%;
    max-width: none;
  }
  .action-venue-icon {
    left: 0.72rem;
  }
  .action-clear-btn {
    grid-area: auto;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: var(--ac-control-height);
    padding: 0 1rem;
    font-size: var(--ac-clear-font-size);
    border-color: rgba(209, 74, 28, 0.14);
    background: #f4e7dc;
    color: var(--accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  .action-clear-btn:hover {
    border-color: rgba(209, 74, 28, 0.2);
    background: #f6eadf;
    color: var(--accent);
  }
  .action-clear-btn-icon {
    width: 1rem;
    height: 1rem;
  }
  .brand-article {
    font-size: clamp(1.35rem, 5vw, 1.7rem);
    margin-bottom: -0.28rem;
    transform: translateX(-14%);
  }
  .brand-main { font-size: clamp(3.15rem, 14vw, 4.2rem); }
  .eyebrow-under-brand { margin-top: 1rem; }
  .back-to-top-btn {
    min-height: 56px;
    padding: 0 1rem;
  }
  .tagline {
    margin-top: 0.8rem;
    font-size: 13px;
    line-height: 1.35;
    max-width: 100%;
  }
  .feedback-panel {
    gap: 0.7rem;
    padding: 0.95rem 0.95rem 1rem;
  }
  .feedback-field-label {
    font-size: 0.78rem;
  }
  .report-issue-footer-copy {
    font-size: 0.72rem;
  }
  .feedback-title { font-size: clamp(1.35rem, 6vw, 1.65rem); }
  .feedback-intro { font-size: 0.92rem; }
  .feedback-field textarea { min-height: 96px; }
  .feedback-submit { min-height: 42px; padding: 0.68rem 0.95rem; font-size: 0.92rem; }
  .feedback-todo { font-size: 0.74rem; line-height: 1.35; }
  .masthead-feedback-link-row { margin-top: 0.58rem; }
  .masthead-feedback-link {
    min-height: 37px;
    padding: 0.52rem 0.88rem;
    font-size: 0.88rem;
  }
  .feedback-modal {
    align-items: center;
    padding: max(1rem, env(safe-area-inset-top, 0px)) 1rem max(1rem, env(safe-area-inset-bottom, 0px));
  }
  .feedback-modal-sheet {
    width: min(100%, 520px);
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    transform: translateY(18px);
  }
  .feedback-modal.is-open .feedback-modal-sheet {
    transform: translateY(0);
  }
  .feedback-modal .feedback-panel {
    border-radius: 22px;
    border-bottom: 1px solid var(--line-strong);
    padding-top: 1.15rem;
    padding-bottom: 1rem;
  }
  .feedback-modal-close {
    top: 0.72rem;
    right: 0.72rem;
    width: 38px;
    height: 38px;
  }
  .hero-strip { margin-bottom: 1.4rem; }
  .hero-list { gap: 6px; }

  .chip, .pill {
    font-size: 12px;
    padding: 4px 9px;
  }

  .hero-row {
    grid-template-columns: 78px 1fr;
    gap: 12px;
    padding: 14px 13px;
    border-radius: 12px;
  }

  .card-indicator { display: none; }
  .listing-sideblock {
    width: 78px;
    min-width: 78px;
    min-height: 76px;
    padding: 9px 7px 10px;
    border-radius: var(--radius-md);
    justify-self: center;
  }
  .listing-sideblock-top {
    font-size: 8.5px;
    letter-spacing: 0.12em;
    margin-bottom: 7px;
  }
  .listing-sideblock-top-relative {
    font-size: 7.5px;
    letter-spacing: 0.06em;
  }
  .listing-sideblock-main {
    font-size: 1.52rem;
    line-height: 1.05;
  }
  .listing-sideblock-main-tba {
    font-size: 0.86rem;
  }
  .listing-sideblock-bottom {
    font-size: 8.5px;
    letter-spacing: 0.14em;
    margin-top: 6px;
  }
  .hero-artist {
    font-size: 1.18rem;
    line-height: 1.14;
    margin-bottom: 3px;
  }
  .hero-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.45rem;
    align-items: start;
  }
  .hero-title-row {
    grid-column: 1 / 2;
  }
  .hero-artist,
  .hero-support,
  .hero-venue {
    grid-column: 1 / 2;
  }
  .hero-support {
    margin: 0 0 5px;
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .hero-tags,
  .event-tags {
    gap: 0.2rem;
    margin-bottom: 0;
    flex-direction: column;
    align-items: flex-end;
  }
  .hero-tags {
    grid-column: 2 / 3;
    grid-row: 1 / span 3;
    align-self: start;
    justify-self: end;
    margin-top: 1px;
  }
  .genre-chip {
    padding: 0.18rem 0.52rem;
    font-size: 11.5px;
  }
  .hero-venue {
    gap: 5px;
    font-size: 0.92rem;
    line-height: 1.2;
  }
  .venue-marker {
    width: 12px;
    height: 12px;
    transform: translateY(-1px);
  }

  .event-row {
    grid-template-columns: 78px 1fr;
    gap: 12px;
    padding: 14px 13px;
  }
  .event-artist {
    font-size: 1.07rem;
    line-height: 1.18;
    margin-bottom: 3px;
  }
  .event-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.45rem;
    align-items: start;
  }
  .event-title-row {
    grid-column: 1 / 2;
  }
  .event-artist,
  .event-support,
  .event-meta {
    grid-column: 1 / 2;
  }
  .event-support {
    margin-bottom: 5px;
    font-size: 12.5px;
    line-height: 1.28;
  }
  .event-tags {
    grid-column: 2 / 3;
    grid-row: 1 / span 3;
    align-self: start;
    justify-self: end;
    margin-top: 1px;
  }
  .event-meta {
    gap: 8px;
    font-size: 0.92rem;
  }

  .listing-card:hover {
    transform: none;
  }

  .listing-drawer-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.72rem;
    padding: 0.95rem 1rem 1rem;
  }

  .listing-drawer.is-open {
    max-height: 980px;
  }

  .drawer-event-fact {
    font-size: 0.9rem;
  }

  .drawer-event-facts {
    align-items: stretch;
  }

  .drawer-event-fact {
    width: 100%;
    justify-content: flex-start;
  }

  .drawer-action-group,
  .drawer-primary-action {
    width: 100%;
  }

  .drawer-action-group {
    flex-direction: column;
    align-items: stretch;
  }

  .drawer-primary-action {
    justify-content: stretch;
    align-items: stretch;
  }

  .drawer-btn {
    width: 100%;
    min-height: 49px;
    font-size: 16px;
  }
  .section-header {
    gap: 0.55rem;
    margin-bottom: 0.6rem;
  }
  .section-title { font-size: 1.34rem; line-height: 1.1; }
  .section-date,
  .section-meta {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .controls {
    gap: 0.55rem;
    padding: 0.55rem 0;
    margin-bottom: 0.35rem;
  }
  .venue-profile {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
  }
  .venue-profile-card {
    padding: 0.1rem 0 0.25rem;
  }
  .venue-profile-card-layout {
    gap: 1rem;
  }
  .venue-profile-kicker {
    margin-bottom: 0.35rem;
    font-size: 0.62rem;
  }
  .venue-profile-address-row {
    gap: 0.45rem;
    font-size: 0.93rem;
  }
  .venue-profile-map-link-row {
    margin-top: 0.22rem;
    padding-left: 1.35rem;
  }
  .venue-profile-map-link {
    font-size: 0.84rem;
  }
  .venue-profile-details,
  .venue-profile-about {
    font-size: 0.92rem;
  }
  .empty-state {
    padding: 1.1rem 0 1.35rem;
  }
  .empty-state-card {
    min-height: 0;
    padding: 1.8rem 1rem;
    border-radius: 1.4rem;
  }
  .empty-state-icon {
    width: 4.5rem;
    height: 4.5rem;
  }
  .empty-state-title {
    font-size: 1.3rem;
  }
  .empty-state-copy {
    font-size: 0.98rem;
  }
  .empty-state-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 19rem);
  }
  .empty-state-btn {
    width: 100%;
  }
  .results-month-group + .results-month-group {
    margin-top: 0.85rem;
  }
  .results-month-heading {
    margin-bottom: 0.45rem;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }
  .results-month-list {
    gap: 0.7rem;
  }
  .load-more-wrap { padding-top: 0.9rem; }
  .load-more-btn {
    padding: 0.62rem 0.9rem;
    font-size: 12px;
  }
  .site-footer {
    margin-top: 2.8rem;
    padding-top: 1.6rem;
  }
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 0 0.95rem;
  }
  .site-footer-column {
    min-height: auto;
    padding: 0 0 1.2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(120, 102, 76, 0.14);
  }
  .site-footer-heading {
    margin-bottom: 0.74rem;
    font-size: 0.64rem;
  }
  .site-footer-links {
    gap: 0.52rem;
  }
  .site-footer-links a {
    font-size: 0.84rem;
  }
  .site-footer-contact {
    grid-template-columns: 1fr;
    justify-self: stretch;
    gap: 0.65rem;
    max-width: none;
    padding-top: 0;
  }
  .site-footer-contact-icon {
    width: 1.28rem;
    height: 1.28rem;
  }
  .site-footer-rule {
    margin-top: 1.65rem;
  }
  .site-footer-lower {
    grid-template-columns: 1fr;
    margin-top: 1.35rem;
    padding: 0 0.95rem;
  }
  .site-footer-update {
    margin-bottom: 1rem;
    font-size: 0.64rem;
  }
  .site-footer-bottom {
    padding: 0 0.95rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding: 1.05rem;
    border-radius: 20px;
  }

  .about-hero::after {
    display: none;
  }

  .about-hero-art {
    min-height: 300px;
  }

  .about-hero h2 {
    font-size: clamp(1.9rem, 9.4vw, 2.7rem);
    line-height: 0.98;
  }

  .about-lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .about-primary-link {
    width: 100%;
    min-height: 48px;
  }

  .about-anchor-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-left: -0.1rem;
    margin-right: -0.1rem;
    overflow-x: auto;
    padding: 0.44rem;
    border-radius: 18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .about-anchor-nav::-webkit-scrollbar {
    display: none;
  }

  .about-anchor-nav a {
    min-height: 36px;
    font-size: 0.8rem;
  }

  .about-discovery-strip,
  .about-story-grid,
  .about-card-large,
  .about-card-wide,
  .about-contact-card,
  .about-bottom-pair {
    grid-template-columns: 1fr;
  }

  .about-discovery-strip,
  .about-story-grid {
    gap: 0.78rem;
  }

  .about-mini-scene {
    min-height: 112px;
  }

  .about-card {
    padding: 1rem;
    border-radius: 18px;
  }

  .about-official-card {
    display: block;
    min-height: auto;
    align-items: start;
    padding-bottom: 1rem;
    overflow: visible;
  }

  .about-official-card::before,
  .about-official-card::after {
    right: -0.9rem;
    width: 1.8rem;
    height: 1.8rem;
  }

  .about-official-card::before {
    top: auto;
    bottom: 8.6rem;
  }

  .about-official-card::after {
    bottom: 2.8rem;
  }

  .about-card h3 {
    font-size: clamp(1.65rem, 7.4vw, 2.18rem);
    line-height: 1.05;
  }

  .about-card p:not(.about-kicker) {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .about-chaos-art,
  .about-search-art,
  .about-source-art,
  .about-final-word,
  .about-corrections-art {
    min-height: 210px;
  }

  .about-official-card .about-final-word {
    position: relative;
    inset: auto;
    min-height: 230px;
    margin-top: 1.25rem;
    overflow: visible;
  }

  .about-ticket-stub {
    width: min(320px, 96%);
    min-height: 158px;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  .about-official-card .about-ticket-stub {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(360px, 100%);
    min-height: 212px;
    grid-template-columns: 0.16fr minmax(0, 1fr) 0.42fr;
    margin: 0 auto;
    transform: rotate(-3deg);
  }

  .about-ticket-stub::after {
    left: 72.5%;
  }

  .about-ticket-left-code {
    padding: 0.58rem 0.24rem;
  }

  .about-ticket-left-bars {
    width: 1.82rem;
    height: 84%;
  }

  .about-ticket-details {
    padding: 0.92rem 0.8rem;
  }

  .about-ticket-details strong {
    font-size: clamp(1.32rem, 8.5vw, 1.9rem);
  }

  .about-ticket-meta {
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 0.92rem 0.58rem;
    border-top: 0;
    border-left: 0;
  }

  .about-ticket-meta span {
    font-size: 0.54rem;
  }

  .about-ticket-barcode {
    grid-column: 1 / -1;
    min-height: 34px;
  }

  .contact-hero-art {
    min-height: 250px;
  }

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

  .contact-form-card,
  .contact-faq-card {
    border-radius: 18px;
    padding: 1rem;
  }

  .contact-faq-card {
    position: static;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea,
  .contact-submit {
    font-size: 16px;
  }

  .submit-event-hero-art {
    min-height: 260px;
  }

  .submit-event-form-section {
    padding: 0.78rem;
    border-radius: 15px;
  }

  .submit-event-time-row {
    grid-template-columns: 1fr;
  }

  .submit-event-checkbox {
    font-size: 0.88rem;
  }

  .about-source-art {
    grid-template-columns: 1fr;
  }

  .about-source-art i {
    width: 1px;
    height: 22px;
    justify-self: center;
  }

  .about-source-art i::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }

  input:not([type="hidden"]),
  textarea,
  select,
  button,
  [role="combobox"],
  [role="searchbox"],
  [contenteditable="true"],
  .action-search-input,
  .action-venue-select,
  .action-calendar-input,
  .action-calendar-placeholder,
  .action-center .chip,
  .action-search-suggestion,
  .action-clear-btn,
  .drawer-btn,
  .feedback-field input,
  .feedback-field textarea,
  .contact-field input,
  .contact-field select,
  .contact-field textarea,
  .contact-submit,
  .feedback-submit,
  .load-more-btn,
  .empty-state-btn,
  .venue-select {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (max-width: 860px) {
  .venue-profile {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
  }

  .venue-profile-kicker {
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
  }

  .venue-profile-name {
    margin-bottom: 0.75rem;
    font-size: clamp(2.1rem, 9vw, 3.6rem);
  }

  .venue-profile-address-row {
    gap: 0.68rem;
    font-size: 0.97rem;
  }

  .venue-profile-map-link-row {
    margin-bottom: 0.9rem;
    margin-left: 1.95rem;
  }

  .venue-profile-contact-stack {
    margin-bottom: 0.95rem;
  }

  .venue-profile-about,
  .venue-profile-about-toggle,
  .venue-profile-address-link,
  .venue-profile-contact-label,
  .venue-profile-contact-link,
  .venue-profile-contact-value {
    font-size: 0.88rem;
  }

  .venue-profile-contact-label {
    font-size: 0.64rem;
  }

  .venue-profile-card-layout {
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
    gap: 2.35rem;
  }

  .venue-profile-about-panel {
    padding: 0.3rem 0 0.3rem 1.05rem;
  }

  .venue-profile-about-panel::before {
    left: -1.15rem;
    height: min(70%, 9rem);
  }
}

@media (max-width: 620px) {
  .venue-page .page-breadcrumbs {
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .venue-page .page-breadcrumb-pill {
    min-height: 1.65rem;
    padding: 0 0.68rem;
    border-color: rgba(39, 29, 23, 0.11);
    box-shadow: none;
  }

  .page-breadcrumb-separator {
    opacity: 0.42;
  }

  .venue-profile-name {
    line-height: 0.98;
  }

  .venue-profile-map-link-row {
    margin-left: 0;
  }

  .venue-profile-contact-stack {
    gap: 0.82rem;
  }

  .venue-profile-contact-item {
    gap: 0.58rem;
    width: 100%;
    justify-content: flex-start;
  }

  .venue-profile-card-layout {
    grid-template-columns: 1fr;
  }

  .venue-profile-kicker {
    margin-bottom: 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .venue-profile-address-row {
    gap: 0.58rem;
    margin-bottom: 0.82rem;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .venue-profile-map-icon,
  .venue-profile-contact-icon {
    width: 1.1rem;
    height: 1.1rem;
  }

  .venue-profile-address-link,
  .venue-profile-contact-link,
  .venue-profile-contact-value {
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.4;
  }

  .venue-profile-contact-item-link:hover .venue-profile-contact-link,
  .venue-profile-address-link:hover {
    color: var(--ink);
  }

  .venue-profile-address-link span {
    color: var(--accent);
  }

  .venue-profile-contact-label {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.16em;
  }

  .venue-profile-about-panel {
    display: none;
  }

  .venue-profile-about-panel::before {
    display: none;
  }

  .venue-profile-divider {
    margin-bottom: 1rem;
  }

  .section-header {
    gap: 0.72rem;
    margin-bottom: 0.72rem;
  }

  .section-title {
    font-size: 1.22rem;
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .section-meta {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .results-month-heading {
    margin-bottom: 0.52rem;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .listing-card {
    border-radius: 20px;
  }

  .event-row {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px 13px;
  }

  .card-indicator,
  body.venue-page-hydrated .venue-page .card-indicator {
    display: none;
  }

  .listing-sideblock {
    width: 78px;
    min-width: 78px;
    min-height: 76px;
    padding: 9px 7px 10px;
    border-radius: var(--radius-md);
  }

  .listing-sideblock-top {
    font-size: 8.5px;
    letter-spacing: 0.12em;
    margin-bottom: 7px;
  }

  .listing-sideblock-main {
    font-size: 1.52rem;
    line-height: 1.05;
  }

  .listing-sideblock-bottom {
    margin-top: 6px;
    font-size: 8.5px;
    letter-spacing: 0.14em;
  }

  .event-title-row {
    gap: 0.38rem;
  }

  .event-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.65rem;
    align-items: start;
    min-width: 0;
  }

  .event-artist {
    margin-bottom: 3px;
    font-size: 1.07rem;
    line-height: 1.18;
    letter-spacing: -0.015em;
  }

  .event-support {
    margin: 0 0 5px;
    font-size: 12.5px;
    line-height: 1.28;
    color: var(--ink-muted);
  }

  .event-tags {
    grid-column: 2 / 3;
    grid-row: 1 / span 3;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.32rem;
    margin: 0;
  }

  .genre-chip {
    padding: 0.18rem 0.52rem;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0;
  }

  .event-meta {
    gap: 0.38rem;
    font-size: 12.5px;
    line-height: normal;
    color: var(--ink-soft);
  }

  .event-venue {
    gap: 0.38rem;
    font-size: 12.5px;
    line-height: normal;
    color: var(--ink-soft);
  }

  .venue-marker {
    width: 12px;
    height: 12px;
    transform: translateY(-1px);
  }
}

.venue-page .listing-card-event {
  border-radius: 20px;
}

.venue-page .event-row {
  grid-template-columns: 96px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
}

.venue-page .listing-sideblock {
  width: 96px;
  min-width: 96px;
  min-height: 98px;
  padding: 0.75rem 0.7rem;
  border-radius: 16px;
}

.venue-page .listing-sideblock-top {
  margin-bottom: 9px;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.venue-page .listing-sideblock-main {
  font-size: 1.9rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.venue-page .listing-sideblock-bottom {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.venue-page .event-body {
  display: block;
}

.venue-page .event-artist {
  margin: 0 0 6px;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.venue-page .event-support {
  margin: -2px 0 8px;
  font-size: 12px;
  line-height: normal;
}

.venue-page .event-tags {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
  margin: 0 0 0.82rem;
}

.venue-page .genre-chip {
  padding: 0.3rem 0.78rem;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: 0;
}

.venue-page .event-meta,
.venue-page .event-venue {
  gap: 0.52rem;
  font-size: 12px;
  line-height: normal;
}

.venue-page .venue-marker {
  width: 13px;
  height: 13px;
  transform: translateY(-1px);
}

.venue-page .card-indicator,
body.venue-page-hydrated .venue-page .card-indicator {
  display: inline-flex;
}

@media (max-width: 1200px) {
  .venue-page .event-row {
    grid-template-columns: 96px minmax(0, 1fr) 28px;
    gap: 18px;
    padding: 18px 20px;
  }

  .venue-page .listing-sideblock {
    width: 96px;
    min-width: 96px;
    min-height: 98px;
    padding: 0.75rem 0.7rem;
    border-radius: 16px;
  }

  .venue-page .listing-sideblock-top,
  .venue-page .listing-sideblock-bottom {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .venue-page .listing-sideblock-top {
    margin-bottom: 9px;
  }

  .venue-page .listing-sideblock-main {
    font-size: 1.9rem;
  }

  .venue-page .listing-sideblock-bottom {
    margin-top: 8px;
  }

  .venue-page .event-body {
    display: block;
  }

  .venue-page .event-artist {
    margin-bottom: 6px;
    font-size: 1.375rem;
    line-height: 1.2;
  }

  .venue-page .event-support {
    margin: -2px 0 8px;
    font-size: 12px;
    line-height: normal;
  }

  .venue-page .event-tags {
    flex-flow: row wrap;
    align-items: center;
    gap: 0.48rem;
    margin: 0 0 0.8rem;
  }

  .venue-page .genre-chip {
    padding: 0.3rem 0.76rem;
    font-size: 12px;
  }

  .venue-page .event-meta,
  .venue-page .event-venue {
    font-size: 12px;
  }
}

@media (max-width: 800px) {
  .venue-page .listing-card-event {
    border-radius: 20px;
  }

  .venue-page .event-row {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 13px;
  }

  .venue-page .listing-sideblock {
    width: 78px;
    min-width: 78px;
    min-height: 76px;
    padding: 9px 7px 10px;
    border-radius: var(--radius-md);
  }

  .venue-page .listing-sideblock-top,
  .venue-page .listing-sideblock-bottom {
    font-size: 8.5px;
    letter-spacing: 0.12em;
  }

  .venue-page .listing-sideblock-top {
    margin-bottom: 7px;
  }

  .venue-page .listing-sideblock-main {
    font-size: 1.52rem;
  }

  .venue-page .listing-sideblock-bottom {
    margin-top: 6px;
    letter-spacing: 0.14em;
  }

  .venue-page .event-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.65rem;
    align-items: start;
  }

  .venue-page .event-artist {
    margin-bottom: 3px;
    font-size: 1.07rem;
    line-height: 1.18;
  }

  .venue-page .event-support {
    margin: 0 0 5px;
    font-size: 12.5px;
    line-height: 1.28;
  }

  .venue-page .event-tags {
    grid-column: 2 / 3;
    grid-row: 1 / span 3;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.32rem;
    margin: 0;
  }

  .venue-page .genre-chip {
    padding: 0.18rem 0.52rem;
    font-size: 11.5px;
  }

  .venue-page .event-meta,
  .venue-page .event-venue {
    gap: 0.38rem;
    font-size: 12.5px;
    line-height: normal;
  }

  .venue-page .venue-marker {
    width: 12px;
    height: 12px;
  }

  .venue-page .card-indicator,
  body.venue-page-hydrated .venue-page .card-indicator {
    display: none;
  }
}

.canonical-page .masthead {
  padding-bottom: 0.95rem;
}

.canonical-page .masthead-hero-headline {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.2rem 1.25rem 0;
  visibility: visible;
}

.canonical-masthead-copy {
  display: block;
  color: var(--ink);
  text-align: center;
}

.canonical-masthead-copy-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 0.35rem 0.9rem 0.2rem;
}

.canonical-collection-kicker {
  margin: 0 0 0.45rem;
  color: rgba(255, 248, 238, 0.9);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 16px rgba(18, 14, 10, 0.55), 0 1px 2px rgba(18, 14, 10, 0.45);
  text-transform: uppercase;
}

.canonical-collection-title {
  margin: 0;
  color: #fffdf6;
  max-width: min(1120px, 94vw);
  text-align: center;
  text-shadow: 0 3px 22px rgba(18, 14, 10, 0.7), 0 1px 3px rgba(18, 14, 10, 0.55);
}

.canonical-collection-intro,
.canonical-collection-note {
  margin: 0;
  max-width: none;
  color: rgba(41, 29, 20, 0.92);
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}

.canonical-collection-summary {
  width: 100%;
  margin: 0;
}

.canonical-collection-divider {
  width: min(1100px, calc(100% - 2rem));
  margin: 1.15rem auto 0;
  border: 0;
  border-top: 1px solid rgba(88, 62, 38, 0.16);
}

.canonical-page-shell {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.canonical-page-shell .page-breadcrumbs {
  margin: 0;
}

.canonical-page-shell .canonical-collection-divider {
  width: 100%;
  margin: 1.35rem 0;
}

.canonical-page-divider-after-intro {
  margin-top: 1.45rem;
}

.canonical-related-links,
.canonical-trust-section {
  width: min(1100px, calc(100% - 2rem));
  margin: 1.4rem auto 0;
}

.canonical-popular-searches {
  width: 100%;
}

.canonical-page-shell-popular-searches {
  margin-top: 1.45rem;
}

.canonical-page-results-divider {
  margin-top: 1.45rem;
}

.canonical-related-links-kicker {
  margin: 0 0 0.7rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.canonical-related-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
}

.canonical-related-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(92, 62, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.82);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.canonical-related-link:hover {
  border-color: rgba(226, 88, 28, 0.24);
  color: var(--accent-strong);
}

.canonical-trust-copy {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

.canonical-empty-state {
  padding: 1.2rem 0 0.2rem;
}

.canonical-empty-state-copy {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.6;
}

.venue-directory-page {
  min-height: 100vh;
  max-width: 1040px;
}

.venue-directory-shell {
  padding-top: 0;
}

.venue-directory-hero {
  margin-top: 1.1rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.3rem);
}

.venue-directory-hero-art {
  min-height: 260px;
}

.venue-directory-market {
  padding: clamp(1.75rem, 3.4vw, 2.65rem) 0 0;
}

.venue-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.venue-directory-card-link {
  display: grid;
  min-height: 104px;
  gap: 0.55rem;
  align-content: center;
  padding: 1.05rem;
  border: 1px solid rgba(64, 41, 22, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
  text-decoration: none;
  box-shadow: none;
}

.venue-directory-card-link:hover {
  border-color: rgba(226, 88, 28, 0.26);
  transform: translateY(-1px);
}

.venue-directory-card-name {
  color: var(--ink-strong);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.venue-directory-card-count {
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.venue-directory-card-meta {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.canonical-upcoming {
  gap: 1rem;
  margin-top: 1.35rem;
}

.canonical-upcoming-header {
  align-items: end;
}

.canonical-event-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.canonical-event-card {
  border: 1px solid rgba(64, 41, 22, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 247, 238, 0.98)),
    radial-gradient(circle at top right, rgba(240, 106, 42, 0.08), transparent 42%);
  box-shadow: 0 20px 45px rgba(38, 19, 8, 0.08);
  padding: 1.2rem 1.2rem 1.15rem;
}

.canonical-event-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.canonical-event-eyebrow {
  margin: 0 0 0.38rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.canonical-event-title {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  line-height: 1.15;
}

.canonical-event-support {
  margin: 0.52rem 0 0;
  color: var(--ink-muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.canonical-event-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #3d281c;
  color: #fff1df;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  padding: 0.42rem 0.62rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.canonical-event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 1rem;
  margin-top: 1rem;
}

.canonical-event-fact {
  margin: 0;
  display: grid;
  gap: 0.16rem;
}

.canonical-event-fact-label {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.canonical-event-fact-value {
  color: var(--ink-strong);
  font-size: 0.98rem;
  line-height: 1.5;
}

.canonical-event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 1rem;
}

.canonical-event-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(240, 106, 42, 0.12);
  color: #6d3b22;
  font-size: 0.84rem;
  line-height: 1;
  padding: 0.46rem 0.7rem;
}

.canonical-event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.05rem;
}

.canonical-event-link {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.canonical-event-link-primary {
  color: #b3411d;
}

.canonical-event-link.is-disabled {
  cursor: default;
  opacity: 0.58;
  text-decoration: none;
}

.canonical-event-link-note {
  margin: 1rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .canonical-page .masthead-hero-headline {
    padding-top: 0.95rem;
  }

  .canonical-masthead-copy-panel {
    padding: 0.25rem 0.6rem 0.1rem;
  }

  .canonical-collection-summary,
  .canonical-page-shell,
  .canonical-collection-divider,
  .canonical-page-results-divider,
  .canonical-related-links,
  .canonical-trust-section {
    width: min(100% - 1rem, 1100px);
  }

  .canonical-upcoming {
    margin-top: 1.1rem;
  }

  .canonical-event-card {
    padding: 1rem;
    border-radius: 20px;
  }

  .canonical-event-card-header {
    flex-direction: column;
  }

  .canonical-event-facts {
    grid-template-columns: minmax(0, 1fr);
  }
}
