:root {
  --black: #101010;
  --text: #171717;
  --muted: #727272;
  --line: #dedede;
  --line-soft: #ececec;
  --paper: #ffffff;
  --paper-soft: #f7f7f5;
  --blue-note: #275a96;
  --cotton-club: #b32825;
  --billboard: #111111;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: var(--sans);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 clamp(22px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line-soft);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.logo-square {
  display: grid;
  width: 26px;
  height: 26px;
  color: #fff;
  background: #111;
  font-family: var(--serif);
  font-size: 15px;
  place-items: center;
}

.site-logo > span:last-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.site-logo strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-logo small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.2vw, 52px);
  height: 100%;
}

.header-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--black);
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  padding: 4px 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.menu-button i {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--black);
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(45px, 7vw, 110px);
  min-height: 620px;
  padding: 76px clamp(24px, 7vw, 112px) 74px;
}

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

.section-label {
  display: inline-block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.hero h1,
.about-section h2 {
  margin: 25px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.035em;
}

.hero-description {
  margin: 28px 0 33px;
  color: #4c4c4c;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  line-height: 1.9;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 155px;
  padding: 14px 17px;
  border: 1px solid var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.outline-button:hover {
  color: #fff;
  background: #111;
}

.outline-button span {
  font-size: 13px;
}

.venue-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: stretch;
  min-height: 470px;
  overflow: hidden;
}

.venue-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #242424;
  border-right: 2px solid #fff;
}

.venue-panel:last-child {
  border-right: 0;
}

.venue-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.venue-panel:hover img {
  transform: scale(1.04);
}

.venue-panel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 42%, rgba(0, 0, 0, 0.35));
}

.venue-panel-name {
  position: absolute;
  top: 38px;
  right: 15px;
  left: 15px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 37px);
  font-weight: 600;
  line-height: 0.75;
  text-align: center;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
}

.venue-panel-name small {
  display: block;
  margin-top: 9px;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.today-section {
  padding: 0 clamp(24px, 7vw, 112px) 82px;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.section-heading-row > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-heading-row b {
  font-size: 8px;
  font-weight: 500;
}

.section-heading-row > a {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-heading-row > a span {
  margin-left: 8px;
}

.today-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.today-card {
  position: relative;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 26px;
  gap: 17px;
  min-height: 105px;
  padding: 17px 20px 17px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.today-card:first-child {
  border-left: 1px solid var(--line);
}

.today-image {
  overflow: hidden;
  background: #eee;
}

.today-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.today-card-body {
  min-width: 0;
  align-self: center;
}

.today-venue {
  color: var(--venue-color);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.today-title {
  margin: 8px 0;
  overflow: hidden;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.today-shows {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  color: var(--muted);
  font-size: 7px;
}

.card-arrow {
  align-self: center;
  font-size: 15px;
  text-align: right;
}

.loading-message,
.empty-state {
  grid-column: 1 / -1;
  padding: 45px 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  text-align: center;
}

.schedule-section {
  padding: 92px clamp(24px, 7vw, 112px) 110px;
  background: var(--paper-soft);
  border-top: 1px solid var(--line-soft);
}

.schedule-intro {
  text-align: center;
}

.schedule-intro h2 {
  margin: 11px 0 10px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 65px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.13em;
}

.schedule-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 9px;
}

.data-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 8px;
}

.status-dot {
  width: 5px;
  height: 5px;
  background: #598452;
  border-radius: 50%;
}

.status-sources {
  margin-left: 8px;
}

.date-strip-shell {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px 36px;
  gap: 7px;
  width: min(770px, 100%);
  margin: 42px auto 54px;
}

.square-arrow,
.calendar-icon-button {
  display: grid;
  padding: 0;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  place-items: center;
}

.square-arrow {
  font-family: Georgia, serif;
  font-size: 16px;
}

.calendar-icon-button svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.4;
}

.date-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(60px, 1fr));
  background: #fff;
  border: 1px solid var(--line);
}

.date-button {
  padding: 11px 5px;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-soft);
  font-size: 7px;
  text-align: center;
}

.date-button:last-child {
  border-right: 0;
}

.date-button span {
  display: block;
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: 600;
}

.date-button.is-active {
  color: #fff;
  background: #111;
}

.date-button.is-weekend:not(.is-active) {
  color: #a23434;
}

.schedule-workspace {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  width: min(1110px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
}

.schedule-sidebar {
  padding: 31px 26px;
  border-right: 1px solid var(--line);
}

.month-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}

.month-heading strong {
  font-size: 11px;
  letter-spacing: 0.05em;
}

.month-heading button {
  padding: 2px 8px;
  cursor: pointer;
  background: transparent;
  border: 0;
  font-family: Georgia, serif;
  font-size: 16px;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.calendar-weekday,
.calendar-day {
  display: grid;
  min-height: 25px;
  place-items: center;
  font-size: 7px;
}

.calendar-weekday {
  min-height: 18px;
  color: var(--muted);
  font-weight: 600;
}

.calendar-day {
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.calendar-day:hover:not(:disabled) {
  background: #f0f0f0;
}

.calendar-day.is-active {
  color: #fff;
  background: #111;
}

.calendar-day.has-events::after {
  position: absolute;
  bottom: 2px;
  width: 2px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.calendar-day {
  position: relative;
}

.calendar-day:disabled {
  cursor: default;
}

.filter-block {
  padding-top: 29px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.filter-block > p {
  margin: 0 0 14px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.venue-filter {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 9px;
  padding: 7px 0;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  border: 0;
  font-size: 8px;
  text-align: left;
}

.venue-filter.is-active {
  color: var(--text);
  font-weight: 600;
}

.venue-filter b {
  margin-left: auto;
  color: #999;
  font-size: 7px;
}

.filter-check {
  display: grid;
  width: 10px;
  height: 10px;
  color: #fff;
  background: #b9b9b9;
  border-radius: 1px;
  place-items: center;
}

.venue-filter.is-active .filter-check::after {
  content: "✓";
  font-size: 7px;
}

.blue-check {
  background: var(--blue-note);
}

.cotton-check {
  background: var(--cotton-club);
}

.billboard-check {
  background: var(--billboard);
}

.schedule-results {
  min-width: 0;
  padding: 31px 34px 40px;
}

.results-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.results-toolbar h3 {
  margin: 0 0 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.results-toolbar > div span {
  color: var(--muted);
  font-size: 7px;
  text-transform: uppercase;
}

.search-box {
  display: flex;
  align-items: center;
  width: min(260px, 43%);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.search-box svg {
  width: 13px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.search-box input {
  min-width: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 8px;
}

.event-list {
  display: grid;
}

.event-date-heading {
  padding: 18px 0 9px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.event-row {
  display: grid;
  grid-template-columns: 54px 115px minmax(0, 1fr) 90px 28px;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}

.event-time {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
}

.event-show {
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.event-show-label {
  color: var(--muted);
  font-size: 6px;
  font-weight: 500;
  text-transform: uppercase;
}

.event-venue {
  display: flex;
  align-items: center;
  gap: 7px;
}

.event-venue i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--venue-color);
  border-radius: 50%;
}

.venue-name {
  color: var(--venue-color);
  font-size: 8px;
  font-weight: 600;
}

.event-main {
  min-width: 0;
}

.event-title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.event-subtitle {
  display: -webkit-box;
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 7px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 7px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.availability::before {
  width: 4px;
  height: 4px;
  content: "";
  background: #63845c;
  border-radius: 50%;
}

.availability.is-sold-out::before {
  background: #a34141;
}

.availability.is-upcoming::before,
.availability.is-unknown::before {
  background: #b08a45;
}

.event-image {
  height: 68px;
  overflow: hidden;
  background: #eee;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-link {
  font-size: 15px;
  text-align: right;
  transition: transform 160ms ease;
}

.event-link:hover {
  transform: translateX(3px);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  padding: 100px clamp(24px, 11vw, 180px);
  border-top: 1px solid var(--line);
}

.about-section h2 {
  font-size: clamp(45px, 5.5vw, 75px);
}

.about-copy {
  align-self: end;
  max-width: 500px;
}

.about-copy p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  line-height: 2;
}

.about-copy .disclaimer {
  margin-top: 23px;
  color: var(--muted);
  font-size: 8px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 29px clamp(24px, 4vw, 72px);
  border-top: 1px solid var(--line);
  font-size: 7px;
}

.footer-logo {
  transform: scale(0.88);
  transform-origin: left center;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 35px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .hero h1 {
    font-size: 53px;
  }

  .today-section,
  .schedule-section {
    padding-right: 32px;
    padding-left: 32px;
  }

  .today-card {
    grid-template-columns: 78px minmax(0, 1fr) 18px;
    gap: 12px;
  }

  .event-row {
    grid-template-columns: 45px 90px minmax(0, 1fr) 75px 20px;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
  }

  .header-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    height: auto;
    padding: 15px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .menu-button {
    display: flex;
  }

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

  .header-nav a {
    height: auto;
    padding: 13px 0;
  }

  .header-nav a.is-active::after {
    display: none;
  }

  .site-header.is-menu-open .menu-button i:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-button i:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-button i:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 58px 20px 45px;
  }

  .hero h1 {
    font-size: clamp(51px, 15vw, 68px);
  }

  .venue-showcase {
    min-height: 370px;
  }

  .today-section {
    padding: 0 20px 65px;
  }

  .today-grid {
    grid-template-columns: 1fr;
  }

  .today-card,
  .today-card:first-child {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .schedule-section {
    padding: 70px 14px 80px;
  }

  .date-strip-shell {
    grid-template-columns: 30px minmax(0, 1fr) 30px 36px;
    margin-bottom: 30px;
  }

  .date-strip {
    overflow-x: auto;
    grid-template-columns: repeat(7, 62px);
    scrollbar-width: none;
  }

  .date-strip::-webkit-scrollbar {
    display: none;
  }

  .schedule-workspace {
    grid-template-columns: 1fr;
  }

  .schedule-sidebar {
    padding: 25px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mini-calendar {
    max-width: 390px;
    margin: 0 auto;
  }

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

  .filter-block > p {
    grid-column: 1 / -1;
  }

  .schedule-results {
    padding: 25px 18px 35px;
  }

  .results-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .event-row {
    grid-template-columns: 42px minmax(0, 1fr) 67px 18px;
    gap: 11px;
    padding: 15px 0;
  }

  .event-venue {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .event-main {
    grid-column: 2;
    grid-row: 2;
  }

  .event-time {
    grid-row: 1 / span 2;
  }

  .event-image {
    grid-column: 3;
    grid-row: 1 / span 2;
    height: 58px;
  }

  .event-link {
    grid-column: 4;
    grid-row: 1 / span 2;
  }

  .event-subtitle {
    display: none;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 75px 24px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .site-logo small {
    max-width: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 49px;
  }

  .venue-showcase {
    min-height: 310px;
  }

  .venue-panel-name {
    top: 25px;
    font-size: 21px;
  }

  .section-heading-row > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .today-card {
    grid-template-columns: 88px minmax(0, 1fr) 20px;
  }

  .filter-block {
    grid-template-columns: 1fr;
  }
}
