/* ===================================================================
   BRICK CITIES :: V2 SHARED STYLESHEET
   BaM brand palette (blue, yellow, red, white) with bold editorial feel.
   =================================================================== */

/* -------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------- */
:root {
  /* Brand */
  --bam-blue: #00a0dd;
  --bam-blue-deep: #0084b9;
  --bam-blue-ink: #003a52;
  --bam-yellow: #ffce02;
  --bam-yellow-soft: #fff0a8;
  --bam-red: #ff5757;
  --bam-red-deep: #e23b3b;

  /* Neutrals */
  --white: #ffffff;
  --cream: #fffbef;
  --ink: #14171c;
  --ink-soft: #2a3038;
  --ash: #5d6470;
  --line: rgba(20, 23, 28, 0.12);
  --line-soft: rgba(20, 23, 28, 0.06);

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--cream);
  --bg-dark: var(--bam-blue-ink);
  --text: var(--ink);
  --text-soft: var(--ash);
  --accent: var(--bam-yellow);
  --primary: var(--bam-blue);
  --warn: var(--bam-red);

  /* Type */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Sizing */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 14px 44px rgba(0, 58, 82, 0.18);

  /* Layout */
  --max: 1240px;
  --max-narrow: 920px;
  --gap: clamp(20px, 3vw, 40px);
}

/* -------------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--bam-blue-deep); }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* -------------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------------- */
.display, h1.display {
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
}
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bam-blue);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--bam-yellow); }
.lede { font-size: 1.18rem; line-height: 1.55; color: var(--text-soft); max-width: 60ch; }
.muted { color: var(--text-soft); }
.handwritten {
  font-weight: 800;
  font-style: italic;
  color: var(--bam-red);
}

/* -------------------------------------------------------------------
   4. LAYOUT HELPERS
   ------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { width: 100%; max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(60px, 8vw, 110px) 0; }
.section-tight { padding: clamp(40px, 5vw, 70px) 0; }
.section-bg { background: var(--bg-alt); }
.section-blue { background: var(--bam-blue-ink); color: var(--white); }
.section-blue .lede,
.section-blue .muted { color: rgba(255, 255, 255, 0.78); }
.section-blue h1, .section-blue h2, .section-blue h3 { color: var(--white); }
.divider { height: 1px; width: 100%; background: var(--line); margin: 0; }

/* -------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  border: 2px solid transparent;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--bam-yellow); color: var(--ink); box-shadow: 0 4px 0 var(--ink); }
.btn-primary:hover { background: var(--bam-yellow); color: var(--ink); box-shadow: 0 6px 0 var(--ink); }
.btn-secondary { background: var(--bam-blue); color: var(--white); box-shadow: 0 4px 0 var(--bam-blue-ink); }
.btn-secondary:hover { background: var(--bam-blue-deep); color: var(--white); box-shadow: 0 6px 0 var(--bam-blue-ink); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-red { background: var(--bam-red); color: var(--white); box-shadow: 0 4px 0 var(--bam-red-deep); }
.btn-red:hover { background: var(--bam-red-deep); color: var(--white); }
.btn-on-dark { background: var(--bam-yellow); color: var(--ink); }
.btn-on-dark:hover { background: var(--white); color: var(--ink); }
.btn-lg { padding: 20px 34px; font-size: 1.05rem; }
.btn-xl { padding: 22px 48px; font-size: 1.2rem; font-weight: 900; letter-spacing: -0.01em; box-shadow: 0 6px 0 var(--ink); }
.btn-xl:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--ink); }
.btn-block { width: 100%; }

/* -------------------------------------------------------------------
   6. ANNOUNCEMENT BAR / TBD NOTICE
   ------------------------------------------------------------------- */
.tbd-notice {
  background: var(--bam-yellow);
  color: var(--ink);
  font-size: 0.92rem;
  text-align: center;
  padding: 10px 20px;
  border-bottom: 2px solid var(--ink);
}
.announce {
  background: var(--bam-red);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-size: 0.92rem;
  padding: 10px 16px;
}
.announce a {
  color: var(--bam-yellow);
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 800;
}

/* -------------------------------------------------------------------
   7. NAVIGATION
   ------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 20px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand-mark:hover { color: var(--text); }
.brand-mark .brand-name { font-size: 1.05rem; line-height: 1; }
.brand-mark .brand-mini { display: flex; flex-direction: column; }
.brand-mark .brand-tag { font-size: 0.72rem; font-weight: 700; color: var(--bam-blue); letter-spacing: 0.08em; text-transform: uppercase; }
.brand-mark svg { height: 38px; width: auto; }
.brand-mark img.brand-logo { height: 46px; width: auto; display: block; }
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 0.98rem;
}
.nav-links a { color: var(--text); position: relative; }
.nav-links a:hover { color: var(--bam-blue); }
.nav-links a.active { color: var(--bam-blue); }
.nav-cta { display: none; }
.nav-toggle {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
}
.nav-toggle span {
  width: 22px; height: 2px; background: currentColor;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bam-blue-ink);
  color: var(--white);
  z-index: 100;
  padding: 32px 28px;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
}
.mobile-menu-close {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bam-yellow);
  color: var(--ink);
  font-weight: 900; font-size: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 1.6rem; font-weight: 800;
}
.mobile-menu nav a {
  color: var(--white); padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

body.menu-open { overflow: hidden; }

/* -------------------------------------------------------------------
   8. HERO (HOMEPAGE)
   ------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--bam-blue);
  color: var(--white);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 206, 2, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(255, 87, 87, 0.22) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  padding: 48px 24px 56px;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bam-yellow); }
.hero h1 {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.hero h1 .pop { color: var(--bam-yellow); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 0 22px;
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-meta-item { display: flex; align-items: center; gap: 10px; }
.hero-meta-item .icon { font-size: 1.2rem; }

/* .hero-art / .hero-logo removed - map panel replaced the logo in the hero */

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 0.85fr 1.4fr;
    padding: 32px 24px 32px 40px;
    gap: 24px;
    align-items: start;
  }
}

/* Map panel - right column of the hero on desktop */
.hero-map-panel {
  background: var(--bc-paper);
  border-radius: 20px;
  overflow: hidden;
  min-width: 0;
}
/* Strip the bc-map card chrome; let canvas-wrap's aspect-ratio size the map */
.hero-map-panel .bc-map {
  background: transparent;
  border-radius: 0;
  padding: 14px 16px 10px;
  max-width: none;
  margin: 0;
}
.hero-map-panel .bc-map__legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
/* canvas-wrap already has width:100% + aspect-ratio:960/600 - don't override */

/* -------------------------------------------------------------------
   9. PAGE HERO (INNER PAGES)
   ------------------------------------------------------------------- */
.page-hero {
  background: var(--bam-blue-ink);
  color: var(--white);
  padding: 64px 24px 50px;
}
.page-hero .wrap { padding: 0; }
.crumbs {
  display: flex; gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-bottom: 18px;
}
.crumbs a { color: rgba(255,255,255,0.7); }
.crumbs a:hover { color: var(--bam-yellow); }
.crumbs .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lede { color: rgba(255,255,255,0.78); }

/* -------------------------------------------------------------------
   10. TICKET PURCHASE MODAL
   ------------------------------------------------------------------- */
.ticket-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.65);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ticket-modal.open { display: flex; }
.bc-tm-season {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bam-blue);
  margin: 18px 24px 8px;
}
.bc-tm-citygrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 24px 12px;
}
.bc-tm-city {
  text-align: left;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bc-tm-city:hover { border-color: var(--bam-blue); background: var(--bg-alt); }
.bc-tm-city span { font-weight: 600; font-size: 0.85rem; color: var(--text-soft); }
.bc-tm-back {
  background: none;
  border: none;
  color: var(--bam-blue);
  font-weight: 700;
  cursor: pointer;
  padding: 14px 24px 0;
}
@media (max-width: 520px) { .bc-tm-citygrid { grid-template-columns: 1fr; } }
.form-thanks { padding: 28px 4px; }
.form-thanks h3 { margin-bottom: 8px; }
.form-thanks p { color: var(--text-soft); margin: 0; }
.notify-form { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; max-width: 440px; margin: 0 auto; }
.notify-form input[type="email"] { flex: 1; min-width: 200px; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--line); font-weight: 600; }
.ticket-modal__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ticket-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.ticket-modal__header .eyebrow { display: block; margin-bottom: 4px; }
.ticket-modal__header h3 { margin: 0; font-size: 1.25rem; }
.ticket-modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--line-soft);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--ink);
  flex-shrink: 0;
  transition: background .12s ease;
}
.ticket-modal__close:hover { background: var(--line); }
.ticket-modal__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ticket-modal__body iframe { display: block; border: none; }

/* -------------------------------------------------------------------
   11. REGISTRATION FORM (tickets page inline - kept for fallback)
   ------------------------------------------------------------------- */
.registration-section {
  padding: 72px 0 80px;
  background: var(--cream);
}
.registration-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 8px;
}
.registration-frame iframe {
  display: block;
  border: 0;
}
.registration-placeholder {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 56px 32px;
  text-align: center;
}
.registration-placeholder h3 { margin-bottom: 10px; }
.registration-placeholder p { color: var(--text-soft); max-width: 52ch; margin: 0 auto 22px; }

/* -------------------------------------------------------------------
   11. PHOTO GALLERY
   ------------------------------------------------------------------- */
.gallery-section { padding: 80px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 40px;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: var(--line-soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }
  .gallery-item--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
}

/* -------------------------------------------------------------------
   11. VALUE STRIP
   ------------------------------------------------------------------- */
.value-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 50px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.value-tile {
  display: flex; flex-direction: column; gap: 8px;
  padding: 6px 0;
}
.value-tile .num {
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1;
  color: var(--bam-blue);
  letter-spacing: -0.02em;
}
.value-tile .label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}
.value-tile .desc {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
}

@media (min-width: 700px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .value-grid { grid-template-columns: repeat(6, 1fr); }
}

/* -------------------------------------------------------------------
   11. SECTION HEADERS
   ------------------------------------------------------------------- */
.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 16px; }
.section-head .sub { font-size: 1.1rem; color: var(--text-soft); margin: 0; }

/* -------------------------------------------------------------------
   12. US MAP :: bc-map component (d3 albersUsa + brick pins)
   ------------------------------------------------------------------- */

:root {
  --bc-yellow: #FFCD11;
  --bc-blue:   #0F8FD8;
  --bc-fall:   var(--bc-yellow);
  --bc-spring: #ff5757;
  --bc-ink:    #1B1F2A;
  --bc-paper:  #FFFDF6;
  --bc-land:   #00a0dd;
  --bc-land-2: #0084b9;
  --bc-stroke: #1B1F2A;
  --bc-muted:  #6B7280;
  --bc-radius: 14px;
}

.map-section {
  background: var(--bc-paper);
  position: relative;
}

.bc-map {
  --map-max: 840px;
  font-family: 'Poppins', 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--bc-ink);
  background: var(--bc-paper);
  border-radius: var(--bc-radius);
  padding: 28px clamp(16px, 3vw, 36px) 32px;
  max-width: var(--map-max);
  margin: 0 auto;
  position: relative;
}


.bc-map__legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bc-map__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--bc-stroke);
  background: white;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  box-shadow: 0 2px 0 var(--bc-stroke);
}
.bc-map__chip:hover { transform: translateY(-1px); box-shadow: 0 3px 0 var(--bc-stroke); }
.bc-map__chip[aria-pressed="false"] { opacity: .45; }
.bc-map__chip-swatch {
  width: 14px; height: 14px; border-radius: 4px;
  border: 1.5px solid var(--bc-stroke);
}
.bc-map__chip[data-season="fall26"]   .bc-map__chip-swatch { background: var(--bc-fall); }
.bc-map__chip[data-season="spring27"] .bc-map__chip-swatch { background: var(--bc-spring); }
.bc-map__count { color: var(--bc-muted); font-weight: 600; font-size: 12px; margin-left: 2px; }

.bc-map__canvas-wrap {
  position: relative;
  aspect-ratio: 960 / 600;
  width: 100%;
}
.bc-map__svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.bc-state {
  fill: var(--bc-land);
  stroke: var(--bc-stroke);
  stroke-width: 1;
  stroke-linejoin: round;
  transition: fill .25s ease;
}
.bc-state.alt { fill: var(--bc-land-2); }

.bc-pin { cursor: pointer; }
.bc-pin__body {
  transform-box: fill-box;
  transform-origin: center center;
  transition: transform .15s ease;
}
.bc-pin:hover .bc-pin__body,
.bc-pin.is-focused .bc-pin__body { transform: scale(1.15); }
.bc-pin__brick { stroke: var(--bc-stroke); stroke-width: 1.4; stroke-linejoin: round; }
.bc-pin__stud  { stroke: var(--bc-stroke); stroke-width: 1; }
.bc-pin__shadow { fill: rgba(0,0,0,.18); }
.bc-pin[data-season="fall26"]   .bc-pin__brick { fill: var(--bc-fall); }
.bc-pin[data-season="fall26"]   .bc-pin__stud  { fill: #FFE066; }
.bc-pin[data-season="spring27"] .bc-pin__brick { fill: var(--bc-spring); }
.bc-pin[data-season="spring27"] .bc-pin__stud  { fill: #ff8c8c; }
.bc-pin.dimmed { opacity: .12; pointer-events: none; }

.bc-label {
  font-size: 13px;
  font-weight: 700;
  fill: var(--bc-ink);
  paint-order: stroke;
  stroke: var(--bc-paper);
  stroke-width: 3px;
  stroke-linejoin: round;
  pointer-events: none;
  text-anchor: middle;
}
.bc-label.dimmed { opacity: .15; }

.bc-tip {
  position: absolute;
  pointer-events: none;
  background: var(--bc-ink);
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.35;
  min-width: 160px;
  transform: translate(-50%, calc(-100% - 14px));
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 5;
}
.bc-tip::after {
  content: '';
  position: absolute; left: 50%; top: 100%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--bc-ink);
}
.bc-tip.is-visible { opacity: 1; }
.bc-tip__name { font-weight: 800; font-size: 14px; margin-bottom: 2px; }
.bc-tip__season { font-weight: 700; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.bc-tip__season[data-season="fall26"]   { color: var(--bc-fall); }
.bc-tip__season[data-season="spring27"] { color: #ff8c8c; }
.bc-tip__meta { color: #cdd2dc; margin-top: 4px; }

.bc-map__footer {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  font-size: 13px;
}
.bc-map__col h4 {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bc-muted);
}
.bc-map__col h4 .swatch {
  display: inline-block; width: 10px; height: 10px; border-radius: 3px;
  border: 1px solid var(--bc-stroke); vertical-align: middle; margin-right: 6px;
}
.bc-map__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.bc-map__col a {
  color: var(--bc-ink);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--bc-ink);
  font-weight: 600;
  font-size: 12px;
  transition: background .12s ease, color .12s ease;
}
.bc-map__col a:hover { background: var(--bc-ink); color: var(--bc-paper); }

.bc-map__mobile-map  { display: none; }
.bc-map__mobile-list { display: none; }
.bc-map__mobile-svg  { width: 100%; display: block; border-radius: 10px; }
.bc-mini-dot {
  stroke: var(--bc-ink);
  stroke-width: 1.5;
  pointer-events: none;
}
.bc-mini-dot--fall26   { fill: var(--bc-fall); }
.bc-mini-dot--spring27 { fill: var(--bc-spring); }

.bc-mobile-season { margin-bottom: 24px; }
.bc-mobile-season__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--bc-muted);
  margin: 0 0 10px;
}
.bc-mobile-season__swatch {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 3px;
  border: 1.5px solid var(--bc-stroke);
  flex-shrink: 0;
}
.bc-mobile-season__swatch--fall26   { background: var(--bc-fall); }
.bc-mobile-season__swatch--spring27 { background: var(--bc-spring); }

.bc-mobile-city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  margin-bottom: 8px;
  border-radius: 10px;
  border: 2px solid var(--bc-stroke);
  background: white;
  text-decoration: none;
  color: var(--bc-ink);
  box-shadow: 0 2px 0 var(--bc-stroke);
  transition: transform .12s ease, box-shadow .12s ease;
}
.bc-mobile-city:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--bc-stroke); }
.bc-mobile-city--fall26   { border-left: 5px solid var(--bc-fall); }
.bc-mobile-city--spring27 { border-left: 5px solid var(--bc-spring); }
.bc-mobile-city__name  { font-weight: 700; font-size: 15px; }
.bc-mobile-city__dates { font-size: 12px; color: var(--bc-muted); font-weight: 600; }

/* Mini-map dots: decorative on mobile. The interactive city list below
   the map is the primary navigation, so dots don't claim pointer events. */
.bc-mini-dot.dimmed { opacity: .15; }

/* Mobile list sections hide when a filter chip dismisses their season */
.bc-mobile-season.hidden { display: none; }

@media (max-width: 768px) {
  .bc-map__canvas-wrap { display: none; }
  .bc-map__mobile-map  { display: block; margin-bottom: 16px; }
  .bc-map__mobile-list { display: block; }

  /* Keep the season filter chips on mobile - they filter the city list */
  .bc-map__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
  }
  .bc-map__head { align-items: flex-start; }
  .bc-label { font-size: 9px; }

  .hero-map-panel {
    background: var(--bc-paper);
    border-radius: 16px;
    overflow: hidden;
    margin: 0 4px;
  }
  .hero-map-panel .bc-map {
    background: transparent;
    border-radius: 0;
    padding: 16px;
    max-width: none;
  }
}

/* Visible placeholder tag for fabricated content (testimonials)
   - remove this rule, or add class="bc-launch-ready" to <body>, before launch */
.quote-placeholder-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(255, 87, 87, 0.15);
  color: var(--bam-red-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}
body.bc-launch-ready .quote-placeholder-tag { display: none; }

/* -------------------------------------------------------------------
   13. CARDS GRID
   ------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 720px) { .cards.two { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .cards.three { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards.three { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .cards.four { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards.four { grid-template-columns: repeat(4, 1fr); } }

.card-img {
  width: calc(100% + 48px);
  margin: -24px -24px 20px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.card:hover .card-img img { transform: scale(1.05); }

.card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(0, 160, 221, 0.3); }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: var(--bam-yellow);
  color: var(--ink);
  margin-bottom: 18px;
}
.card.icon-blue .icon { background: var(--bam-blue); color: var(--white); }
.card.icon-red .icon { background: var(--bam-red); color: var(--white); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-soft); margin-bottom: 14px; font-size: 0.97rem; }
.card .card-link { font-weight: 800; color: var(--bam-blue); margin-top: auto; }
.card .card-link:hover { color: var(--bam-blue-deep); }

.card-feature {
  background: var(--bam-blue);
  color: var(--white);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.card-feature h3, .card-feature p { color: var(--white); }
.card-feature p { color: rgba(255, 255, 255, 0.85); }

/* City card */
.city-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(0, 160, 221, 0.3); }
.city-card .city-season-tag {
  position: absolute;
  top: -12px; left: 22px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
}
.city-card .city-season-tag.tag-yellow { background: var(--bam-yellow); color: var(--ink); }
.city-card .city-season-tag.tag-red { background: var(--bam-red); color: var(--white); }
.city-card .city-meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bam-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.city-card h3 { margin-bottom: 6px; }
.city-card .venue { font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.city-card .partner { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 16px; }
.city-card .actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.city-card .actions a { font-size: 0.88rem; padding: 10px 16px; }

/* Cities page :: wave grouping */
.cities-wave + .cities-wave { margin-top: clamp(40px, 5vw, 64px); }
.cities-wave-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.cities-wave-head h2 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin: 0;
}
.cities-wave-head .wave-pip {
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--ink);
}
.cities-wave-head .wave-pip.wave-yellow { background: var(--bam-yellow); }
.cities-wave-head .wave-pip.wave-red { background: var(--bam-red); }
.cities-wave-head .wave-count {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* -------------------------------------------------------------------
   14. PARTNER CALLOUT
   ------------------------------------------------------------------- */
.partner-cta {
  background: var(--bam-yellow);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.partner-cta h2 { margin-bottom: 14px; }
.partner-cta p { font-size: 1.05rem; }
.partner-cta .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.partner-cta .stat-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 2px solid var(--ink);
}
.partner-cta .stat { font-weight: 900; font-size: 2.4rem; line-height: 1; color: var(--bam-blue); margin-bottom: 4px; }

@media (min-width: 900px) {
  .partner-cta { grid-template-columns: 2fr 1fr; gap: 50px; }
}

/* -------------------------------------------------------------------
   15. TESTIMONIALS
   ------------------------------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.testimonials-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
}
.quote {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 6px; left: 22px;
  font-size: 4rem;
  line-height: 1;
  color: var(--bam-yellow);
  font-weight: 900;
}
.quote-body { font-size: 1.02rem; color: var(--ink); margin-bottom: 18px; padding-top: 30px; }
.quote-author { font-weight: 800; }
.quote-meta { font-size: 0.9rem; color: var(--text-soft); }

@media (min-width: 760px) {
  .testimonials-duo { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 800px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .testimonials { grid-template-columns: repeat(4, 1fr); }
}

/* -------------------------------------------------------------------
   16. FINAL CTA
   ------------------------------------------------------------------- */
.final-cta {
  background: var(--bam-blue-ink);
  color: var(--white);
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 24px;
}
.final-cta h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 18px; }
.final-cta p { color: rgba(255, 255, 255, 0.78); font-size: 1.15rem; max-width: 600px; margin: 0 auto 30px; }
.final-cta .actions { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* -------------------------------------------------------------------
   17. FOOTER
   ------------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 24px 28px;
  font-size: 0.94rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
.footer ul li { margin-bottom: 8px; }
.footer a { color: rgba(255, 255, 255, 0.78); }
.footer a:hover { color: var(--bam-yellow); }
.footer-brand { color: var(--white); font-weight: 800; margin-bottom: 12px; }
.footer-bottom {
  max-width: var(--max);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* -------------------------------------------------------------------
   18. POPUP MODAL
   ------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 58, 82, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: translateY(14px) scale(0.97);
  transition: transform .25s ease;
  box-shadow: var(--shadow-lg);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-banner {
  background: var(--bam-blue);
  color: var(--white);
  padding: 26px 30px;
  position: relative;
  overflow: hidden;
}
.modal-banner::after {
  content: "";
  position: absolute;
  bottom: -32px; right: -10px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255, 206, 2, 0.4);
}
.modal-banner .badge {
  display: inline-block;
  background: var(--bam-yellow);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.modal-banner h3 {
  color: var(--white);
  font-size: 1.7rem;
  margin: 0;
  position: relative;
  z-index: 1;
}
.modal-body { padding: 26px 30px 30px; }
.modal-body p { color: var(--text-soft); font-size: 0.98rem; margin-bottom: 18px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.modal-form input, .modal-form select {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
}
.modal-form input:focus, .modal-form select:focus {
  outline: 2px solid var(--bam-blue);
  outline-offset: 1px;
  border-color: var(--bam-blue);
}
.modal-fineprint { font-size: 0.78rem; color: var(--text-soft); margin-top: 8px; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .15s ease;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.35); }
.modal-success {
  text-align: center;
  padding: 40px 30px 36px;
}
.modal-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bam-yellow);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.modal-success h3 { margin-bottom: 8px; }

/* -------------------------------------------------------------------
   19. ACTIVITIES PAGE BLOCKS
   ------------------------------------------------------------------- */
.activity-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.activity-block:last-child { border-bottom: 0; }
.activity-block .a-art {
  border-radius: var(--radius-lg);
  background: var(--bam-yellow);
  padding: 36px;
  font-size: 4rem;
  text-align: center;
  border: 2px solid var(--ink);
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.activity-block.alt .a-art { background: var(--bam-blue); color: var(--white); }
.activity-block.red .a-art { background: var(--bam-red); color: var(--white); }
.activity-block .a-content h2 { margin-bottom: 14px; }
.activity-block .a-content .pill {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: 8px;
  margin-bottom: 12px;
}
.activity-block .a-content ul {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}
.activity-block .a-content ul li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}
.activity-block .a-content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 3px;
  background: var(--bam-yellow);
  border: 1.5px solid var(--ink);
}
@media (min-width: 900px) {
  .activity-block { grid-template-columns: 1fr 1.3fr; gap: 50px; }
  .activity-block.reverse { grid-template-columns: 1.3fr 1fr; }
  .activity-block.reverse .a-art { order: 2; }
}

/* Zone map */
.zone-map {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.zone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 700px) { .zone-grid { grid-template-columns: repeat(5, 1fr); } }
.zone-tile {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.zone-tile .num {
  display: inline-block;
  background: var(--bam-blue);
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.85rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}

/* -------------------------------------------------------------------
   20. TICKETS PAGE
   ------------------------------------------------------------------- */
.tickets-meta {
  background: var(--bam-yellow);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-weight: 700;
  margin-bottom: 36px;
}
.tickets-meta .item .lab {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(20, 23, 28, 0.6);
}
.tickets-city-switcher {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tickets-city-switcher select {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--ink);
  font-weight: 700;
  background: var(--white);
}
.day-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.day-tab {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--line);
  font-weight: 700;
  color: var(--ink);
}
.day-tab.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.day-panel { display: none; }
.day-panel.active { display: block; }
.session-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.session-card:last-child { border-bottom: 0; }
.session-time {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--bam-blue);
}
.session-time .day { display: block; font-size: 0.75rem; color: var(--text-soft); font-weight: 700; }
.session-card h3 { margin-bottom: 4px; font-size: 1.1rem; }
.session-card p { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 0; }

.pricing-table {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row.head {
  background: var(--ink); color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-row.featured { background: var(--bam-yellow); }
.pricing-row .name { font-weight: 800; }
.pricing-row .desc { font-size: 0.9rem; color: var(--text-soft); }
.pricing-row.featured .desc { color: var(--ink-soft); }
.pricing-row .price { font-weight: 900; font-size: 1.4rem; color: var(--bam-blue); }
.pricing-row.featured .price { color: var(--bam-red-deep); }

.callout {
  background: var(--bam-blue);
  color: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  margin: 36px 0;
}
.callout.yellow { background: var(--bam-yellow); color: var(--ink); }
.callout.yellow p { color: var(--ink-soft); }
.callout h3 { color: inherit; margin-bottom: 6px; }
.callout p { color: rgba(255, 255, 255, 0.88); margin-bottom: 0; }

/* -------------------------------------------------------------------
   21. VENDORS PAGE
   ------------------------------------------------------------------- */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--line);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab {
  padding: 14px 22px;
  font-weight: 800;
  color: var(--text-soft);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.tab.active { color: var(--bam-blue); border-color: var(--bam-blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tier-card {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
}
.tier-card.featured { border-color: var(--bam-blue); background: var(--white); position: relative; }
.tier-card .ribbon {
  display: inline-block;
  background: var(--bam-red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tier-card .price-tag {
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--bam-blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.tier-card .price-sub { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 16px; }
.tier-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.tier-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--bam-yellow);
  border-radius: 2px;
  border: 1px solid var(--ink);
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 32px;
}
@media (min-width: 800px) { .rules-grid { grid-template-columns: 1fr 1fr; } }
.rule-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 2px solid var(--line);
}
.rule-card.allow { border-color: var(--bam-blue); }
.rule-card.deny { border-color: var(--bam-red); }
.rule-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.rule-card.allow h3::before { content: "✓ "; color: var(--bam-blue); font-weight: 900; }
.rule-card.deny h3::before { content: "✗ "; color: var(--bam-red); font-weight: 900; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
}
.form-grid label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); }
.form-grid input, .form-grid select, .form-grid textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
}
.form-grid .row { display: grid; gap: 4px; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .row.full { grid-column: 1 / -1; } }

/* -------------------------------------------------------------------
   22. ABOUT PAGE
   ------------------------------------------------------------------- */
.about-lead {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink);
}
.about-lead::first-letter {
  font-size: 4rem;
  font-weight: 900;
  float: left;
  line-height: 0.9;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--bam-blue);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 28px;
}
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1.5px solid var(--line);
}
.team-card .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bam-yellow);
  color: var(--ink);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 14px;
  border: 2px solid var(--ink);
}
.team-card h4 { margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--bam-blue); font-weight: 700; margin-bottom: 8px; }
.team-card p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

/* -------------------------------------------------------------------
   23. FAQ PAGE
   ------------------------------------------------------------------- */
.faq-cat {
  margin-bottom: 36px;
}
.faq-cat h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bam-yellow);
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bam-yellow);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 900;
  font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 0 18px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* -------------------------------------------------------------------
   24. CITY PAGE
   ------------------------------------------------------------------- */
.city-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}
@media (min-width: 700px) { .city-meta-grid { grid-template-columns: repeat(3, 1fr); } }
.meta-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.meta-card .lab {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bam-blue);
  margin-bottom: 8px;
}
.meta-card .val { font-weight: 800; font-size: 1.05rem; }
.meta-card .sub { font-size: 0.92rem; color: var(--text-soft); margin-top: 4px; }

.partner-spotlight {
  background: var(--bam-yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 50px;
}
@media (min-width: 800px) { .partner-spotlight { grid-template-columns: auto 1fr; } }
.partner-spotlight .ps-mark {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bam-blue);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 2rem;
  border: 2px solid var(--ink);
}
.partner-spotlight h3 { margin-bottom: 6px; }

.schedule-list {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 16px 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-row .when { font-weight: 800; color: var(--bam-blue); }
.schedule-row .what h4 { font-size: 1rem; margin-bottom: 2px; }
.schedule-row .what p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

/* -------------------------------------------------------------------
   25. UTILS / ANIMATIONS
   ------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-md { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }
.flex-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge-blue { background: var(--bam-blue); color: var(--white); }
.badge-yellow { background: var(--bam-yellow); color: var(--ink); }
.badge-red { background: var(--bam-red); color: var(--white); }

/* -------------------------------------------------------------------
   26. RESPONSIVE TWEAKS
   ------------------------------------------------------------------- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .session-card { grid-template-columns: 1fr; gap: 4px; }
  .pricing-row { grid-template-columns: 1fr; gap: 4px; }
  .pricing-row .price { font-size: 1.2rem; }
  .schedule-row { grid-template-columns: 1fr; gap: 4px; }
  .city-card .actions { flex-direction: column; }
  .city-card .actions a { text-align: center; width: 100%; }
}

/* City page session tiles (LEGO bricks with rectangular studs) */
.session-bricks { display: flex; flex-wrap: wrap; gap: 18px; margin: 10px 0 4px; }
.session-brick { position: relative; width: 150px; padding: 28px 14px 22px; border-radius: 6px; background: var(--bam-yellow); color: var(--ink); box-shadow: 0 5px 0 rgba(20,23,28,.22); text-align: center; }
.session-brick::before, .session-brick::after { content: ""; position: absolute; top: -9px; width: 38px; height: 13px; border-radius: 4px 4px 3px 3px; background: inherit; }
.session-brick::before { left: 25%; margin-left: -19px; }
.session-brick::after { left: 75%; margin-left: -19px; }
.session-brick .day { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .72; margin-bottom: 5px; }
.session-brick .time { display: block; font-size: 1.2rem; font-weight: 800; }
.session-brick.sun { background: var(--bam-blue); color: #fff; }

/* ============================================================
   GROWTH AUDIT COMPONENTS (Q2, Q3, Q6, B6, Q14)
   ============================================================ */

/* Q2 :: reusable pricing strip */
.pricing-strip { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:6px 0; background:var(--bam-yellow); color:var(--ink); border-radius:12px; padding:13px 22px; font-weight:800; font-size:.95rem; line-height:1.5; margin:0 auto 26px; max-width:900px; text-align:center; }
.pricing-strip span:not(:last-child)::after { content:"::"; margin:0 12px; opacity:.4; font-weight:800; }

/* Q3 :: on-sale / soon badges on city cards + next-stops strip */
.city-badge { display:inline-block; font-size:.68rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; padding:3px 10px; border-radius:999px; margin-left:8px; vertical-align:middle; }
.city-badge.on-sale { background:#1e9e5a; color:#fff; }
.city-badge.soon { background:rgba(20,23,28,.12); color:var(--ink); }
.next-stops { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; }
.next-stop { flex:1 1 220px; max-width:280px; background:var(--white,#fff); border:2px solid rgba(20,23,28,.1); border-radius:14px; padding:20px; text-align:center; }
.next-stop .ns-dates { font-size:.85rem; font-weight:700; color:var(--bam-blue-deep); margin-bottom:4px; }
.next-stop h3 { margin:0 0 14px; }

/* B6 :: mobile "open the registration form" button (hidden on desktop) */
.reg-mobile-cta { display:none; }
@media (max-width:768px) {
  .reg-mobile-cta { display:block; width:100%; margin-bottom:16px; text-align:center; }
}

/* Q14 :: small privacy/consent line under forms */
.form-disclaimer { font-size:.8rem; color:rgba(20,23,28,.6); margin-top:12px; line-height:1.5; }
.form-disclaimer a { text-decoration:underline; }

/* Q15 :: footer social row (revealed once real URLs exist) */
.footer-social { display:flex; gap:14px; margin-top:10px; }
.footer-social a { color:var(--bam-yellow); font-weight:800; }
