/* ============ PAGE HEADER IMAGE variant ============ */
.page-header--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-img) center/cover no-repeat;
  opacity: 0.32;
  filter: grayscale(1) contrast(1.08) brightness(0.75);
  z-index: 0;
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
}
.page-header--image .wrap { position: relative; z-index: 2; }

/* Push the background image fully to the right column */
.page-header--image-right::after {
  left: auto;
  right: 0;
  width: 55%;
  background-position: center center;
  opacity: 0.55;
  mix-blend-mode: normal;
  filter: contrast(1.05) brightness(0.95);
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
}
@media (max-width: 800px) {
  .page-header--image-right::after { width: 100%; opacity: 0.25; }
}

/* ============ PAGE HEADER (shared) ============ */
.page-header {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--s-8));
  padding-bottom: var(--s-7);
  background: var(--bg-deep);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(230,57,71,0.18), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(230,57,71,0.08), transparent 55%);
  pointer-events: none;
}
.page-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-6);
  align-items: end;
}
@media (max-width: 800px) {
  .page-header__inner { grid-template-columns: 1fr; }
}
.page-header h1 {
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.9;
}
.page-header h1 em {
  color: var(--solo-red);
  font-style: italic;
}
.page-header__lead {
  color: var(--text-muted);
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.7;
}

/* Breadcrumbs */
.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s-4);
}
.crumbs a { color: var(--text-muted); transition: color 0.2s var(--ease-out); }
.crumbs a:hover { color: var(--solo-red); }
.crumbs span { color: var(--solo-red); }

/* ============ CIRCUITO ============ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
}
.tour-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  min-height: 380px;
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s var(--ease-out), border-color 0.25s var(--ease-out);
}
.tour-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
}
.tour-card__bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: radial-gradient(circle at 70% 20%, rgba(230,57,71,0.3), transparent 55%);
  pointer-events: none;
}
.tour-card__date {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  color: var(--solo-red);
  line-height: 1;
  letter-spacing: -0.01em;
  font-style: italic;
  transform: skewX(-6deg);
  display: inline-block;
}
.tour-card__kind {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--s-3);
  margin-bottom: var(--s-2);
}
.tour-card h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
  margin: 0 0 var(--s-3);
}
.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border-subtle);
}
.tour-card__meta b { color: var(--text-primary); font-weight: 600; }

/* Rules grid */
.rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 900px) { .rules { grid-template-columns: 1fr; } }
.rule {
  background: var(--bg-black);
  padding: var(--s-5);
}
.rule__num {
  font-family: var(--font-display);
  color: var(--solo-red);
  font-size: 48px;
  line-height: 1;
  margin-bottom: var(--s-3);
  font-style: italic;
  transform: skewX(-6deg);
  display: inline-block;
}
.rule h3 { font-size: 22px; margin-bottom: 10px; }
.rule p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Prizes */
.prizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
@media (max-width: 900px) { .prizes { grid-template-columns: 1fr 1fr; } }
.prize {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: var(--s-5);
  text-align: left;
}
.prize__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.prize__amount {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--solo-red);
  font-style: italic;
  transform: skewX(-6deg);
  transform-origin: left;
}

/* ============ RANKING ============ */
.podium {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: var(--s-3);
  align-items: end;
  margin-bottom: var(--s-7);
}
@media (max-width: 760px) {
  .podium { grid-template-columns: 1fr; gap: var(--s-4); }
}
.podium__step {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: var(--s-5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  transition: border-color 0.3s var(--ease-out);
}
.podium__step:hover { border-color: var(--border-red); }
.podium__step--1 {
  min-height: 380px;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(230,57,71,0.12), var(--bg-elevated));
  border-color: var(--border-red);
}
.podium__step--2 { min-height: 320px; justify-content: flex-end; }
.podium__step--3 { min-height: 280px; justify-content: flex-end; }
.podium__pos {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.82;
  color: var(--solo-red);
  font-style: italic;
  transform: skewX(-6deg);
}
.podium__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.podium__avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.05); }
.podium__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1;
  text-transform: uppercase;
}
.podium__pts {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.podium__pts b { color: var(--solo-red); font-family: var(--font-display); font-size: 18px; letter-spacing: 0; font-style: italic; }

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}
.ranking-table th,
.ranking-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.ranking-table th {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  background: var(--bg-deep);
}
.ranking-table tr { transition: background 0.2s var(--ease-out); }
.ranking-table tbody tr:hover { background: rgba(230,57,71,0.04); cursor: pointer; }
.ranking-table tbody tr:last-child td { border-bottom: 0; }
.ranking-table .pos {
  font-family: var(--font-display);
  color: var(--solo-red);
  font-size: 22px;
  font-style: italic;
  display: inline-block;
  transform: skewX(-6deg);
  min-width: 30px;
}
.ranking-table .player {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-primary);
}
.ranking-table .player img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}
.ranking-table .pts { font-family: var(--font-display); font-size: 18px; font-style: italic; transform: skewX(-6deg); display: inline-block; }
.ranking-table .delta-up { color: #4ADE80; font-size: 12px; letter-spacing: 0.1em; }
.ranking-table .delta-down { color: var(--solo-red); font-size: 12px; letter-spacing: 0.1em; }
.ranking-table .delta-same { color: var(--text-dim); font-size: 12px; }

@media (max-width: 720px) {
  .ranking-table th:nth-child(4),
  .ranking-table td:nth-child(4),
  .ranking-table th:nth-child(5),
  .ranking-table td:nth-child(5) { display: none; }
}

/* ============ PLAYER PROFILE ============ */
.player-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--s-6));
  padding-bottom: var(--s-7);
  background: var(--bg-deep);
  overflow: hidden;
}
.player-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(230,57,71,0.18), transparent 55%);
  pointer-events: none;
}
.player-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (max-width: 900px) { .player-hero__inner { grid-template-columns: 1fr; } }
.player-hero__name {
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.88;
  margin-bottom: var(--s-4);
}
.player-hero__name em { color: var(--solo-red); font-style: italic; display: block; }
.player-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--s-5);
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tag--red { border-color: var(--border-red); color: var(--solo-red); }
.player-hero__photo {
  aspect-ratio: 4/5;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
}
.player-hero__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.6) contrast(1.1); }
.player-hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5), transparent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  background: var(--bg-black);
  padding: var(--s-5) var(--s-4);
}
.stat__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat__value {
  display: block;
  margin-top: var(--s-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  color: var(--text-primary);
  transform: skewX(-6deg);
  transform-origin: left;
}
.stat__value em { color: var(--solo-red); font-style: italic; }

/* ============ CANDIDATURAS / FORMS ============ */
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  max-width: 800px;
  margin-top: var(--s-5);
}
@media (max-width: 600px) { .form { grid-template-columns: 1fr; } }
.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__field--full { grid-column: 1 / -1; }
.form__field label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form__field label .req { color: var(--solo-red); }
.form__field input,
.form__field select,
.form__field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  color: var(--text-primary);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s var(--ease-out);
  border-radius: 0;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--text-dim); }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { border-bottom-color: var(--solo-red); }
.form__field textarea { min-height: 120px; resize: vertical; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.chip input { display: none; }
.chip:hover { border-color: var(--solo-red); color: var(--solo-red); }
.chip:has(input:checked) {
  background: var(--solo-red);
  border-color: var(--solo-red);
  color: #fff;
}

.form__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--solo-red);
  color: #fff;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), background 0.25s var(--ease-out);
  justify-self: start;
  margin-top: var(--s-3);
}
.form__submit:hover { transform: translateY(-2px); background: #ff4754; }

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.post {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.25s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.post:hover { transform: translateY(-4px); border-color: var(--border-red); }
.post__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0c0c0c;
}
.post__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.post:hover .post__thumb img { transform: scale(1.06); }
.post__body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.post__meta {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--solo-red);
}
.post__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
.post__excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.post__foot {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Blog article page */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--s-7) 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
}
.article h2 { font-size: clamp(32px, 3vw, 48px); margin: var(--s-6) 0 var(--s-3); }
.article h3 { font-size: clamp(22px, 2vw, 30px); margin: var(--s-5) 0 var(--s-3); }
.article p { margin: 0 0 var(--s-4); color: var(--text-muted); }
.article a { color: var(--solo-red); border-bottom: 1px solid var(--border-red); }
.article blockquote {
  margin: var(--s-5) 0;
  padding: var(--s-4) var(--s-5);
  border-left: 3px solid var(--solo-red);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
  color: var(--text-primary);
  font-style: italic;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: var(--s-5);
  transition: transform 0.4s var(--ease-out), border-color 0.25s var(--ease-out);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border-red); }
.team-card__initials {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  color: var(--solo-red);
  font-style: italic;
  transform: skewX(-6deg);
  display: inline-block;
  margin-bottom: var(--s-3);
}
.team-card h4 { font-size: 22px; margin-bottom: 6px; }
.team-card__role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--solo-red);
  margin-bottom: var(--s-3);
}
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============ PUNTOS (map page) ============ */
.map-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  height: calc(100vh - var(--nav-h));
  min-height: 600px;
}
@media (max-width: 900px) {
  .map-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.map-side {
  background: var(--bg-deep);
  border-right: 1px solid var(--border-subtle);
  padding: var(--s-5);
  overflow-y: auto;
}
.map-canvas {
  position: relative;
  background: var(--bg-black);
  overflow: hidden;
}
/* Filtros */
.map-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border-subtle);
}
.map-filters__search,
.map-filters__cp {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.2s var(--ease-out);
}
.map-filters__search:focus,
.map-filters__cp:focus { border-bottom-color: var(--solo-red); }
.map-filters__search::placeholder,
.map-filters__cp::placeholder { color: var(--text-dim); }
.map-filters__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.map-filters__select {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 10px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%239A9A9A' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.map-filters__select:hover,
.map-filters__select:focus { border-color: var(--solo-red); }

/* Lista de clubs */
.clubs-list { display: flex; flex-direction: column; }
.club-item {
  position: relative;
  padding: var(--s-3);
  margin: 0 calc(-1 * var(--s-3));
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: background 0.25s var(--ease-out);
}
.club-item:hover { background: rgba(230,57,71,0.06); }
.club-item.is-active { background: rgba(230,57,71,0.12); }
.club-item.is-active::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--solo-red);
}
.club-item__head {}
.club-item h4 {
  font-size: 17px;
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.05;
}
.club-item p {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}
.club-item__pistas { margin-top: 4px !important; }
.club-item__pistas b {
  color: var(--solo-red);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  margin-right: 3px;
  display: inline-block;
  transform: skewX(-6deg);
}
.club-item__tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--solo-red);
  border: 1px solid var(--border-red);
  padding: 3px 8px;
  border-radius: 100px;
}
.club-item__actions {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.club-item__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-muted);
  border-radius: 2px;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.club-item__btn:hover {
  border-color: var(--solo-red);
  color: var(--solo-red);
}
.club-item__btn--primary {
  background: var(--solo-red);
  border-color: var(--solo-red);
  color: #fff;
}
.club-item__btn--primary:hover {
  background: #ff4754;
  border-color: #ff4754;
  color: #fff;
}

/* CTA bottom */
.map-side__cta {
  padding-top: var(--s-5);
  margin-top: var(--s-4);
  border-top: 1px solid var(--border-subtle);
}

/* ============ MAP MARKERS & POPUP ============ */
.solo-marker {
  width: 18px;
  height: 18px;
  position: relative;
  cursor: pointer;
}
.solo-marker__dot {
  position: absolute;
  inset: 0;
  background: var(--solo-red);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(230,57,71,0.5);
  z-index: 2;
  transition: transform 0.3s var(--ease-spring);
}
.solo-marker:hover .solo-marker__dot { transform: scale(1.25); }
.solo-marker__pulse {
  position: absolute;
  inset: -8px;
  background: var(--solo-red);
  border-radius: 50%;
  opacity: 0.4;
  animation: marker-pulse 2.2s var(--ease-in-out) infinite;
  z-index: 1;
}
@keyframes marker-pulse {
  0%   { transform: scale(0.6); opacity: 0.5; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.6); opacity: 0; }
}

/* MapLibre popup overrides */
.maplibregl-popup-content.solo-popup,
.solo-popup .maplibregl-popup-content {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 0;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
}
.solo-popup .maplibregl-popup-tip { border-top-color: var(--bg-elevated); border-bottom-color: var(--bg-elevated); }
.solo-popup .maplibregl-popup-close-button {
  color: var(--text-muted);
  font-size: 22px;
  padding: 6px 10px;
  background: transparent;
  border: 0;
  transition: color 0.2s var(--ease-out);
}
.solo-popup .maplibregl-popup-close-button:hover { color: var(--solo-red); background: transparent; }

.map-popup {
  padding: 18px 20px;
  min-width: 240px;
}
.map-popup__city {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--solo-red);
  margin-bottom: 6px;
}
.map-popup__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1;
  color: var(--text-primary);
}
.map-popup__addr {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 8px;
  line-height: 1.5;
}
.map-popup__pistas {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.map-popup__pistas b {
  color: var(--solo-red);
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  display: inline-block;
  transform: skewX(-6deg);
  margin-right: 4px;
}
.map-popup__tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--solo-red);
  color: #fff;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.map-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}
.map-popup__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--solo-red);
  color: #fff !important;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-spring);
}
.map-popup__cta:hover { background: #ff4754; transform: translateY(-1px); }
.map-popup__cta span { transition: transform 0.3s var(--ease-spring); }
.map-popup__cta:hover span { transform: translateX(4px); }
.map-popup__alt {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px;
  transition: color 0.2s var(--ease-out);
}
.map-popup__alt:hover { color: var(--solo-red); }

/* MapLibre dark scrollbar / controls fit */
.maplibregl-ctrl-attrib {
  background: rgba(10,10,10,0.7) !important;
  color: var(--text-dim) !important;
}
.maplibregl-ctrl-attrib a { color: var(--text-muted) !important; }
.maplibregl-ctrl button {
  background-color: var(--bg-elevated) !important;
}
.maplibregl-ctrl-group {
  border: 1px solid var(--border-subtle) !important;
  background: var(--bg-elevated) !important;
}

/* ============ SPLIT CTA ============ */
.split-cta {
  background: var(--solo-red);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.split-cta h2 { color: #fff; max-width: 18ch; }
.split-cta .btn--primary {
  background: #fff;
  color: var(--solo-red);
  margin-top: var(--s-4);
}
.split-cta .btn--primary:hover { background: var(--bg-black); color: #fff; }
