/* ============================================================
   The Event Trip — page styles
   ============================================================ */

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 78% 18%, #1b2430 0%, #0d1014 58%, #090b0e 100%);
  color: #eae6dd;
  margin-top: -64px;
  padding-block: calc(64px + clamp(var(--space-6), 3vw, var(--space-12))) 0;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* faint horizon line, like a stadium light bloom */
  content: '';
  position: absolute;
  inset: auto 0 22% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 149, 74, 0.28), transparent);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
  padding-bottom: clamp(var(--space-12), 6vw, var(--space-24));
}
.hero-copy h1 {
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-block: var(--space-5) var(--space-6);
  color: #fbf8f2;
}
.hero-sub {
  max-width: 46ch;
  color: #b4b0a7;
  font-size: var(--text-base);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.22);
  color: #eae6dd;
}
.btn-on-dark:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}
.hero-hint {
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7d7a73;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.hint-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e39a4a;
  box-shadow: 0 0 0 0 rgba(227, 154, 74, 0.6);
  animation: ping 2.6s var(--ease) infinite;
}
@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 154, 74, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(227, 154, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 154, 74, 0);
  }
}

.hero-globe {
  position: relative;
}
#globe {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 62vh;
  cursor: grab;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
#globe.is-ready {
  opacity: 1;
}
#globe:active {
  cursor: grabbing;
}
#globe-status {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f5c56;
}
#globe-tip {
  position: absolute;
  pointer-events: none;
  transform: translate(14px, -50%);
  background: rgba(10, 13, 17, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  min-width: 176px;
  opacity: 0;
  transition: opacity 0.16s var(--ease);
  z-index: 5;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}
#globe-tip.is-on {
  opacity: 1;
}
#globe-tip strong {
  display: block;
  font-size: var(--text-sm);
  color: #fbf8f2;
  font-weight: 600;
}
#globe-tip span {
  display: block;
  font-size: var(--text-xs);
  color: #8e8a82;
  margin-top: 2px;
}
#globe-tip em {
  display: block;
  font-style: normal;
  font-size: var(--text-xs);
  margin-top: var(--space-2);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tip-live {
  color: #e39a4a;
}
.tip-soon {
  color: #6f6c66;
}
.hero-fade {
  height: clamp(var(--space-10), 6vw, var(--space-20));
  background: linear-gradient(to bottom, transparent, var(--color-bg));
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-globe {
    order: -1;
  }
  #globe {
    max-height: 46vh;
  }
  #globe-tip {
    display: none;
  }
}

/* ---------------- BANDS ---------------- */
.band-paper {
  background: var(--color-surface-2);
  border-block: 1px solid var(--color-divider);
}
.band-ink {
  background: var(--color-ink);
  color: #cfcabf;
}
.band-ink h2 {
  color: #fbf8f2;
}
.who-head {
  font-size: var(--text-xl);
  font-weight: 400;
  max-width: 24ch;
  margin-block: var(--space-4) var(--space-8);
  line-height: 1.22;
}

/* ---------------- SPLIT + PROSE ---------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}
.split-left h2 {
  font-size: var(--text-xl);
  font-weight: 400;
  margin-top: var(--space-3);
  max-width: 16ch;
}
@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split-left h2 {
    max-width: 22ch;
  }
}
.prose {
  max-width: var(--measure);
}
.prose p + p {
  margin-top: var(--space-5);
}
.prose-invert p {
  color: #a8a49b;
}
.prose-invert strong {
  color: #eae6dd;
}

/* ---------------- PILLARS ---------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--color-divider);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
}
.pillar {
  background: var(--color-surface);
  padding: var(--space-8) var(--space-6) var(--space-10);
}
.pillar-num {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
.pillar h3 {
  font-size: var(--text-lg);
  font-weight: 400;
  margin-block: var(--space-3) var(--space-3);
}
.pillar p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.66;
}

/* ---------------- SECTION HEAD ---------------- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: end;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}
.section-head h2 {
  font-size: var(--text-xl);
  font-weight: 400;
  margin-top: var(--space-3);
}
.section-head-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 48ch;
}
@media (max-width: 760px) {
  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* ---------------- FEATURE CARD ---------------- */
.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.feature-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.feature-card-body {
  padding: clamp(var(--space-6), 3vw, var(--space-10));
}
.badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
}
.badge-live {
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border: 1px solid var(--color-accent-line);
}
.feature-card h3 {
  font-size: var(--text-xl);
  font-weight: 400;
  margin-block: var(--space-4) var(--space-2);
}
.feature-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.feature-desc {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 54ch;
  color: var(--color-text);
}
.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
}
.feature-card:hover .feature-cta svg {
  transform: translateX(3px);
}
.feature-cta svg {
  transition: transform 0.2s var(--ease);
}
.feature-card-visual {
  background: var(--color-surface-offset);
  border-left: 1px solid var(--color-divider);
  display: grid;
  place-items: center;
  padding: var(--space-6);
  color: var(--color-text-muted);
}
.cluster-dia {
  width: 100%;
  height: auto;
  font-family: var(--font-body);
}
@media (max-width: 820px) {
  .feature-card {
    grid-template-columns: 1fr;
  }
  .feature-card-visual {
    border-left: 0;
    border-top: 1px solid var(--color-divider);
    order: -1;
  }
}

/* ---------------- QUEUE ---------------- */
.queue-head {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-block: clamp(var(--space-10), 5vw, var(--space-16)) var(--space-5);
}
.queue {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 1px;
  background: var(--color-divider);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius);
  overflow: hidden;
}
.queue li {
  background: var(--color-bg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.queue b {
  font-weight: 600;
  font-size: var(--text-sm);
}
.queue span {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============================================================
   VENUE PAGE
   ============================================================ */
.venue-hero {
  background: var(--color-ink);
  color: #eae6dd;
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.crumb {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: #7d7a73;
  margin-bottom: var(--space-5);
}
.crumb a {
  color: #a8a49b;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 164, 155, 0.3);
}
.crumb a:hover {
  color: #eae6dd;
}
.venue-hero h1 {
  font-size: var(--text-2xl);
  font-weight: 300;
  color: #fbf8f2;
  max-width: 20ch;
}
.venue-dek {
  margin-top: var(--space-5);
  max-width: 60ch;
  color: #b4b0a7;
  line-height: 1.7;
}
.venue-stamp {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-10);
  font-size: var(--text-xs);
  color: #7d7a73;
}
.venue-stamp b {
  display: block;
  color: #eae6dd;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-top: 3px;
}

/* Quick answer box — the thing people actually came for */
.answer-box {
  background: var(--color-surface);
  border: 1px solid var(--color-accent-line);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
  padding: clamp(var(--space-5), 3vw, var(--space-8));
  margin-block: clamp(var(--space-10), 5vw, var(--space-12));
  box-shadow: var(--shadow-sm);
}
.answer-box h2 {
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.answer-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-4);
}
.answer-list li {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: var(--space-5);
  font-size: var(--text-sm);
  line-height: 1.66;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.answer-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.answer-list dt,
.answer-list .k {
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 2px;
}
@media (max-width: 620px) {
  .answer-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-1);
  }
}

/* Article layout with sticky contents */
.venue-body {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
  padding-block: clamp(var(--space-8), 4vw, var(--space-12))
    clamp(var(--space-16), 8vw, var(--space-24));
}
.toc {
  position: sticky;
  top: 88px;
  font-size: var(--text-sm);
}
.toc p {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.toc ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-3);
  border-left: 1px solid var(--color-divider);
}
.toc a {
  display: block;
  padding-left: var(--space-4);
  margin-left: -1px;
  border-left: 2px solid transparent;
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.35;
  transition: color 0.15s, border-color 0.15s;
}
.toc a:hover,
.toc a.is-active {
  color: var(--color-text);
  border-left-color: var(--color-accent);
}
@media (max-width: 900px) {
  .venue-body {
    grid-template-columns: minmax(0, 1fr);
  }
  .toc {
    position: static;
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-divider);
  }
  .toc ul {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    display: grid;
    border-left: 0;
  }
  .toc a {
    padding-left: 0;
    border-left: 0;
  }
}

.article > section {
  padding-block: 0 clamp(var(--space-10), 5vw, var(--space-16));
  scroll-margin-top: 90px;
}
.article h2 {
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-5);
}
.article h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-block: var(--space-8) var(--space-3);
}
.article p {
  max-width: var(--measure);
  margin-bottom: var(--space-5);
}
.article a:not(.btn):not(.cta-card) {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent-line);
  transition: border-color 0.15s;
}
.article a:not(.btn):not(.cta-card):hover {
  border-bottom-color: var(--color-accent);
}
.article ul,
.article ol {
  max-width: var(--measure);
  margin-bottom: var(--space-5);
  padding-left: var(--space-5);
}
.article li {
  margin-bottom: var(--space-3);
  line-height: 1.66;
}
.article li::marker {
  color: var(--color-accent);
}

.callout {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-6);
  margin-block: var(--space-6);
  font-size: var(--text-sm);
  line-height: 1.66;
  max-width: var(--measure);
}
.callout b {
  color: var(--color-text);
}
.callout.callout-warn {
  border-color: var(--color-accent-line);
  background: var(--color-accent-soft);
}

/* Data table */
.table-scroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: var(--space-6);
  background:
    linear-gradient(to right, var(--color-surface) 30%, transparent),
    linear-gradient(to left, var(--color-surface) 30%, transparent) 100% 0,
    radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, 0.14), transparent),
    radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.14), transparent) 100% 0;
  background-repeat: no-repeat;
  background-size: 44px 100%, 44px 100%, 14px 100%, 14px 100%;
  background-attachment: local, local, scroll, scroll;
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  min-width: 520px;
}
table.data th,
table.data td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-divider);
  vertical-align: top;
  line-height: 1.5;
}
table.data thead th {
  background: var(--color-surface-2);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  white-space: nowrap;
}
table.data tbody tr:last-child td {
  border-bottom: 0;
}
table.data tbody tr:hover {
  background: var(--color-surface-2);
}

/* Map */
.map-frame {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-block: var(--space-6);
  background: var(--color-surface-2);
}
#parkingMap {
  width: 100%;
  height: clamp(360px, 52vh, 520px);
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  background: var(--color-surface);
}
.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.lg-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: none;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
}
.maplibregl-popup-content {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18) !important;
  line-height: 1.5;
}
.maplibregl-popup-content strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13.5px;
}
.maplibregl-popup-content em {
  font-style: normal;
  color: #6b665c;
  font-size: 12px;
}

/* CTA card — one per page, placed after the logistics payoff */
.cta-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  margin-block: var(--space-8);
  max-width: var(--measure);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cta-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
}
.cta-card h3 {
  font-family: var(--font-display) !important;
  font-size: var(--text-lg) !important;
  font-weight: 500 !important;
  margin-block: 0 var(--space-3) !important;
}
.cta-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.cta-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.source-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.7;
  max-width: var(--measure);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
  margin-top: var(--space-6);
}
.source-note a {
  color: var(--color-text-muted) !important;
}

/* ============================================================
   HOTELS LANDING PAGE
   ============================================================ */
.hotel-hero {
  background: linear-gradient(160deg, #12171e 0%, #0d1014 100%);
  color: #eae6dd;
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}
.hotel-hero h1 {
  font-size: var(--text-2xl);
  font-weight: 300;
  color: #fbf8f2;
  max-width: 20ch;
}
.hotel-hero .venue-dek {
  max-width: 58ch;
}
.cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin-block: var(--space-8);
}
@media (max-width: 720px) {
  .cluster-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.cluster {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}
.cluster-rank {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.cluster h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-block: var(--space-3) var(--space-2);
}
.cluster .drive {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.cluster p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.66;
  margin-bottom: var(--space-4);
}
.cluster ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
  font-size: var(--text-sm);
  display: grid;
  gap: var(--space-2);
}
.cluster ul li::before {
  content: '—';
  color: var(--color-text-faint);
  margin-right: var(--space-2);
}
.cluster .verdict {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.cluster .verdict b {
  color: var(--color-accent);
}

.widget-slot {
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  margin-block: var(--space-8);
  text-align: center;
}
.widget-slot h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.widget-slot p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}
#expedia-widget {
  min-height: 60px;
  display: grid;
  place-items: center;
}

/* ---------------- HOMEPAGE FLOW ---------------- */
.flow {
  list-style: none;
  margin-inline: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--color-divider);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
  counter-reset: none;
}
.flow-step {
  position: relative;
  background: var(--color-surface);
  padding: var(--space-7, 1.75rem) var(--space-5) var(--space-8);
}
.flow-step::after {
  content: '';
  position: absolute;
  top: var(--space-8);
  right: -5px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
  transform: rotate(45deg);
  z-index: 2;
  background: var(--color-surface);
}
.flow-step:last-child::after {
  display: none;
}
.flow-num {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
.flow-step h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.25;
  margin-block: var(--space-2) var(--space-2);
}
.flow-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------------- VENUE TRIP FLOW ---------------- */
.trip-flow-wrap {
  margin-top: clamp(var(--space-8), 3vw, var(--space-10));
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}
.trip-flow-h {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.trip-flow-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  max-width: 56ch;
}
.trip-flow {
  list-style: none;
  margin: 0;
  margin-top: var(--space-6);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 1px;
  background: var(--color-divider);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tf-step {
  background: var(--color-surface);
  position: relative;
}
.tf-step > a {
  display: block;
  height: 100%;
  padding: var(--space-5) var(--space-3) var(--space-6);
  text-decoration: none;
  color: inherit;
  border: 0;
  transition: background 0.2s var(--ease);
}
.tf-step > a:hover,
.tf-step > a:focus-visible {
  background: var(--color-surface-2);
}
.tf-i {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}
.tf-t {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.2;
  margin-block: var(--space-2) var(--space-2);
}
.tf-d {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.tf-step::after {
  content: '';
  position: absolute;
  top: var(--space-6);
  right: -5px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
  transform: rotate(45deg);
  z-index: 2;
  background: var(--color-surface);
  pointer-events: none;
}
.tf-step:last-child::after {
  display: none;
}

/* ---------------- ACCORDIONS ---------------- */
.acc {
  border-top: 1px solid var(--color-divider);
  margin: 0;
}
.acc:last-of-type {
  border-bottom: 1px solid var(--color-divider);
}
.acc > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  transition: color 0.18s var(--ease);
}
.acc > summary::-webkit-details-marker {
  display: none;
}
.acc > summary:hover .acc-title,
.acc > summary:focus-visible .acc-title {
  color: var(--color-accent);
}
.acc > summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.acc-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.005em;
  flex: 1;
  transition: color 0.18s var(--ease);
}
.acc-ico {
  flex: none;
  position: relative;
  width: 13px;
  height: 13px;
  align-self: center;
}
.acc-ico::before,
.acc-ico::after {
  content: '';
  position: absolute;
  background: var(--color-text-muted);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.acc-ico::before {
  top: 6px;
  left: 0;
  width: 13px;
  height: 1.5px;
}
.acc-ico::after {
  left: 6px;
  top: 0;
  width: 1.5px;
  height: 13px;
}
.acc[open] > summary .acc-ico::after {
  transform: rotate(90deg);
  opacity: 0;
}
.acc[open] > summary .acc-title {
  color: var(--color-accent);
}
.acc-body {
  padding-bottom: var(--space-6);
  animation: accIn 0.28s var(--ease);
}
.acc-body > *:first-child {
  margin-top: 0;
}
@keyframes accIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .acc-body {
    animation: none;
  }
}

/* ---------------- FAQ ---------------- */
.faq-list {
  margin-top: var(--space-6);
}
.faq-q .acc-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}
.faq-q > summary {
  padding-block: var(--space-4);
}

/* ---------------- MAP PIN CARDS ---------------- */
.pin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: var(--space-3);
  margin-block: var(--space-5) var(--space-6);
}
.pin-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-4) var(--space-5);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.pin-card:hover,
.pin-card:focus-visible {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  outline: none;
}
.pin-card.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}
.pin-kind {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.pin-kind::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pin, var(--color-accent));
}
.pin-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  margin-block: var(--space-2) 2px;
}
.pin-sub {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  margin: 0;
}
.pin-facts {
  margin: var(--space-3) 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px var(--space-3);
  font-size: 0.75rem;
  line-height: 1.45;
}
.pin-facts dt {
  color: var(--color-text-faint);
  white-space: nowrap;
}
.pin-facts dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 500;
}
.pin-note {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-divider);
}
button.popup-link {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font: 600 0.75rem/1 var(--font-body);
  letter-spacing: 0.04em;
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------- FLOW: explicit column counts so no orphan cells ---------------- */
.flow,
.trip-flow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 620px) {
  .flow,
  .trip-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .flow > :nth-child(4)::after,
  .trip-flow > :nth-child(4)::after {
    display: none;
  }
}
@media (min-width: 980px) {
  .flow,
  .trip-flow {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .flow > :nth-child(4)::after,
  .trip-flow > :nth-child(4)::after {
    display: block;
  }
}
.flow > :nth-child(2n)::after,
.trip-flow > :nth-child(2n)::after {
  display: none;
}
@media (min-width: 620px) {
  .flow > :nth-child(2n)::after,
  .trip-flow > :nth-child(2n)::after {
    display: block;
  }
}
.flow > :last-child::after,
.trip-flow > :last-child::after {
  display: none !important;
}

/* no empty trailing cell when 7 items wrap */
@media (max-width: 619px) {
  .flow > :last-child,
  .trip-flow > :last-child {
    grid-column: 1 / -1;
  }
}
@media (min-width: 620px) and (max-width: 979px) {
  .flow > :last-child,
  .trip-flow > :last-child {
    grid-column: span 2;
  }
}
