:root {
  --bg: rgb(226, 255, 100);
  --text: #0b0b0b;
  --muted: rgba(11,11,11,.62);
  --line: rgba(11,11,11,.18);
  --panel: rgba(255,255,255,.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  letter-spacing: -0.035em;
}

body.menu-open { overflow: hidden; }

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--text);
}



.site-nav {
  display: flex;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(226,255,100,.62);
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .16s ease, transform .16s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(11,11,11,.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
}

.page-section {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 128px 24px;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 36px;
  padding-top: 160px;
}

.kicker,
.index,
.cards span,
.schedule span {
  color: var(--muted);
}

.hero-title {
  margin: 0;

  font-size: clamp(4rem, 11vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.12em;
  font-weight: 600;

  max-width: 1200px;
}
.art-gallery {
  display: grid;
  gap: 40px;
}

.art-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.art-image {
  margin: 0;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  background: var(--panel);
}

.art-image.large {
  grid-row: span 2;
  min-height: 660px;
}

.art-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.art-image figcaption {
  padding: 14px 18px;
  color: var(--muted);
}

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

  .art-image,
  .art-image.large {
    min-height: 320px;
  }
}


.hero-title img {
  display: inline-block;

  width: clamp(200px, 24vw, 600px);



  vertical-align: baseline;

  margin-left: 0.12em;
}
.dashboard-cards a {
  color: inherit;
  text-decoration: none;
}

.dashboard-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  transition: transform .16s ease, background .16s ease;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.32);
}

.dashboard-card p {
  font-size: 14px;
}

.dashboard-card.disabled {
  opacity: .45;
  cursor: not-allowed;
}

.bar-tool {
  display: grid;
  gap: 28px;
}

.bar-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 16px;
}

.bar-total {
  min-width: 180px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: 24px;
  font-weight: 600;
}

.bar-summary {
  color: var(--muted);
  line-height: 1.5;
}

.bar-grid {
  display: grid;
  gap: 12px;
}

.bar-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
}

.bar-card h3 {
  margin-bottom: 8px;
}

.bar-card span {
  color: var(--muted);
}

.bar-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bar-controls strong {
  min-width: 34px;
  text-align: center;
  font-size: 24px;
}

.bar-controls button {
  width: 48px;
  height: 44px;
  border: 1px solid var(--text);
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 22px;
  cursor: pointer;
}

.bar-controls button:last-child {
  background: var(--text);
  color: var(--bg);
}

.current-events,
.archive-section {
  display: grid;
  gap: 40px;
}

.section-headline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-section {
  border-top: 1px solid var(--line);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: end;
}

.location-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-card {
  min-height: 320px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 28px;

  border-radius: 32px;

  border: 1px solid var(--line);

  background: rgba(255,255,255,.18);

  backdrop-filter: blur(18px);
}

.location-label {
  color: var(--muted);
}

.location-address {
  font-size: clamp(24px, 4vw, 46px);
  line-height: 0.92;
  letter-spacing: -0.09em;
  font-weight: 500;
}

.location-note {
  color: var(--muted);
}

@media (max-width: 820px) {

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

  .location-card {
    min-height: 240px;
  }

}

.current-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
}

.current-card {
  min-height: 280px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 24px;

  border: 1px solid var(--line);
  border-radius: 32px;

  background: var(--panel);
}

.current-card.large {
  grid-row: span 2;
  min-height: 580px;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;

  color: var(--muted);
}

.current-card h2 {
  max-width: 500px;
  font-size: clamp(48px, 5vw, 84px);
}

.current-card h3 {
  font-size: 34px;
  line-height: .95;
  letter-spacing: -0.07em;
}

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

.archive-card {
  padding: 18px;

  border: 1px solid var(--line);
  border-radius: 24px;

  background: rgba(255,255,255,.16);

  transition: transform .16s ease;
}

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

.archive-card span {
  display: block;
  margin-bottom: 10px;

  color: var(--muted);
  font-size: 12px;
}

.archive-card h3 {
  font-size: 20px;
  line-height: 1.1;
}

@media (max-width: 820px) {

  .current-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .current-card.large {
    min-height: 420px;
  }

}

@media (max-width: 820px) {
  .bar-top,
  .bar-card {
    grid-template-columns: 1fr;
  }

  .bar-total {
    width: 100%;
  }

  .bar-controls {
    justify-content: space-between;
  }
}


.dialog-form {
  gap: 36px;
}

.form-step {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
}

.form-step span {
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill input {
  position: absolute;
  opacity: 0;
}

.pill span {
  display: inline-flex;
  padding: 11px 15px;
  border: 1px solid var(--text);
  border-radius: 999px;
  cursor: pointer;
}

.pill input:checked + span {
  background: var(--text);
  color: var(--bg);
}

.form-step small {
  color: var(--muted);
}


h1, h2, h3, p { margin: 0; }

h1 {

  font-size: clamp(64px, 13vw, 178px);
  line-height: .82;
  font-weight: 500;
  letter-spacing: -0.12em;
}

.subpage h1 {
  font-size: clamp(56px, 10vw, 140px);
}

h2 {
  max-width: 820px;
  font-size: clamp(34px, 6vw, 76px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: -0.09em;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
  font-weight: 500;
}

p,
.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  padding-top: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--text);
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease;
}

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

.primary {
  background: var(--text);
  color: var(--bg);
}

.secondary,
.quiet {
  background: transparent;
}

.split,
.request-layout {
  display: grid;
  grid-template-columns: .34fr 1fr;
  gap: 42px;
  border-top: 1px solid var(--line);
}

.split p { margin-top: 24px; }

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

.cards article,
.schedule article {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
}

.schedule {
  display: grid;
  gap: 12px;
}

.schedule article {
  min-height: 180px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

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

input, select, textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.2);
  color: var(--text);
  font: inherit;
  outline: none;
}

textarea { resize: vertical; }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--text);
}

.legal {
  padding-top: 180px;
}

.legal h1 {
  margin-bottom: 44px;
  font-size: clamp(52px, 9vw, 130px);
}

.legal h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.site-footer {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 18px auto 18px;
    display: grid;
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px;
  }

  .page-section {
    padding: 76px 18px;

  }

  .hero {
    padding-top: 140px;
  }

  .split,
  .request-layout,
  .cards,
  .form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }


}

/* ---------- MOBILE OVERFLOW FIX ---------- */

body {
  overflow-x: hidden;
}

.form,
.dialog-form,
.form-step,
.option-group,
.pill,
.pill span,
input,
textarea,
select {
  max-width: 100%;
  min-width: 0;
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
}

.pill {
  max-width: 100%;
}

.pill span {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: left;
}

input,
textarea,
select {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.request-layout {
  overflow: hidden;
}





.site-nav {
  max-width: calc(100vw - 36px);
}

@media (max-width: 820px) {

  .form-row {
    grid-template-columns: 1fr;
  }

  .request-layout,
  .page-section,
  .form-step,
  .option-group {
    width: 100%;
  }

  .pill {
    width: 100%;
  }

}
