/* ============================================================
   WAND Presents — visual system
   ============================================================ */
:root {
  /* Palette — defaults; overridable via Tweaks */
  --navy-900: #08112C;
  --navy-800: #0B1635;
  --navy-700: #101E45;
  --navy-600: #18295A;
  --navy-500: #1F3370;
  --cream-100: #F5EEDC;
  --cream-200: #EFE6D0;
  --cream-300: #E6DAB8;
  --gold-400: #E0B656;
  --gold-500: #D4A642;
  --gold-600: #B98C2C;
  --ink-900: #15203F;
  --ink-700: #2C3559;
  --ink-500: #5B6388;
  --warm-100: #EAE3D4;
  --warm-200: #C8C2B0;
  --warm-300: #9C9684;

  /* Semantic */
  --bg: var(--navy-800);
  --bg-alt: var(--navy-700);
  --bg-cream: var(--cream-100);
  --fg: var(--cream-100);
  --fg-muted: #B9C0D6;
  --fg-ink: var(--ink-900);
  --fg-ink-muted: var(--ink-700);
  --accent: var(--gold-500);
  --accent-bright: var(--gold-400);

  /* Type */
  --f-display: 'Playfair Display', 'Georgia', serif;
  --f-script: 'Pinyon Script', 'Allura', cursive;
  --f-logo: 'Cinzel', 'Playfair Display', serif;
  --f-sans: 'Manrope', system-ui, sans-serif;

  /* Spacing */
  --container: 1240px;
  --container-narrow: 1120px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius-card: 10px;
  --radius-btn: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 17.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Reusable atoms ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.eyebrow {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-ink {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.h-display {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}
.h-script {
  font-family: var(--f-script);
  color: var(--accent);
  font-weight: 400;
  line-height: 0.9;
  margin: 0;
}

/* ---------- Button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--f-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy-900);
  box-shadow: 0 6px 22px -8px rgba(212,166,66,0.55);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(245,238,220,0.25);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-gold {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--navy-900);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.btn-link:hover { color: var(--accent-bright); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--f-logo);
  color: var(--fg);
  letter-spacing: 0.04em;
  user-select: none;
}
.logo-mark {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-family: var(--f-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--warm-200);
  margin-top: 4px;
  text-align: center;
}
.logo-img {
  display: block;
  width: auto;
  user-select: none;
}
.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 560px;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  /* left-side darkening gradient over image */
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,17,44,0.92) 0%, rgba(8,17,44,0.75) 35%, rgba(8,17,44,0.15) 70%, rgba(8,17,44,0) 100%),
    linear-gradient(180deg, rgba(8,17,44,0) 55%, rgba(8,17,44,0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 110px 0 130px;
}
.hero-eyebrow { margin-bottom: 18px; }
.hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.0;
  color: var(--fg);
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.005em;
  margin: 0;
}
.hero-title .script {
  display: block;
  font-family: var(--f-script);
  color: var(--accent);
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.95;
  margin: 4px 0 6px;
  font-weight: 400;
}
.hero-sub {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--fg);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.15;
  margin: 6px 0 0;
}
.hero-copy {
  margin-top: 28px;
  max-width: 480px;
  font-size: 18px;
  color: var(--fg);
  line-height: 1.6;
}
.hero-copy .place { color: var(--accent); font-weight: 600; display: block; margin-top: 2px; }
.hero-cta { margin-top: 36px; }

/* ---------- Value strip ---------- */
.values {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding: 56px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}
.value {
  padding: 0 14px;
  border-right: 1px solid rgba(212,166,66,0.18);
}
.value:last-child { border-right: none; }
.value-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--accent);
}
.value-title {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.35;
}
.value-desc {
  font-size: 15.5px;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ---------- Who we are ---------- */
.who {
  background: var(--bg-cream);
  color: var(--fg-ink);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.who h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  margin: 14px 0 22px;
  color: var(--ink-900);
}
.who p {
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.75;
  max-width: 470px;
}
.who-sig {
  font-family: var(--f-script);
  color: var(--gold-600);
  font-size: 34px;
  line-height: 1;
  margin-top: 36px;
}
.polaroids {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.who-feature {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 440px;
  background: var(--navy-700);
  box-shadow: 0 26px 60px -22px rgba(20,30,60,0.4), 0 6px 16px -8px rgba(20,30,60,0.28);
}
.polaroid {
  background: #fff;
  padding: 10px 10px 14px;
  border-radius: 4px;
  box-shadow: 0 18px 40px -14px rgba(20,30,60,0.35), 0 4px 10px -4px rgba(20,30,60,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.polaroid:nth-child(1) { transform: rotate(-2.5deg) translateY(8px); }
.polaroid:nth-child(2) { transform: rotate(2.5deg); }
.polaroid:nth-child(3) { transform: rotate(2deg); }
.polaroid:nth-child(4) { transform: rotate(-3deg) translateY(-4px); }
.polaroid:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 26px 50px -16px rgba(20,30,60,0.45);
  z-index: 2;
}
.polaroid-img {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  background: var(--navy-700);
}
.sparkle {
  position: absolute;
  width: 28px;
  height: 28px;
  color: var(--gold-500);
  pointer-events: none;
}

/* ---------- Events ---------- */
.events {
  background: var(--bg);
  padding: 88px 0 96px;
}
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.events-header h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  margin: 12px 0 6px;
  color: var(--fg);
}
.events-header .sub {
  color: var(--fg-muted);
  font-size: 17px;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.event-card {
  background: var(--cream-100);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--fg-ink);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  cursor: pointer;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.55);
}
.event-poster {
  position: relative;
  padding: 14px 14px 0;
  background: var(--cream-100);
}
/* Squircle media frame — iOS-style continuous-corner superellipse, square 1:1 */
.event-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy-700);
  border-radius: 23%; /* fallback for no-mask browsers */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M200,0 C77.6,0 36.8,0 16.6,20.2 C0,37 0,77.6 0,200 C0,322.4 0,363.2 20.2,383.4 C37,400 77.6,400 200,400 C322.4,400 363.2,400 383.4,379.8 C400,363 400,322.4 400,200 C400,77.6 400,36.8 379.8,16.6 C363,0 322.4,0 200,0 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M200,0 C77.6,0 36.8,0 16.6,20.2 C0,37 0,77.6 0,200 C0,322.4 0,363.2 20.2,383.4 C37,400 77.6,400 200,400 C322.4,400 363.2,400 383.4,379.8 C400,363 400,322.4 400,200 C400,77.6 400,36.8 379.8,16.6 C363,0 322.4,0 200,0 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.event-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--accent);
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.5);
}
.event-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.skill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}
/* Body top row: skill chip (left) + availability pill (right) — kept OFF the face */
.event-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  min-height: 20px;
}
.avail-pill {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(20,30,60,0.08);
  color: var(--ink-700);
}
.avail-pill.few-left { background: #E66B4A; color: #fff; }
.avail-pill.selling-fast { background: #F2C14E; color: var(--navy-900); }
.event-datetime {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 16px;
}
/* Calendar mini-block: colored month bar over a big day number */
.cal-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(20,30,60,0.12);
  background: #fff;
  box-shadow: 0 6px 16px -10px rgba(20,30,60,0.4);
  flex: 0 0 auto;
}
.cal-month {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-500);
  text-align: center;
  padding: 4px 8px 3px;
  line-height: 1;
}
.cal-day {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink-900);
  text-align: center;
  line-height: 1;
  padding: 6px 8px 7px;
}
.cal-when {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.cal-dow {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.05;
}
.cal-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink-700);
  white-space: nowrap;
}
.cal-time svg { color: var(--gold-600); flex: 0 0 auto; }
.event-body {
  padding: 22px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-title {
  font-family: var(--f-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink-900);
  margin: 0 0 10px;
}
.event-venue {
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.45;
  margin: 0 0 18px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.event-venue svg { color: var(--gold-600); flex: 0 0 auto; margin-top: 2px; }
.event-cta {
  margin-top: auto;
  width: 100%;
  background: var(--accent);
  color: var(--navy-900);
  padding: 15px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: background .15s ease;
}
.event-cta:hover { background: var(--accent-bright); }
.events-footer {
  text-align: center;
  color: var(--fg-muted);
  font-size: 14px;
  margin-top: 30px;
}

/* ---------- Venues band ---------- */
.venues-band {
  position: relative;
  background: var(--navy-700);
  isolation: isolate;
  overflow: hidden;
}
.venues-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.venues-band-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,22,53,0.95) 0%, rgba(11,22,53,0.7) 45%, rgba(11,22,53,0.55) 100%);
}
.venues-band-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.venues-band h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--fg);
}
.venues-band p {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 440px;
  line-height: 1.7;
  margin: 0 0 28px;
}
.venue-marks {
  display: flex;
  gap: 56px;
  justify-content: center;
  align-items: center;
  color: var(--fg);
}
.venue-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
}
.venue-mark .ico { color: var(--fg); margin-bottom: 16px; }
.venue-mark .sub { display: block; font-family: var(--f-sans); font-size: 9px; font-weight: 600; letter-spacing: 0.4em; color: var(--warm-200); margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--bg-cream);
  color: var(--fg-ink);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 0.65fr repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testimonials-intro .eyebrow-ink { display: block; margin-bottom: 18px; }
.testimonials-intro .script {
  font-family: var(--f-script);
  color: var(--gold-500);
  font-size: 64px;
  line-height: 0.9;
}
.testimonial {
  background: #fff;
  border-radius: 6px;
  padding: 24px 24px 22px;
  box-shadow: 0 12px 28px -16px rgba(20,30,60,0.22);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-700);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars {
  color: var(--gold-500);
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-quote { font-style: italic; }
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: var(--fg);
  padding: 68px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 30px;
}
.footer-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 18px;
}
.footer p, .footer a, .footer li {
  color: var(--fg-muted);
  font-size: 15px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a:hover { color: var(--accent); }
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter input {
  background: transparent;
  border: 1px solid rgba(245,238,220,0.25);
  color: var(--fg);
  padding: 12px 14px;
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease;
}
.newsletter input:focus { border-color: var(--accent); }
.newsletter button { align-self: flex-start; }
.footer-center {
  text-align: center;
}
.footer-center .logo-wrap { margin: 0 auto 14px; }
.footer-tag {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 18px;
}
.socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,238,220,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.social:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
  color: var(--warm-300);
  font-size: 12px;
}

/* ---------- Page (non-home) ---------- */
.page {
  padding: 80px 0 96px;
  min-height: 60vh;
}
.page-hero {
  background: var(--navy-700);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 70px 0 64px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}
.page-hero .script {
  font-family: var(--f-script);
  color: var(--accent);
  font-size: clamp(56px, 7vw, 92px);
  display: block;
  margin-top: -6px;
}

/* ---------- Event Detail Modal ---------- */
.detail-modal {
  background: var(--cream-100);
  color: var(--fg-ink);
  border-radius: 14px;
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  position: relative;
  overflow: hidden;
  animation: pop .25s ease;
}
.detail-scroll {
  max-height: 92vh;
  overflow-y: auto;
}
.detail-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
}
.detail-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--navy-700);
  overflow: hidden;
}
.detail-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.detail-info {
  padding: 38px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detail-title {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.detail-tagline {
  font-size: 16px;
  color: var(--ink-700);
  font-style: italic;
  margin: 0 0 20px;
}
.detail-when {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin: 6px 0 26px;
}
.cal-block-lg { min-width: 76px; }
.cal-block-lg .cal-month { font-size: 14px; padding: 6px 10px 5px; }
.cal-block-lg .cal-day { font-size: 42px; padding: 8px 10px 10px; }
.detail-when .cal-when { gap: 7px; }
.detail-when .cal-dow { font-size: 22px; }
.detail-when .cal-time { font-size: 16px; }
.detail-venue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
}
.detail-venue svg { color: var(--gold-600); flex: 0 0 auto; }
.detail-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.detail-section {
  padding: 26px 40px;
  border-top: 1px solid rgba(20,30,60,0.1);
}
.detail-h {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 14px;
}
.detail-body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
  max-width: 720px;
}
.detail-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy-800);
}
.detail-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.detail-video-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px dashed rgba(20,30,60,0.2);
  background: linear-gradient(135deg, #16223f, #0d1730);
}
.play-badge {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5);
}
.detail-video-note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,238,220,0.6);
}
.detail-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.detail-review {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 26px -16px rgba(20,30,60,0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-review p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-700);
  font-style: italic;
  margin: 0;
}
.detail-review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-900);
}
.detail-tickets { background: rgba(20,30,60,0.03); }
.detail-checkout {
  padding: 30px 40px 36px;
  max-width: 620px;
  margin: 0 auto;
}
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  margin-bottom: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.detail-back:hover { color: var(--gold-600); }

@media (max-width: 720px) {
  .detail-hero { grid-template-columns: 1fr; }
  .detail-photo { aspect-ratio: 16 / 10; }
  .detail-info { padding: 26px 24px; }
  .detail-section { padding: 22px 24px; }
  .detail-reviews { grid-template-columns: 1fr; }
  .detail-checkout { padding: 24px; }
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,17,44,0.72);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
.modal {
  background: var(--cream-100);
  color: var(--fg-ink);
  border-radius: 12px;
  max-width: 880px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  position: relative;
  animation: pop .25s ease;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.modal-close:hover { background: rgba(0,0,0,0.12); }
.modal-poster { background: var(--navy-700); min-height: 380px; }
.modal-body { padding: 36px 36px 32px; }
.modal-body h3 {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  margin: 14px 0 10px;
  line-height: 1.1;
}
.modal-body .row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-700);
  margin: 6px 0;
}
.modal-body .row svg { color: var(--gold-600); flex: 0 0 auto; }
.modal-body p { color: var(--ink-700); line-height: 1.65; font-size: 14.5px; }
.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(20,30,60,0.12);
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 14px;
}
.tier-row .price { font-family: var(--f-display); font-weight: 600; color: var(--ink-900); font-size: 18px; }
.tier-row .availability { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.avail-good { color: #1F8A5B; }
.avail-fast { color: #C77A1E; }
.avail-few { color: #C84B26; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 28px 0 36px;
  padding: 18px 20px;
  background: var(--navy-700);
  border-radius: 8px;
  border: 1px solid rgba(212,166,66,0.16);
}
.filter-chip {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(245,238,220,0.18);
  color: var(--fg);
  transition: all .15s ease;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active {
  background: var(--accent);
  color: var(--navy-900);
  border-color: var(--accent);
}
.filter-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-200);
  margin-right: 8px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gallery-tile {
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-700);
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-tile.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-tile.wide { aspect-ratio: 16/9; }
.gallery-tile.s4 { grid-column: span 4; }
.gallery-tile.s6 { grid-column: span 6; }
.gallery-tile.s3 { grid-column: span 3; }
.gallery-tile.s8 { grid-column: span 8; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(245,238,220,0.12);
  padding: 18px 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--fg);
  padding: 6px 0;
}
.faq-q .plus {
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, margin .3s ease;
}
.faq-item.open .faq-a { max-height: 360px; margin-top: 10px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 40px 0;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding: 40px 0;
  border-top: 1px solid rgba(245,238,220,0.1);
  border-bottom: 1px solid rgba(245,238,220,0.1);
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 6px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  background: var(--navy-700);
  border: 1px solid rgba(245,238,220,0.16);
  color: var(--fg);
  padding: 12px 14px;
  border-radius: 5px;
  font: inherit;
  outline: none;
  transition: border-color .15s ease;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); }
.contact-info {
  background: var(--navy-700);
  padding: 28px;
  border-radius: 10px;
  border: 1px solid rgba(212,166,66,0.16);
}
.contact-info h3 { font-family: var(--f-display); font-size: 22px; margin: 0 0 18px; }
.contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245,238,220,0.08);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ico { color: var(--accent); flex: 0 0 auto; margin-top: 2px; }
.contact-row .lbl { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-200); margin-bottom: 2px; }
.contact-row .val { font-size: 14px; color: var(--fg); }

/* ---------- Venues page ---------- */
.venue-card {
  background: var(--navy-700);
  border: 1px solid rgba(212,166,66,0.18);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  margin-bottom: 24px;
}
.venue-card-body { padding: 30px 32px; }
.venue-card h3 { font-family: var(--f-display); font-size: 28px; margin: 6px 0 8px; }
.venue-card .meta { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.04em; }
.venue-card p { color: var(--fg-muted); line-height: 1.7; font-size: 14.5px; margin: 14px 0 20px; }
.venue-amenities {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 16px 0 24px;
}
.amenity {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(245,238,220,0.18);
  border-radius: 999px;
  color: var(--fg-muted);
}
.venue-map { min-height: 300px; position: relative; }

/* ---------- Tweakable: page scale, button & photo shape ---------- */
.app-shell { zoom: var(--app-zoom, 1); }

body[data-btn-shape="square"] .btn,
body[data-btn-shape="square"] .event-cta { border-radius: 2px; }
body[data-btn-shape="rounded"] .btn,
body[data-btn-shape="rounded"] .event-cta { border-radius: 8px; }
body[data-btn-shape="pill"] .btn,
body[data-btn-shape="pill"] .event-cta { border-radius: 999px; }

body[data-photo-shape="circle"] .event-media {
  -webkit-mask: none; mask: none; border-radius: 50%;
}
body[data-photo-shape="rounded"] .event-media {
  -webkit-mask: none; mask: none; border-radius: var(--radius-card);
}
/* Default shape when no attribute is set = square w/ rounded corners */

/* ---------- Custom font dropdown (Tweaks) ---------- */
.fontdd-wrap { padding: 2px 12px 10px; position: relative; }
.fontdd-label { font-size: 11px; font-weight: 700; opacity: 0.7; margin-bottom: 6px; }
.fontdd-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  color: inherit;
}
.fontdd-list {
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fbfaf7;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  max-height: 280px;
  overflow-y: auto;
  padding: 4px;
}
.fontdd-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  padding: 9px 11px;
  border-radius: 7px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #29261b;
  text-align: left;
}
.fontdd-item:hover { background: rgba(0,0,0,0.05); }
.fontdd-item.sel { background: rgba(0,0,0,0.08); }
.fontdd-item .fd-display { font-size: 18px; line-height: 1.1; }
.fontdd-item .fd-sans { font-size: 11px; opacity: 0.6; }

/* ---------- Sparkles deco ---------- */
.deco-sparkle {
  position: absolute;
  color: var(--accent);
  opacity: 0.95;
  pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-intro { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero-inner { padding: 80px 0 90px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value { border-right: none; }
  .who-grid, .venues-band-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal { grid-template-columns: 1fr; }
  .venue-card { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-tile.s4, .gallery-tile.s6, .gallery-tile.s3, .gallery-tile.s8 { grid-column: span 6; }
}
@media (max-width: 520px) {
  .events-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-tile.s4, .gallery-tile.s6, .gallery-tile.s3, .gallery-tile.s8 { grid-column: span 12; }
}
