:root {
  --red: #8b0000;
  --char: #1c1c1c;
  --cream: #fdfbf7;
  --gold: #d4af37;
  --ink: #2a2420;
  --muted: #5c534c;
  --line: rgba(28, 28, 28, 0.12);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}

.pp { padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px)); }

.skip-inpage {
  background: var(--red);
  color: #fff;
  left: 0.75rem;
  padding: 0.5rem 0.75rem;
  position: absolute;
  top: -4rem;
  z-index: 80;
}
.skip-inpage:focus { top: 0.75rem; }

body > .skip-link { display: none; }

.mast {
  background: var(--char);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
}

.mast-inner {
  align-items: center;
  display: grid;
  gap: 1rem 1.5rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 78rem;
  padding: 0.7rem 1.35rem;
}

.brand {
  align-items: center;
  color: var(--gold);
  display: flex;
  gap: 0.55rem;
  min-width: 0;
  text-decoration: none;
}
.brand-lockup {
  display: grid;
  justify-items: center;
  line-height: 1.05;
}
.brand-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-rule {
  background: var(--gold);
  display: block;
  height: 1px;
  margin: 0.22rem 0;
  width: 100%;
}
.brand-sub {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.brand-mark {
  background: transparent;
  display: block;
  flex: none;
  height: 3.15rem;
  mix-blend-mode: lighten;
  object-fit: contain;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.15rem;
  justify-content: center;
}
.site-nav a {
  border-radius: 999px;
  color: #f4e7c4;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(212, 175, 55, 0.12);
  color: #fff;
}

.mast-end {
  align-items: center;
  display: flex;
  gap: 0.55rem;
  justify-content: flex-end;
}
.mast .find-show {
  white-space: nowrap;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 0.4rem;
  color: var(--gold);
  cursor: pointer;
  display: none;
  height: 2.4rem;
  justify-content: center;
  padding: 0;
  width: 2.4rem;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  background: currentColor;
  display: block;
  height: 2px;
  position: relative;
  width: 1.05rem;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  left: 0;
  position: absolute;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
}
.btn.red { background: var(--red); color: #fff; }
.btn.ghost,
.btn.gold-outline,
.btn.cream-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn.cream-outline { border-color: #fff; color: #fff; }
.btn.compact { font-size: 0.75rem; padding: 0.45rem 0.8rem; }
button.btn { cursor: pointer; font-family: inherit; }
.btn:focus-visible,
.pill:focus-visible,
.tour-btn:focus-visible,
.nav-toggle:focus-visible,
.circle-jump:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.sticky-pair {
  display: none;
}

.hero {
  background: var(--char);
  color: var(--cream);
  min-height: min(78vh, 42rem);
  overflow: hidden;
  position: relative;
}
.hero-stage { inset: 0; position: absolute; }
.hero-stage::after {
  background:
    linear-gradient(180deg, rgba(18, 10, 12, 0.08) 0%, rgba(12, 6, 8, 0.28) 52%, rgba(12, 6, 8, 0.58) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}
.hero-slide {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 1.2s ease;
}
.hero-slide.is-on { opacity: 1; }
.hero-slide img {
  display: block;
  filter: saturate(1.1) brightness(1.14);
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  width: 100%;
}
.hero-slide.focus-house img { object-position: center 28%; }
.hero-slide.focus-stage img { object-position: center 72%; }
.hero-slide.focus-facade img {
  object-position: center 84%;
  transform: scale(1.28);
}
.hero-slide.focus-skinner img { object-position: center 62%; }
.hero-slide.focus-quigs img { object-position: 30% 42%; }
.hero-copy {
  padding: 6.5rem 1.5rem 5.5rem;
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-copy::before {
  background: radial-gradient(ellipse at center, rgba(8, 4, 6, 0.55) 0%, rgba(8, 4, 6, 0.22) 48%, transparent 72%);
  content: "";
  inset: 8% 4%;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
.hero .kicker,
.hero h1,
.hero .lede,
.hero-credit {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 2px 18px rgba(0, 0, 0, 0.85),
    0 0 42px rgba(0, 0, 0, 0.55);
}
.hero-credit {
  bottom: 0.6rem;
  color: rgba(253, 251, 247, 0.7);
  font-size: 0.68rem;
  left: 1rem;
  margin: 0;
  max-width: 42rem;
  position: absolute;
  z-index: 2;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 600;
  margin: 0 auto 0.8rem;
  max-width: 18ch;
}
.lede, .intro { color: var(--muted); max-width: 42rem; }
.hero .lede { color: rgba(253,251,247,0.92); margin: 0 auto 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }

.kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}
.kicker.gold { color: var(--gold); }
.kicker.red { color: var(--red); }

h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}
h2 { color: var(--red); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0 0 0.6rem; }

.ribbon {
  align-items: center;
  background: #111;
  color: #fff;
  display: grid;
  gap: 0.35rem 1rem;
  grid-template-columns: auto 1fr auto;
  padding: 0.85rem 1.25rem;
}
.ribbon-kicker { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.16em; margin: 0; text-transform: uppercase; }
.ribbon-title { font-family: "Playfair Display", Georgia, serif; font-size: 1.15rem; margin: 0; }
.ribbon-meta { color: #ccc; font-size: 0.88rem; grid-column: 2; margin: 0; }

.access-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
  padding: 0.65rem 1.25rem 0.85rem;
  text-align: center;
}

.wrap { margin: 0 auto; max-width: 70rem; padding: 3rem 1.25rem; }
#calendar .wrap { max-width: 92rem; }
.cream-block,
.quigs-band,
#calendar,
#now,
#spaces,
#rentals,
#quigs,
#membership,
#support,
#history,
#visit {
  scroll-margin-top: 4.5rem;
}
.cream-block { background: var(--cream); }

.show-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
  margin-top: 1.5rem;
}
.show-card {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
}
.show-card:hover,
.show-card:focus-within {
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.12);
}
.show-art {
  align-items: center;
  aspect-ratio: 1;
  background: #f4eee6;
  display: flex;
  flex: none;
  justify-content: center;
  padding: 0.45rem;
}
.show-art.has-photo { background: #f4eee6; }
.show-art img {
  display: block;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.show-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.95rem 1rem 1.1rem;
}
.show-card .show-venue {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}
.show-card h3 {
  color: var(--char);
  font-size: 1.35rem;
  margin: 0 0 0.3rem;
}
.show-by, .show-when, .show-next {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 0.35rem;
}
.show-when { color: var(--ink); font-weight: 600; }
.show-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.75rem;
}
.show-actions .btn { margin: 0; }
.show-more {
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.7rem; }
.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  padding: 0.4rem 0.8rem;
}
.pill.is-on { background: var(--red); border-color: var(--red); color: #fff; }

#cal-q {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  font: inherit;
  max-width: 22rem;
  padding: 0.65rem 0.8rem;
  width: 100%;
}

.cal-layout {
  display: block;
  margin-top: 1rem;
}

.cal-range {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: space-between;
  margin: 0.2rem 0 0.8rem;
}
.cal-range button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
#cal-window {
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.cal-month {
  background: var(--cream);
  border-bottom: 2px solid var(--red);
  color: var(--char);
  font-size: 1.05rem;
  margin: 1.3rem 0 0.7rem;
  padding: 0.2rem 0 0.35rem;
  scroll-margin-top: 5.5rem;
}
.cal-weeks { display: grid; gap: 0.75rem; }
.cal-cell {
  background: #fff;
  border: 1px solid var(--line);
  min-width: 0;
  padding: 0.7rem 0.75rem 0.85rem;
  scroll-margin-top: 5.5rem;
}
.cal-cell.is-empty { background: #faf6f0; }
.cal-cell.is-today { box-shadow: inset 0 0 0 2px var(--gold); }
.cal-cell-date {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.55rem;
}
.cal-cell-dow { color: var(--muted); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }
.cal-cell-num { font-family: "Playfair Display", Georgia, serif; font-size: 1.45rem; line-height: 1; }
.cal-cell-mon { color: var(--muted); font-size: 0.78rem; }
.cal-cell-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.cal-none {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}
.cal-tile {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  border-left: 4px solid var(--red);
  box-sizing: border-box;
  cursor: pointer;
  display: grid;
  flex: 1 1 100%;
  gap: 0.5rem 0.7rem;
  grid-template-columns: 1fr;
  max-width: 100%;
  min-width: 0;
  padding: 0.65rem 0.75rem;
}
.cal-tile.has-art { grid-template-columns: 4.5rem 1fr; }
.cal-tile.venue-skinner { border-left-color: #4a6d80; }
.cal-tile.venue-quigs { border-left-color: var(--gold); }
.cal-tile.venue-gallery { border-left-color: #6b5478; }
.cal-tile:hover,
.cal-tile:focus-within {
  box-shadow: 0 4px 14px rgba(28, 28, 28, 0.1);
}
.cal-tile .cal-body { min-width: 0; }
.cal-tile h4 {
  font-size: 0.95rem;
  line-height: 1.25;
  margin: 0 0 0.15rem;
}
.cal-tile .cal-when time {
  font-size: 0.8rem;
}
.cal-tile .cal-actions { margin-top: 0.25rem; }
.cal-tile .cal-actions .btn { font-size: 0.72rem; padding: 0.28rem 0.55rem; }
.cal-thumb {
  align-items: center;
  background: #f4eee6;
  display: flex;
  height: 4.5rem;
  justify-content: center;
  max-height: 4.5rem;
  padding: 0.15rem;
  width: 4.5rem;
}
.cal-tile .show-art {
  aspect-ratio: auto;
  flex: none;
  height: 4.5rem;
  max-height: 4.5rem;
  overflow: hidden;
  width: 4.5rem;
}
.cal-tile .show-art img,
.cal-tile .cal-thumb img {
  height: 100%;
  max-height: 4.5rem;
  max-width: 4.5rem;
  object-fit: contain;
  width: auto;
}
@media (min-width: 700px) {
  .cal-tile {
    flex: 1 1 18rem;
    max-width: 24rem;
    min-width: 16.5rem;
  }
}
@media (min-width: 1100px) {
  .cal-cell {
    align-items: start;
    display: grid;
    gap: 0.75rem 1.1rem;
    grid-template-columns: 7.25rem minmax(0, 1fr);
    padding: 0.85rem 1rem;
  }
  .cal-cell-date {
    flex-direction: column;
    gap: 0.1rem;
    margin: 0;
    padding-top: 0.15rem;
  }
  .cal-cell-num { font-size: 1.45rem; }
  .cal-tile {
    flex: 1 1 20rem;
    max-width: 26rem;
    min-width: 18rem;
  }
}
.cal-thumb img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.hub-art {
  align-items: center;
  background: #f4eee6;
  display: flex;
  justify-content: center;
  margin: 0 0 0.9rem;
  max-height: min(70vh, 32rem);
  padding: 0.5rem;
}
.hub-art img {
  display: block;
  height: auto;
  max-height: min(70vh, 32rem);
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.cal-when time {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.cal-time {
  color: var(--muted);
  display: block;
  font-size: 0.8rem;
}
.cal-venue, .cal-presenter {
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
}
.cal-body h4 {
  font-size: 1.15rem;
  margin: 0 0 0.2rem;
}
.cal-tile h4 {
  display: -webkit-box;
  font-size: 0.92rem;
  line-height: 1.25;
  margin: 0 0 0.15rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.cal-summary {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0.35rem 0 0.45rem;
}
.hub-summary {
  font-size: 1.02rem;
  line-height: 1.5;
  margin: 0 0 0.85rem;
}
.cal-tile .cal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.3rem 0 0;
}

.glance {
  background: var(--red);
  color: #fff;
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  padding: 1.1rem 1.2rem 1.3rem;
  width: 100%;
}
@media (min-width: 700px) {
  .glance { max-width: 34rem; }
}
.glance-nav {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}
.glance-nav h3 {
  color: var(--gold);
  flex: 1;
  font-size: 1.15rem;
  margin: 0;
  text-align: center;
}
.glance-shift {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.3rem;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  line-height: 1;
  min-height: 2.2rem;
  min-width: 2.2rem;
}
.glance-shift:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.22);
}
.glance-shift:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}
.glance-grid {
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
}
.glance-grid span { font-size: 0.85rem; }
.glance-grid button {
  background: transparent;
  border: 0;
  border-radius: 0.45rem;
  color: inherit;
  cursor: pointer;
  font: inherit;
  min-height: 2.6rem;
  width: 100%;
}
.glance-grid button.has { background: #fff; color: var(--red); font-weight: 700; }
.glance-grid .is-today { box-shadow: inset 0 0 0 2px var(--gold); }
.glance-grid .dow { font-size: 0.68rem; letter-spacing: 0.02em; opacity: 0.75; }
.empty-note {
  color: var(--muted);
  margin: 1rem 0 0;
}

.tour-view { border: 6px solid var(--gold); min-height: 16rem; overflow: hidden; position: relative; }
.tour-photo {
  display: block;
  height: min(70vh, 32rem);
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.photo-credit {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0.6rem 0 0;
}
.circle-art {
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  max-width: 12rem;
  overflow: hidden;
  width: 100%;
}
.circle-art img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.tour-caption { background: rgba(28,28,28,0.82); bottom: 0; color: #fff; left: 0; padding: 1rem; position: absolute; right: 0; }
.tour-caption h3 { color: var(--gold); margin: 0 0 0.3rem; }
.tour-nav { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.8rem; }
.tour-btn {
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
  padding: 0.5rem 0.8rem;
}
.tour-btn.is-on { background: var(--red); border-color: var(--red); color: #fff; }

.circles {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 700px) {
  .circles { grid-template-columns: repeat(2, 1fr); }
}
.circle-jump {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.circle-jump span:last-child {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.6rem;
  text-transform: uppercase;
}

.spec-photo {
  display: block;
  height: 10rem;
  margin: -1.1rem -1.1rem 0.9rem;
  object-fit: cover;
  width: calc(100% + 2.2rem);
}

.spec-grid, .tier-grid, .support-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin-top: 1.2rem;
}
.spec-grid article, .tier-grid article, .support-grid article, .facts {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 1.1rem;
}
.tier-grid .featured { outline: 2px solid var(--gold); }
.fund-feature {
  background: #fff;
  border: 1px solid var(--line);
  margin-top: 1.2rem;
  outline: 2px solid var(--gold);
  padding: 1.25rem 1.3rem 1.4rem;
}
.fund-feature h3 {
  color: var(--char);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 0.7rem;
}
.fund-feature .kicker.gold { color: #9a7b1a; }
.fund-gifts {
  display: grid;
  gap: 0.35rem 1rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.fund-gifts li { font-size: 0.92rem; }
.fund-gifts strong { color: var(--red); }
.fund-note { color: var(--muted); font-size: 0.9rem; }
.price { font-family: "Playfair Display", Georgia, serif; font-size: 2rem; color: var(--red); margin: 0; }
.price span { font-family: Inter, sans-serif; font-size: 0.9rem; }

.rental-policy {
  margin: 1.6rem 0 0.4rem;
  max-width: 46rem;
}
.rental-policy h3 {
  color: var(--char);
  font-size: 1.25rem;
  margin: 1.2rem 0 0.45rem;
}
.rental-policy h3:first-child { margin-top: 0; }
.rate-list {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.15rem;
}
.rate-list li { margin: 0.25rem 0; }
.rate-note { color: var(--muted); font-size: 0.88rem; }
.rental-callout {
  font-weight: 700;
  margin: 0.7rem 0;
}
.inquiry {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
  max-width: 36rem;
}
.inquiry label { display: grid; font-size: 0.88rem; font-weight: 600; gap: 0.3rem; }
.inquiry input, .inquiry select, .inquiry textarea {
  border: 1px solid var(--line);
  font: inherit;
  padding: 0.55rem 0.7rem;
}

.quigs-band { background: var(--char); color: var(--cream); }
.quigs-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) {
  .quigs-grid { grid-template-columns: 1fr 1fr; }
}
.room-art.tall {
  display: block;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  width: 100%;
}
.quigs-band h2 { color: var(--gold); }
.quigs-band p { color: rgba(253,251,247,0.88); }

.quigs-band .hero-actions {
  justify-content: flex-start;
  margin-top: 1rem;
}

.people-wrap {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 700px) {
  .people-wrap { grid-template-columns: 1fr 1fr; }
}
.people {
  list-style: none;
  margin: 0.4rem 0 0.8rem;
  padding: 0;
}
.people li {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  justify-content: space-between;
  padding: 0.35rem 0;
}
.people li strong { font-weight: 600; }
.history-lead {
  align-items: start;
  display: grid;
  gap: 1.5rem 2rem;
  margin-top: 0.5rem;
}
@media (min-width: 800px) {
  .history-lead { grid-template-columns: 1.35fr 0.65fr; }
}
.history-copy h2 { margin-top: 0; }
.history-copy p { margin: 0 0 0.85rem; }
.history-circle { margin: 0; text-align: center; }
.history-circle img {
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.history-photos {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
}
@media (max-width: 800px) {
  .history-photos { grid-template-columns: 1fr; }
}
.history-photos figure { margin: 0; }
.history-photos img {
  background: #111;
  display: block;
  height: 16rem;
  object-fit: cover;
  width: 100%;
}
.history-photos figcaption {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.45rem;
}
.facts div {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
}
.facts dt { color: var(--muted); }
.facts dd { margin: 0; font-weight: 600; }

.site-foot { background: var(--char); color: #ddd; }
.site-foot h3 { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase; }
.site-foot a { color: #fff; }
.site-foot p { margin: 0.35rem 0 0; }
.foot-top {
  display: grid;
  gap: 1.25rem 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.foot-travel {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  margin-top: 1.5rem;
  padding-top: 1.15rem;
}
.foot-travel p { margin: 0 0 0.7rem; }
.foot-travel p:last-child { margin-bottom: 0; }
.foot-travel span {
  color: var(--gold);
  display: inline;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-right: 0.45rem;
  text-transform: uppercase;
}
.foot-quiet { color: rgba(221, 221, 221, 0.72); font-size: 0.82rem; }

.mobile-dock {
  background: var(--char);
  bottom: 0;
  display: flex;
  justify-content: space-around;
  left: 0;
  padding: 0.45rem 0.3rem calc(0.45rem + env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  z-index: 50;
}
.mobile-dock a {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.3rem;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-dock .dock-tickets {
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  padding: 0.45rem 0.7rem;
}

.hub {
  align-items: center;
  background: rgba(0,0,0,0.55);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  z-index: 60;
}
.hub[hidden] { display: none; }
.hub-panel {
  background: var(--cream);
  max-height: 92vh;
  max-width: min(42rem, 96vw);
  overflow: auto;
  padding: 1.4rem;
  width: 100%;
}
.hub-close {
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  float: right;
  font: inherit;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
}
.hub-dates {
  margin: 0.8rem 0;
}
.hub-dates strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.hub-dates ul {
  margin: 0;
  padding-left: 1.1rem;
}
.hub-dates li { margin: 0.2rem 0; }
.hub-dates li.is-current { font-weight: 700; }
.hub-dates span { color: var(--muted); font-weight: 500; }
body.pp-hub-open { overflow: hidden; }

.sr-only {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (max-width: 1020px) {
  .nav-toggle { display: inline-flex; }
  .mast-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .mast .find-show { display: none; }
  .site-nav {
    background: #141414;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    grid-column: 1 / -1;
    padding: 0.4rem 0 0.7rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    min-height: 2.75rem;
    padding: 0.75rem 0.35rem;
  }
  .brand-kicker { display: none; }
  .ribbon {
    grid-template-columns: 1fr;
    padding: 0.85rem 1rem 0.95rem;
  }
  .ribbon-meta { grid-column: 1; }
  .ribbon .btn { justify-self: start; }
  .circles { grid-template-columns: 1fr 1fr; }
  .hero {
    min-height: min(72vh, 34rem);
  }
  .hero-copy {
    padding: 4.75rem 1rem 4.25rem;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .btn { justify-content: center; }
  .wrap { padding: 2.25rem 1rem; }
  .access-note { padding: 0.55rem 1rem 0.75rem; text-align: left; }
  .foot-top { grid-template-columns: 1fr; gap: 1.1rem; }
  .site-foot .wrap { padding-bottom: 2.25rem; padding-top: 2rem; }
  .foot-travel { margin-top: 1.2rem; padding-top: 1rem; }
  .glance {
    padding: 0.95rem 0.65rem 1.15rem;
  }
  .glance-grid button,
  .glance-shift {
    min-height: 2.75rem;
  }
  .pill {
    min-height: 2.5rem;
    padding: 0.5rem 0.85rem;
  }
  #cal-q,
  .inquiry input,
  .inquiry select,
  .inquiry textarea {
    font-size: 16px;
    max-width: none;
  }
  .tour-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }
  .tour-btn {
    flex: none;
    min-height: 2.6rem;
    white-space: nowrap;
  }
  .show-grid {
    grid-template-columns: 1fr;
  }
  .spec-grid,
  .tier-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  .history-photos img { height: 12rem; }
  .hub {
    align-items: flex-end;
    padding: 0;
  }
  .hub-panel {
    border-radius: 1rem 1rem 0 0;
    max-height: min(92vh, 100%);
    max-width: 100%;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  }
  .cal-cell { padding: 0.7rem 0.65rem 0.9rem; }
  .cal-tile { padding: 0.55rem; }
  .btn {
    min-height: 2.6rem;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .circles { grid-template-columns: 1fr 1fr; }
  .mobile-dock a { font-size: 0.62rem; padding: 0.45rem 0.2rem; }
  .mobile-dock .dock-tickets { padding: 0.5rem 0.55rem; }
  .hero { min-height: min(68vh, 28rem); }
  .brand-mark { height: 2.55rem; }
}

@media (min-width: 1021px) {
  .mobile-dock { display: none; }
  .pp { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { transition: none; }
}
