/* =============================================================
   Clutch — 2027 Prospectus Tool
   Interactive picker + per-event mini-prospectus
   ============================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--black); color: var(--fg-1); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--clutch-red); color: #fff; }

/* =============================================================
   APP CHROME — top nav
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 28px;
  padding: 16px 32px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav .wm {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: #fff; display: inline-flex; align-items: baseline; cursor: pointer;
  letter-spacing: -0.01em;
}
.nav .wm .dot { color: var(--clutch-red); }
.nav .crumb {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3);
}
.nav .crumb::before { content: "/"; margin-right: 10px; color: var(--fg-4); }
.nav .links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav .links a {
  font-family: var(--font-display); font-size: 14px; color: var(--fg-2);
  cursor: pointer; transition: color 160ms var(--ease-standard);
}
.nav .links a:hover { color: #fff; opacity: 1; }
.nav .cta {
  background: var(--clutch-red); color: #fff;
  padding: 9px 16px; border-radius: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  cursor: pointer; border: 0;
  transition: background 160ms var(--ease-standard);
}
.nav .cta:hover { background: var(--clutch-red-hover); }

/* =============================================================
   EXPLORER VIEW
   ============================================================= */
.explorer { min-height: 100vh; }

.explorer-hero {
  position: relative; padding: 96px 32px 56px;
  max-width: 1480px; margin: 0 auto;
  overflow: hidden;
}
.explorer-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 30%, rgba(255,59,31,0.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(255,59,31,0.10), transparent 60%);
  z-index: 0; pointer-events: none;
}
.explorer-hero > * { position: relative; z-index: 1; }

.explorer-hero .eyebrow {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--clutch-red);
  margin-bottom: 20px; display: inline-block;
}
.explorer-hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.94; letter-spacing: -0.028em;
  color: #fff; max-width: 1000px;
}
.explorer-hero h1 .accent { color: var(--clutch-red); }
.explorer-hero p {
  margin-top: 24px; font-size: 22px; line-height: 1.5;
  color: var(--fg-2); max-width: 720px;
}

.explorer-stats {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.explorer-stats .cell {
  padding: 20px 24px;
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 6px;
}
.explorer-stats .cell:last-child { border-right: 0; }
.explorer-stats .num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 44px; line-height: 1; letter-spacing: -0.02em;
  color: #fff;
}
.explorer-stats .num .unit { color: var(--clutch-red); }
.explorer-stats .lbl {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  margin-top: 4px;
}

/* ---- Filter bar ---- */
.filters {
  position: sticky; top: 65px; z-index: 50;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 32px;
}
.filters-inner {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.filter-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.filter-row .lbl {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  margin-right: 8px; min-width: 80px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--hairline);
  background: transparent; color: var(--fg-2);
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: all 160ms var(--ease-standard);
  white-space: nowrap;
}
.chip:hover { border-color: var(--hairline-strong); color: #fff; }
.chip.active {
  background: #fff; border-color: #fff; color: #000;
}
.chip .ct {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--fg-3); margin-left: 2px;
}
.chip.active .ct { color: rgba(0,0,0,0.5); }
.chip .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--c, var(--clutch-red));
}

/* Search input */
.search {
  position: relative; flex: 1; max-width: 360px;
}
.search input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 9px 12px 9px 36px;
  font-family: var(--font-body); font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color 160ms var(--ease-standard);
}
.search input::placeholder { color: var(--fg-4); }
.search input:focus { border-color: var(--clutch-red); }
.search::before {
  content: "⌕"; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--fg-3); font-size: 16px; pointer-events: none;
}

/* =============================================================
   FILTER BAR v2 — dropdowns
   ============================================================= */
.filters-v2 {
  position: sticky; top: 65px; z-index: 50;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.filters-v2-inner {
  max-width: 1480px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.filters-v2 .grp-lbl {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  margin-right: 6px;
}

/* Dropdown trigger */
.dd {
  position: relative;
}
.dd-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 12px 9px 14px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  color: #fff;
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: border-color 160ms, background 160ms;
  min-height: 38px;
  letter-spacing: -0.005em;
}
.dd-btn:hover {
  border-color: var(--hairline-strong);
  background: rgba(255,255,255,0.05);
}
.dd-btn.has-value {
  border-color: var(--clutch-red);
  background: rgba(255,59,31,0.08);
}
.dd-btn .k {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3);
}
.dd-btn.has-value .k { color: var(--clutch-red); }
.dd-btn .v {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff;
  max-width: 220px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.dd-btn .v .swatch {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--sw, var(--clutch-red));
  flex: 0 0 auto;
}
.dd-btn .v .flag { font-size: 14px; }
.dd-btn .chev {
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-3);
  margin-left: 4px;
  transition: transform 180ms var(--ease-standard);
}
.dd.open .dd-btn .chev { transform: rotate(180deg); color: #fff; }

/* Dropdown panel */
.dd-panel {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #0F0F0F;
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  min-width: 260px;
  max-height: 60vh;
  overflow-y: auto;
  padding: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  z-index: 100;
  animation: ddIn 140ms var(--ease-standard) both;
}
@keyframes ddIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dd-panel.right { left: auto; right: 0; }
.dd-panel .group-h {
  padding: 10px 12px 6px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-4); pointer-events: none;
}
.dd-opt {
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  background: transparent;
  border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 14px;
  color: var(--fg-1); text-align: left;
  transition: background 120ms;
}
.dd-opt:hover { background: rgba(255,255,255,0.06); }
.dd-opt.selected { background: rgba(255,59,31,0.12); color: #fff; }
.dd-opt.selected::before {
  content: "✓"; font-family: var(--font-mono); font-size: 13px;
  color: var(--clutch-red); margin-left: -2px;
}
.dd-opt .swatch {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--sw, var(--clutch-red));
  flex: 0 0 auto;
}
.dd-opt .flag { font-size: 16px; flex: 0 0 auto; }
.dd-opt .label { flex: 1; }
.dd-opt .ct {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-3); letter-spacing: 0.04em;
}
.dd-opt.disabled {
  color: var(--fg-4); cursor: not-allowed;
}
.dd-opt.disabled:hover { background: transparent; }

/* Search input v2 */
.search-v2 {
  position: relative; flex: 1; min-width: 220px; max-width: 340px;
}
.search-v2 input {
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 10px 12px 10px 36px;
  font-family: var(--font-body); font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color 160ms;
  min-height: 38px;
}
.search-v2 input::placeholder { color: var(--fg-4); }
.search-v2 input:focus { border-color: var(--clutch-red); }
.search-v2::before {
  content: "⌕";
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--fg-3); font-size: 16px; pointer-events: none;
}

/* Result summary inline */
.fv-summary {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3);
}
.fv-summary b {
  color: #fff; font-weight: 400; font-family: var(--font-display);
  font-size: 15px; letter-spacing: -0.01em;
}
.fv-clear {
  background: transparent; border: 1px solid var(--hairline);
  color: var(--fg-2);
  padding: 8px 12px; border-radius: 8px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  transition: all 160ms;
}
.fv-clear:hover { color: #fff; border-color: var(--clutch-red); }
.fv-clear:disabled { opacity: 0.4; cursor: default; }
.fv-clear:disabled:hover { color: var(--fg-2); border-color: var(--hairline); }

/* =============================================================
   EVENTS LIST — by month
   ============================================================= */
.events-wrap {
  max-width: 1480px; margin: 0 auto;
  padding: 40px 32px 96px;
}

.events-result-bar {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 0;
}
.events-result-bar .count {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; letter-spacing: -0.02em;
}
.events-result-bar .count .num { color: var(--clutch-red); }
.events-result-bar .sort {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
}

.month-section {
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
}
.month-section:last-child { border-bottom: 0; }
.month-header {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 20px;
}
.month-header .m {
  font-family: var(--font-display); font-weight: 500;
  font-size: 36px; letter-spacing: -0.02em;
  color: #fff;
}
.month-header .ct {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3);
}

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

.event-card {
  background: #0E0E0E;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 22px 22px 20px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 14px;
  text-align: left;
  font-family: inherit;
  color: inherit;
  position: relative;
  transition: all 200ms var(--ease-standard);
  min-height: 220px;
}
.event-card::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: border-color 200ms var(--ease-standard);
  pointer-events: none;
}
.event-card:hover {
  background: #131313;
  transform: translateY(-2px);
}
.event-card:hover::after { border-color: var(--c, var(--clutch-red)); }

.event-card .top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
}
.event-card .cat {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c, var(--clutch-red));
  padding: 5px 10px; border-radius: 999px;
  background: var(--c-bg, rgba(255,59,31,0.10));
  border: 1px solid var(--c-border, rgba(255,59,31,0.35));
}
.event-card .date {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3); text-align: right; line-height: 1.4;
}
.event-card .date b {
  display: block; color: #fff; font-weight: 400; font-size: 13px;
}

.event-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; line-height: 1.1; letter-spacing: -0.01em;
  color: #fff;
  text-wrap: pretty;
}

.event-card .meta {
  display: flex; gap: 12px; align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.event-card .meta .item {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-3); letter-spacing: 0.04em;
}
.event-card .meta .item b {
  color: #fff; font-weight: 400; font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0;
}
.event-card .meta .item .city {
  color: #fff; font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0;
}
.event-card .arrow {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--c, var(--clutch-red)); color: #fff;
  font-family: var(--font-display); font-size: 14px;
  margin-left: auto;
  transition: transform 200ms var(--ease-standard);
}
.event-card:hover .arrow { transform: translate(4px, -4px); }

.empty {
  padding: 80px 24px; text-align: center;
  color: var(--fg-3);
}
.empty .big {
  font-family: var(--font-display); font-size: 32px;
  color: #fff; margin-bottom: 12px;
}

/* =============================================================
   EVENT DETAIL VIEW
   ============================================================= */
.detail { min-height: 100vh; padding-bottom: 96px; }

.detail-back {
  position: sticky; top: 65px; z-index: 49;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.detail-back .back-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-2);
  cursor: pointer; background: transparent; border: 0;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 160ms var(--ease-standard);
}
.detail-back .back-btn:hover { color: #fff; background: rgba(255,255,255,0.06); }
.detail-back .actions { display: flex; gap: 10px; align-items: center; }

/* ---- HERO ---- */
.dh {
  position: relative;
  padding: 96px 32px 64px;
  max-width: 1480px; margin: 0 auto;
  overflow: hidden;
}
.dh::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 85% 30%, var(--c-glow, rgba(255,59,31,0.18)), transparent 60%);
  z-index: 0;
}
.dh > * { position: relative; z-index: 1; }
.dh-pills {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.dh-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-1);
  border: 1px solid var(--hairline);
  background: rgba(255,255,255,0.03);
}
.dh-pill.cat {
  color: var(--c, var(--clutch-red));
  border-color: var(--c-border, rgba(255,59,31,0.35));
  background: var(--c-bg, rgba(255,59,31,0.10));
}
.dh-pill .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--c, var(--clutch-red)); }

.dh h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.93; letter-spacing: -0.028em;
  color: #fff; max-width: 1280px;
}
.dh h1 .accent { color: var(--c, var(--clutch-red)); }
.dh .tagline {
  margin-top: 28px; font-size: 24px; color: var(--fg-2); line-height: 1.45;
  max-width: 780px; text-wrap: pretty;
}

.dh-meta {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.dh-meta .cell {
  padding: 22px 28px;
  border-right: 1px solid var(--hairline);
}
.dh-meta .cell:last-child { border-right: 0; }
.dh-meta .k {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 8px;
}
.dh-meta .v {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; color: #fff; line-height: 1.2;
}
.dh-meta .v small {
  display: block; font-family: var(--font-body);
  font-size: 14px; color: var(--fg-3); margin-top: 4px; font-weight: 400;
}

.dh-ctas {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.btn-primary {
  background: var(--c, var(--clutch-red)); color: #fff;
  border: 0; padding: 14px 22px; border-radius: 10px;
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: filter 160ms var(--ease-standard);
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid var(--hairline-strong);
  padding: 14px 22px; border-radius: 10px;
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 160ms var(--ease-standard);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: #fff; }

/* ---- Sections ---- */
.section {
  max-width: 1480px; margin: 0 auto;
  padding: 80px 32px;
}
.section.tight { padding: 56px 32px; }
.section-header { margin-bottom: 40px; max-width: 800px; }
.eyebrow-inline {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c, var(--clutch-red));
  display: inline-block; margin-bottom: 14px;
}
.section h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: #fff;
}
.section h2 .accent { color: var(--c, var(--clutch-red)); }
.section .lead {
  margin-top: 18px; font-size: 19px; line-height: 1.55;
  color: var(--fg-2); max-width: 740px;
}

/* ---- Two-col primitives ---- */
.col-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.col-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.col-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.col-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }

/* Numbered list */
.numlist { display: flex; flex-direction: column; }
.numlist .item {
  display: grid; grid-template-columns: 56px 1fr; gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}
.numlist .item:last-child { border-bottom: 1px solid var(--hairline); }
.numlist .n {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; color: var(--c, var(--clutch-red));
  padding-top: 4px;
}
.numlist h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; color: #fff; margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.numlist p {
  font-size: 15px; color: var(--fg-2); line-height: 1.55;
}

/* Bullets */
.bullets { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.bullets li {
  position: relative; padding-left: 26px;
  font-size: 16px; color: var(--fg-1); line-height: 1.45;
}
.bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 14px; height: 1px; background: var(--c, var(--clutch-red));
}

/* Card */
.box {
  background: #0E0E0E; border: 1px solid var(--hairline);
  border-radius: 14px; padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.box.featured {
  border-color: var(--c, var(--clutch-red));
  background: linear-gradient(180deg, var(--c-bg, rgba(255,59,31,0.10)) 0%, rgba(0,0,0,0) 50%), #0E0E0E;
}

/* KPI strip */
.kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.kpis .cell {
  padding: 28px 24px;
  border-right: 1px solid var(--hairline);
}
.kpis .cell:last-child { border-right: 0; }
.kpis .num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 56px; line-height: 1; letter-spacing: -0.02em;
  color: #fff;
}
.kpis .num .unit { color: var(--c, var(--clutch-red)); }
.kpis .num .small { font-size: 0.5em; color: var(--fg-3); }
.kpis .lbl {
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
}
.kpis .sub {
  margin-top: 6px; font-size: 13px; color: var(--fg-3); line-height: 1.5;
}

/* Bar rows */
.bar-row {
  display: grid; grid-template-columns: 1fr 60px; gap: 12px;
  padding: 10px 0; align-items: center;
  border-top: 1px solid var(--hairline);
}
.bar-row:first-of-type { border-top: 0; }
.bar-row .nm { font-family: var(--font-display); font-size: 14px; color: #fff; }
.bar-row .pct {
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-3);
  text-align: right; letter-spacing: 0.04em;
}
.bar-row .bar {
  grid-column: 1 / -1;
  height: 3px; background: #1A1A1A; border-radius: 999px; overflow: hidden;
}
.bar-row .bar > i {
  display: block; height: 100%;
  background: var(--c, var(--clutch-red));
}

/* Pricing comparison table */
.pkg-table { width: 100%; border-collapse: collapse; }
.pkg-table th {
  text-align: left; padding: 14px 16px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3); border-bottom: 1px solid var(--hairline);
  font-weight: 400;
}
.pkg-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px; color: var(--fg-2); vertical-align: middle;
}
.pkg-table td:first-child {
  font-family: var(--font-display); font-size: 17px;
  color: #fff; font-weight: 500;
}
.pkg-table tr.feat td:first-child::before {
  content: "";
  display: inline-block; vertical-align: middle;
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--c, var(--clutch-red));
  margin-right: 10px;
}
.pkg-table .price {
  font-family: var(--font-display); font-size: 20px;
  color: #fff; font-weight: 500; letter-spacing: -0.01em;
  text-align: right; white-space: nowrap;
}
.pkg-table .ck { color: var(--c, var(--clutch-red)); }
.pkg-table .ds { color: var(--fg-4); }

/* Package detail accordion */
.pkg-accordion { display: flex; flex-direction: column; gap: 10px; }
.pkg-item {
  background: #0E0E0E;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 200ms var(--ease-standard);
}
.pkg-item.open { border-color: var(--c, var(--clutch-red)); }
.pkg-item.feat { border-left: 3px solid var(--c, var(--clutch-red)); }
.pkg-head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 120px 180px 40px;
  align-items: center; gap: 16px;
  padding: 22px 24px;
  background: transparent; border: 0;
  text-align: left; cursor: pointer;
  font-family: inherit; color: inherit;
}
.pkg-head:hover { background: rgba(255,255,255,0.03); }
.pkg-head .nm {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; color: #fff; letter-spacing: -0.005em;
}
.pkg-head .qty {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3);
}
.pkg-head .price {
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; color: #fff; letter-spacing: -0.01em;
  text-align: right;
}
.pkg-head .price small {
  display: block; font-family: var(--font-mono); font-size: 10px;
  color: var(--fg-3); letter-spacing: 0.14em; margin-top: 4px; font-weight: 400;
}
.pkg-head .toggle {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  font-family: var(--font-mono); font-size: 16px; color: var(--fg-2);
  transition: all 200ms var(--ease-standard);
}
.pkg-item.open .toggle {
  background: var(--c, var(--clutch-red)); border-color: var(--c, var(--clutch-red));
  color: #fff; transform: rotate(45deg);
}
.pkg-body {
  display: none;
  padding: 0 24px 28px;
}
.pkg-item.open .pkg-body { display: block; }
.pkg-body .summary {
  font-size: 16px; color: var(--fg-1); line-height: 1.5;
  margin-bottom: 22px;
}
.pkg-body .incl {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
  list-style: none;
}
.pkg-body .incl li {
  position: relative; padding-left: 24px;
  font-size: 14px; color: var(--fg-2); line-height: 1.45;
}
.pkg-body .incl li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 14px; height: 1px; background: var(--c, var(--clutch-red));
}

/* Add-ons grid */
.addon {
  background: #0E0E0E; border: 1px solid var(--hairline);
  border-radius: 12px; padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 200px;
}
.addon .qty {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
}
.addon h5 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 20px; color: #fff; line-height: 1.1;
}
.addon p {
  font-size: 13px; color: var(--fg-3); line-height: 1.5;
}
.addon .pr {
  margin-top: auto;
  display: inline-flex; align-self: flex-start;
  padding: 8px 14px; border-radius: 8px;
  background: var(--c, var(--clutch-red)); color: #fff;
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
}

/* Discount cards */
.disc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.disc .card {
  background: #0E0E0E; border: 1px solid var(--hairline);
  border-radius: 14px; padding: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.disc .card.feat {
  border-color: var(--c, var(--clutch-red));
  background: linear-gradient(180deg, var(--c-bg, rgba(255,59,31,0.10)) 0%, rgba(0,0,0,0) 50%), #0E0E0E;
}
.disc .pct {
  font-family: var(--font-display); font-weight: 500;
  font-size: 80px; line-height: 0.9; letter-spacing: -0.025em;
  color: #fff;
}
.disc .pct .unit { color: var(--c, var(--clutch-red)); font-size: 0.7em; }
.disc .lbl {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
}
.disc h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; line-height: 1.1; color: #fff; margin-top: 8px;
}
.disc p {
  font-size: 13px; color: var(--fg-3); line-height: 1.5;
}

/* Quotes */
.quote {
  background: #0E0E0E; border: 1px solid var(--hairline);
  border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  height: 100%;
}
.quote .qm {
  font-family: var(--font-display); font-size: 60px;
  color: var(--c, var(--clutch-red));
  line-height: 0.6; height: 22px;
}
.quote p {
  font-size: 15px; color: var(--fg-1); line-height: 1.5;
}
.quote .by {
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--hairline);
  display: flex; align-items: center; gap: 12px;
}
.quote .who {
  font-family: var(--font-display); font-size: 14px; color: #fff;
}
.quote .who small {
  display: block; font-family: var(--font-body);
  font-size: 12px; color: var(--fg-3); margin-top: 2px;
}
.quote .co {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c, var(--clutch-red));
}

/* Logo cells */
.logo {
  border: 1px solid var(--hairline);
  background: #0A0A0A;
  border-radius: 10px;
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.logo span {
  font-family: var(--font-display); font-weight: 500;
  font-size: 14px; color: var(--fg-2);
  letter-spacing: 0.02em; opacity: 0.78;
  text-align: center;
}

/* Callout */
.callout {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 22px;
  background: var(--c-bg, rgba(255,59,31,0.10));
  border: 1px solid var(--c-border, rgba(255,59,31,0.35));
  border-radius: 10px;
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.06em; color: var(--c, var(--clutch-red));
  text-transform: uppercase;
}
.callout::before {
  content: "!"; display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--c, var(--clutch-red)); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  flex: 0 0 auto;
}

/* Final CTA */
.final-cta {
  position: relative;
  max-width: 1480px; margin: 0 auto;
  padding: 96px 32px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, var(--c-glow, rgba(255,59,31,0.18)), transparent 70%);
  z-index: 0;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.final-cta h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95; letter-spacing: -0.025em; color: #fff;
}
.final-cta h2 .accent { color: var(--c, var(--clutch-red)); }
.final-cta p {
  margin-top: 20px; font-size: 19px;
  color: var(--fg-2); line-height: 1.55; max-width: 480px;
}
.final-cta .ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.contact {
  background: #0E0E0E; border: 1px solid var(--hairline);
  border-radius: 14px; padding: 36px;
}
.contact .role {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c, var(--clutch-red));
}
.contact .nm {
  font-family: var(--font-display); font-weight: 500;
  font-size: 40px; color: #fff; line-height: 1; letter-spacing: -0.02em;
  margin-top: 10px;
}
.contact .ctc {
  margin-top: 18px;
  font-size: 16px; color: var(--fg-2); line-height: 1.7;
}
.contact .ctc a { color: #fff; border-bottom: 1px solid var(--hairline); cursor: pointer; }

/* Footer */
.footer {
  max-width: 1480px; margin: 0 auto;
  padding: 48px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
}

/* Other cities strip */
.other-cities {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.oc {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  cursor: pointer;
  transition: all 160ms var(--ease-standard);
  font-family: var(--font-display); font-size: 14px; color: #fff;
}
.oc:hover {
  border-color: var(--c, var(--clutch-red));
  background: var(--c-bg, rgba(255,59,31,0.10));
}
.oc .flag { font-size: 16px; }
.oc .dt {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--fg-3); letter-spacing: 0.12em; text-transform: uppercase;
  margin-left: 6px;
}

/* Responsive */
@media (max-width: 1100px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .col-2 { grid-template-columns: 1fr; gap: 32px; }
  .col-3 { grid-template-columns: 1fr; }
  .col-4 { grid-template-columns: repeat(2, 1fr); }
  .col-5 { grid-template-columns: repeat(2, 1fr); }
  .disc { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .pkg-head { grid-template-columns: 1fr auto; gap: 10px; }
  .pkg-head .qty, .pkg-head .price small { display: none; }
}

/* =============================================================
   MOBILE — <=720px
   ============================================================= */
@media (max-width: 720px) {

  /* ---- Nav ---- */
  .nav {
    padding: 12px 18px;
    gap: 12px;
  }
  .nav .wm { font-size: 19px; }
  .nav .crumb {
    font-size: 10px;
    letter-spacing: 0.10em;
    max-width: 140px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .nav .crumb::before { margin-right: 6px; }
  .nav .links { gap: 12px; margin-left: auto; }
  .nav .links a:not(.cta) { display: none; }
  .nav .cta { padding: 8px 14px; font-size: 12px; }

  /* ---- Explorer hero ---- */
  .explorer-hero {
    padding: 48px 18px 32px;
  }
  .explorer-hero .eyebrow { font-size: 11px; margin-bottom: 14px; }
  .explorer-hero h1 { font-size: 44px; letter-spacing: -0.025em; }
  .explorer-hero p { font-size: 17px; margin-top: 18px; }
  .explorer-stats {
    margin-top: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
  .explorer-stats .cell {
    padding: 16px 16px;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .explorer-stats .cell:nth-child(2n) { border-right: 0; }
  .explorer-stats .cell:nth-child(n+3) { border-bottom: 0; }
  .explorer-stats .num { font-size: 32px; }
  .explorer-stats .lbl { font-size: 10px; }

  /* ---- Filter bar v2 — stack vertically ---- */
  .filters-v2 { top: 60px; }
  .filters-v2-inner {
    padding: 12px 18px;
    gap: 8px;
  }
  .filters-v2 .grp-lbl { display: none; }
  .dd { flex: 1 1 calc(50% - 4px); min-width: 0; }
  .dd-btn {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 13px;
  }
  .dd-btn .v {
    max-width: 100px;
  }
  .dd-panel {
    min-width: 240px;
    max-height: 50vh;
  }
  .search-v2 {
    flex: 1 1 100%;
    max-width: 100%;
    order: 3;
  }
  .fv-summary {
    flex: 1 1 100%;
    margin-left: 0;
    justify-content: space-between;
    order: 4;
  }
  .fv-clear { padding: 6px 10px; }

  /* ---- Events grid ---- */
  .events-wrap { padding: 24px 18px 64px; }
  .events-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .month-section { padding: 20px 0; }
  .month-header { margin-bottom: 14px; }
  .month-header .m { font-size: 26px; }
  .month-header .ct { font-size: 10px; }
  .event-card {
    padding: 18px;
    min-height: auto;
    gap: 12px;
  }
  .event-card h3 { font-size: 20px; }
  .event-card .meta {
    padding-top: 12px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .event-card .meta .item { font-size: 10px; }
  .event-card .meta .item b,
  .event-card .meta .item .city { font-size: 12px; }
  .event-card .arrow { width: 24px; height: 24px; font-size: 12px; }

  /* ---- Detail back bar ---- */
  .detail-back {
    top: 60px;
    padding: 10px 18px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .detail-back .back-btn {
    font-size: 10px;
    padding: 6px 10px;
  }
  .detail-back .actions { gap: 8px; }
  .detail-back .actions .dh-pill { display: none; }

  /* ---- Detail hero ---- */
  .dh {
    padding: 36px 18px 32px;
  }
  .dh-pills { gap: 6px; margin-bottom: 18px; }
  .dh-pill {
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 6px 10px;
    gap: 6px;
  }
  .dh h1 {
    font-size: 40px;
    letter-spacing: -0.025em;
  }
  .dh .tagline { font-size: 17px; margin-top: 18px; }
  .dh-meta {
    margin-top: 32px;
    grid-template-columns: 1fr 1fr;
  }
  .dh-meta .cell {
    padding: 16px 18px;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .dh-meta .cell:nth-child(2n) { border-right: 0; }
  .dh-meta .cell:nth-child(n+3) { border-bottom: 0; }
  .dh-meta .k { font-size: 10px; margin-bottom: 6px; }
  .dh-meta .v { font-size: 17px; }
  .dh-meta .v small { font-size: 12px; }
  .dh-ctas {
    margin-top: 24px;
    flex-direction: column;
    gap: 8px;
  }
  .btn-primary, .btn-ghost {
    width: 100%; justify-content: center;
    padding: 14px 20px; font-size: 13px;
  }

  /* ---- Sections ---- */
  .section { padding: 48px 18px; }
  .section.tight { padding: 36px 18px; }
  .section-header { margin-bottom: 24px; }
  .section h2 { font-size: 30px; line-height: 1.05; }
  .section .lead { font-size: 16px; margin-top: 12px; }
  .eyebrow-inline { font-size: 11px; margin-bottom: 10px; }

  /* numlist */
  .numlist .item {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 16px 0;
  }
  .numlist h4 { font-size: 18px; }
  .numlist p { font-size: 14px; }

  /* boxes */
  .box { padding: 24px !important; }

  /* KPI strip */
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .kpis .cell {
    padding: 20px 16px;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .kpis .cell:nth-child(2n) { border-right: 0; }
  .kpis .cell:nth-child(n+3) { border-bottom: 0; }
  .kpis .num { font-size: 36px; }
  .kpis .num .small { font-size: 0.55em; }
  .kpis .lbl { font-size: 10px; }
  .kpis .sub { font-size: 12px; }

  /* Pricing table → cards */
  .pkg-table thead { display: none; }
  .pkg-table, .pkg-table tbody, .pkg-table tr, .pkg-table td {
    display: block; width: 100%;
  }
  .pkg-table tr {
    background: #0E0E0E;
    border: 1px solid var(--hairline);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 10px;
    position: relative;
  }
  .pkg-table tr.feat { border-color: var(--c, var(--clutch-red)); }
  .pkg-table td {
    border-bottom: 0; padding: 6px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px;
  }
  .pkg-table td:first-child {
    font-size: 22px; padding-bottom: 12px;
    border-bottom: 1px solid var(--hairline); margin-bottom: 10px;
  }
  .pkg-table td:not(:first-child)::before {
    content: attr(data-lbl);
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  }
  .pkg-table .price {
    font-size: 22px;
    text-align: right;
  }

  /* Package accordion */
  .pkg-head {
    grid-template-columns: 1fr 36px;
    padding: 16px 18px;
    gap: 10px;
  }
  .pkg-head .nm { font-size: 17px; }
  .pkg-head .qty,
  .pkg-head .price { display: none; }
  .pkg-body { padding: 0 18px 20px; }
  .pkg-body .summary { font-size: 14px; margin-bottom: 16px; }
  .pkg-body .incl {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pkg-body .incl li { font-size: 13px; }

  /* Add-ons */
  .col-4 { grid-template-columns: 1fr; gap: 10px; }
  .addon { min-height: auto; padding: 18px; }
  .addon h5 { font-size: 17px; }

  /* Discount cards */
  .disc .card { padding: 22px; }
  .disc .pct { font-size: 56px; }
  .disc h4 { font-size: 19px; }

  /* Quotes */
  .quote { padding: 22px; }
  .quote p { font-size: 14px; }
  .quote .qm { font-size: 48px; }

  /* Partners logo grid */
  .col-5 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
  .logo { height: 56px; padding: 10px; }
  .logo span { font-size: 11px; }

  /* Other cities chips */
  .other-cities { gap: 8px; }
  .oc {
    font-size: 13px; padding: 8px 12px;
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
  }
  .oc .dt { font-size: 9px; margin-left: 4px; }

  /* Final CTA */
  .final-cta { padding: 56px 18px; }
  .final-cta-inner { gap: 32px; }
  .final-cta h2 { font-size: 36px; }
  .final-cta p { font-size: 16px; margin-top: 14px; }
  .final-cta .ctas { flex-direction: column; gap: 8px; }
  .final-cta .ctas .btn-primary,
  .final-cta .ctas .btn-ghost { width: 100%; justify-content: center; }
  .contact { padding: 24px; }
  .contact .nm { font-size: 30px; }

  /* Footer */
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 28px 18px;
    font-size: 10px;
    letter-spacing: 0.10em;
  }
}

/* Very small (<=400px) — extra trim */
@media (max-width: 400px) {
  .explorer-hero h1 { font-size: 36px; }
  .dh h1 { font-size: 34px; }
  .section h2 { font-size: 26px; }
  .dd { flex: 1 1 100%; }
  .dd-btn .v { max-width: none; }
  .col-5 { grid-template-columns: repeat(2, 1fr) !important; }
  .oc { flex: 1 1 100%; }
}
