/* ==========================================================================
   Peetry's Card Show — shared stylesheet
   Replace the placeholder values in :root to rebrand quickly.
   ========================================================================== */

:root {
  --ink: #0a0a0b;
  --ink-2: #141417;
  --ink-3: #1d1d21;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --paper: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-2: rgba(255, 255, 255, 0.42);
  --accent: #e8b84b;
  --accent-deep: #b8892a;
  --accent-ink: #1a1305;
  --max: 1200px;
  --pad: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --font-display: "Bebas Neue", "Oswald", "Haettenschweiler", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}

h1 { font-size: clamp(2.75rem, 9vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5.5vw, 3.5rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  max-width: 60ch;
}

.placeholder {
  color: var(--accent);
  background: rgba(232, 184, 75, 0.10);
  border-bottom: 1px dashed rgba(232, 184, 75, 0.5);
  padding: 0 3px;
  font-style: normal;
  overflow-wrap: anywhere;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #f2c95f; }

.btn-ghost { border-color: var(--line-strong); color: var(--paper); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* No booking link set for this show yet. Greyed out and not clickable, so it
   reads as "not open yet" rather than a button that does nothing. */
.btn.is-soon,
.btn-primary.is-soon {
  background: var(--ink-3);
  border-color: var(--line-strong);
  color: var(--muted-2);
  cursor: default;
  pointer-events: none;
}
.btn.is-soon:hover { transform: none; background: var(--ink-3); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Circular badge logo. It reads as a mark at small sizes, so the wordmark
   beside it carries the name. Drop a new PeetryMainLogo.png in to swap it. */
.logo-badge {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-badge-lg { width: 66px; height: 66px; }

.logo-text-lg { font-size: 1.55rem; }
.logo-text-lg small { font-size: 0.66rem; margin-top: 5px; }

@media (max-width: 520px) {
  .logo-badge { width: 42px; height: 42px; }
  .logo-badge-lg { width: 56px; height: 56px; }
  .logo-text { font-size: 1.1rem; }
  .logo-text-lg { font-size: 1.3rem; }
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--accent), var(--accent-deep));
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  transform: rotate(-4deg);
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.10);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--muted-2);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover { color: var(--paper); }
.nav a[aria-current="page"] { color: var(--paper); border-bottom-color: var(--accent); }

.nav a.nav-cta {
  margin-left: 6px;
  padding: 11px 20px;
  color: var(--accent-ink);
  border-bottom: 1px solid transparent;
}
.nav a.nav-cta:hover { color: var(--accent-ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--paper);
  padding: 9px 12px;
  font-size: 0.9rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 14px; justify-content: center; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 12vw, 130px) 0 clamp(50px, 8vw, 90px);
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(232, 184, 75, 0.20), transparent 62%),
    radial-gradient(90% 70% at 8% 92%, rgba(232, 184, 75, 0.08), transparent 60%),
    var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr);
  gap: clamp(30px, 4vw, 52px);
  align-items: center;
}

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

.hero h1 span { display: block; }
.hero h1 .hl { color: var(--accent); }

/* Single-line headline.
   The hero text column is a query container, so the headline sizes itself to the
   column width and always stays on one line — at any viewport, in any font. */
.hero-copy { container-type: inline-size; }

.h1-oneline {
  white-space: nowrap;
  font-size: clamp(1.9rem, 4.8vw, 3.9rem); /* fallback if container queries are unsupported */
  font-size: min(9.2cqw, 4.6rem);
}

.h1-oneline .hl { display: inline; }

/* Hook — the opening statement under the headline */
.hook {
  margin: 24px 0 0;
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

/* Next-show callout in the hero */
.hero-next {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(90deg, rgba(232, 184, 75, 0.09), transparent 70%);
  max-width: 520px;
}

.hero-next .eyebrow { margin-bottom: 8px; }

.hero-next-date {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Separators appear only when the value is actually there */
.hero-next-venue [data-next="venue"]:not(:empty)::before,
.hero-next-venue [data-next="city"]:not(:empty)::before { content: " · "; color: var(--muted-2); }

.hero-next-venue {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin-bottom: 3px;
}

/* Card fan — the next four shows, rightmost card is the one coming up next. */
.card-fan {
  position: relative;
  height: clamp(280px, 40vw, 420px);
}

.card-fan .card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(140px, 19vw, 200px);
  aspect-ratio: 5 / 7;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  transform-origin: bottom center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-fan .card-logo {
  width: 78%;
  max-height: 58%;
  object-fit: contain;
}

.card-fan .card-date {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #16161a;
  text-align: center;
}

/* Empty cards (fewer than four shows left) stay out of the way. */
.card-fan .card.is-empty { display: none; }

.card-fan .c1 { transform: translate(-50%, -50%) rotate(-16deg) translateX(-92px); }
.card-fan .c2 { transform: translate(-50%, -50%) rotate(-6deg) translateX(-32px); }
.card-fan .c3 { transform: translate(-50%, -50%) rotate(3deg) translateX(30px); }
.card-fan .c4 { transform: translate(-50%, -52%) rotate(13deg) translateX(92px); }

/* The next show — rightmost, on top, ringed in the accent colour. */
.card-fan .card.is-next {
  border: 3px solid var(--accent);
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.62),
    0 0 0 6px rgba(232, 184, 75, 0.18);
  transform: translate(-50%, -56%) rotate(13deg) translateX(96px) scale(1.06);
}

.card-fan .card.is-next .card-date { color: var(--accent-deep); }

.card-fan .card-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 900px) { .card-fan { display: none; } }

/* ---------- Stats ---------- */

.stats {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-block: 0;
}

.stat {
  padding: clamp(26px, 4vw, 42px) 18px;
  text-align: center;
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--line);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1;
  color: var(--accent);
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Three-stat variant */
.stats .wrap.stats-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 720px) {
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::after, .stat:nth-child(4)::after {
    content: "";
    position: absolute;
    top: 0; left: 12%; right: 12%;
    height: 1px;
    background: var(--line);
  }
}

@media (max-width: 560px) {
  .stats .wrap, .stats .wrap.stats-3 { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat + .stat {
    border-top: 1px solid var(--line);
  }
  .stat::after { display: none !important; }
}

/* ---------- Sections ---------- */

.section { padding: clamp(56px, 9vw, 110px) 0; }
.section-alt { background: var(--ink-2); border-block: 1px solid var(--line); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-head p { margin: 14px 0 0; }

/* ---------- Countdown ---------- */

.next-show > * { min-width: 0; }

.next-show {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(232, 184, 75, 0.13), transparent 60%),
    var(--ink-3);
  padding: clamp(26px, 4.5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

@media (max-width: 860px) {
  .next-show { grid-template-columns: 1fr; }
}

.countdown {
  display: flex;
  gap: 12px;
}

.cd-unit {
  min-width: 84px;
  padding: 16px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
}

.cd-unit b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-unit span {
  display: block;
  margin-top: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

@media (max-width: 520px) {
  .countdown { flex-wrap: wrap; }
  .cd-unit { flex: 1 1 calc(50% - 6px); min-width: 0; }
}

/* ---------- Show variants (property tiles) ---------- */

.prop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1000px) { .prop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px)  { .prop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px)  { .prop-grid { grid-template-columns: 1fr; } }

.prop {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(180deg, var(--ink-3) 0%, #101012 55%, #000 100%);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.prop:hover {
  border-color: rgba(232, 184, 75, 0.65);
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.5);
}

/* Logo slot — drop an <img> in here when you have real show artwork */
.prop-logo {
  flex: 1;
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 22px 18px 10px;
  text-align: center;
}

.prop-logo img { max-height: 100%; width: auto; object-fit: contain; }

.prop-logo .mark {
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.05;
  color: var(--muted-2);
  padding: 10px;
}

.prop:hover .prop-logo .mark { border-color: rgba(232, 184, 75, 0.5); color: var(--accent); }

.prop-name {
  padding: 14px 18px 20px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--paper);
}

.prop-name small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-top: 6px;
  text-transform: none;
}

/* ---------- Locations ---------- */

.loc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.loc-grid-wide { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1000px) { .loc-grid, .loc-grid-wide { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 680px)  { .loc-grid, .loc-grid-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 440px)  { .loc-grid, .loc-grid-wide { grid-template-columns: 1fr; } }

.loc {
  display: block;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.loc:hover { border-color: rgba(232, 184, 75, 0.55); transform: translateY(-3px); }

.loc h3 { font-size: 1.25rem; color: var(--accent); }

.loc p {
  margin: 12px 0 0;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.5;
}

.loc span {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}

/* ---------- Free admission ---------- */

.free-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.free-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: clamp(22px, 3.5vw, 34px);
  border: 1px solid rgba(232, 184, 75, 0.4);
  border-radius: var(--radius);
  background:
    radial-gradient(90% 140% at 0% 50%, rgba(232, 184, 75, 0.14), transparent 65%),
    var(--ink-3);
}

.free-banner .free-tag { font-size: 0.8rem; padding: 10px 20px; }

.free-banner p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ---------- Sponsors ---------- */

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1000px) { .sponsor-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .sponsor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.sponsor {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-3);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

a.sponsor:hover { border-color: rgba(232, 184, 75, 0.6); transform: translateY(-3px); }

.sponsor img {
  max-width: 100%;
  max-height: 74px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6);
  opacity: 0.85;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

a.sponsor:hover img { filter: none; opacity: 1; }

.sponsor .mark {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 3 / 2;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--muted-2);
}

.sponsor-cta {
  margin-top: clamp(26px, 4vw, 40px);
  text-align: center;
}

/* ---------- Event cards ---------- */

.event-list { display: grid; gap: 14px; }

.event {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  padding: 22px clamp(20px, 3vw, 30px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.event:hover { border-color: var(--line-strong); background: var(--ink-3); }

/* The soonest upcoming show, tagged by site.js */
.event.is-next {
  border-color: rgba(232, 184, 75, 0.45);
  background:
    radial-gradient(80% 160% at 0% 50%, rgba(232, 184, 75, 0.09), transparent 60%),
    var(--ink-2);
}

/* Date list on the shows page */
.date-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.date-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

.date-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.event-date {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 18px;
}

.event-date b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
}

.event-date span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.event h3 { margin-bottom: 6px; }

.event .where {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }

.tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}

.tag.hot { border-color: rgba(232, 184, 75, 0.55); color: var(--accent); }

@media (max-width: 820px) {
  .event { grid-template-columns: 1fr; }
  .event-date {
    display: flex;
    align-items: baseline;
    gap: 12px;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 14px;
  }
  .event-date span { margin-top: 0; }
  .event .btn { justify-content: center; }
}

/* ---------- Info / pricing cards ---------- */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.card-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  padding: clamp(24px, 3.5vw, 34px);
}

.card-panel.featured {
  border-color: rgba(232, 184, 75, 0.55);
  background:
    radial-gradient(110% 100% at 50% 0%, rgba(232, 184, 75, 0.12), transparent 60%),
    var(--ink-2);
}

.price {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--accent);
  margin: 12px 0 4px;
}

.card-panel ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.card-panel li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: var(--muted);
}

.card-panel li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* ---------- Table ---------- */

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }

table { width: 100%; border-collapse: collapse; min-width: 560px; }

th, td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  background: var(--ink-3);
}

td { color: var(--muted); }
td:first-child { color: var(--paper); font-weight: 600; }
tbody tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  padding: 18px 22px;
  margin-bottom: 10px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { margin: 14px 0 0; color: var(--muted); font-size: 0.93rem; }

/* ---------- Form ---------- */

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

.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field.full > .btn { align-self: flex-start; }

.field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.field input,
.field select,
.field textarea {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--paper);
  padding: 13px 15px;
  font: inherit;
  font-size: 0.95rem;
  width: 100%;
}

.field textarea { min-height: 140px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.16);
}

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

.form-note { font-size: 0.8rem; color: var(--muted-2); margin-top: 16px; }

/* ---------- CTA band ---------- */

.cta-band {
  border: 1px solid rgba(232, 184, 75, 0.35);
  border-radius: var(--radius);
  background:
    radial-gradient(90% 140% at 20% 0%, rgba(232, 184, 75, 0.16), transparent 60%),
    var(--ink-3);
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(44px, 6vw, 72px) 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.3fr);
  gap: clamp(26px, 4vw, 48px);
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 16px;
}

.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }

.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input {
  flex: 1;
  min-width: 0;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--paper);
  padding: 12px 18px;
  font: inherit;
  font-size: 0.9rem;
}
.newsletter input:focus { outline: none; border-color: var(--accent); }
.newsletter button { padding: 12px 20px; }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.socials a svg { width: 17px; height: 17px; display: block; flex-shrink: 0; }

.socials a:hover {
  border-color: var(--accent);
  color: var(--accent-ink);
  background: var(--accent);
}

.footer-bottom {
  margin-top: clamp(32px, 5vw, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* ---------- Page header (inner pages) ---------- */

.page-head {
  padding: clamp(52px, 8vw, 96px) 0 clamp(34px, 5vw, 56px);
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(232, 184, 75, 0.15), transparent 62%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Per-show signup ---------- */

.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;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  border: 1px solid rgba(232, 184, 75, 0.35);
  border-radius: var(--radius);
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(232, 184, 75, 0.14), transparent 62%),
    var(--ink-3);
  padding: clamp(28px, 5vw, 56px);
}

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

.signup-copy .lede { max-width: 46ch; }

.signup-form { display: grid; gap: 12px; }

.signup-form input {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--paper);
  padding: 15px 16px;
  font: inherit;
  font-size: 0.98rem;
  width: 100%;
}

.signup-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.18);
}

.signup-form .btn { justify-content: center; margin-top: 4px; }
.signup-form .form-note { margin: 6px 0 0; }

/* ---------- Photo / reel grid ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-grid .shot {
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--ink-3);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.gallery-grid .shot span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Guest cards ---------- */

.guest-card { display: flex; flex-direction: column; }

.guest-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  background: var(--ink);
}

/* ---------- Vendor show list (reserveatable.html) ---------- */

.vend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.vend-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 30px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.vend-card:hover { border-color: rgba(232, 184, 75, 0.5); transform: translateY(-3px); }

.vend-logo { display: block; margin-bottom: 12px; }
.vend-logo img { width: 92px; height: 92px; object-fit: contain; }

.vend-card h3 { font-size: 1.3rem; }

.vend-card p {
  margin: 6px 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.vend-card .vend-btn { margin-top: 18px; }

/* ---------- Discord band ---------- */

.discord-band {
  --blurple: #5865f2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 44px);
  padding: clamp(26px, 4.5vw, 46px) clamp(24px, 4vw, 52px);
  border: 1px solid rgba(88, 101, 242, 0.45);
  border-radius: var(--radius);
  background:
    radial-gradient(90% 160% at 0% 50%, rgba(88, 101, 242, 0.26), transparent 62%),
    var(--ink-3);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-band:hover {
  border-color: var(--blurple);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(88, 101, 242, 0.22);
}

.discord-mark {
  display: grid;
  place-items: center;
  width: clamp(58px, 8vw, 76px);
  height: clamp(58px, 8vw, 76px);
  border-radius: 18px;
  background: var(--blurple);
  color: #fff;
  flex-shrink: 0;
}

.discord-mark svg { width: 55%; height: 55%; max-width: 42px; max-height: 42px; }

.discord-copy { display: block; }
.discord-copy .eyebrow { display: block; margin-bottom: 8px; color: #9aa4ff; }

.discord-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
}

.discord-sub {
  display: block;
  margin-top: 10px;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: var(--muted);
}

.discord-cta {
  background: var(--blurple);
  color: #fff;
  white-space: nowrap;
}

.discord-band:hover .discord-cta { background: #6b76f5; }

@media (max-width: 780px) {
  .discord-band { grid-template-columns: auto minmax(0, 1fr); text-align: left; }
  .discord-cta { grid-column: 1 / -1; justify-content: center; margin-top: 4px; }
}
