@import url("/css/fonts.css");
:root {
  --paper: #f4f3f8;
  --lilac: #e3ddfa;
  --blue: #303fce;
  --ink: #20202c;
  --muted: #595867;
  --peach: #f5ab76;
  --line: #d3d1df;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
}
h3 {
  line-height: 1.15;
}
button {
  border: 0;
}
svg {
  width: 20px;
  height: 20px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1320px, 100% - 96px);
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 12px;
  background: var(--paper);
  z-index: 20;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  font: 800 29px/0.82 var(--display);
  letter-spacing: -0.02em;
  display: inline-block;
}
.brand > span {
  display: block;
}
.brand-dot {
  color: var(--blue);
  font: 17px/1 var(--body);
  margin-left: 5px;
}
.brand:hover {
  text-decoration: none;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}
.site-header nav a {
  padding: 10px 0;
}
.site-header nav a[aria-current] {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}
.site-header nav a:last-child {
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 4px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 15px 21px;
  background: var(--blue);
  color: var(--paper);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.btn:hover {
  background: var(--ink);
  text-decoration: none;
}
.btn span {
  font-size: 22px;
  line-height: 1;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.listings-section {
  padding: 40px 0 72px;
}
/* Homepage masthead replacement: the listings introduce themselves, briefly. */
.listings-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 32px;
  padding-bottom: 20px;
  margin-bottom: 26px;
  border-bottom: 2px solid var(--ink);
}
.listings-title .eyebrow {
  margin-bottom: 8px;
}
.listings-header h1 {
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--blue);
  margin: 0;
}
.listings-count {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--muted);
}
.listings-count strong {
  color: var(--ink);
}
.listings-count .text-button {
  margin-left: 10px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 27px;
}
.section-heading .eyebrow {
  margin-bottom: 9px;
}
.section-heading h2 {
  font-size: 62px;
  letter-spacing: -0.02em;
}
.text-button {
  background: none;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 0;
}
.text-button:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-button span {
  margin-left: 8px;
}
.filter-controls {
  padding: 23px;
  background: var(--lilac);
  border-radius: 5px;
}
/* The filters open as a panel on desktop and collapse to a row on phones,
   where they would otherwise fill the screen ahead of the listings. */
.filter-summary {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.filter-summary::-webkit-details-marker {
  display: none;
}
.filter-summary span {
  font-size: 15px;
  transition: transform 0.15s ease;
}
.filter-controls[open] .filter-summary {
  margin-bottom: 18px;
}
.filter-controls[open] .filter-summary span {
  transform: rotate(180deg);
}
.filter-row {
  display: grid;
  grid-template-columns: 1.7fr 1.25fr 1fr 1fr;
  gap: 16px;
}
.filter-row label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
}
.filter-row input,
.filter-row select {
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 11px 12px;
  min-height: 46px;
  min-width: 0;
  width: 100%;
  font-size: 13px;
  color: var(--ink);
}
.filter-row input::placeholder {
  color: var(--muted);
}
.filter-pills-group {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 19px;
}
.filter-pill {
  border-radius: 20px;
  border: 1px solid #bcb5d3;
  background: transparent;
  font-size: 11px;
  line-height: 1.5;
  padding: 7px 12px;
  color: var(--ink);
}
.filter-pill:hover {
  background: var(--paper);
}
.filter-pill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--paper);
}
.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 19px;
  font-size: 12px;
  color: var(--muted);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
}
.event-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}
.event-card-image {
  position: relative;
  aspect-ratio: 1.6;
  isolation: isolate;
  background: var(--lilac);
  overflow: hidden;
  border-radius: 3px;
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
/* The thumbnail repeats the title link, so it is out of the tab order:
   keyboard users reach the show once, not twice. */
.event-card-thumb {
  display: block;
  width: 100%;
  height: 100%;
}
.event-card-thumb img {
  transition: transform 0.25s ease;
}
.event-card-thumb:hover img {
  transform: scale(1.03);
}
.image-fallback {
  position: absolute;
  inset: 0;
  padding: 26px;
  color: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.image-fallback > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.image-fallback strong {
  font: 800 40px/0.95 var(--display);
  max-width: 80%;
}
.date-stamp {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--paper);
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 2px;
  color: var(--ink);
}
.event-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 0 16px;
}
.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.card-topline > a {
  font-weight: 700;
  color: var(--blue);
}
.card-topline > span {
  color: var(--muted);
  text-align: right;
}
.event-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.event-card h3 a:hover {
  color: var(--blue);
  text-decoration: none;
}
.event-description {
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px;
}
.event-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: var(--muted);
}
.ticket-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  padding: 8px 0 8px 12px;
}
.ticket-link > span {
  margin-left: 13px;
  font-size: 19px;
}
.accessibility {
  font-size: 11px;
  background: var(--lilac);
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 3px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.no-results {
  padding: 65px 22px;
  text-align: center;
  background: var(--lilac);
  border-radius: 5px;
}
.no-results h3 {
  font: 700 40px/1.1 var(--display);
}
.no-results p {
  margin: 15px auto 23px;
  max-width: 520px;
  color: var(--muted);
}
.listing-invite {
  padding: 65px 0;
}
.listing-invite > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.listing-invite h2 {
  font-size: 64px;
  margin: 16px 0;
}
.listing-invite p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
}
.page-hero {
  padding-top: 60px;
  padding-bottom: 50px;
}
.page-hero h1 {
  font-size: clamp(62px, 7vw, 108px);
  color: var(--blue);
  margin: 15px 0 25px;
  max-width: 1000px;
  letter-spacing: -0.025em;
}
.page-hero > p:not(.eyebrow) {
  font-size: 19px;
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 25px;
}
.back-link {
  font-size: 12px;
  display: block;
  margin-bottom: 32px;
}
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 70px;
}
.venue-card {
  display: flex;
  flex-direction: column;
  background: var(--lilac);
  padding: 29px;
  border-radius: 4px;
}
.venue-card h2 {
  font-size: 42px;
  margin: 20px 0;
}
.venue-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}
.venue-card-footer {
  margin-top: 26px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  color: var(--blue);
}
.venue-card:hover {
  text-decoration: none;
  background: #d8d1f4;
}
.venue-listings {
  padding-bottom: 65px;
}
.prose {
  padding-bottom: 75px;
  max-width: 800px;
  margin-left: max(48px, calc((100% - 1320px) / 2));
}
.prose h2 {
  font-size: 36px;
  margin: 0 0 15px;
}
.prose p {
  margin-bottom: 32px;
  line-height: 1.8;
}
.prose p a,
.submit-box > a:last-child {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose ul {
  padding-left: 20px;
  margin: 0 0 30px;
}
.prose li {
  padding-bottom: 10px;
}
.submit-box {
  background: var(--lilac);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 4px;
}
.submit-box p {
  margin: 0;
  font-weight: 600;
}
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 49px 0 22px;
}
.site-footer .brand-dot {
  color: var(--lilac);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-top > div > p:not(.eyebrow) {
  font-size: 12px;
  margin-top: 20px;
  color: #c3c1cd;
}
.footer-top > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  min-width: 270px;
}
.footer-top .eyebrow {
  color: #c3c1cd;
  margin-bottom: 5px;
}
.footer-bottom {
  border-top: 1px solid #494852;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #c3c1cd;
  font-size: 10px;
}
.image-unavailable .image-fallback {
  z-index: 1;
}
.image-unavailable .date-stamp {
  z-index: 2;
}
@media (max-width: 1050px) {
  .container {
    width: calc(100% - 56px);
  }
  .filter-row {
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
    gap: 10px;
  }
  .events-grid {
    gap: 30px 20px;
  }
  .card-topline {
    flex-direction: column;
    gap: 3px;
  }
  .card-topline > span {
    text-align: left;
  }
  .prose {
    margin-left: 28px;
  }
  .venues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    min-height: 96px;
    gap: 18px;
  }
  .brand {
    font-size: 24px;
  }
  .brand-dot {
    font-size: 13px;
  }
  .site-header nav {
    gap: 17px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 11px;
    max-width: 215px;
  }
  .site-header nav a {
    padding: 3px 0;
  }
  .site-header nav a:last-child {
    padding: 5px 8px;
  }
  .listings-section {
    padding: 28px 0 40px;
  }
  .listings-header {
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
  .listings-count {
    font-size: 12px;
    margin-bottom: 0;
  }
  .listings-count .text-button {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    flex-basis: 100%;
    text-align: left;
  }
  .filter-controls {
    padding: 16px 18px;
  }
  .filter-summary {
    display: flex;
  }
  .section-heading {
    align-items: flex-start;
    gap: 12px;
  }
  .section-heading h2 {
    font-size: 52px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
  }
  .section-heading > .text-button {
    max-width: 112px;
    text-align: right;
    font-size: 11px;
  }
  .filter-controls {
    padding: 16px;
  }
  .filter-row {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }
  .search-field {
    grid-column: 1/-1;
  }
  .filter-row > label:nth-child(2) {
    grid-column: 1/-1;
  }
  .filter-row input,
  .filter-row select {
    font-size: 14px;
  }
  .filter-pill {
    font-size: 11px;
    padding: 7px 10px;
    min-height: 36px;
  }
  .filter-pills-group {
    gap: 6px;
  }
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }
  .event-card h3 {
    font-size: 29px;
  }
  .date-stamp {
    font-size: 9px;
    left: 8px;
    bottom: 8px;
    padding: 4px 6px;
  }
  .event-card-body {
    padding-top: 13px;
  }
  .event-card-footer {
    flex-wrap: wrap;
    gap: 3px;
  }
  .ticket-link {
    padding-left: 0;
  }
  .listing-invite {
    padding: 42px 0;
  }
  .listing-invite > .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .listing-invite h2 {
    font-size: 55px;
  }
  .page-hero {
    padding-top: 38px;
    padding-bottom: 30px;
  }
  .page-hero > p:not(.eyebrow) {
    font-size: 17px;
  }
  .prose {
    margin-left: 18px;
    padding-bottom: 45px;
  }
  .venues-grid {
    gap: 16px;
  }
  .venue-card {
    padding: 23px;
  }
  .venue-card h2 {
    font-size: 36px;
  }
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .site-footer {
    padding-top: 36px;
  }
  .submit-box > a:last-child {
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .venue-listings .section-heading h2 {
    font-size: 43px;
  }
  .venue-listings .section-heading > span {
    font-size: 12px;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .events-grid,
  .venues-grid {
    grid-template-columns: 1fr;
  }
  .event-card h3 {
    font-size: 36px;
  }
  .event-description {
    font-size: 13px;
  }
  .card-topline {
    flex-direction: row;
  }
  .card-topline > span {
    text-align: right;
  }
  .event-card-footer {
    font-size: 11px;
  }
  .date-stamp {
    font-size: 11px;
    padding: 5px 8px;
    left: 12px;
    bottom: 12px;
  }
  .event-card-body {
    padding-top: 17px;
  }
  .header-inner {
    gap: 10px;
  }
  .site-header nav {
    gap: 12px;
    max-width: 192px;
  }
  .site-header nav a {
    font-size: 10px;
  }
  .image-fallback strong {
    font-size: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  body {
    background: white;
    color: black;
  }
  .container {
    width: 100%;
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-card {
    break-inside: avoid;
  }
  .listings-section {
    padding: 0;
  }
  .event-description {
    display: block;
    overflow: visible;
  }
}
