/* ─────────────────────────────────────────────────────────────────────────
   Be A Frnd × Partners - shared stylesheet
   Used by index.html (listing) and event.html (detail + booking).
───────────────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #D4AF37;
  --gold-bright: #F0D060;
  --gold-deep: #B8952C;
  --gold-pale: #F5DFA0;
  --bg: #060606;
  --surface: #0C0C0C;
  --surface-2: #141414;
  --surface-3: #1C1C1C;
  --border: rgba(212, 175, 55, 0.12);
  --border-strong: rgba(212, 175, 55, 0.28);
  --text: #FAFAF5;
  --text-muted: #9A9A9A;
  --text-dim: #707070;
  /* Single-font stack - matches the main Beafrnd React app's tailwind.config.js
     so the events site reads as part of the same product. No serif/italic
     drama; weight + size carry the editorial hierarchy instead. */
  --serif: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --max-w: 1080px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: -10vh -10vw 60vh -10vw;
  background:
    radial-gradient(50vw 40vh at 50% 0%, rgba(212,175,55,0.10), transparent 70%),
    radial-gradient(40vw 30vh at 80% 10%, rgba(26,26,61,0.20), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 540px) {
  .container { padding: 0 28px; }
}
@media (min-width: 880px) {
  .container { padding: 0 36px; }
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,6,6,0.78);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #5A0F1A; /* BeAFrnd maroon - matches the logo file */
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.brand .meta {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-left: 4px;
}
.nav-cta {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--bg);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.25);
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--bg);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(212,175,55,0.28), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform .15s ease, box-shadow .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(212,175,55,0.36), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 22px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-pale); }

/* ── PILLS / EYEBROW ─────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold-pale);
  text-transform: uppercase;
  font-weight: 500;
}
.pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

/* ── HEADINGS (mobile-first; 95% of users are on mobile) ─ */
h1.display {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(24px, 6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}
h1.display .accent { color: var(--gold); font-weight: 800; }

h2.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 4.4vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 28px;
  color: var(--text);
}
h2.section-title em { color: var(--gold); font-style: normal; font-weight: 700; }

.lead {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 2.4vw, 17px);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 24px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

/* ── SECTION ─────────────────────────────────────────── */
.section { padding: 36px 0; }
@media (min-width: 720px) {
  .section { padding: 56px 0; }
  h2.section-title { margin-bottom: 36px; }
}

/* ── DIVIDER ─────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 32px;
  color: var(--gold);
  opacity: 0.5;
}
@media (min-width: 720px) {
  .divider { margin: 64px 0 48px; }
}
.divider::before, .divider::after {
  content: "";
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider svg { width: 22px; height: 22px; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 48px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 40px;
}
footer .brand-line {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 15px;
}
footer a { color: var(--gold-pale); text-decoration: none; }

/* ── BOOKING MODAL (event.html only) ─────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  padding: 0;
}
@media (min-width: 720px) {
  .modal-overlay { align-items: center; padding: 24px; }
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 20px 20px 0 0;
  padding: 22px 18px 20px;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  animation: slideUp .3s cubic-bezier(.2,.8,.2,1);
}
@media (min-width: 720px) {
  .modal { border-radius: 20px; padding: 28px 26px; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 4px;
}
.modal h3 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.modal-sub {
  color: var(--text-muted);
  font-size: 12.5px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.modal-close {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: color .2s, border-color .2s;
}
.modal-close:hover { color: var(--text); border-color: var(--border-strong); }

/* Form fields - denser, mobile-friendly */
.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.field label {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}
.field input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font: inherit;
  font-family: var(--sans);
  font-size: 14px;
  min-height: 44px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.field-error {
  font-size: 11px;
  color: #f87171;
  min-height: 14px;
  line-height: 1.2;
}

.seats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.seat-opt {
  padding: 11px 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  min-height: 44px;
  transition: all .2s ease;
}
.seat-opt:hover { border-color: var(--border-strong); }
.seat-opt.selected {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.seat-opt:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 12px;
  background: var(--surface-2);
  border-radius: 8px;
  margin: 10px 0 12px;
  cursor: pointer;
}
.consent input { margin-top: 1px; accent-color: var(--gold); flex-shrink: 0; }
.consent span { font-size: 12px; color: var(--text-muted); line-height: 1.45; }

.total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 11px 0;
  margin-bottom: 12px;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.total-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); font-weight: 700; }
.total-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 22px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.total-amount .bf-total-now { font-size: 22px; color: var(--gold); font-weight: 800; }
.total-amount .bf-total-was {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.total-amount .bf-total-off {
  font-size: 9px;
  color: #fca5a5;
  background: rgba(220,38,38,0.16);
  border: 1px solid rgba(220,38,38,0.45);
  padding: 3px 7px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-pay {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--bg);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  min-height: 48px;
  transition: transform .15s ease, box-shadow .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-pay:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(212,175,55,0.3); }
.btn-pay:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-pay .spin {
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.btn-pay.loading .spin { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.success {
  text-align: center;
  padding: 32px 12px;
  display: none;
}
.success.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold);
}
.success-icon svg { width: 28px; height: 28px; }
.success h3 {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.025em;
}
.success p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 6px; }
.success .ref {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 14px;
  padding: 10px;
  background: var(--surface-2);
  border-radius: 8px;
  word-break: break-all;
}
.modal.is-success .form-content { display: none; }

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

/* ── LOADING / EMPTY STATES ─────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--surface), var(--surface-2), var(--surface));
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 16px;
}
.empty-state h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}

/* ── RESPONSIVE TWEAKS ───────────────────────────────── */
@media (max-width: 540px) {
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .brand .meta { display: none; }
}


/* ─────────────────────────────────────────────────────────────────────
   FEATURED RIBBON - diagonal corner banner
───────────────────────────────────────────────────────────────────── */
.ribbon {
  position: absolute;
  top: 14px; left: -34px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--bg);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(-32deg);
  transform-origin: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}
.ribbon::before, .ribbon::after {
  content: ""; position: absolute; top: 100%;
  border: 6px solid var(--gold-deep);
}
.ribbon::before { left: 0; border-left-color: transparent; border-bottom-color: transparent; }
.ribbon::after { right: 0; border-right-color: transparent; border-bottom-color: transparent; }

/* Inline featured pill (used on detail page, near title) */
.featured-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(212,175,55,0.14);
  border: 1px solid var(--gold-deep);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
}
.featured-pill svg { width: 12px; height: 12px; }


/* ─────────────────────────────────────────────────────────────────────
   PARTNER STRIP - used on event detail "Hosted with" + footer
───────────────────────────────────────────────────────────────────── */
.partner-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 480px;
  margin: 0 auto;
}
.partner-card .partner-logo {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  background: #fff;
  padding: 6px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.partner-card .partner-logo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.partner-card .partner-meta {
  flex: 1;
  min-width: 0;
}
.partner-card .partner-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 4px;
}
.partner-card .partner-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-bottom: 2px;
}
.partner-card .partner-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}


/* ─────────────────────────────────────────────────────────────────────
   FULL-WIDTH HERO IMAGE (event detail) - mobile-first cap
───────────────────────────────────────────────────────────────────── */
.hero-img-wrap {
  position: relative;
  width: 100%;
  /* Slim banner: ~140px on a 375px phone, capped at 220px on wide screens.
     Hero image is decorative on the detail page (event already has cobrand
     row + title below in text), so it's intentionally smaller than the
     featured-card image on the listing. */
  aspect-ratio: 16 / 9;
  max-height: clamp(140px, 22vw, 220px);
  overflow: hidden;
  margin-top: -1px;
}
.hero-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,6,0.18) 0%, rgba(6,6,6,0) 30%, rgba(6,6,6,0.85) 100%);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 20px 36px;
  z-index: 1;
}
.hero-img-overlay .pill { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }


/* ─────────────────────────────────────────────────────────────────────
   DATE BLOCK - mobile-first compact pill of date + time + city
───────────────────────────────────────────────────────────────────── */
.date-block {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  margin: 14px 0 6px;
}
@media (min-width: 720px) {
  .date-block { gap: 14px; padding: 12px 18px; margin: 18px 0 8px; }
}
.date-block .calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding-right: 12px;
}
.date-block .calendar .month {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.date-block .calendar .day {
  font-family: var(--sans);
  font-size: 22px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 3px;
}
@media (min-width: 720px) {
  .date-block .calendar .day { font-size: 26px; }
}
.date-block .meta {
  text-align: left;
}
.date-block .meta .weekday {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  line-height: 1.2;
}
.date-block .meta .where {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-top: 3px;
  letter-spacing: -0.01em;
}
@media (min-width: 720px) {
  .date-block .meta .where { font-size: 15px; }
}


/* ─────────────────────────────────────────────────────────────────────
   FOOTER - universal row (listing + event) + partner block (event only)

   Architecture:
   - .foot-simple   = listing footer, no partner specifics
   - .foot-event    = event detail footer, prepends a partner block
   - .foot-row      = universal row (brand link + main nav)
   - .foot-partner  = partner-specific links (only on event detail)
───────────────────────────────────────────────────────────────────── */
footer.bf-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
  margin-top: 60px;
}

/* Universal row */
footer.bf-footer .foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
footer.bf-footer .foot-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
footer.bf-footer .foot-brand-link .brand-mark { width: 36px; height: 36px; }
footer.bf-footer .foot-brand-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
footer.bf-footer .foot-brand-text small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
footer.bf-footer .foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  align-items: center;
}
footer.bf-footer .foot-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
}
footer.bf-footer .foot-links a:hover { color: var(--gold-pale); }

/* Partner-specific block (event detail only) */
footer.bf-footer .foot-partner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px dashed var(--border);
}
footer.bf-footer .foot-partner-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer.bf-footer .foot-partner-mark {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
footer.bf-footer .foot-partner-mark img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
footer.bf-footer .foot-partner-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
footer.bf-footer .foot-partner-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 2px;
}
footer.bf-footer .foot-partner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  align-items: center;
}
footer.bf-footer .foot-partner-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
}
footer.bf-footer .foot-partner-links a:hover { color: var(--gold-pale); }

/* Bottom row (legal + tagline) */
footer.bf-footer .foot-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--text-dim);
}
footer.bf-footer .foot-bottom strong { color: var(--text-muted); font-weight: 600; }


/* Date pill on cards - make day/month/year all visible */
.card-date-pill {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 1;
  background: rgba(6,6,6,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
  color: var(--gold-pale);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
  min-width: 64px;
}
.card-date-pill .day {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
  display: block;
  line-height: 1;
  margin: 2px 0;
}
.card-date-pill .year {
  display: block;
  color: var(--text-dim);
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 2px;
  font-weight: 600;
}


/* ─────────────────────────────────────────────────────────────────────
   URGENCY STRIP - three levels, real signals only.
   Critical (red) ⟶ ≤ 2 days OR ≤ 3 seats left
   High (amber)   ⟶ ≤ 7 days OR < 50% capacity remaining
   Standard (gold)⟶ always-on small-format reminder
───────────────────────────────────────────────────────────────────── */
.urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.urgency .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}
.urgency--critical {
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.14);
  border: 1px solid rgba(220, 38, 38, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.urgency--critical .dot {
  background: #ef4444;
  box-shadow: 0 0 14px #ef4444;
}
.urgency--high {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.urgency--high .dot {
  background: #f59e0b;
  box-shadow: 0 0 12px #f59e0b;
}
.urgency--standard {
  color: var(--gold-pale);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-strong);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.urgency--standard .dot {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

/* Compact variant for grid cards where space is tight */
.urgency.urgency--small {
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
}


/* ─────────────────────────────────────────────────────────────────────
   PRICE BLOCK - actual price + struck-through anchor + "X% off" badge.
───────────────────────────────────────────────────────────────────── */
.price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-block .price-now {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-block .price-was {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(154,154,154,0.7);
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-block .price-off {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.16);
  border: 1px solid rgba(220, 38, 38, 0.45);
  padding: 4px 8px;
  border-radius: 999px;
  line-height: 1;
}

/* Sizes */
.price-block--lg .price-now { font-size: 30px; }
.price-block--lg .price-was { font-size: 17px; }

.price-block--md .price-now { font-size: 22px; }
.price-block--md .price-was { font-size: 14px; }
.price-block--md .price-off { font-size: 10px; padding: 3px 7px; }

.price-block--sm .price-now { font-size: 16px; }
.price-block--sm .price-was { font-size: 12px; }
.price-block--sm .price-off { font-size: 9px; padding: 2px 6px; }
