:root {
  --ink: #17201c;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --rust: #c24f32;
  --sage: #dce4d6;
  --line: #d7d3ca;
  --muted: #66706a;
  --device-chrome: #fffdf8;
  --display: "Fraunces", serif;
  --sans: "DM Sans", sans-serif;
}

/* Standalone information pages use the same return behavior as app views. */
.mobile-page-return {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: 56px;
  min-height: 56px;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.mobile-page-return__back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  padding: 9px 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 700 14px var(--sans);
}
.mobile-page-return__arrow {
  width: 24px;
  height: 12px;
  overflow: hidden;
  background: currentColor;
  clip-path: polygon(0 50%, 8px 0, 8px 4px, 24px 4px, 24px 8px, 8px 8px, 8px 12px);
  color: inherit;
  font-size: 0;
}
.mobile-page-return__title {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-page-return__balance {
  display: none;
}
.mobile-page-return-host {
  box-sizing: border-box!important;
  height: 56px!important;
  min-height: 56px!important;
  padding: 0!important;
}
.legal-header .mobile-page-return ~ .legal-brand,
.standalone-profile-page .site-header .mobile-page-return ~ .brand,
.standalone-profile-page .site-header .mobile-page-return ~ nav {
  display: none;
}

@media (max-width: 760px) {
  .legal-header.mobile-page-return-host,
  .standalone-profile-page .site-header.mobile-page-return-host {
    box-sizing: border-box;
    height: 56px;
    min-height: 56px;
  }
  .mobile-page-return {padding: 0 18px}
}

@media (max-width: 600px) {
  body.standalone-legal-page {padding-top: 0}
  .event-directory-filter-row {
    display: flex;
    gap: 6px;
  }
  .event-directory-filter-row label.chip {
    flex: 1 1 0;
    min-width: 0;
    min-height: 40px;
    padding: 0 6px;
    justify-content: center;
    font-size: 11px;
    white-space: nowrap;
  }
  .event-directory-filter-row [data-directory-genre-toggle] {
    flex: 1 0 100%;
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }
}

html,
body {
  overscroll-behavior-x: none;
}
html {
  background: #ebe8df;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  max-width: 1600px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  box-shadow: 0 0 36px rgba(23, 32, 28, 0.08);
}
button,
input,
select {
  font: inherit;
}
button,
a {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  height: 78px;
  padding: 0 max(5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.brand {
  font: 700 clamp(16px, 1.7vw, 22px) var(--display);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.brand-mark {
  width: 68px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--rust);
  color: white;
  font-style: italic;
}
.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}
.site-header nav a,
.header-actions > * {
  white-space: nowrap;
}
.site-header nav a:hover {
  color: var(--rust);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.account-menu{position:relative}.account-menu-toggle{display:flex;align-items:center;gap:7px}.account-menu-toggle .material-symbols-outlined{font-size:19px;transition:transform .18s ease}.account-menu-toggle[aria-expanded="true"] .material-symbols-outlined{transform:rotate(180deg)}.account-menu-panel{position:absolute;top:calc(100% + 8px);right:0;z-index:120;display:grid;width:210px;padding:6px;border:1px solid var(--line);border-radius:5px;background:var(--paper);box-shadow:0 14px 30px rgba(23,32,28,.18)}.account-menu-panel[hidden]{display:none}.account-menu-panel button{width:100%;padding:11px 13px;border:0;border-radius:3px;background:transparent;color:var(--ink);font:700 14px var(--sans);text-align:left;cursor:pointer}.account-menu-panel button:hover,.account-menu-panel button:focus-visible{background:var(--sage);color:var(--rust);outline:0}.account-menu-panel button+button{border-top:1px solid var(--line)}
.impersonation-drawer{position:fixed;top:0;left:50%;z-index:12;width:min(460px,calc(100vw - 32px));display:flex;flex-direction:column;align-items:center;transform:translateX(-50%)}.impersonation-drawer[hidden]{display:none}.impersonation-banner{display:flex;align-items:stretch;max-width:100%;filter:drop-shadow(0 3px 4px rgba(23,32,28,.2))}.impersonation-tab,.impersonation-banner-dashboard,.impersonation-banner-signout{border:2px solid var(--rust);border-top:0;background:var(--ink);color:#fff;padding:6px 16px 7px;font-size:12px;font-weight:700;line-height:1}.impersonation-tab{min-width:256px;border-radius:0 0 0 7px}.impersonation-banner-dashboard{border-right:0;border-left:1px solid rgba(255,255,255,.35)}.impersonation-banner-signout{display:grid;width:38px;min-width:38px;padding:0;place-items:center;border-left:1px solid rgba(255,255,255,.35);border-radius:0 0 7px 0}.impersonation-banner-signout .material-symbols-outlined{font-size:18px}.impersonation-tab:hover,.impersonation-banner-dashboard:hover,.impersonation-banner-signout:hover,.impersonation-banner-signout:focus-visible,.impersonation-drawer.is-impersonating .impersonation-tab{background:#b42318;border-color:#7f1d1d}.impersonation-panel{width:100%;padding:18px;background:var(--paper);border:1px solid var(--line);border-top:3px solid var(--rust);box-shadow:0 12px 30px rgba(23,32,28,.18);opacity:0;transform:translateY(-12px);transition:opacity .18s ease,transform .18s ease}.impersonation-panel.is-open{opacity:1;transform:translateY(0)}.impersonation-panel form{display:grid;gap:12px}.impersonation-panel label{display:grid;gap:6px;font-weight:700}.impersonation-panel select{width:100%;padding:10px;border:1px solid var(--line);background:white}.impersonation-panel>[data-stop-impersonating]{margin-top:12px;color:var(--rust)}
@media(max-width:430px){.impersonation-tab{min-width:0}.impersonation-banner{width:100%}.impersonation-tab{flex:1 1 auto}.impersonation-banner-dashboard{flex:0 0 auto}}
.impersonation-panel-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:14px}.impersonation-panel-actions .text-button{box-sizing:border-box;width:100%;margin:0;padding:10px 12px;border:1px solid var(--line);text-align:left}.impersonation-panel-actions .text-button:hover,.impersonation-panel-actions .text-button:focus-visible{background:var(--sage);outline:0}.impersonation-signout-link{color:var(--rust)}
.profile-lookup{position:relative;display:flex;width:100%}.profile-lookup-input{width:100%;height:52px;min-width:0;padding:14px 48px 14px 16px!important;border:1px solid var(--line);border-radius:0;background:#fff;color:var(--ink);font:inherit;font-weight:500}.profile-lookup-input:focus{border-color:var(--ink);outline:1px solid var(--ink);outline-offset:-2px}.profile-lookup-toggle{position:absolute;top:1px;right:1px;bottom:1px;width:46px;border:0;background:transparent;color:var(--ink);font-size:18px}.profile-lookup-results{position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:30;max-height:min(280px,35vh);overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain;scrollbar-gutter:stable;-webkit-overflow-scrolling:touch;padding:5px;background:var(--paper);border:1px solid var(--line);border-radius:4px;box-shadow:0 10px 24px rgba(23,32,28,.16)}.profile-lookup-results[hidden]{display:none}.profile-lookup-results button{display:block;width:100%;padding:10px 12px;border:0;border-radius:3px;background:transparent;color:var(--ink);text-align:left}.profile-lookup-results button:hover,.profile-lookup-results button:focus{background:var(--sage);outline:none}.profile-lookup-empty{display:block;padding:10px 12px;color:var(--muted)}
.impersonation-panel select,.impersonation-panel .profile-lookup-input{box-sizing:border-box;width:100%;height:52px;min-height:52px;margin:0;padding:0 46px 0 16px!important;border:1px solid var(--line);border-radius:0;background:#fff;color:var(--ink);font:600 16px var(--sans);line-height:1.2}.impersonation-panel select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%2317201c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center;background-size:10px 6px}.impersonation-panel .profile-lookup-input{appearance:none}.impersonation-panel .profile-lookup-input::placeholder{color:var(--muted);font-weight:500;opacity:1}.impersonation-panel .profile-lookup-toggle{right:0;width:42px;font-size:0}.impersonation-panel .profile-lookup-toggle::after{content:"";position:absolute;top:50%;left:50%;width:8px;height:8px;border-right:2px solid var(--ink);border-bottom:2px solid var(--ink);transform:translate(-50%,-70%) rotate(45deg)}
.custom-select{position:relative;display:block;width:100%}.custom-select-control{position:relative;width:100%;min-height:48px;padding:12px 46px 12px 13px;border:1px solid var(--line);border-radius:0;background:#fff;color:var(--ink);font:inherit;font-weight:600;text-align:left}.custom-select-control::after{content:"";position:absolute;top:50%;right:18px;width:8px;height:8px;border-right:2px solid var(--ink);border-bottom:2px solid var(--ink);transform:translateY(-70%) rotate(45deg)}.custom-select-control.is-placeholder{color:var(--muted);font-weight:500}.custom-select-control:focus{border-color:var(--ink);outline:1px solid var(--ink);outline-offset:-2px}.custom-select-menu{position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:30;max-height:min(280px,35vh);overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain;scrollbar-gutter:stable;-webkit-overflow-scrolling:touch;padding:5px;background:var(--paper);border:1px solid var(--line);border-radius:4px;box-shadow:0 10px 24px rgba(23,32,28,.16)}.custom-select-menu[hidden]{display:none}.custom-select-menu button{display:block;width:100%;padding:10px 12px;border:0;border-radius:3px;background:transparent;color:var(--ink);font:inherit;text-align:left}.custom-select-menu button:hover,.custom-select-menu button:focus{background:var(--sage);outline:none}.custom-select-menu button[aria-selected="true"]{font-weight:700}.modal-form .custom-select{margin-top:6px}.impersonation-panel .custom-select{margin:0}.impersonation-panel .custom-select-control{height:52px;padding:0 46px 0 16px;font:600 16px var(--sans)}
.text-button,
.link-button {
  border: 0;
  background: none;
  font-weight: 600;
  color: var(--ink);
}
.button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  border-radius: 4px;
  padding: 14px 22px;
  font-weight: 700;
}
.button.outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}
.button.outline:hover,
.button.outline:focus-visible {
  border-color: var(--ink);
  background: var(--sage);
  color: var(--ink);
}
dialog .button:not(.outline):not(.danger):not(.event-delete-button) {
  border-color: #276749;
  background: #276749;
  color: #fff;
}
dialog .button:not(.outline):not(.danger):not(.event-delete-button):hover,
dialog .button:not(.outline):not(.danger):not(.event-delete-button):focus-visible {
  border-color: #1f533c;
  background: #1f533c;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(23, 32, 28, 0.14);
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.button-small {
  padding: 10px 16px;
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
}
.mobile-reminder-button {
  display: none;
}
.mobile-nav-drawer {
  display: none;
}
.mobile-app-nav {
  display: none;
}
.hero {
  min-height: 650px;
  padding: 76px max(6vw, 28px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "\266A";
  position: absolute;
  font: 700 500px var(--display);
  color: rgba(194, 79, 50, 0.065);
  left: -40px;
  top: 50px;
  transform: rotate(-12deg);
}
.hero-music-notes{position:absolute;z-index:0;inset:0;overflow:hidden;pointer-events:none}.hero-music-notes span{position:absolute;color:rgba(49,95,72,.065);font:700 120px/1 var(--display)}.hero-music-notes span:nth-child(1){left:3%;bottom:2%;font-size:150px;transform:rotate(-18deg)}.hero-music-notes span:nth-child(2){left:34%;top:5%;font-size:92px;color:rgba(194,79,50,.07);transform:rotate(14deg)}.hero-music-notes span:nth-child(3){left:43%;bottom:3%;font-size:175px;transform:rotate(9deg)}.hero-music-notes span:nth-child(4){right:31%;top:13%;font-size:70px;color:rgba(194,79,50,.065);transform:rotate(-9deg)}.hero-music-notes span:nth-child(5){right:3%;bottom:-4%;font-size:135px;transform:rotate(18deg)}.hero-music-notes span:nth-child(6){right:19%;bottom:11%;font-size:58px;color:rgba(194,79,50,.075);transform:rotate(-15deg)}
.hero > .tonight-card {
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.mobile-app-tagline{display:none}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rust);
  margin: 0 0 18px;
}
.hero h1,
.section h2,
.explore-section h2,
.cta-section h2 {
  font: 600 clamp(48px, 6vw, 84px)/0.98 var(--display);
  margin: 0;
  letter-spacing: -0.035em;
}
.hero h1 em,
.cta-section h2 em {
  color: var(--rust);
  font-weight: 600;
}
.hero-subtitle {
  max-width: 610px;
  font-size: 18px;
  line-height: 1.65;
  color: #52605a;
  margin: 28px 0 32px;
}
.location-search {
  display: flex;
  background: white;
  border: 1px solid var(--line);
  padding: 8px;
  max-width: 650px;
  box-shadow: 0 12px 35px rgba(23, 32, 28, 0.08);
}
.field {
  padding: 4px 18px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 155px;
}
.launch-city-field {
  position: relative;
  min-width: 240px;
}
.launch-city-notice {
  position: absolute;
  z-index: 2;
  top: -24px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 3px;
  background: var(--rust);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(23,32,28,.16);
}
.launch-city-notice::after {
  content: "← Suggest an area";
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  width: max-content;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transform: translateY(-50%);
  animation: launch-city-pointer .8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes launch-city-pointer {
  to { transform: translate(-6px,-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .launch-city-notice::after { animation: none; }
}
.launch-city-field input[readonly] {
  min-height: 34px;
  padding: 6px 30px 6px 9px;
  border: 1px solid #c8ccc5;
  border-radius: 4px;
  background: #ecefe9;
  color: #59635d;
  cursor: not-allowed;
  -webkit-text-fill-color: #59635d;
  opacity: 1;
}
.launch-city-field select{box-sizing:border-box;width:auto;min-width:0;min-height:34px;padding:6px 30px 6px 9px;border:1px solid #c8ccc5;border-radius:4px;background:#ecefe9;color:#59635d;font:700 14px var(--sans);appearance:none;flex:1 1 auto}
.launch-city-field select:disabled{pointer-events:none}
.launch-city-field select:not(:disabled){background:#fff;color:var(--ink);cursor:pointer}
.launch-city-field .input-row {
  position: relative;
  width: 100%;
  min-width: 0;
}
.launch-city-field .input-row::after {
  content: "lock";
  position: absolute;
  right: 8px;
  top: 50%;
  color: var(--muted);
  font-family: "Material Symbols Outlined";
  font-size: 16px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 18;
  pointer-events: none;
  transform: translateY(-50%);
}
.launch-city-field .input-row::after{content:"expand_more"}
.location-search #radius-select {
  min-height: 34px;
}
.field > span:first-child {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}
.input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.input-row b {
  color: var(--rust);
}
.zip-location-icon {
  color: var(--rust);
  font-size: 18px;
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 20;
}
.field input,
.field select,
.field > select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  width: 105px;
}
.search-button {
  margin-left: auto;
  white-space: nowrap;
  background: var(--rust);
  border-color: var(--rust);
}
.search-button span {
  margin-left: 12px;
}
.search-note {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-note span {
  width: 7px;
  height: 7px;
  background: #64a35d;
  border-radius: 50%;
}
.tonight-card {
  background: white;
  box-shadow:
    20px 24px 0 var(--sage),
    0 14px 40px rgba(0, 0, 0, 0.12);
  transform: rotate(1.2deg);
  max-width: 440px;
}
.tonight-image {
  height: 310px;
  background:
    linear-gradient(0deg, rgba(8, 14, 11, 0.85), rgba(8, 14, 11, 0.05)),
    url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=900&q=85") center/cover;
  position: relative;
  padding: 22px;
  color: white;
}
.live-pill {
  background: var(--rust);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 7px 10px;
}
.image-caption {
  position: absolute;
  bottom: 22px;
}
.image-caption p {
  margin: 0;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.image-caption h2 {
  font: 600 36px var(--display);
  margin: 4px 0;
}
.tonight-details {
  display: grid;
  grid-template-columns: 58px 1fr 42px;
  gap: 16px;
  align-items: center;
  padding: 20px;
}
.date-box {
  margin: 0;
  text-align: center;
  color: var(--rust);
}
.date-box b {
  font-size: 10px;
  display: block;
}
.date-box strong {
  font: 700 30px var(--display);
}
.tonight-details h3 {
  font: 600 15px var(--display);
  margin: 0 0 5px;
}
.tonight-details a {
  font-size: 13px;
  text-decoration: underline;
}
.tonight-details p {
  font-size: 12px;
  color: var(--muted);
  margin: 5px 0;
}
.featured-empty {
  min-height: 310px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 42px;
}
.featured-empty > .material-symbols-outlined {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--rust);
  font-size: 31px;
  transform: rotate(-4deg);
}
.featured-empty .eyebrow {
  margin-bottom: 10px;
}
.featured-empty h3 {
  margin: 0 0 10px;
  font: 600 28px/1.1 var(--display);
}
.featured-empty p:last-child {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.round-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: white;
}
.section,
.explore-section {
  padding: 90px max(6vw, 28px);
}
.explore-section {
  background: #e7eadf;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.section-heading h2 {
  font-size: 46px;
}
.section-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.carousel-shell {
  position: relative;
}
.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 5px 18px rgba(23,32,28,.16);
}
.carousel-arrow .material-symbols-outlined {
  display: block;
  font-size: 24px;
  line-height: 1;
}
.carousel-arrow-previous .material-symbols-outlined {
  transform: translateX(-1px);
}
.carousel-arrow-next .material-symbols-outlined {
  transform: translateX(1px);
}
.carousel-arrow-previous {
  left: -21px;
}
.carousel-arrow-next {
  right: -21px;
}
.carousel-arrow:hover:not(:disabled),
.carousel-arrow:focus-visible {
  border-color: var(--rust);
  color: var(--rust);
}
.carousel-arrow[hidden] {
  display: none;
}
.section-heading a,
.link-button {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.mobile-event-time-filter {
  display: none;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 16px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.chip.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.genre-filter-toggle{display:inline-flex;align-items:center;gap:7px}.genre-filter-toggle::after{content:"expand_more";font-family:"Material Symbols Outlined";font-size:18px;font-variation-settings:'FILL' 0,'wght' 500,'GRAD' 0,'opsz' 20;transition:transform .2s ease}.genre-filter-toggle[aria-expanded="true"]::after{transform:rotate(180deg)}
.genre-filter-toggle.has-selection{border-color:var(--rust);color:var(--rust)}
.genre-filter-panel{width:100%;max-height:0;overflow:hidden;opacity:0;margin-top:-14px;margin-bottom:24px;border:1px solid transparent;border-radius:7px;background:#fff;box-shadow:none;transition:max-height .28s ease,opacity .2s ease,margin .28s ease,padding .28s ease,box-shadow .2s ease,border-color .2s ease}
.genre-filter-panel.open{max-height:720px;opacity:1;margin-top:-10px;padding:10px 18px 14px;border-color:var(--line);box-shadow:0 12px 30px rgba(23,32,28,.1)}
.genre-filter-pills{display:flex;flex-wrap:wrap;gap:8px;padding:14px 0 10px}
.genre-filter-pill{display:inline-flex;align-items:center;gap:7px;padding:8px 13px;border:1px solid var(--line);border-radius:999px;background:#fff;color:var(--muted);font:600 12px var(--sans);cursor:pointer}
.genre-filter-pill:hover,.genre-filter-pill:focus-visible{border-color:var(--rust);color:var(--rust);outline:0}
.genre-filter-pill.selected{background:var(--ink);border-color:var(--ink);color:#fff}
.genre-filter-pill span{font-size:16px;line-height:1}
.genre-filter-clear{margin:0 0 12px;color:var(--rust)}
.genre-filter-actions{display:flex;align-items:center;justify-content:space-between}.genre-filter-actions .genre-filter-clear{margin:0}.genre-filter-close{color:var(--muted)}
.genre-filter-apply{margin-left:auto;color:var(--ink);font-weight:700}
.genre-filter-backdrop,.genre-drawer-header,.genre-filter-search{display:none}
.event-list {
  border-top: 1px solid var(--line);
}
.event-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 28px;
}
.event-pagination[hidden] {
  display: none;
}
.event-pagination span {
  min-width: 14ch;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.newsletter-search-prompt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.newsletter-search-prompt[hidden] {
  display: none;
}
.newsletter-search-prompt div {
  display: grid;
  gap: 4px;
}
.newsletter-search-prompt span {
  color: var(--muted);
  font-size: 13px;
}
.newsletter-search-prompt-close {
  display: none;
}
@media (max-width: 600px) {
  .toast-show {
    box-sizing: border-box;
    width: 90vw;
    min-width: 90vw;
    max-width: calc(100vw - 24px);
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  body.mobile-app-mode .newsletter-search-prompt {
    position: fixed;
    z-index: 24;
    right: 12px;
    bottom: calc(var(--mobile-app-nav-height) + 12px);
    left: 12px;
    display:grid;
    box-sizing:border-box;
    max-width:none;
    max-height:calc(100vh - var(--mobile-header-height) - var(--mobile-app-nav-height) - 24px);
    max-height:calc(100dvh - var(--mobile-header-height) - var(--mobile-app-nav-height) - 24px);
    gap:16px;
    margin:0;
    padding:22px 20px 20px;
    overflow-y:auto;
    border-color:var(--line);
    background:var(--cream);
    box-shadow:0 10px 32px rgba(23,32,28,.22);
  }
  body.mobile-app-mode .newsletter-search-prompt[hidden]{display:none}
  body.mobile-app-mode .newsletter-search-prompt div{padding-right:28px}
  body.mobile-app-mode .newsletter-search-prompt strong{font-size:clamp(18px,1.15em,24px)}
  body.mobile-app-mode .newsletter-search-prompt span{font-size:.9em;line-height:1.4}
  body.mobile-app-mode .newsletter-search-prompt>.button{width:100%;margin:0}
  body.mobile-app-mode .newsletter-search-prompt-close{
    position:absolute;
    top:8px;
    right:8px;
    display:grid;
    width:40px;
    height:40px;
    padding:0;
    border:0;
    border-radius:50%;
    place-items:center;
    background:transparent;
    color:var(--ink);
    font:600 25px/1 var(--sans);
  }
}
.footer-newsletter-link {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.event-row {
  display: grid;
  grid-template-columns: 90px 1.2fr 1fr 110px 42px;
  gap: 24px;
  align-items: center;
  padding: 24px 12px;
  border-bottom: 1px solid var(--line);
  transition: 0.2s;
}
.event-row:hover {
  background: #faf6ed;
  transform: translateX(5px);
}
.event-date {
  text-align: center;
}
.event-date b {
  display: block;
  color: var(--rust);
  font-size: 11px;
}
.event-date strong {
  font: 700 34px var(--display);
}
.event-main h3 {
  font: 600 21px var(--display);
  margin: 0 0 5px;
}
.event-main button,
.event-venue button {
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
}
.event-main button:hover,
.event-venue button:hover {
  text-decoration: underline;
}
.event-main p,
.event-venue p,
.event-price p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 12px;
}
.event-price {
  font-size: 13px;
  font-weight: 700;
}
@media (min-width: 761px) {
  .event-row {
    gap: 20px;
    padding: 14px 12px;
  }
  .event-date strong {
    font-size: 30px;
  }
}
.event-arrow {
  font-size: 20px;
  border: 0;
  background: none;
}
.empty-state {
  text-align: center;
  padding: 60px;
  color: var(--muted);
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  justify-content: start;
  justify-items: start;
  gap: 22px;
}
.profile-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.main-grid-overflow-card {
  display: none !important;
}
.profile-image {
  height: 280px;
  border-bottom: 1px solid #bbb8b0;
  background-color: var(--paper);
  background-size: cover;
  background-position: center;
  filter: saturate(0.75);
}
.profile-image-name-fallback {
  display: grid;
  overflow: hidden;
  place-items: center;
  padding: 24px;
  background: linear-gradient(145deg, #f5f0e6, #e8eee7);
  filter: none;
}
.profile-image-name-fallback::before {
  content: attr(data-fallback-name);
  max-width: 90%;
  color: var(--ink);
  font: 600 clamp(24px, 8vw, 42px)/1.05 var(--display);
  text-align: center;
  text-wrap: balance;
  transform: rotate(-3deg);
}
.profile-card-content {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.profile-card h3 {
  font: 600 20px var(--display);
  margin: 0 0 8px;
}
.tag {
  display: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rust);
  font-weight: 700;
}
.profile-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.profile-card-content p:last-of-type {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  min-height: 7.5em;
  max-height: 7.5em;
}
.profile-card-content strong {
  margin-top: auto;
  padding-top: 18px;
  color: var(--rust);
}
.venue-section {
  background: var(--paper);
}
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  justify-content: start;
  justify-items: start;
  gap: 20px;
}
.card-carousel {
  display: flex;
  grid-template-columns: none;
  justify-items: initial;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 22px;
  padding: 6px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  overflow-anchor: none;
}
.card-carousel::-webkit-scrollbar {
  display: none;
}
.card-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.card-carousel > .profile-card,
.card-carousel > .venue-card {
  flex: 0 0 clamp(250px, calc((100% - 88px) / 5), 360px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.card-carousel > .profile-card:first-child,
.card-carousel > .venue-card:first-child {
  margin-left: 4px;
}
.card-carousel > .empty-state {
  flex: 1 0 100%;
}
.venue-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 360px;
  border: 1px solid var(--line);
  padding: 24px;
  background: white;
  transition: 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.venue-card-image {
  height: 190px;
  margin: -24px -24px 20px;
  border-bottom: 1px solid #bbb8b0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.82);
}
.venue-card.profile-card {
  padding: 0;
  background: var(--paper);
}
.venue-card.profile-card .venue-card-image {
  height: 280px;
  margin: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.venue-card.profile-card h3 {
  display: block;
  min-height: 0;
  max-height: none;
  margin: 0 0 8px;
  font: 600 20px var(--display);
  line-height: normal;
}
.profile-card:hover,
.venue-card:hover {
  border-color: var(--rust);
  transform: translateY(-3px);
}
.venue-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font: 600 18px var(--display);
  line-height: 1.25;
  min-height: 2.5em;
  max-height: 2.5em;
  margin: 10px 0;
}
.venue-card p {
  font-size: 13px;
  color: var(--muted);
}
.venue-card > p.venue-location-line {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  min-height: 3em;
  max-height: 3em;
  line-height: 1.5;
}
.venue-card > p:not(.venue-location-line) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  min-height: 7.5em;
  max-height: 7.5em;
  line-height: 1.5;
}
.venue-card strong {
  font-size: 12px;
  color: var(--rust);
  margin-top: auto;
  padding-top: 18px;
}
.venue-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}
.card-footer-action {
  display: grid;
  width: 38px;
  height: 38px;
  min-width: 38px;
  flex: 0 0 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--rust);
}
.card-footer-action:hover,
.card-footer-action:focus-visible {
  text-decoration: none !important;
}
.venue-map-link.card-footer-action {
  flex: 0 0 38px;
}
.card-action-label {
  display: none;
}
.card-action-icon {
  display: block;
  font-size: 21px;
}
.venue-card-footer .food-badge-compact {
  box-sizing: border-box;
  width: 38px;
  min-width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 0;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.venue-card-footer .food-badge-compact .food-badge-label {
  display: none;
}
.venue-card .venue-card-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 10px;
}
.venue-card .venue-card-footer > * {
  display: grid;
  justify-self: stretch;
  place-items: center;
}
.venue-card .card-footer-action,
.venue-card .venue-card-footer .food-badge-compact {
  width: 100%;
  min-width: 0;
  height: 40px;
  flex-basis: auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
}
.venue-card .venue-card-footer .food-badge-compact {
  color: var(--muted);
}
.venue-card .venue-card-footer .food-badge-compact.is-empty {
  pointer-events: none;
}
.venue-card .venue-card-footer .food-badge-compact .material-symbols-outlined,
.venue-card .card-action-icon {
  font-size: 23px;
  line-height: 1;
  text-decoration: none !important;
}
.profile-card:not(.venue-card) .venue-card-footer {
  justify-content: flex-start;
}
.profile-card:not(.venue-card) .card-footer-action {
  display: inline-flex;
  width: auto;
  height: auto;
  min-width: 0;
  flex: 0 0 auto;
  gap: 6px;
  border: 0;
  border-radius: 0;
}
.profile-card:not(.venue-card) .card-action-label {
  display: inline;
}
.venue-card-footer strong {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
.venue-calendar-link {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
}
.venue-calendar-link:hover,
.venue-calendar-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.profile-calendar-link {
  display: inline-block;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rust);
  font-weight: 800;
}
.profile-calendar-link:hover,
.profile-calendar-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.venue-calendar-view {
  max-width: 920px;
}
.venue-calendar-day-target {
  display: none;
}
.venue-calendar-modal {
  max-width: 980px;
}
.venue-calendar-toolbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 18px;
  margin: 30px 0 18px;
}
.venue-calendar-toolbar > .round-button {
  display: grid;
  padding: 0;
  place-items: center;
  line-height: 1;
}
.venue-calendar-toolbar > .round-button .material-symbols-outlined {
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  overflow: hidden;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  font-size: 0;
  line-height: 0;
}
.venue-calendar-toolbar > [data-venue-calendar-shift="-1"] .material-symbols-outlined {
  transform: rotate(-135deg);
}
.venue-calendar-toolbar > [data-venue-calendar-shift="1"] .material-symbols-outlined {
  transform: rotate(45deg);
}
.venue-calendar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 8px;
}
.venue-calendar-filters button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.venue-calendar-filters button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.venue-calendar-filters i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--location-color);
}
.venue-calendar-toolbar h3 {
  margin: 0;
  text-align: center;
  font: 600 26px var(--display);
}
.venue-month-grid {
  display: grid;
  grid-template-columns: repeat(7,minmax(0,1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.venue-month-grid > b {
  padding: 9px 4px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}
.venue-calendar-day,
.venue-calendar-blank {
  min-height: 104px;
  padding: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.venue-calendar-blank {
  background: rgba(220,228,214,.28);
}
.venue-calendar-day > b {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
}
.venue-calendar-day.is-today {
  background: #e7ece2;
  background: color-mix(in srgb,var(--sage) 42%,white);
  box-shadow: inset 0 0 0 2px var(--rust);
}
.venue-calendar-day.is-today > b {
  display: grid;
  width: 24px;
  height: 24px;
  margin: -2px 0 5px -2px;
  place-items: center;
  border-radius: 50%;
  background: var(--rust);
  color: white;
}
.venue-calendar-view.is-manageable .venue-calendar-day {
  position: relative;
  cursor: pointer;
  transition: background .16s ease,box-shadow .16s ease;
}
.venue-calendar-view.is-manageable .venue-calendar-day::after {
  content: "+";
  position: absolute;
  top: 5px;
  right: 7px;
  color: var(--rust);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.venue-calendar-view.is-manageable .venue-calendar-day:hover,
.venue-calendar-view.is-manageable .venue-calendar-day:focus-visible {
  background: #e0e7db;
  background: color-mix(in srgb,var(--sage) 52%,white);
  box-shadow: inset 0 0 0 2px var(--rust);
  outline: 0;
}
.venue-calendar-view.is-manageable .venue-calendar-event {
  position: relative;
  z-index: 1;
}
.venue-calendar-event {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 5px 6px;
  border-radius: 3px;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 3px solid var(--location-color);
  background: #f2f5ef;
  background: color-mix(in srgb,var(--location-color) 14%,white);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  overflow: hidden;
}
.venue-calendar-event:hover,
.venue-calendar-event:focus-visible {
  background: #e7eee8;
  background: color-mix(in srgb,var(--location-color) 24%,white);
  outline: 2px solid var(--location-color);
  outline-offset: -2px;
}
.venue-calendar-event-row {
  position: relative;
  display: block;
}
.venue-calendar-event-row .venue-calendar-event {
  min-width: 0;
  padding-right: 30px;
}
.venue-calendar-edit {
  position: absolute;
  top: 8px;
  right: 4px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--rust);
  border-radius: 50%;
  background: white;
  color: var(--rust);
  cursor: pointer;
}
.venue-calendar-edit .material-symbols-outlined {
  font-size: 14px;
}
.venue-calendar-edit:hover,
.venue-calendar-edit:focus-visible {
  background: var(--rust);
  color: white;
  outline: 2px solid white;
}
.venue-calendar-event em {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}
.venue-calendar-event.is-past {
  opacity: 0.5;
  filter: grayscale(0.7);
  text-decoration: line-through;
  cursor: not-allowed;
}
.venue-calendar-day small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}
.calendar-back-button {
  margin: 0 0 24px;
  padding: 0;
  color: var(--rust);
}
.venue-calendar-empty {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}
.cta-section {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 100px 24px;
}
.cta-section .eyebrow {
  color: #ec9a7f;
}
.cta-section h2 {
  font-size: 56px;
}
.cta-section p:not(.eyebrow) {
  color: #b9c1bd;
  margin: 24px auto 30px;
}
.light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  margin: 6px;
}
.outline-light {
  background: transparent;
  border-color: #66706a;
  margin: 6px;
}
footer {
  padding: 35px max(6vw, 28px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  background: var(--device-chrome);
}
.footer-brand-block {
  display: grid;
  gap: 7px;
}
.footer-brand-block > p {
  margin: 0;
}
.copyright {
  white-space: nowrap;
}
footer a[href="terms-of-use.html"],
footer a[href="privacy-policy.html"],
footer a[href="third-party-notices.php"] {
  color: var(--rust);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
footer a[href="terms-of-use.html"]:hover,
footer a[href="terms-of-use.html"]:focus-visible,
footer a[href="privacy-policy.html"]:hover,
footer a[href="privacy-policy.html"]:focus-visible,
footer a[href="third-party-notices.php"]:hover,
footer a[href="third-party-notices.php"]:focus-visible {
  color: var(--ink);
}
dialog {
  border: 0;
  padding: 0;
  max-width: 680px;
  width: calc(100% - 32px);
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}
dialog:not([open]){display:none}.dialog-fallback-open{position:fixed;z-index:1000;inset:0}.dialog-fallback-active::before{content:"";position:fixed;z-index:999;inset:0;background:rgba(9,15,12,.72)}
dialog::backdrop {
  background: rgba(9, 15, 12, 0.72);
  backdrop-filter: blur(4px);
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: none;
  font-size: 28px;
  z-index: 20;
}
.modal-inner {
  padding: 46px;
}
.modal-inner h2 {
  font: 600 40px var(--display);
  margin: 0 0 10px;
}
.modal-inner > p {
  color: var(--muted);
  line-height: 1.6;
}
.confirm-modal{box-sizing:border-box;width:min(480px,calc(100% - 24px));max-width:480px;overflow-x:hidden;overflow-y:auto;border-radius:6px}
.confirm-modal .modal-close{position:absolute;top:12px;right:12px;float:none;margin:0}
.confirm-dialog-card{box-sizing:border-box;display:grid;grid-template-columns:44px minmax(0,1fr);gap:8px 18px;max-width:100%;padding:34px;margin:0}
.confirm-dialog-icon{grid-row:1 / span 2;display:grid;place-items:center;width:44px;height:44px;border-radius:50%;background:var(--sage);color:var(--rust);font-size:26px}
.confirm-dialog-card h2{min-width:0;margin:2px 0 0;overflow-wrap:anywhere;font:600 28px var(--display)}
.confirm-dialog-card p{grid-column:2;min-width:0;margin:4px 0 18px;overflow-wrap:anywhere;color:var(--muted);line-height:1.5}
.confirm-dialog-actions{grid-column:1 / -1;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.5fr);gap:10px}.confirm-dialog-actions .button{min-width:0;max-width:100%;justify-content:center;text-align:center;white-space:normal}
.confirm-dialog-actions .danger{background:#9b2921;border-color:#9b2921;color:#fff}.confirm-dialog-actions .danger:hover,.confirm-dialog-actions .danger:focus-visible{background:#731d17;border-color:#731d17}
.confirm-modal.confirm-danger{border:2px solid #9b2921}.confirm-danger .confirm-dialog-icon{background:#f7ded8;color:#9b2921}.confirm-danger .confirm-dialog-card h2{color:#7f1d1d}.confirm-danger #confirm-message{padding:12px 14px;border-left:4px solid #9b2921;background:#fff0ec;color:#5f1d17;font-weight:650}
@media(max-width:560px){.confirm-dialog-card{grid-template-columns:1fr;padding:28px 20px 22px}.confirm-dialog-icon{grid-row:auto}.confirm-dialog-card p{grid-column:1}.confirm-dialog-actions{display:grid;grid-template-columns:1fr}.confirm-dialog-actions .button{width:100%}}
.modal-form {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}
.modal-form label {
  font-size: 12px;
  font-weight: 700;
}
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  margin-top: 6px;
  background: white;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.choice {
  border: 1px solid var(--line);
  padding: 20px;
  text-align: left;
  background: white;
}
.choice:hover {
  border-color: var(--rust);
}
.choice b {
  display: block;
  font: 600 20px var(--display);
  margin-bottom: 5px;
}
.profile-hero {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.profile-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}
.profile-modal-heading {
  position: absolute;
  bottom: 22px;
  left: 30px;
  color: white;
  z-index: 1;
}
.profile-modal-heading h2 {
  margin: 0;
  font: 600 42px var(--display);
}
.profile-body {
  padding: 28px;
}
.profile-meta {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}
.mini-event {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.mini-event b {
  font-family: var(--display);
}
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 18px;
}
.calendar > * {
  padding: 10px 4px;
  text-align: center;
  font-size: 11px;
}
.calendar b {
  color: var(--muted);
}
.calendar .has-show {
  background: var(--sage);
  color: var(--ink);
  border-radius: 4px;
  font-weight: 700;
}
.calendar .selected {
  background: var(--rust);
  color: white;
}
#toast {
  display: none;
}
@property --toast-glow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.toast-show {
  --toast-glow-a: var(--rust);
  --toast-glow-b: #e7ad36;
  --toast-glow-c: #4d8767;
  display: block !important;
  position: fixed;
  isolation: isolate;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 13px 22px;
  border-radius: 4px;
  z-index: 30;
  font-size: 13px;
  animation: toast 3s both;
}
.toast-show::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -3px;
  padding: 3px;
  border-radius: 7px;
  background: conic-gradient(from var(--toast-glow-angle),var(--toast-glow-a),var(--toast-glow-b),var(--toast-glow-c),var(--toast-glow-a));
  filter: drop-shadow(0 0 5px rgba(198,66,40,.38));
  filter: drop-shadow(0 0 5px color-mix(in srgb,var(--toast-glow-a) 38%,transparent));
  -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: toast-glow-cycle 2.4s linear infinite;
  pointer-events: none;
}
.auth-form-error {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #b42318;
  border-radius: 4px;
  background: #fff1f0;
  color: #8f1d14;
  font-size: 14px;
}
@keyframes toast {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  15%,
  85% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes toast-glow-cycle {
  to { --toast-glow-angle: 1turn; }
}
@media (prefers-reduced-motion: reduce) {
  .toast-show::before {
    animation: none;
    background: linear-gradient(120deg,var(--toast-glow-a),var(--toast-glow-b),var(--toast-glow-c));
  }
}
@media (max-width: 1085px) {
  .site-header nav,
  .header-actions {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }
  .tonight-card {
    margin: auto;
  }
  .event-row {
    grid-template-columns: 64px 1fr 80px 30px;
  }
  .event-venue {
    display: none;
  }
  .profile-grid,
  .venue-grid {
    grid-template-columns: 1fr 1fr;
  }
  .location-search {
    flex-wrap: wrap;
  }
  .search-button {
    width: 100%;
    margin-top: 8px;
  }
  .field {
    flex: 1;
  }
  .section-heading {
    align-items: start;
    gap: 20px;
  }
  .section-heading h2 {
    font-size: 36px;
  }

  body.mobile-menu-active {
    overflow: hidden;
  }
  .mobile-nav-drawer {
    position: fixed;
    z-index: 9;
    top: 78px;
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    background: var(--paper);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .28s ease, visibility 0s linear .28s;
    box-shadow: -18px 0 36px rgba(23,32,28,.16);
    border-left: 1px solid var(--line);
  }
  .mobile-nav-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }
  .mobile-nav-drawer nav {
    display: flex;
    flex-direction: column;
  }
  .mobile-nav-drawer nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }
  .mobile-nav-drawer .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
  }
  .mobile-nav-drawer .mobile-nav-actions > * {
    width: 100%;
    min-height: 48px;
  }
  .mobile-account-menu{width:100%}.mobile-account-menu>.account-menu-toggle{width:100%;justify-content:center}.mobile-account-menu .account-menu-panel{position:static;width:100%;box-sizing:border-box;margin-top:8px;box-shadow:none}.mobile-nav-drawer .mobile-account-menu{min-height:0}
}
@media (max-width: 560px) {
  .hero {
    padding: 45px 20px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .tonight-image {
    height: 250px;
  }
  .section,
  .explore-section {
    padding: 65px 20px;
  }
  .profile-grid,
  .venue-grid {
    grid-template-columns: 1fr;
  }
  .event-row {
    grid-template-columns: 54px 1fr 32px;
    gap: 12px;
  }
  .event-price {
    display: none;
  }
  .filter-row {
    overflow-x: auto;
  }
  .section-heading > a,
  .link-button {
    display: none;
  }
  .cta-section h2 {
    font-size: 40px;
  }
  footer {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
  .modal-inner {
    padding: 40px 24px 28px;
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .profile-image {
    height: 230px;
  }
}

@media (max-width: 600px) {
  :root {
    --mobile-header-height: calc(64px + env(safe-area-inset-top, 0px));
    --mobile-app-nav-height: calc(68px + env(safe-area-inset-bottom, 0px));
    --mobile-section-height: calc(100vh - var(--mobile-header-height) - var(--mobile-app-nav-height));
    --mobile-section-height: calc(100svh - var(--mobile-header-height) - var(--mobile-app-nav-height));
    --mobile-snap-overlap: 0px;
  }
  @supports (height: 100dvh) {
    :root {
      --mobile-section-height: calc(100dvh - var(--mobile-header-height) - var(--mobile-app-nav-height));
    }
  }
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body {
    padding-top: var(--mobile-header-height);
  }
  body.mobile-app-mode {
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 0;
    background: var(--paper);
  }
  body.mobile-app-mode .toast-show {
    bottom: calc(var(--mobile-app-nav-height) + 12px);
  }
  body.mobile-app-mode.mobile-app-home {
    height: 100vh;
    height: 100dvh;
    overflow-y: hidden;
  }
  body.mobile-app-mode.mobile-app-home #home {
    height: var(--mobile-section-height);
    min-height: var(--mobile-section-height);
    overflow: hidden;
  }
  body.mobile-app-mode main > section:not(.mobile-app-active),
  body.mobile-app-mode > footer {
    display: none;
  }
  body.mobile-app-mode main > section.mobile-app-active {
    display: block;
    animation: mobile-app-view-in 180ms ease-out both;
  }
  body.mobile-app-mode #events.mobile-app-active {
    padding-bottom: calc(32px + var(--mobile-app-nav-height));
  }
  body.mobile-app-mode main > .hero.mobile-app-active {
    display: grid;
  }
  body.mobile-app-mode main > :is(#artists, #venues).mobile-app-active {
    display: flex;
    height: var(--mobile-section-height);
    min-height: 0;
    flex-direction: column;
  }
  body.mobile-app-mode :is(#artists, #venues) > .carousel-shell {
    min-height: 0;
    flex: 1;
  }
  body.mobile-app-mode :is(#artist-grid, #venue-grid) {
    height: 100%;
    min-height: 0;
    align-items: flex-start;
    padding-bottom: 8px;
  }
  body.mobile-app-mode :is(#artist-grid, #venue-grid) .profile-card {
    height: min(100%, 540px);
    max-height: 100%;
    overflow: hidden;
  }
  body.mobile-app-mode :is(#artist-grid, #venue-grid) .profile-image {
    height: clamp(160px, calc(100% - 220px), 230px);
    min-height: clamp(160px, calc(100% - 220px), 230px);
    flex: 0 0 clamp(160px, calc(100% - 220px), 230px);
  }
  body.mobile-app-mode :is(#artist-grid, #venue-grid) .profile-card-content {
    min-height: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }
  body.mobile-app-mode :is(#artist-grid, #venue-grid) .profile-card-content > h3 {
    display: -webkit-box;
    min-height: 2.5em;
    max-height: 2.5em;
    margin: 0 0 8px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.2;
  }
  body.mobile-app-mode :is(#artist-grid, #venue-grid) .profile-card-content > p:last-of-type {
    min-height: 3em;
    max-height: 3em;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  body.mobile-app-mode :is(#artist-grid, #venue-grid) .venue-card-footer {
    flex: 0 0 auto;
    padding-top: 10px;
  }
  body.mobile-app-mode #venue-grid .venue-card-image {
    height: clamp(160px, calc(100% - 220px), 230px);
    min-height: clamp(160px, calc(100% - 220px), 230px);
    flex: 0 0 clamp(160px, calc(100% - 220px), 230px);
  }
  body.mobile-app-mode :is(#artist-grid, #venue-grid) .card-footer-action {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }
  body.mobile-app-mode #venue-grid .card-footer-action,
  body.mobile-app-mode #venue-grid .venue-card-footer .food-badge-compact {
    width: 100%;
    min-width: 0;
    height: 40px;
    flex-basis: auto;
    border: 0;
    border-radius: 0;
  }
  body.mobile-app-mode :is(#artist-grid, #venue-grid) .card-action-icon {
    display: block;
    font-size: 21px;
  }
  body.mobile-app-mode :is(#artist-grid, #venue-grid) .card-action-label {
    display: none;
  }
  body.mobile-app-mode #artist-grid .venue-card-footer {
    justify-content: flex-start;
  }
  body.mobile-app-mode #artist-grid .card-footer-action {
    display: inline-flex;
    width: auto;
    height: auto;
    min-width: 0;
    flex: 0 0 auto;
    gap: 6px;
    border: 0;
    border-radius: 0;
  }
  body.mobile-app-mode #artist-grid .card-action-label {
    display: inline;
  }
  body.mobile-app-mode #home .hero-copy > .eyebrow,
  body.mobile-app-mode :is(#events, #artists, #venues) > .section-heading .eyebrow {
    display: none;
  }
  body.mobile-app-mode #home .mobile-app-tagline{display:block;margin:12px 0 7px;color:var(--ink);font:700 clamp(15px,4.2vw,17px)/1.3 var(--sans)}
  body.mobile-app-mode #home .hero-subtitle{display:block;margin:0 0 28px;font-size:14px;line-height:1.45}
  body.mobile-app-mode #events > .filter-row {
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    overflow: visible;
  }
  body.mobile-app-mode #events > .filter-row > [data-filter] {
    display: none;
  }
  body.mobile-app-mode .mobile-event-time-filter {
    position: relative;
    display: block;
    min-width: 0;
    flex: 1 1 0;
  }
  body.mobile-app-mode .mobile-event-time-filter > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  body.mobile-app-mode .mobile-event-time-filter select {
    display: block !important;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0 36px 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    appearance: none;
    background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%2366706a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
    color: var(--ink);
    font: 700 11px var(--sans);
    opacity: 1;
    visibility: visible;
  }
  body.mobile-app-mode #events > .filter-row > .genre-filter-toggle {
    width: auto !important;
    min-width: 0;
    height: 40px !important;
    min-height: 40px !important;
    flex: 1 1 0;
    padding: 0 36px 0 12px !important;
    font-size: 11px;
  }
  body.mobile-app-mode .event-directory-filter-row {
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 6px;
  }
  body.mobile-app-mode .event-directory-filter-row > label.chip {
    display: none;
  }
  body.mobile-app-mode .event-directory-filter-row > .event-directory-time-filter {
    display: block;
    min-width: 0;
    flex: 1 1 0;
  }
  body.mobile-app-mode .event-directory-filter-row > [data-directory-genre-toggle] {
    order: 0;
    width: auto;
    min-width: 0;
    min-height: 40px;
    flex: 1 1 0;
  }
  body.mobile-app-mode .mobile-app-nav {
    position: fixed;
    z-index: 25;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: var(--mobile-app-nav-height);
    padding: 6px 6px env(safe-area-inset-bottom, 0px);
    border-top: 1px solid var(--line);
    background: var(--paper);
    background: rgba(255,253,248,.94);
    background: color-mix(in srgb, var(--paper) 94%, transparent);
    box-shadow: 0 -8px 24px rgba(23, 32, 28, .09);
    backdrop-filter: blur(14px);
    transition: transform 180ms ease, visibility 0s linear 0s;
  }
  body.mobile-menu-active .mobile-app-nav,
  body.app-keyboard-open .mobile-app-nav,
  body.admin-tools-open .mobile-app-nav {
    display: none;
  }
  body.mobile-app-mode.app-keyboard-open,
  body.mobile-app-mode.admin-tools-open {
    --mobile-app-nav-height: 0px;
    --mobile-section-height: calc(100vh - var(--mobile-header-height));
    --mobile-section-height: calc(100svh - var(--mobile-header-height));
    padding-bottom: 0;
  }
  @supports (height: 100dvh) {
    body.mobile-app-mode.app-keyboard-open,
    body.mobile-app-mode.admin-tools-open {
      --mobile-section-height: calc(100dvh - var(--mobile-header-height));
    }
  }
  body.mobile-app-mode.app-keyboard-open .mobile-app-nav,
  body.mobile-app-mode.admin-tools-open .mobile-app-nav {
    display: none!important;
    height: 0;
    padding: 0;
    border-top: 0;
  }
  body.mobile-app-mode:is(.mobile-menu-active,.app-keyboard-open,.admin-tools-open,.genre-drawer-open) {
    --mobile-app-nav-height: 0px;
    padding-bottom: 0;
  }
  body.mobile-app-mode:is(.mobile-menu-active,.app-keyboard-open,.admin-tools-open,.genre-drawer-open) main > section.mobile-app-active {
    height: calc(100vh - var(--mobile-header-height));
    height: calc(100svh - var(--mobile-header-height));
    min-height: calc(100vh - var(--mobile-header-height));
    min-height: calc(100svh - var(--mobile-header-height));
  }
  @supports (height: 100dvh) {
    body.mobile-app-mode:is(.mobile-menu-active,.app-keyboard-open,.admin-tools-open,.genre-drawer-open) main > section.mobile-app-active {
      height: calc(100dvh - var(--mobile-header-height));
      min-height: calc(100dvh - var(--mobile-header-height));
    }
  }
  .mobile-app-nav a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-app-nav a .material-symbols-outlined {
    font-size: 23px;
  }
  .mobile-app-nav a[aria-current="page"] {
    background: var(--sage);
    color: var(--rust);
  }
  @keyframes mobile-app-view-in {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    body.mobile-app-mode main > section.mobile-app-active { animation: none; }
  }
  #home,
  #events,
  #artists,
  #venues,
  .cta-section {
    box-sizing: border-box;
    min-height: var(--mobile-section-height);
    scroll-margin-top: calc(var(--mobile-header-height) - var(--mobile-snap-overlap));
  }
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    box-sizing: border-box;
    height: var(--mobile-header-height);
    padding: env(safe-area-inset-top, 0px) 16px 0;
    background: var(--device-chrome);
  }
  footer {
    padding-bottom: calc(35px + env(safe-area-inset-bottom, 0px));
  }
  .brand {
    min-width: 0;
    gap: 6px;
    font-size: 18px;
  }
  .site-header .brand-mark {
    flex-basis: 65px;
    width: 65px;
    height: 40px;
  }
  .menu-button {
    position: relative;
    z-index: 12;
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .mobile-reminder-button {
    position: absolute;
    z-index: 12;
    right: 68px;
    bottom: 10px;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
  }
  .mobile-reminder-button .material-symbols-outlined {
    font-size: 25px;
  }
  .mobile-reminder-dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--device-chrome);
    border-radius: 50%;
    background: var(--rust);
  }
  .mobile-reminder-button.reminder-seen .mobile-reminder-dot {
    display: none;
  }
  .site-header.mobile-menu-open {
    align-items: center;
  }
  body.mobile-menu-active {
    overflow: hidden;
  }
  .site-header.mobile-menu-open nav,
  .site-header.mobile-menu-open .header-actions {
    position: fixed;
    left: 0;
    right: 0;
    display: flex !important;
    background: var(--paper);
  }
  .site-header.mobile-menu-open nav {
    z-index: 100;
    top: 64px;
    bottom: 0;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 110px;
    border-top: 1px solid var(--line);
  }
  .site-header.mobile-menu-open nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .site-header.mobile-menu-open .header-actions {
    z-index: 101;
    top: auto;
    bottom: 0;
    gap: 10px;
    padding: 14px 16px 18px;
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 24px rgba(23,32,28,.14);
  }
  .site-header.mobile-menu-open .header-actions > * {
    flex: 1;
    min-height: 44px;
  }
  .mobile-nav-drawer {
    position: fixed;
    z-index: 9;
    top: calc(64px + env(safe-area-inset-top, 0px));
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    background: var(--paper);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .28s ease, visibility 0s linear .28s;
    box-shadow: -18px 0 36px rgba(23,32,28,.16);
    border-left: 1px solid var(--line);
  }
  .mobile-nav-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }
  .site-header.mobile-menu-open > nav,
  .site-header.mobile-menu-open > .header-actions {
    display: none !important;
  }
  .mobile-nav-drawer nav {
    display: flex;
    flex-direction: column;
  }
  .mobile-nav-drawer nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }
  .mobile-nav-drawer .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
  }
  .mobile-nav-drawer .mobile-nav-actions > * {
    width: 100%;
    min-height: 48px;
  }
  @media (prefers-reduced-motion: reduce) {
    .mobile-nav-drawer {
      transition: none;
    }
  }
  .hero {
    min-height: 0;
    padding: 40px 16px 56px;
    gap: 42px;
  }
  .hero:before {
    font-size: 300px;
  }
  .hero-music-notes span{opacity:.7}.hero-music-notes span:nth-child(2),.hero-music-notes span:nth-child(4),.hero-music-notes span:nth-child(6){display:none}.hero-music-notes span:nth-child(1){left:-4%;bottom:35%;font-size:110px}.hero-music-notes span:nth-child(3){left:54%;bottom:7%;font-size:120px}.hero-music-notes span:nth-child(5){right:-4%;top:38%;bottom:auto;font-size:90px}
  .hero h1 {
    font-size: clamp(43px,14vw,56px);
  }
  .hero-subtitle {
    margin: 22px 0 26px;
    font-size: 16px;
  }
  .location-search {
    display: grid;
    width: 100%;
    padding: 8px;
  }
  .location-search .field {
    width: 100%;
    min-width: 0;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .location-search .field input,
  .location-search .field select,
  .location-search .field > select {
    width: 100%;
    min-height: 30px;
  }
  .search-button {
    min-height: 50px;
    margin-top: 8px;
  }
  .search-note {
    align-items: flex-start;
    line-height: 1.45;
  }
  .search-note > span {
    flex: 0 0 7px;
    margin-top: 5px;
  }
  .tonight-card {
    display: none;
  }
  .section,
  .explore-section {
    padding: 32px 16px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 26px;
  }
  .section-heading .browse-events-link {
    align-self: flex-start;
    text-align: left;
  }
  .section-heading h2 {
    font-size: 36px;
    line-height: 1.02;
  }
  .result-summary {
    line-height: 1.5;
  }
  .filter-row {
    flex-wrap: wrap;
    overflow: visible;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 6px;
  }
  .chip {
    flex: 0 0 auto;
    min-height: 44px;
  }
  .event-row {
    grid-template-columns: 48px minmax(0,1fr) 28px;
    gap: 5px 14px;
    padding: 20px 4px;
  }
  .event-date {
    grid-row: 1 / span 3;
    align-self: start;
  }
  .event-main,
  .event-venue,
  .event-price {
    grid-column: 2;
    display: block;
    min-width: 0;
  }
  .event-main h3 {
    font-size: 19px;
    overflow-wrap: anywhere;
  }
  .event-venue b {
    font-size: 13px;
  }
  .event-price {
    display: flex;
    gap: 8px;
    align-items: baseline;
  }
  .event-price p {
    margin: 0;
  }
  .event-arrow {
    grid-column: 3;
    grid-row: 1 / span 3;
    align-self: center;
  }
  .event-pagination {
    gap: 10px;
  }
  .event-pagination .button {
    min-height: 44px;
    padding: 11px 14px;
  }
  .newsletter-search-prompt {
    align-items: stretch;
    flex-direction: column;
  }
  .section-actions {
    width: 100%;
    justify-content: space-between;
  }
  .carousel-arrow {
    display: none;
  }
  .venue-calendar-view {
    padding-inline: 12px;
  }
  .venue-calendar-toolbar {
    gap: 8px;
  }
  .venue-calendar-toolbar h3 {
    font-size: 21px;
  }
  .venue-month-grid > b {
    padding-inline: 1px;
    font-size: 9px;
  }
  .venue-calendar-day,
  .venue-calendar-blank {
    min-height: 64px;
    padding: 5px;
  }
  .venue-calendar-event {
    width: 7px;
    height: 7px;
    margin: 4px auto 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--location-color);
    color: transparent;
  }
  .venue-calendar-event em,
  .venue-calendar-event small {
    display: none;
  }
  #artist-grid .profile-card,
  #venue-grid .venue-card {
    flex: 0 0 min(calc(100% - 48px), 340px);
    max-width: min(calc(100% - 48px), 340px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  #artist-grid .profile-card:not(:first-child),
  #venue-grid .venue-card:not(:first-child) {
    scroll-margin-left: 28px;
  }
  #artist-grid .main-grid-overflow-card,
  #venue-grid .main-grid-overflow-card {
    display: flex !important;
  }
  #artist-grid,
  #venue-grid {
    display: flex;
    grid-template-columns: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 14px;
    margin-right: 0;
    padding: 2px 2px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    cursor: auto;
    user-select: auto;
  }
  .profile-card:hover,
  .venue-card:hover,
  .event-row:hover {
    transform: none;
  }
  .profile-card:hover {
    border-color: var(--line);
    background: var(--paper);
  }
  .venue-card:hover {
    border-color: var(--line);
    background: white;
  }
  .event-row:hover {
    background: transparent;
  }
  .profile-card:focus,
  .profile-card:focus-visible,
  .venue-card:focus,
  .venue-card:focus-visible,
  .directory-card:focus-visible,
  .event-row[data-nearby-event]:focus-visible {
    outline: none;
    outline-offset: 0;
  }
  .section-heading > a {
    display: inline-block;
    max-width: 100%;
    padding-top: 8px;
    white-space: normal;
  }
  .cta-section {
    padding: 48px 16px;
  }
  .cta-section h2 {
    font-size: 40px;
  }
  .cta-section > div {
    display: grid;
    gap: 10px;
  }
  .cta-section .button {
    width: 100%;
    min-height: 48px;
    margin: 0;
  }
  footer {
    padding: 30px 16px;
  }
  dialog:not(.admin-modal):not(.admin-editor-modal) {
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
    margin: auto;
  }
  .modal-inner {
    padding: 42px 18px 24px;
  }
  .modal-inner h2 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }
  .modal-close {
    width: 44px;
    height: 44px;
  }
  .empty-state {
    padding: 42px 16px;
  }
}

@media (max-width: 380px) {
  .site-header .brand {
    font-size: 16px;
  }
  .site-header .brand-mark {
    flex-basis: 58px;
    width: 58px;
    height: 36px;
  }
  .site-header .brand small {
    display: inline;
    margin-left: -5px;
    margin-bottom: 7px;
    font-size: 8px;
  }
}

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

@media (max-width: 600px) {
  body.genre-drawer-open {
    overflow: hidden;
  }
  .genre-filter-backdrop {
    position: fixed;
    z-index: 39;
    inset: 0;
    display: block;
    background: rgba(9,15,12,.58);
  }
  .genre-filter-backdrop[hidden] {
    display: none;
  }
  .genre-filter-panel,
  .genre-filter-panel.open {
    position: fixed;
    z-index: 40;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw,380px);
    max-height: none;
    margin: 0;
    padding: 22px 18px;
    overflow-y: auto;
    opacity: 1;
    background: var(--paper);
    box-shadow: -18px 0 38px rgba(23,32,28,.22);
    transform: translateX(105%);
    transition: transform .25s ease;
  }
  .genre-filter-panel.open {
    transform: translateX(0);
  }
  .genre-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
  }
  .genre-drawer-header .eyebrow {
    margin-bottom: 5px;
  }
  .genre-drawer-header h3 {
    margin: 0;
    font: 600 32px var(--display);
  }
  .genre-drawer-header > button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    font-size: 23px;
  }
  .genre-filter-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: white;
  }
  .genre-filter-search .material-symbols-outlined {
    color: var(--muted);
    font-size: 20px;
  }
  .genre-filter-search input {
    width: 100%;
    min-height: 46px;
    border: 0;
    outline: 0;
    background: transparent;
  }
  .genre-filter-pills {
    align-content: flex-start;
    padding: 8px 0 16px;
  }
  .genre-filter-pill {
    min-height: 40px;
  }
  .genre-filter-clear {
    min-height: 44px;
    margin-bottom: 0;
  }
  .genre-filter-close {
    display: none;
  }
}
