/* =========================================================
   SANTA FE KLAN — 473 — HOJA DE ESTILOS PRINCIPAL
   ========================================================= */

@font-face {
  font-family: 'Dripping Marker';
  src: url('../fonts/DrippingMarker.ttf') format('truetype');
  font-display: swap;
}

:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --panel: #1a1a1a;
  --panel-2: #212121;
  --line: #2c2c2c;
  --white: #f2f0ea;
  --off: #b9b6ad;
  --red: #c41f1f;
  --red-dark: #7d1414;
  --silver: #d8d8d8;
  --silver-dim: #8f8f8f;

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-count: 'Anton', 'Arial Narrow', sans-serif;
  --font-script: 'Pirata One', 'UnifrakturCook', cursive;
  --font-drip: 'Dripping Marker', cursive;
  --font-body: 'Oswald', 'Arial Narrow', sans-serif;

  --container: 1240px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(30px, 4.8vw, 52px);
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 8px 0 0;
}

.script-title {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid var(--silver-dim);
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { border-color: var(--red); color: var(--white); background: rgba(196,31,31,.12); }

.btn-solid {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-solid:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-ghost-sm {
  padding: 8px 16px;
  font-size: 11px;
  border-color: var(--line);
  color: var(--off);
}
.btn-ghost-sm:hover { color: var(--white); border-color: var(--red); }

hr.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* =============== HEADER / NAV =============== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.75), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: background .3s ease, padding .3s ease, opacity .35s ease, transform .35s ease;
}
.site-header.scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(6px);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-links a:hover { color: var(--white); border-color: var(--red); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--black-soft);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform .35s ease;
    border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 16px; }
  .nav-toggle { display: block; }
}

/* =============== HERO =============== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.hero-fallback {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, #1c1c1c 0%, #050505 75%);
  z-index: -1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.95) 0%, rgba(10,10,10,.35) 45%, rgba(10,10,10,.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 64px;
}
.hero-logo { width: clamp(130px, 16vw, 260px); margin: 0 auto 18px; }
.hero-tag {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--off);
  margin-bottom: 30px;
}

.hero-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 6px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-menu button {
  background: none;
  border: none;
  color: var(--off);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  transition: color .2s ease;
}
.hero-menu button:hover { color: var(--red); }
.hero-menu .sep { color: var(--line); }

.scroll-cue {
  position: absolute;
  bottom: 130px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, transparent, var(--silver-dim));
  animation: scrollcue 2.2s infinite;
}
@keyframes scrollcue { 0%,100% { opacity: .2 } 50% { opacity: 1 } }

/* =============== COUNTDOWN =============== */
.countdown-section {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
  text-align: center;
}
.countdown-title {
  font-family: var(--font-script);
  font-size: clamp(30px, 6vw, 56px);
  color: var(--white);
  margin: 4px 0 26px;
}
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 40px);
  flex-wrap: wrap;
}
.countdown-cell { min-width: 70px; }
.countdown-num {
  font-family: var(--font-count);
  font-size: clamp(34px, 6vw, 58px);
  color: var(--red);
  line-height: 1;
}
.countdown-label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.countdown-colon {
  font-family: var(--font-count);
  font-size: clamp(34px, 6vw, 58px);
  color: var(--line);
  align-self: flex-start;
  padding-top: 2px;
}

/* =============== GENERIC SECTION =============== */
.section {
  padding: 84px 0;
}
.section-head {
  margin-bottom: 42px;
}
.section-head.center { text-align: center; }
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* =============== LANZAMIENTOS =============== */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.release-card { position: relative; }
.release-cover {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}
.release-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.release-card:hover .release-cover img { transform: scale(1.05); }
.release-title {
  margin-top: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: .02em;
}
.release-year { color: var(--silver-dim); font-size: 12px; letter-spacing: .1em; }
.release-listen {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}
.release-listen:hover { color: var(--red); border-color: var(--red); }

@media (max-width: 900px) {
  .releases-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============== EVENTOS =============== */
.events-list { display: flex; flex-direction: column; }
.event-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.event-date {
  font-family: var(--font-display);
  line-height: 1;
}
.event-date .day { font-size: 34px; color: var(--white); display: block; }
.event-date .mon { font-size: 12px; letter-spacing: .16em; color: var(--red); }
.event-name { font-family: var(--font-display); text-transform: uppercase; font-size: 19px; }
.event-venue { color: var(--off); font-size: 14px; margin-top: 4px; }
@media (max-width: 640px) {
  .event-row { grid-template-columns: 60px 1fr; }
  .event-row .btn { grid-column: 1 / -1; justify-self: start; margin-top: 10px; }
}

/* =============== STREAMING =============== */
.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
  justify-content: center;
  padding: 30px 0 46px;
}
.platform-row a {
  color: var(--off);
  transition: color .2s ease, transform .2s ease;
  display: flex; align-items: center;
}
.platform-row a:hover { color: var(--white); transform: translateY(-2px); }
.platform-row svg { height: 24px; width: auto; }

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-cta {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 3;
}

/* =============== TIENDA 473 =============== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}
.shop-card {
  background: var(--black-soft);
  padding: 44px 34px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  transition: background .3s ease;
}
.shop-card:hover { background: var(--panel); }
.shop-kicker { color: var(--red); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 10px; }
.shop-title { font-family: var(--font-display); text-transform: uppercase; font-size: 26px; margin-bottom: 10px; }
.shop-copy { color: var(--off); font-size: 14px; margin-bottom: 22px; max-width: 30ch; }
@media (max-width: 900px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* =============== 473 MUSIC =============== */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--line);
}
.artist-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
}
.artist-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(60%) brightness(.8);
  transition: filter .35s ease, transform .5s ease;
}
.artist-card:hover img { filter: grayscale(0%) brightness(1); transform: scale(1.06); }
.artist-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 10%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 14px;
}
.artist-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .02em;
  line-height: 1.2;
}
@media (max-width: 980px) {
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============== FUNDACIÓN =============== */
.foundation {
  position: relative;
  padding: 90px 0;
  background-color: var(--black);
  overflow: hidden;
}
.foundation::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--foundation-bg);
  background-size: cover;
  background-position: center 20%;
  opacity: .5;
}
.foundation::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.55), rgba(10,10,10,.92));
}
.foundation .wrap { position: relative; z-index: 2; }
.foundation-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
.foundation-copy { text-align: left; }
.foundation .script-title { font-size: clamp(32px, 6vw, 56px); margin-bottom: 20px; }
.foundation p { color: var(--off); font-size: 15px; margin-bottom: 12px; }
.foundation-signature { color: var(--silver-dim); font-size: 13px; font-style: italic; margin: 18px 0 26px; }
.foundation-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line);
}
.foundation-photo img { width: 100%; height: 100%; object-fit: cover; }
.foundation-photo-cap {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  text-align: center;
}
@media (max-width: 780px) {
  .foundation-grid { grid-template-columns: 1fr; }
  .foundation-photo { max-width: 320px; margin: 0 auto; }
  .foundation-copy { text-align: center; }
}

/* =============== BOOKING =============== */
.booking-panel {
  border: 1px solid var(--line);
  padding: 50px;
  background: var(--black-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 2px;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-grid .btn { margin-top: 10px; }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .booking-panel { padding: 30px 22px; }
}

/* =============== SHOW / GALERIA TEASER =============== */
.show-teaser {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
  border: 1px solid var(--line);
}
.show-teaser img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(35%); }
.show-teaser-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.9) 0%, rgba(10,10,10,.35) 55%, rgba(10,10,10,.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
}
@media (max-width: 700px) {
  .show-teaser { aspect-ratio: 3/4; }
  .show-teaser-overlay { padding: 0 26px; }
}

/* =============== LA SANTA CARNAL =============== */
.carnal-section {
  text-align: center;
  padding: 100px 0;
  background: radial-gradient(ellipse at top, #1c0d0d 0%, var(--black) 65%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.carnal-section .script-title { font-size: clamp(36px, 8vw, 70px); }
.carnal-section p { color: var(--off); max-width: 46ch; margin: 16px auto 30px; }

/* =============== REDES SOCIALES =============== */
.social-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 0 30px;
}
.social-row a {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--off);
  transition: all .2s ease;
}
.social-row a:hover { color: var(--white); border-color: var(--red); background: var(--red); }
.social-row svg { width: 18px; height: 18px; }

/* =============== FOOTER =============== */
.footer { border-top: 1px solid var(--line); padding-top: 44px; }
.footer-brands {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brands a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(24px, 5vw, 40px);
  transition: color .2s ease;
}
.footer-brands a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0 40px;
  font-size: 12px;
  color: var(--silver-dim);
}
.footer-legal a { color: var(--off); margin-right: 20px; }
.footer-legal a:hover { color: var(--red); }

/* =============== MODAL / POPUP =============== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,5,5,.85);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--black-soft);
  border: 1px solid var(--line);
  max-width: 420px;
  width: 100%;
  padding: 40px 34px;
  position: relative;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none; border: none;
  color: var(--silver-dim);
  font-size: 20px;
}
.modal-close:hover { color: var(--red); }
.modal-box .script-title { font-size: 30px; margin-bottom: 6px; }
.modal-box p { color: var(--off); font-size: 14px; margin-bottom: 20px; }
.modal-success {
  display: none;
  text-align: center;
}
.modal-success.show { display: block; }
.modal-success .script-title { font-size: 26px; }

/* =============== PAGE HEADER (subpages) =============== */
.page-hero {
  padding: 160px 0 60px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #150808 0%, var(--black) 100%);
}
.page-hero .eyebrow { display: block; margin-bottom: 10px; }
.breadcrumb {
  font-size: 12px;
  color: var(--silver-dim);
  margin-top: 16px;
}
.breadcrumb a:hover { color: var(--red); }

/* =============== GALERIA GRID =============== */
.gallery-masonry {
  columns: 3 260px;
  column-gap: 16px;
}
.gallery-masonry img,
.gallery-masonry .g-item {
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  border: 1px solid var(--line);
  display: block;
}

/* =============== SIMPLE PAGE (legal) =============== */
.legal-body { max-width: 780px; }
.legal-body h2 { font-family: var(--font-display); text-transform: uppercase; margin-top: 40px; }
.legal-body p, .legal-body li { color: var(--off); font-size: 15px; }

/* =============== TIENDA EN LINEA =============== */
.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.drop-card {
  background: var(--black-soft);
  border: 1px solid var(--line);
}
.drop-img { aspect-ratio: 4/5; background: var(--panel); overflow: hidden; }
.drop-img img { width: 100%; height: 100%; object-fit: cover; }
.drop-info { padding: 18px 20px 24px; }
.drop-name { font-family: var(--font-display); text-transform: uppercase; font-size: 16px; }
.drop-price { color: var(--red); font-size: 14px; margin-top: 6px; }
.drop-tag { display: inline-block; margin-top: 10px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-dim); border: 1px solid var(--line); padding: 4px 10px; }
@media (max-width: 860px) { .drop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .drop-grid { grid-template-columns: 1fr; } }

/* =============== CONÓCEME (bio con foto) =============== */
.bio-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}
.bio-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-copy p { color: var(--off); font-size: 17px; line-height: 1.85; margin: 0 0 16px; }
.bio-copy .script-title { font-size: 28px; margin-top: 6px; }
@media (max-width: 760px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { max-width: 320px; margin: 0 auto; }
  .bio-copy { text-align: center; }
}

/* =============== REVIVE ÚLTIMO SHOW (tira de fotos) =============== */
.show-strip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.show-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.show-strip a {
  display: block;
  aspect-ratio: 3/4.4;
  overflow: hidden;
  border: 1px solid var(--line);
}
.show-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, filter .4s ease; filter: grayscale(20%); }
.show-strip a:hover img { transform: scale(1.05); filter: grayscale(0%); }
@media (max-width: 860px) {
  .show-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .show-strip { grid-template-columns: repeat(2, 1fr); }
}

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =============== TIENDA EXCLUSIVA EN LÍNEA (bloque home) =============== */
.online-shop-block {
  background: var(--black-soft);
  border: 1px solid var(--line);
  padding: 44px 30px;
  text-align: center;
}
.online-shop-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 620px;
  margin: 30px auto 0;
}
.online-shop-preview img {
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: grayscale(15%);
  transition: filter .3s ease, transform .3s ease;
}
.online-shop-preview img:hover { filter: grayscale(0%); transform: translateY(-3px); }
@media (max-width: 640px) {
  .online-shop-preview { grid-template-columns: repeat(3, 1fr); max-width: 340px; }
}

/* =============== FUNDACIÓN: foto sin caption =============== */
.foundation-photo-cap { display: none; }

/* =============== SHOW STRIP ASIMÉTRICO (home) =============== */
.show-strip-asym {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 110px;
  gap: 12px;
}
.show-strip-asym a { display: block; overflow: hidden; border: 1px solid var(--line); aspect-ratio: auto; }
.show-strip-asym img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, filter .4s ease; filter: grayscale(15%); }
.show-strip-asym a:hover img { transform: scale(1.05); filter: grayscale(0%); }
.show-strip-asym a.s-big { grid-column: span 3; grid-row: span 3; }
.show-strip-asym a.s-tall { grid-column: span 2; grid-row: span 4; }
.show-strip-asym a:not(.s-big):not(.s-tall) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 780px) {
  .show-strip-asym { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 90px; }
  .show-strip-asym a.s-big { grid-column: span 4; grid-row: span 3; }
  .show-strip-asym a.s-tall { grid-column: span 2; grid-row: span 3; }
  .show-strip-asym a:not(.s-big):not(.s-tall) { grid-column: span 2; grid-row: span 2; }
}

/* =============== EL BARRIO (mapa interactivo) =============== */
.barrio-section { padding: 70px 0 90px; }
.barrio-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.barrio-map-wrap {
  position: relative;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--panel);
}
.barrio-map-link { position: relative; display: block; width: 100%; height: 100%; }
.barrio-map-wrap iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.95);
  pointer-events: none;
}
.barrio-pin {
  position: absolute;
  width: 16px; height: 16px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) translate(-50%, -100%);
  box-shadow: 0 0 0 5px rgba(196,31,31,.28);
  cursor: pointer;
  animation: pinpulse 2.4s ease-in-out infinite;
}
@keyframes pinpulse { 0%,100% { box-shadow: 0 0 0 5px rgba(196,31,31,.28); } 50% { box-shadow: 0 0 0 9px rgba(196,31,31,.12); } }
.barrio-pin span {
  position: absolute;
  top: -14px; left: 50%;
  transform: translate(-50%, -100%) rotate(45deg);
  background: var(--black-soft);
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 12px;
  white-space: normal;
  width: 180px;
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.barrio-map-wrap:hover .barrio-pin span { opacity: 1; }
.barrio-list { display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.barrio-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--black-soft);
  transition: border-color .2s ease, background .2s ease;
}
.barrio-list a:hover { border-color: var(--red); background: var(--panel); }
.barrio-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.barrio-list-name { font-family: var(--font-display); text-transform: uppercase; font-size: 16px; }
.barrio-list-sub { color: var(--silver-dim); font-size: 12px; margin-top: 2px; }
.barrio-note { color: var(--silver-dim); font-size: 11px; margin-top: 14px; }
@media (max-width: 860px) {
  .barrio-grid { grid-template-columns: 1fr; }
  .barrio-map-wrap { aspect-ratio: 16/10; }
}

/* =============== GALERÍA JUSTIFICADA (revive el último show) =============== */
.justified-gallery {
  display: flex;
  flex-wrap: wrap;
}
.justified-gallery .jg-row {
  display: flex;
  width: 100%;
  gap: 6px;
  margin-bottom: 6px;
}
.justified-gallery .jg-row a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
}
.justified-gallery .jg-row img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .4s ease;
  filter: grayscale(15%);
}
.justified-gallery .jg-row a:hover img { transform: scale(1.05); filter: grayscale(0%); }
.gallery-caption {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 16px;
}
