/* ─── DESIGN SYSTEM ─────────────────────────────────────────────── */
:root {
  --black:     #0a0a0a;
  --white:     #f5f2eb;
  --yellow:    #ffe135;
  --purple:    #7c3aff;
  --green:     #22c55e;
  --red:       #ff3c3c;
  --ink2:      #3a3a3a;
  --ink3:      #777;
  --border-lt: #d4d0c8;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

/* ─── ASTRA BREADCRUMB SUPPRESSION ──────────────────────────────── */
.ast-breadcrumbs-wrapper,
.breadcrumb-trail,
.ast-breadcrumbs { display: none !important; }

/* ─── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { background: var(--white); color: var(--black); font-family: var(--font-body); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── WRAPPER ────────────────────────────────────────────────────── */
#mesh-item-wrap {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  background: var(--white);
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Load-in polish: gently fade the page in once the renderer paints (JS adds
   .is-ready). A timed fallback animation reveals it even if JS never runs, so
   the content can never get stuck invisible. Opacity-only on purpose: the
   .right-col is position:sticky, and a lingering transform on this wrapper
   (even translateY(0) after a forwards animation) would break that sticky. */
#mesh-item-wrap {
  opacity: 0;
  animation: mesh-reveal-fallback .01s linear 2s forwards;
}
#mesh-item-wrap.is-ready {
  opacity: 0;
  animation: mesh-fade-in .45s ease forwards;
}
@keyframes mesh-fade-in {
  to { opacity: 1; }
}
@keyframes mesh-reveal-fallback {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  #mesh-item-wrap,
  #mesh-item-wrap.is-ready {
    opacity: 1 !important;
    animation: none !important;
  }
}
#mesh-item-wrap a {
  color: inherit !important;
  text-decoration: none !important;
}
#mesh-item-wrap button {
  background-image: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  cursor: pointer;
  letter-spacing: normal !important;
  text-transform: none !important;
  line-height: normal !important;
  border: none;
  background: none;
}

/* ─── TICKER ─────────────────────────────────────────────────────── */
#mesh-ticker {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  height: 32px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--black);
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 55s linear infinite;
}
.ticker-track span {
  padding: 0 40px;
  opacity: 0.6;
}
.ticker-track span.sep {
  opacity: 1;
  color: var(--yellow);
  padding: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HERO ───────────────────────────────────────────────────────── */
#mesh-hero {
  position: relative;
  height: 82vh;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 2px solid var(--black);
}
#hero-img {
  position: absolute;
  inset: 0;
  background: var(--black) center/cover no-repeat;
  filter: brightness(0.65);
}
#hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  filter: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 48px 44px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

/* ─── BREADCRUMB ─────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(245,242,235,0.6) !important; }
.breadcrumb a:hover { color: var(--yellow) !important; }
.breadcrumb .sep { color: rgba(245,242,235,0.3); }
.breadcrumb .current { color: var(--white); }

/* ─── CATEGORY BADGE ─────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 2px solid currentColor;
  line-height: 1.4;
}
.badge-cat    { color: var(--yellow); border-color: var(--yellow); }
.badge-modal  { color: var(--white);  border-color: rgba(245,242,235,0.5); background: rgba(245,242,235,0.08); }
.badge-free   { background: var(--green); color: var(--black); border-color: var(--green); }
.badge-paid   { background: #555; color: var(--white); border-color: #555; }
.badge-active { background: var(--purple); color: var(--white); border-color: var(--purple); }
.badge-past   { background: #444; color: var(--white); border-color: #444; }
.badge-urgent { background: var(--red); color: var(--white); border-color: var(--red); }
.badge-permanent { background: var(--green); color: var(--black); border-color: var(--green); }
.badge-featured { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

/* ─── DISCIPLINAS TAGS ───────────────────────────────────────────── */
.disciplinas-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.tag-disciplina {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 2px solid var(--border-lt);
  color: var(--ink2);
  background: transparent;
  line-height: 1.4;
}
#sec-disciplinas { display: none; }
#sec-disciplinas.is-visible { display: block; }

/* ─── HERO TITLE ─────────────────────────────────────────────────── */
#hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin: 10px 0 14px;
  letter-spacing: -0.01em;
}

/* ─── DATE BLOCK ─────────────────────────────────────────────────── */
.date-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.date-main {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.countdown {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--yellow);
  color: var(--black);
}
.countdown.urgent {
  background: var(--red);
  color: var(--white);
  animation: pulse-urgent 1.5s ease-in-out infinite;
}
@keyframes pulse-urgent {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.75; }
}

/* ─── BADGES ROW ─────────────────────────────────────────────────── */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

/* ─── EXCERPT ─────────────────────────────────────────────────────── */
#hero-excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(245,242,235,0.8);
  line-height: 1.55;
  max-width: 620px;
}
#hero-excerpt .excerpt-more {
  color: var(--yellow);
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 4px;
  text-decoration: none;
}
#hero-excerpt .excerpt-more:hover { text-decoration: underline; }

/* ─── BODY GRID ──────────────────────────────────────────────────── */
#mesh-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 48px;
  align-items: start;
}

/* ─── LEFT COLUMN ─────────────────────────────────────────────────── */
.left-col { min-width: 0; }

.section-block {
  border-top: 2px solid var(--black);
  padding-top: 28px;
  margin-bottom: 48px;
}
#sec-desc { border-top: none; padding-top: 0; }
.section-label {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 20px;
  display: block;
}

/* ─── COMPARTIR BUTTON + DROPDOWN ───────────────────────────────── */
.share-wrap { position: relative; }
.btn-compartir {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--black) !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 18px;
  border: 2px solid var(--black) !important;
  box-shadow: 4px 4px 0 var(--black);
  cursor: pointer;
  width: 100%;
  transition: background 0.12s;
}
#mesh-item-wrap #shareBtn { box-shadow: 4px 4px 0 var(--black) !important; }
.btn-compartir svg { width: 18px; height: 18px; flex-shrink: 0; }

.share-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--black);
  border: 2px solid var(--black);
  z-index: 999;
}
.share-dropdown.is-open { display: block; }
.share-dropdown-hd {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.4);
  padding: 10px 16px 6px;
}
.share-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  background: none;
  border: none;
  border-top: 1px solid rgba(245,242,235,0.08);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  text-decoration: none !important;
  transition: background 0.1s;
  letter-spacing: normal !important;
  text-transform: none !important;
}
.share-item:hover { background: rgba(245,242,235,0.08) !important; }
.share-item svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7; }
#mesh-item-wrap .share-dropdown a.share-item,
#mesh-item-wrap .share-dropdown a.share-item:visited { color: var(--white) !important; }

.about-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  word-wrap: break-word !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  max-width: 100% !important;
}
.about-body a { word-break: break-all !important; overflow-wrap: anywhere !important; }
.about-body div, .about-body p, .about-body span { max-width: 100% !important; overflow-wrap: anywhere !important; }
.about-body p { margin-bottom: 0 !important; white-space: pre-wrap; }
.about-body p + p { margin-top: 1em !important; }
.about-body p:empty { min-height: 1em !important; }
#mesh-item-wrap #descBody,
#mesh-item-wrap #descBody * {
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  max-width: 100% !important;
}
#mesh-item-wrap #descBody a { word-break: break-all !important; }

/* ─── LEER MÁS ───────────────────────────────────────────────────── */
.desc-wrap { position: relative; }
.desc-wrap.is-clamped #descBody {
  max-height: 280px;
  overflow: hidden;
}
.desc-fade {
  display: none;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.desc-wrap.is-clamped .desc-fade { display: block; }
.btn-leer {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  background: none;
  border: 2px solid var(--black) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--black) !important;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  background-image: none !important;
  transition: background 0.12s;
}
.btn-leer:hover { background: var(--black) !important; color: var(--white) !important; }
.btn-leer.is-visible { display: inline-flex; }

/* ─── GALLERY ────────────────────────────────────────────────────── */
#sec-gallery { display: none; border-top: 2px solid var(--black); }
#sec-gallery.is-visible { display: block; }
.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 52px;
}
.gallery-inner .section-label { margin-bottom: 20px; }
/* Featured mosaic: first photo is a large 2x2 hero tile, the rest fill smaller
   tiles. Edge-to-edge brutalist borders (top+left on grid, right+bottom on
   tiles) so shared seams stay 1px — matches the venue single. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}
.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  cursor: zoom-in;
  position: relative;
  background: var(--black);
}
.gallery-grid:has(.gallery-item:nth-child(4)) .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid:has(.gallery-item:only-child) .gallery-item:only-child {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-num {
  position: absolute;
  bottom: 8px; right: 10px;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.75);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  z-index: 2;
}
.gallery-more {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,.6);
  font-family: var(--font-head);
  font-size: 34px; font-weight: 900;
  color: #fff;
  transition: background .15s;
}
.gallery-item:hover .gallery-more { background: rgba(10,10,10,.45); }

/* ─── LIGHTBOX (prev/next + counter, matches venue single) ─────────── */
#meshLightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#meshLightbox.is-open { display: flex; }
.ml-img {
  max-width: 90vw; max-height: 84vh;
  object-fit: contain;
  border: 2px solid var(--black);
}
#lightboxClose {
  position: fixed; top: 20px; right: 24px;
  background: var(--white); color: var(--black);
  font-family: var(--font-head); font-weight: 900; font-size: 20px;
  padding: 6px 14px;
  border: 2px solid var(--black);
  cursor: pointer; z-index: 10000;
}
.ml-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 40px; line-height: 1; color: rgba(255,255,255,.6);
  padding: 16px; z-index: 10000;
  transition: color .15s;
}
.ml-nav:hover { color: #fff; }
.ml-prev { left: 8px; }
.ml-next { right: 8px; }
.ml-caption {
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
@media (max-width: 600px) {
  .ml-nav { font-size: 30px; padding: 10px; }
}

/* ─── REQUISITOS ─────────────────────────────────────────────────── */
#sec-requisitos { display: none; }
#sec-requisitos.is-visible { display: block; }

/* ─── RIGHT COLUMN ────────────────────────────────────────────────── */
.right-col {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── CTA BUTTON ─────────────────────────────────────────────────── */
.btn-cta-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--purple);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 20px;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.12s, box-shadow 0.12s;
}
#mesh-item-wrap #mainCTA { box-shadow: 4px 4px 0 var(--black) !important; }
.btn-cta-main:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 var(--black) !important;
}
.btn-cta-main:active {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 var(--black) !important;
}
.btn-cta-main .arrow { font-size: 24px; transition: transform 0.15s; }
.btn-cta-main:hover .arrow { transform: translateX(4px); }
#mainCTA { display: none; }
#mainCTA.is-visible { display: flex; }

/* Add-to-calendar: secondary action, only shown by JS for dated items.
   A button toggles a small dropdown offering Google Calendar or .ics. */
.cal-wrap { display: none; position: relative; margin-top: 12px; }
.cal-wrap.is-visible { display: block; }
.btn-add-cal {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black) !important;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s, color 0.12s;
}
#mesh-item-wrap .btn-add-cal { box-shadow: 4px 4px 0 var(--black) !important; }
.btn-add-cal svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-add-cal .cal-caret { margin-left: auto; width: 16px; height: 16px; transition: transform 0.15s; }
.btn-add-cal[aria-expanded="true"] .cal-caret { transform: rotate(180deg); }
.btn-add-cal:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 var(--black) !important;
  background: var(--black);
  color: var(--white) !important;
}
.btn-add-cal:active {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 var(--black) !important;
}
/* Dropdown menu */
.cal-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
}
.cal-menu.is-open { display: block; animation: calMenuPop 0.16s ease; }
.cal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-family: var(--font-body, inherit);
  font-size: 14px;
  font-weight: 600;
  color: var(--black) !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cal-item + .cal-item { border-top: 1px solid rgba(0,0,0,.12); }
.cal-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.cal-item:hover { background: var(--black); color: var(--white) !important; }
@keyframes calMenuPop { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .btn-add-cal { transition: background 0.12s, color 0.12s; }
  .btn-add-cal:hover, .btn-add-cal:active { transform: none; }
  .cal-menu.is-open { animation: none; }
  .cal-item { transition: none; }
}

/* ─── INFO CARD ───────────────────────────────────────────────────── */
.info-card {
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
}
.info-card-hd {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 16px;
  background: var(--black);
  color: var(--yellow);
}
.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-lt);
}
.info-row:last-child { border-bottom: none; }
.info-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.5;
}
.info-row-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 2px;
}
.info-row-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
}
.info-row-value a {
  color: var(--purple) !important;
  text-decoration: none !important;
}
.info-row-value a:hover { text-decoration: underline !important; }

/* ─── SOCIAL CARD ─────────────────────────────────────────────────── */
#socialCard { display: none; }
#socialCard.is-visible { display: block; }
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1.5px solid var(--black);
  color: var(--black) !important;
  text-decoration: none !important;
  transition: background 0.12s, color 0.12s;
}
.social-link:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}
.social-link svg { width: 13px; height: 13px; }

/* ─── VENUE CARD ─────────────────────────────────────────────────── */
#venueCard { display: none; }
#venueCard.is-visible { display: flex; }
.venue-link-card {
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  display: flex;
  flex-direction: column;
}
.venue-card-hd {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 16px;
  background: var(--black);
  color: var(--yellow);
}
.venue-card-body {
  display: flex;
  gap: 14px;
  padding: 16px;
  align-items: center;
}
.venue-thumb {
  width: 80px; height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--black);
  background: var(--border-lt);
}
.venue-thumb img { width: 100%; height: 100%; object-fit: cover; }
.venue-tipo-city {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 4px;
}
.venue-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}
.venue-cta {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple) !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.venue-cta:hover { text-decoration: underline !important; }

/* ─── RELACIONADOS ────────────────────────────────────────────────── */
#mesh-related {
  border-top: 2px solid var(--black);
  background: var(--black);
  padding: 48px;
}
.related-hd {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  border: 2px solid rgba(245,242,235,0.15);
  background: rgba(245,242,235,0.04);
  overflow: hidden;
  transition: border-color 0.15s;
  cursor: pointer;
}
.related-card:hover { border-color: var(--purple); }
.related-thumb { aspect-ratio: 16/9; overflow: hidden; background: #222; }
.related-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-card:hover .related-thumb img { transform: scale(1.04); }
.related-info { padding: 16px; }
.related-cat {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 6px;
}
.related-title {
  font-family: var(--font-head);
  font-weight: 900; font-size: 18px;
  text-transform: uppercase;
  color: var(--white); line-height: 1.1; margin-bottom: 8px;
}
.related-date { font-size: 13px; color: rgba(245,242,235,0.5); font-weight: 500; }

/* ─── MAP SECTION ────────────────────────────────────────────────── */
#sec-map { display: none; border-top: 2px solid var(--black); }
#sec-map.is-visible { display: block; }
.map-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 52px;
}
.map-section-hd { margin-bottom: 20px; }
.map-section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--black);
}
#itemMap { height: 360px; width: 100%; display: block; }
.map-unit {
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  overflow: hidden;
}
.leaflet-container { background: #e8e4db; font-family: var(--font-body); }
.leaflet-control-zoom a {
  border-radius: 0 !important;
  font-family: var(--font-head) !important;
  font-weight: 900 !important;
  color: var(--black) !important;
}
.leaflet-control-attribution { font-size: 10px; }
.map-section-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 2px solid rgba(245,242,235,0.12);
  background: var(--black);
  padding: 14px 18px;
}
.map-footer-address {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  flex: 1; min-width: 0;
}
.map-footer-address span {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.btn-como-llegar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-weight: 900; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 18px;
  border: 2px solid var(--white) !important;
  white-space: nowrap; flex-shrink: 0;
  text-decoration: none !important;
  transition: background 0.12s;
}
.btn-como-llegar:hover { background: var(--white) !important; color: var(--black) !important; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { padding: 0 20px 32px; }
  #hero-title { font-size: clamp(30px, 8vw, 48px); }
  .date-main { font-size: 18px; }
  #mesh-body {
    display: flex; flex-direction: column;
    padding: 28px 20px 8px;
    gap: 0; width: 100%; box-sizing: border-box;
  }
  .right-col {
    order: -1; position: static;
    display: flex; flex-direction: column;
    gap: 12px; margin-bottom: 32px;
    width: 100%; box-sizing: border-box;
  }
  .left-col { order: 0; width: 100%; max-width: 100%; box-sizing: border-box; overflow-x: hidden; }
  .section-block { margin-bottom: 36px; }
  .gallery-inner { padding: 32px 20px 40px; }
  /* 2-col mosaic: first tile becomes a full-width 16/9 banner */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid:has(.gallery-item:nth-child(4)) .gallery-item:first-child {
    grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16/9;
  }
  .gallery-more { font-size: 26px; }
  .map-section-inner { padding: 28px 20px 36px; }
  #itemMap { height: 260px; }
  .map-section-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .map-footer-address span { white-space: normal; }
  #mesh-related { padding: 32px 20px; }
  .related-grid { grid-template-columns: 1fr; }
}
