/* ===== Macabi Panamá — Swiss / Editorial ===== */
:root {
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --navy: #1c2e6b;
  --navy-deep: #0e1738;
  --royal: #2b46c4;
  --accent: #22d3ee;
  --accent-ink: #06202a;
  --ink: #0b1020;
  --muted: #5f6579;
  --line: #e5e7ee;
  --r: 2px;
  --display: 'Anton', 'Archivo', 'Helvetica Neue', sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --round: 'Comfortaa', 'Inter', sans-serif;
  --sans: 'Inter', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.04;
}
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: 0; }
code { background: var(--bg-soft); border: 1px solid var(--line); padding: 1px 6px; font-size: .85em; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* iconos */
.ic { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ic-xs { width: 14px; height: 14px; }
.ic-s { width: 16px; height: 16px; }
.ic-m { width: 20px; height: 20px; }
.ic-l { width: 34px; height: 34px; }
.ic-xl { width: 56px; height: 56px; stroke-width: 1.5; }

/* flecha micro-interacción */
.group .arr { transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.group:hover .arr { transform: translateX(4px); }
.idx-row:hover .arr { transform: translate(3px, -3px); }

.kicker {
  font-family: var(--round); font-size: .68rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--royal);
}
.k-light { color: var(--accent); }

/* ===== UTILITY BAR ===== */
.utility { background: var(--navy-deep); color: #9aa5cc; font-size: .74rem; }
.utility-inner {
  max-width: 1296px; margin: 0 auto;
  padding: .5rem clamp(16px, 3vw, 48px);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.utility a { color: #fff; font-weight: 500; display: inline-flex; align-items: center; gap: .4rem; transition: color .2s; }
.utility a:hover { color: var(--accent); }
.est-badge {
  border: 1px solid rgba(34, 211, 238, .4); color: var(--accent);
  padding: .15rem .8rem;
  letter-spacing: .24em; font-size: .6rem; text-transform: uppercase;
  font-family: var(--display); font-weight: 700;
}
@media (max-width: 720px) { .utility .addr, .utility .est-badge { display: none; } }

/* ===== MASTHEAD ===== */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.mast-inner {
  max-width: 1296px; margin: 0 auto;
  padding: .6rem clamp(16px, 3vw, 48px);
  min-height: 62px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 1.2rem;
}
.mnav { display: flex; gap: 1.7rem; align-items: center; }
.mnav.left { justify-content: flex-end; }
.mnav.right { justify-content: flex-start; }
.mnav a {
  position: relative;
  font-size: .86rem; font-weight: 500; color: var(--muted);
  padding: .3rem 0;
  transition: color .2s;
  white-space: nowrap;
}
.mnav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--navy);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.mnav a:hover { color: var(--ink); }
.mnav a:hover::after, .mnav a.active::after { transform: scaleX(1); transform-origin: left; }
.mnav a.active { color: var(--ink); font-weight: 600; }
.nav-lock {
  display: inline-flex !important; align-items: center; gap: .45rem;
  background: var(--navy); color: #fff !important;
  padding: .5rem 1.1rem !important;
  border-radius: var(--r);
  font-size: .82rem !important; font-weight: 600 !important;
  transition: background .25s !important;
}
.nav-lock::after { display: none; }
.nav-lock:hover { background: var(--royal); }
.crest-lockup {
  display: flex; align-items: center; gap: .6rem;
  justify-self: center; padding: 0 .8rem;
  transition: opacity .2s;
}
.crest-lockup:hover { opacity: .8; }
.crest { width: 36px; height: 36px; border-radius: 50%; display: block; flex-shrink: 0; }
.wordmark {
  display: flex; flex-direction: column; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 1rem;
  letter-spacing: .04em; line-height: 1; color: var(--navy); text-transform: uppercase; text-align: left;
}
.wordmark small {
  font-family: var(--sans); font-weight: 600;
  font-size: .48rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-top: .22rem; white-space: nowrap;
}
.nav-burger { display: none; flex-direction: column; gap: 5px; }
.nav-burger span { width: 24px; height: 2px; background: var(--navy); transition: .3s; }

.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-bottom: 1px solid var(--line);
  max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open { max-height: 620px; }
.mobile-menu a {
  font-size: .95rem; font-weight: 500; color: var(--muted);
  padding: .85rem clamp(16px, 3vw, 48px);
  border-top: 1px solid var(--line);
  transition: color .2s, background .2s, padding-left .2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--navy); background: var(--bg-soft); padding-left: calc(clamp(16px, 3vw, 48px) + 6px); }
@media (max-width: 1080px) {
  .mast-inner { grid-template-columns: auto 1fr auto; }
  .mnav.left, .mnav.right { display: none; }
  .crest-lockup { justify-self: start; }
  .nav-burger { display: flex; justify-self: end; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: flex; }
}

/* ===== VIEWS ===== */
.view { display: none; }
.view.active { display: block; animation: viewIn .5s cubic-bezier(.2,.8,.2,1) both; }
@keyframes viewIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.section-pad { padding-top: clamp(3.2rem, 6vw, 5rem); padding-bottom: clamp(3.6rem, 7vw, 6rem); }

.view-head { max-width: 640px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.view-head h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem); color: var(--navy-deep);
  margin: 14px 0 14px; text-transform: uppercase;
}
.view-head .sub { color: var(--muted); font-size: 1rem; line-height: 1.65; max-width: 34rem; }
.view-head .light { color: #fff; }
.light-sub { color: #96a0c8 !important; }

.split-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.split-head h2 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--navy-deep); text-transform: uppercase; margin-top: 14px; }
.split-head .sub { max-width: 24rem; color: var(--muted); font-size: .95rem; line-height: 1.65; border-left: 2px solid var(--navy); padding-left: 1.2rem; }

/* ===== HERO ===== */
.hero {
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.6rem, 5vw, 4rem);
}
.hero-meta-row {
  display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid var(--line); padding-bottom: 1rem; margin-bottom: clamp(1.6rem, 4vw, 3rem);
}
.meta-label {
  font-family: var(--display); font-size: .66rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--muted);
}
.hero-display {
  font-size: clamp(3.4rem, 11vw, 9rem);
  text-transform: uppercase;
  color: var(--navy-deep);
  line-height: .92;
  font-stretch: 90%;
  margin-bottom: clamp(2rem, 4.5vw, 3.6rem);
}
.hd-line { display: block; overflow: hidden; animation: riseUp .9s cubic-bezier(.2,.85,.25,1) both; }
.hd-line:nth-child(2) { animation-delay: .12s; }
@keyframes riseUp { from { opacity: 0; transform: translateY(55%); } to { opacity: 1; transform: translateY(0); } }
.hd-indent { padding-left: clamp(2rem, 12vw, 11rem); }
.hd-blue { color: var(--navy); }
.hd-black { color: #0a0a0a; }
.hero-display em { font-style: italic; font-weight: 700; color: var(--royal); }
.hd-dot { color: var(--accent); }

.hero-lower {
  display: grid; grid-template-columns: 7fr 4fr;
  gap: clamp(2rem, 6vw, 6rem); align-items: end;
}
.hero-lede-col .lede {
  color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.12rem);
  max-width: 30rem; line-height: 1.7; margin-bottom: 2rem;
  animation: fadeUp .8s .3s cubic-bezier(.2,.8,.2,1) both;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  animation: fadeUp .8s .4s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-panel {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 80%);
  border-radius: var(--r);
  aspect-ratio: 4/5; max-height: 380px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp .9s .35s cubic-bezier(.2,.8,.2,1) both;
  overflow: hidden;
}
.hero-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(55% 45% at 75% 15%, rgba(34,211,238,.2), transparent 70%);
}
.hero-logo-img {
  width: 60%; aspect-ratio: 1/1; object-fit: contain;
  border-radius: 50%; background: #fff;
  position: relative; z-index: 1;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
.hero-panel-tag {
  position: absolute; left: -1px; bottom: clamp(1rem, 8%, 2rem);
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--display); font-weight: 700; font-size: .64rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .55rem 1rem;
  z-index: 2;
}
.hero-stats {
  display: flex; gap: 0;
  margin-top: clamp(2.4rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  animation: fadeUp .8s .5s cubic-bezier(.2,.8,.2,1) both;
}
.hero-stats > div {
  flex: 1; padding: 1.4rem 1.5rem 0 0;
}
.hero-stats > div + div { border-left: 1px solid var(--line); padding-left: 1.5rem; }
.hero-stats b {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy-deep); letter-spacing: -0.02em;
}
.hero-stats span { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 900px) {
  .hero-lower { grid-template-columns: 1fr; }
  .hero-panel { max-width: 380px; }
  .hd-indent { padding-left: clamp(1rem, 6vw, 4rem); }
}

/* ===== BOTONES ===== */
.btn-solid {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--navy);
  padding: .85rem 1.6rem; border-radius: var(--r);
  transition: background .25s;
}
.btn-solid:hover { background: var(--royal); }
.btn-inverse { background: #fff; color: var(--navy-deep); }
.btn-inverse:hover { background: var(--accent); color: var(--accent-ink); }
.btn-accent { background: var(--accent); color: var(--accent-ink); justify-content: center; }
.btn-accent:hover { background: #fff; }
.btn-line {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy-deep); background: transparent;
  padding: .85rem 1.6rem; border-radius: var(--r);
  border: 1px solid var(--navy-deep);
  transition: background .25s, color .25s;
}
.btn-line:hover { background: var(--navy-deep); color: #fff; }

/* ===== MARQUEE ===== */
.marquee { background: var(--navy-deep); overflow: hidden; padding: 12px 0; }
.marquee-track { display: flex; white-space: nowrap; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85); padding-right: 20px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== SEC HEAD ===== */
.sec-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.sec-head h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); color: var(--navy-deep);
  margin-top: .8rem; text-transform: uppercase;
}
.sec-head .note {
  max-width: 22rem; color: var(--muted); font-size: .92rem; line-height: 1.65;
  border-left: 2px solid var(--navy); padding-left: 1.2rem;
}

/* ===== BENTO (60/40) ===== */
.bento {
  display: grid; grid-template-columns: 3fr 2fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
}
.b-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 1px; }
.b-cell {
  position: relative; background: #fff;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 220px;
  overflow: hidden;
  transition: background .3s;
}
.b-main { min-height: 460px; }
.b-cell:hover { background: var(--bg-soft); }
.b-num {
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-family: var(--display); font-size: .66rem; font-weight: 700;
  letter-spacing: .2em; color: #b6bccd;
}
.b-body { position: relative; z-index: 1; max-width: 26rem; }
.b-body h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--navy-deep);
  text-transform: uppercase; margin-bottom: .5rem;
}
.b-main .b-body h3 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.b-body p { color: var(--muted); font-size: .92rem; line-height: 1.6; margin-bottom: 1.1rem; }
.b-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--royal);
}
.b-ghost {
  position: absolute; right: -6%; bottom: -14%;
  width: clamp(140px, 22vw, 240px); height: clamp(140px, 22vw, 240px);
  fill: none; stroke: var(--navy); stroke-width: .8; opacity: .08;
  transition: opacity .35s, transform .45s cubic-bezier(.2,.8,.2,1);
}
.b-cell:hover .b-ghost { opacity: .16; transform: translate(-6px, -6px) rotate(-4deg); }
.b-dark { background: var(--navy-deep); }
.b-dark:hover { background: #131f4d; }
.b-dark .b-body h3 { color: #fff; }
.b-dark .b-body p { color: #96a0c8; }
.b-dark .b-link { color: var(--accent); }
.b-dark .b-ghost { stroke: #fff; opacity: .1; }
.b-dark .b-num { color: rgba(255,255,255,.3); }
.tag {
  display: inline-block; font-family: var(--display);
  font-size: .62rem; font-weight: 700; letter-spacing: .16em;
  color: var(--navy); border: 1px solid var(--line); background: #fff;
  padding: .32rem .7rem; text-transform: uppercase; margin-bottom: .9rem;
}
.tag-hot { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .b-main { min-height: 320px; }
}

/* ===== INDEX LIST (directorio editorial) ===== */
.index-list { margin-top: 1px; border: 1px solid var(--line); border-top: 0; border-radius: var(--r); }
.idx-row {
  display: grid; grid-template-columns: 5rem 1fr 1.2fr auto;
  align-items: center; gap: 1.5rem;
  padding: 1.3rem clamp(1.2rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding-left .3s cubic-bezier(.2,.8,.2,1);
}
.idx-row:last-child { border-bottom: 0; }
.idx-row:hover { background: var(--bg-soft); padding-left: calc(clamp(1.2rem, 3vw, 2rem) + 8px); }
.idx-num { font-family: var(--display); font-size: .7rem; font-weight: 700; letter-spacing: .2em; color: #b6bccd; }
.idx-name {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.1rem, 2vw, 1.5rem);
  text-transform: uppercase; color: var(--navy-deep); letter-spacing: -0.01em;
}
.idx-desc { font-size: .88rem; color: var(--muted); }
.idx-row .arr { color: var(--royal); }
@media (max-width: 720px) {
  .idx-row { grid-template-columns: 3rem 1fr auto; }
  .idx-desc { display: none; }
}

/* ===== QUOTE BAND ===== */
.quote-band {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.big-quote {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 1.22; letter-spacing: 0;
  color: var(--navy-deep);
  margin: 1.6rem 0 2.2rem;
  max-width: 58rem;
}
.big-quote em { font-style: italic; color: var(--royal); }
.quote-meta { display: flex; align-items: center; gap: 1.2rem; }
.quote-meta .rule { width: 56px; height: 2px; background: var(--accent); }
.quote-meta b { display: block; font-size: .92rem; color: var(--ink); }
.quote-meta span { font-size: .8rem; color: var(--muted); }

/* ===== GALLERY (asimétrica) ===== */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.ph { position: relative; overflow: hidden; cursor: pointer; margin: 0; background: #fff; }
.ph-l { grid-column: span 2; grid-row: span 2; }
.ph-w { grid-column: span 2; }
.ph-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.ph:hover .ph-inner { transform: scale(1.05); }
.g1 { background: linear-gradient(150deg, #1c2e6b, #2b46c4); }
.g2 { background: linear-gradient(150deg, #2b46c4, #22d3ee); }
.g3 { background: linear-gradient(150deg, #0e1738, #1c2e6b); }
.g4 { background: linear-gradient(150deg, #3552d8, #7fa8ff); }
.g5 { background: linear-gradient(150deg, #16255c, #2f6fd8); }
.ph figcaption {
  position: absolute; left: 0; bottom: 0;
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem 1rem;
  background: rgba(11,16,32,.85); color: #fff;
  font-family: var(--display); font-weight: 600; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.ph figcaption i { font-style: normal; color: var(--accent); font-size: .66rem; }
.note-center { margin-top: 28px; color: var(--muted); font-size: .88rem; }
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
}

/* ===== MERCH ===== */
.shop {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.prod { background: #fff; padding: clamp(1.2rem, 2.5vw, 1.8rem); transition: background .25s; }
.prod:hover { background: var(--bg-soft); }
.prod-big { grid-row: span 2; }
.prod-wide { grid-column: span 2; }
.prod-img {
  height: 200px; margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.prod-big .prod-img { height: calc(100% - 110px); min-height: 300px; }
.prod:hover .prod-img { transform: scale(1.04); }
.p1 { background: #e8eefb; }
.p2 { background: #e2f4f9; }
.p3 { background: #edeaf9; }
.p4 { background: #e6ecf6; }
.prod-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: .9rem;
}
.prod-row h3 { font-size: 1.05rem; text-transform: uppercase; color: var(--navy-deep); }
.price { font-family: var(--display); font-weight: 800; color: var(--royal); font-size: 1rem; }
.prod .btn-line { padding: .6rem 1.1rem; font-size: .7rem; }
@media (max-width: 900px) {
  .shop { grid-template-columns: 1fr 1fr; }
  .prod-big { grid-row: span 1; }
  .prod-big .prod-img { height: 200px; min-height: 0; }
}
@media (max-width: 560px) { .shop { grid-template-columns: 1fr; } .prod-wide { grid-column: span 1; } }

/* ===== TRACKLIST ===== */
.tracklist { border: 1px solid var(--line); border-radius: var(--r); }
.track {
  display: grid; grid-template-columns: 4rem 1fr auto auto;
  align-items: center; gap: 1.4rem;
  padding: 1.2rem clamp(1.2rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .25s, padding-left .3s cubic-bezier(.2,.8,.2,1);
}
.track:last-child { border-bottom: 0; }
.track:hover { background: var(--bg-soft); padding-left: calc(clamp(1.2rem, 3vw, 2rem) + 8px); }
.t-num { font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .2em; color: #b6bccd; }
.track:hover .t-num { color: var(--royal); }
.t-info h4 { font-size: 1.02rem; text-transform: uppercase; color: var(--navy-deep); }
.t-info p { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.t-bars { display: flex; align-items: flex-end; gap: 3px; height: 18px; opacity: 0; transition: opacity .25s; }
.track:hover .t-bars { opacity: 1; }
.t-bars i { width: 3px; background: var(--accent); animation: bars 1s ease infinite alternate; }
.t-bars i:nth-child(1) { height: 40%; }
.t-bars i:nth-child(2) { height: 90%; animation-delay: .15s; }
.t-bars i:nth-child(3) { height: 60%; animation-delay: .3s; }
.t-bars i:nth-child(4) { height: 80%; animation-delay: .45s; }
@keyframes bars { from { transform: scaleY(.4); } to { transform: scaleY(1); } }
.t-play { color: var(--navy-deep); opacity: .35; transition: opacity .25s, transform .25s; }
.track:hover .t-play { opacity: 1; transform: scale(1.1); }

/* ===== MOVIE ===== */
.movie {
  display: grid; grid-template-columns: 5fr 4fr; gap: 0;
  background: var(--navy-deep);
  border-radius: var(--r);
  overflow: hidden;
}
.movie-poster {
  position: relative; min-height: 400px;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.movie-poster::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 80% 15%, rgba(34,211,238,.18), transparent 70%);
}
.mv-ghost {
  right: -10%; bottom: -18%;
  width: clamp(220px, 30vw, 360px); height: clamp(220px, 30vw, 360px);
  stroke: #fff; opacity: .07;
}
.movie-poster:hover .mv-ghost { opacity: .12; transform: translate(-8px, -8px) rotate(-3deg); }
.movie-play {
  position: relative; z-index: 2;
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .25s, background .25s;
}
.movie-play:hover { transform: scale(1.08); background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.movie-info {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.movie-info h3 {
  font-size: clamp(2rem, 4vw, 3.2rem); color: #fff;
  text-transform: uppercase; margin: 1rem 0 1.2rem;
}
.mv-desc { color: #96a0c8; line-height: 1.7; margin-bottom: 2rem; max-width: 26rem; }
@media (max-width: 900px) { .movie { grid-template-columns: 1fr; } .movie-poster { min-height: 300px; } }

/* ===== KOL MACABI ===== */
.view-dark .section-pad {
  background: linear-gradient(165deg, var(--navy-deep) 0%, #131f4d 70%, var(--navy) 100%);
  border-radius: var(--r);
  margin-top: 2rem; margin-bottom: 3rem;
  padding-left: clamp(1.5rem, 4vw, 3.5rem); padding-right: clamp(1.5rem, 4vw, 3.5rem);
}
.vh-left { text-align: left; }
.lock-box {
  max-width: 400px; text-align: left;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r); padding: 2.4rem 2rem;
}
.lock-ic { color: var(--accent); margin-bottom: 1.2rem; }
.lock-box input {
  width: 100%; padding: .85rem 1rem; margin-bottom: .8rem;
  border-radius: var(--r); border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07); color: #fff;
  font-family: var(--sans); font-size: .95rem; outline: none;
  transition: border .25s, box-shadow .25s;
}
.lock-box input::placeholder { color: #7d89b8; }
.lock-box input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,211,238,.18); }
.lock-box .btn-solid { width: 100%; }
.lock-error { display: none; margin-top: .9rem; color: #ff9c9c; font-size: .85rem; }
.lock-box.shake { animation: shake .4s; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-8px); }
  40%,80% { transform: translateX(8px); }
}
.kol-content { display: none; margin-top: 10px; }
.kol-content.open { display: block; animation: viewIn .6s cubic-bezier(.2,.8,.2,1) both; }
.view-dark .bento { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.14); }
.b-glass { background: #101b46; }
.b-glass:hover { background: #152260; }
.b-glass .b-body h3 { color: #fff; }
.b-glass .b-body p { color: #96a0c8; }
.b-glass .b-link { color: var(--accent); }
.b-glass .b-ghost { stroke: #fff; opacity: .09; }
.b-glass .b-num { color: rgba(255,255,255,.3); }

/* ===== PODCAST (lista editorial) ===== */
.ep-list { border: 1px solid var(--line); border-radius: var(--r); }
.ep {
  display: grid; grid-template-columns: 5.5rem 1fr auto auto;
  align-items: center; gap: 1.5rem;
  padding: 1.6rem clamp(1.2rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .25s, padding-left .3s cubic-bezier(.2,.8,.2,1);
}
.ep:last-child { border-bottom: 0; }
.ep:hover { background: var(--bg-soft); padding-left: calc(clamp(1.2rem, 3vw, 2rem) + 8px); }
.ep-num { font-family: var(--display); font-weight: 800; font-size: .85rem; letter-spacing: .1em; color: var(--royal); }
.ep-info h3 { font-size: 1.15rem; text-transform: uppercase; color: var(--navy-deep); margin-bottom: .25rem; }
.ep-info p { font-size: .88rem; color: var(--muted); }
.ep-dur { font-size: .78rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.ep .arr { color: var(--navy-deep); opacity: .35; transition: opacity .25s, transform .25s; }
.ep:hover .arr { opacity: 1; transform: scale(1.1); }
@media (max-width: 640px) { .ep { grid-template-columns: 4rem 1fr auto; } .ep-dur { display: none; } }

/* ===== VIDEOS (bento) ===== */
.vid-bento { display: grid; grid-template-columns: 3fr 2fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.vid-bento .vid:nth-child(1) { grid-row: span 2; }
.vid { background: #fff; padding: 1.2rem; transition: background .25s; }
.vid:hover { background: var(--bg-soft); }
.vid-thumb {
  position: relative; height: 200px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 1rem;
}
.vid-big .vid-thumb { height: calc(100% - 60px); min-height: 320px; }
.v1 { background: linear-gradient(150deg, #1c2e6b, #3552d8); }
.v2 { background: linear-gradient(150deg, #16255c, #2f6fd8); }
.v3 { background: linear-gradient(150deg, #0e1738, #1c2e6b); }
.vid-play {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .25s, background .25s, color .25s;
}
.vid:hover .vid-play { transform: scale(1.1); background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.vid-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.vid-row h3 { font-size: 1rem; text-transform: uppercase; color: var(--navy-deep); }
.vid-row span { font-family: var(--display); font-weight: 700; font-size: .74rem; color: var(--muted); letter-spacing: .1em; }
@media (max-width: 800px) {
  .vid-bento { grid-template-columns: 1fr; }
  .vid-big .vid-thumb { min-height: 220px; height: 220px; }
}

/* ===== NEWS ===== */
.news { border: 1px solid var(--line); border-radius: var(--r); }
.news-item {
  display: grid; grid-template-columns: 5rem 1fr auto;
  align-items: center; gap: 1.5rem;
  padding: 1.6rem clamp(1.2rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding-left .3s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
.news-item:last-child { border-bottom: 0; }
.news-item:hover { background: var(--bg-soft); padding-left: calc(clamp(1.2rem, 3vw, 2rem) + 8px); }
.news-date {
  font-family: var(--display); font-weight: 800; font-size: 1.6rem;
  color: var(--navy-deep); line-height: 1; text-align: center;
}
.news-date small {
  display: block; font-size: .62rem; font-weight: 700;
  letter-spacing: .24em; color: var(--royal); margin-top: .3rem;
}
.news-body h3 { font-size: 1.15rem; text-transform: uppercase; color: var(--navy-deep); margin-bottom: .3rem; }
.news-body p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.news-item .arr { color: var(--royal); opacity: 0; transform: translate(-6px, 6px); transition: opacity .25s, transform .25s; }
.news-item:hover .arr { opacity: 1; transform: translate(0, 0); }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deep); color: #fff; padding: 0 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
  padding: 3rem 0 2.4rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; }
.footer-brand h4 { font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.footer-brand p { color: #8a96c4; font-size: .8rem; margin-top: .2rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a {
  color: #aab4da; font-size: .86rem; font-weight: 500;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.footer-links a:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.2rem 0 1.6rem;
  color: #66719e; font-size: .78rem;
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

/* ===== CONTENIDO REAL — componentes nuevos ===== */
.hero-photo { background: var(--navy-deep); }
.hero-photo-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .92;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.hero-photo:hover .hero-photo-img { transform: scale(1.04); }

.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* roster (hanaga / guisbarim / madrijim) */
.roster { border: 1px solid var(--line); border-radius: var(--r); }
.roster-row {
  display: grid; grid-template-columns: minmax(9rem, 16rem) 1fr;
  gap: 1.5rem; align-items: baseline;
  padding: .95rem clamp(1.2rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  transition: background .2s, padding-left .3s cubic-bezier(.2,.8,.2,1);
}
.roster-row:last-child { border-bottom: 0; }
.roster-row:hover { background: var(--bg-soft); padding-left: calc(clamp(1.2rem, 3vw, 2rem) + 6px); }
.roster-row span {
  font-family: var(--display); font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--royal);
}
.roster-row b { font-weight: 600; font-size: .95rem; color: var(--navy-deep); }
@media (max-width: 640px) { .roster-row { grid-template-columns: 1fr; gap: .2rem; } }

/* fold (details madrijim) */
.fold { margin-top: 1.5rem; border: 1px solid var(--line); border-radius: var(--r); }
.fold summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem clamp(1.2rem, 3vw, 2rem);
  transition: background .2s;
}
.fold summary::-webkit-details-marker { display: none; }
.fold summary:hover { background: var(--bg-soft); }
.fold summary .ic { transition: transform .3s; color: var(--royal); }
.fold[open] summary .ic { transform: rotate(90deg); }
.fold .roster { border: 0; border-top: 1px solid var(--line); }

/* info band (tilboshet + diccionario) */
.info-band { background: var(--navy-deep); color: #fff; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2.5rem, 6vw, 5rem); }
.info-title { font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: uppercase; color: #fff; margin: 1rem 0 1.8rem; }
.tilb { border-top: 1px solid rgba(255,255,255,.15); }
.tilb-row {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.15);
}
.tilb-row span { font-size: .8rem; color: #8a96c4; text-transform: uppercase; letter-spacing: .1em; font-family: var(--display); font-weight: 700; }
.tilb-row b { font-weight: 600; font-size: .95rem; color: #fff; }
.dicc { margin-top: 1.4rem; columns: 1; }
.dicc > div { padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.12); break-inside: avoid; }
.dicc dt { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: .85rem; letter-spacing: .08em; color: var(--accent); }
.dicc dd { color: #aab4da; font-size: .88rem; line-height: 1.55; margin-top: .25rem; }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

/* contactos */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-card { background: #fff; padding: 1.6rem; display: flex; flex-direction: column; gap: .4rem; transition: background .2s; }
.contact-card:hover { background: var(--bg-soft); }
.contact-card b { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1rem; color: var(--navy-deep); }
.contact-card a { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--royal); margin-top: .3rem; }
.contact-card a:hover { text-decoration: underline; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }

/* pagos */
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pay-card { background: #fff; padding: clamp(1.8rem, 4vw, 3rem); }
.pay-alt { background: var(--bg-soft); }
.pay-price {
  font-family: var(--display); font-weight: 900; font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--navy-deep); letter-spacing: -0.03em; line-height: 1; margin: .8rem 0 1rem;
}
.pay-card p { color: var(--muted); font-size: .95rem; line-height: 1.65; margin-bottom: 1.6rem; max-width: 26rem; }
@media (max-width: 800px) { .pay-grid { grid-template-columns: 1fr; } }

/* álbumes fotos */
.album-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.album { display: block; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.album:hover { border-color: rgba(43,70,196,.4); box-shadow: 0 20px 44px -20px rgba(14,23,56,.2); }
.album-img { height: 300px; overflow: hidden; }
.album-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.album:hover .album-img img { transform: scale(1.05); }
.album-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; }
.album-row h3 { font-size: 1.1rem; text-transform: uppercase; color: var(--navy-deep); margin-top: .3rem; }
.album .arr { color: var(--royal); }
@media (max-width: 760px) { .album-grid { grid-template-columns: 1fr; } .album-img { height: 220px; } }

/* merch con fotos reales */
.prod-img img { width: 100%; height: 100%; object-fit: cover; }

/* vaadot */
.vaadot-collage { display: grid; grid-template-columns: 3fr 2fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-bottom: 2.5rem; }
.vaadot-collage img { width: 100%; height: 320px; object-fit: cover; display: block; background: #fff; }
@media (max-width: 760px) { .vaadot-collage { grid-template-columns: 1fr; } .vaadot-collage img { height: 220px; } }
.vaada-list { border: 1px solid var(--line); border-radius: var(--r); }
.vaada { border-bottom: 1px solid var(--line); }
.vaada:last-child { border-bottom: 0; }
.vaada summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 3.5rem 1fr auto auto;
  gap: 1.2rem; align-items: center;
  padding: 1.2rem clamp(1.2rem, 3vw, 2rem);
  transition: background .2s, padding-left .3s cubic-bezier(.2,.8,.2,1);
}
.vaada summary::-webkit-details-marker { display: none; }
.vaada summary:hover { background: var(--bg-soft); padding-left: calc(clamp(1.2rem, 3vw, 2rem) + 8px); }
.v-num { font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .2em; color: #b6bccd; }
.vaada summary h3 { font-size: 1.2rem; text-transform: uppercase; color: var(--navy-deep); }
.v-rosh { font-size: .78rem; color: var(--muted); text-align: right; max-width: 22rem; }
.vaada summary .arr { color: var(--royal); transition: transform .3s; }
.vaada[open] summary .arr { transform: rotate(90deg); }
.vaada > p {
  padding: 0 clamp(1.2rem, 3vw, 2rem) 1.5rem calc(clamp(1.2rem, 3vw, 2rem) + 4.7rem);
  color: var(--muted); font-size: .93rem; line-height: 1.7; max-width: 60rem;
}
@media (max-width: 760px) {
  .vaada summary { grid-template-columns: 2.5rem 1fr auto; }
  .v-rosh { display: none; }
  .vaada > p { padding-left: clamp(1.2rem, 3vw, 2rem); }
}

/* archives digitize */
.digitize {
  margin-top: 2.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: var(--navy-deep); color: #fff;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border-radius: var(--r);
}
.digitize h3 { font-size: clamp(1.2rem, 2.4vw, 1.7rem); text-transform: uppercase; }
.digitize p { color: #8a96c4; margin-top: .4rem; font-size: .9rem; }
.digitize-contacts { display: flex; flex-direction: column; gap: .6rem; }
.digitize-contacts a {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--accent); font-weight: 600; font-size: .92rem;
  transition: opacity .2s;
}
.digitize-contacts a:hover { opacity: .75; }

/* kol ediciones */
.kol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.kol-ed { display: block; background: #101b46; transition: background .25s; }
.kol-ed:hover { background: #152260; }
.kol-cover { height: 240px; overflow: hidden; }
.kol-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.kol-ed:hover .kol-cover img { transform: scale(1.05); }
.kol-row { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.2rem; }
.kol-row h3 { font-size: .98rem; text-transform: uppercase; color: #fff; flex: 1; }
.kol-row .arr { color: var(--accent); }
@media (max-width: 900px) { .kol-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .kol-grid { grid-template-columns: 1fr; } }

/* on air */
.onair { display: grid; grid-template-columns: 3fr 2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.video-embed { position: relative; aspect-ratio: 16/9; background: var(--navy-deep); border: 1px solid var(--line); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.onair-desc { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-top: .9rem; }
.onair-quote {
  font-family: var(--display); font-weight: 800; font-style: italic;
  font-size: 1.3rem; color: var(--royal); margin: 1.4rem 0 .6rem;
}
.onair-rosh { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 1rem; }
@media (max-width: 860px) { .onair { grid-template-columns: 1fr; } }

/* vaada mac */
.mac-grid { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.mac-img { border: 1px solid var(--line); overflow: hidden; }
.mac-img img { width: 100%; display: block; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.mac-img:hover img { transform: scale(1.03); }
.mac-text p { color: var(--muted); font-size: .97rem; line-height: 1.75; margin-bottom: 1.2rem; }
@media (max-width: 860px) { .mac-grid { grid-template-columns: 1fr; } }

/* ===== NAV SEARCH ===== */
.nav-search {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1px solid var(--line); border-radius: var(--r);
  padding: .42rem .7rem; background: var(--bg-soft);
  transition: border-color .25s, background .25s;
}
.nav-search:focus-within { border-color: var(--royal); background: #fff; }
.nav-search .ic { color: var(--muted); }
.nav-search input {
  border: 0; outline: 0; background: transparent;
  font-family: var(--sans); font-size: .84rem; color: var(--ink);
  width: 96px; transition: width .3s cubic-bezier(.2,.8,.2,1);
}
.nav-search input:focus { width: 140px; }
.nav-search input::placeholder { color: var(--muted); }
.nav-search input::-webkit-search-cancel-button { display: none; }
.nav-search.shake { animation: shake .4s; border-color: #d33; }
.nav-search-mobile {
  margin: .9rem clamp(16px, 3vw, 48px) .3rem;
  padding: .6rem .8rem;
}
.nav-search-mobile input { width: 100%; flex: 1; }
.nav-search-mobile input:focus { width: 100%; }

/* ===== GATE DE ACCESO ===== */
body.gated { overflow: hidden; }
.gate {
  position: fixed; inset: 0; z-index: 1000;
  background:
    radial-gradient(55% 45% at 75% 15%, rgba(34,211,238,.12), transparent 70%),
    linear-gradient(165deg, var(--navy-deep) 0%, #131f4d 70%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  transition: opacity .6s cubic-bezier(.2,.8,.2,1), visibility .6s;
}
.gate-open { opacity: 0; visibility: hidden; pointer-events: none; }
.gate-box {
  width: 100%; max-width: 420px; text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.6rem, 4vw, 2.4rem);
  animation: gateIn .7s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes gateIn { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
.gate-logo {
  width: 92px; height: 92px; border-radius: 50%; object-fit: contain;
  background: #fff; margin-bottom: 1.4rem;
  box-shadow: 0 20px 50px -18px rgba(0,0,0,.55);
}
.gate-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem); color: #fff;
  text-transform: uppercase; margin: .7rem 0 .6rem;
}
.gate-sub { color: #96a0c8; font-size: .92rem; line-height: 1.6; margin-bottom: 1.6rem; }
.gate-form { display: flex; flex-direction: column; gap: .7rem; }
.gate-form input {
  width: 100%; padding: .9rem 1rem; text-align: center;
  border-radius: var(--r); border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07); color: #fff;
  font-family: var(--sans); font-size: .98rem; outline: none;
  letter-spacing: .08em;
  transition: border .25s, box-shadow .25s;
}
.gate-form input::placeholder { color: #7d89b8; letter-spacing: normal; }
.gate-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,211,238,.18); }
.gate-form input:disabled { opacity: .4; }
.gate-form .btn-solid { width: 100%; justify-content: center; }
.gate-form .btn-solid:disabled { opacity: .4; cursor: not-allowed; }
.gate-error { display: none; margin-top: 1rem; color: #ff9c9c; font-size: .85rem; }
.gate-hint { margin-top: 1.4rem; color: #66719e; font-size: .78rem; }
.gate-box.shake { animation: shake .4s; }

/* ===== GATE V2 — animado ===== */
.gate {
  background: #0a1130;
  overflow: hidden;
}
.gate-aurora {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  pointer-events: none;
}
.ga1 {
  width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  background: radial-gradient(circle, #2b46c4 0%, transparent 65%);
  top: -22%; left: -12%;
  animation: auroraA 16s ease-in-out infinite alternate;
}
.ga2 {
  width: 50vw; height: 50vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle, #22d3ee 0%, transparent 65%);
  bottom: -25%; right: -12%; opacity: .32;
  animation: auroraB 20s ease-in-out infinite alternate;
}
.ga3 {
  width: 34vw; height: 34vw; max-width: 420px; max-height: 420px;
  background: radial-gradient(circle, #6d5df1 0%, transparent 65%);
  top: 55%; left: 12%; opacity: .28;
  animation: auroraA 24s ease-in-out -8s infinite alternate;
}
@keyframes auroraA {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(9vw, 6vh) scale(1.18); }
}
@keyframes auroraB {
  0% { transform: translate(0,0) scale(1.1); }
  100% { transform: translate(-8vw, -7vh) scale(.94); }
}
.gate-stars {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 24%, rgba(255,255,255,.8), transparent),
    radial-gradient(1px 1px at 32% 68%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 71% 47%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.5px 1.5px at 86% 78%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 22% 87%, rgba(255,255,255,.55), transparent),
    radial-gradient(1px 1px at 92% 12%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 44% 41%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.5px 1.5px at 64% 88%, rgba(255,255,255,.6), transparent);
  animation: starPulse 5s ease-in-out infinite alternate;
}
@keyframes starPulse { from { opacity: .3; } to { opacity: .65; } }

.gate-box {
  background: rgba(10, 17, 48, .55);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  max-width: 460px;
  position: relative; z-index: 2;
}
.gate-crest {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.gate-crest::before {
  content: ''; position: absolute; inset: -14px;
  border: 1.5px dashed rgba(34,211,238,.45); border-radius: 50%;
  animation: spin 24s linear infinite;
}
.gate-crest::after {
  content: ''; position: absolute; inset: -26px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
  animation: spin 40s linear reverse infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.gate-logo {
  width: 96px; height: 96px; margin-bottom: 0;
  animation: crestFloat 5s ease-in-out infinite;
}
@keyframes crestFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.gate-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  text-transform: none; letter-spacing: 0;
  color: #fff; line-height: 1.05;
  margin: .5rem 0 .8rem;
}
.gate-title em { font-style: italic; color: var(--accent); }
.gate-sub { font-size: .95rem; }

/* entrada escalonada */
.gate-el { opacity: 0; animation: gateEl .8s cubic-bezier(.2,.8,.2,1) forwards; }
.ge1 { animation-delay: .25s; }
.ge2 { animation-delay: .4s; }
.ge3 { animation-delay: .55s; }
.ge4 { animation-delay: .7s; }
.ge5 { animation-delay: .9s; }
@keyframes gateEl { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.gate-form .btn-solid {
  font-family: var(--round); font-weight: 700; letter-spacing: .2em;
  position: relative; overflow: hidden;
}
.gate-form .btn-solid::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 40%;
  left: -60%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: shine 3.2s ease infinite;
}
@keyframes shine { 0%, 60% { left: -60%; } 100% { left: 140%; } }

/* ===== AJUSTES ANTON ===== */
.hero-display { line-height: .98; letter-spacing: .01em; }
.wordmark { font-weight: 400; letter-spacing: .08em; }
.btn-solid, .btn-line { font-family: var(--round); font-weight: 700; letter-spacing: .16em; font-size: .74rem; }
.tag, .est-badge { font-family: var(--round); }
.b-num, .idx-num, .v-num, .t-num, .ep-num, .meta-label { font-family: var(--round); font-weight: 700; }
.marquee-track span { font-family: var(--round); font-weight: 700; font-size: .78rem; }
.onair-quote { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 1.6rem; }
.info-title { font-family: var(--serif); text-transform: none; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.info-title em, .gate-title em { font-style: italic; }

/* ===== GATE V3 — landing camuflado ===== */
.gate { flex-direction: column; }
.gate-land {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 1rem;
}
.gate-big {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3.4rem, 11vw, 8rem);
  text-transform: uppercase; letter-spacing: .02em;
  color: #fff; line-height: 1; margin: 1.6rem 0 1rem;
}
.gate-big em { font-style: normal; color: var(--accent); }
.gate-tag {
  font-family: var(--round); font-weight: 600;
  font-size: .78rem; letter-spacing: .3em; text-transform: uppercase;
  color: #8a96c4;
}
.gate-foot {
  position: absolute; bottom: 1.6rem; left: 0; right: 0;
  text-align: center; z-index: 2;
  font-size: .74rem; color: #55618f;
}
.gate-corner {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 3;
}
.gate-corner input {
  width: 130px; padding: .5rem .8rem;
  border-radius: var(--r); border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05); color: #fff;
  font-family: var(--sans); font-size: .85rem; outline: none;
  transition: border .25s, background .25s, width .3s;
}
.gate-corner input:focus {
  border-color: rgba(34,211,238,.5); background: rgba(255,255,255,.09);
  width: 160px;
}
.gate-corner input:disabled { opacity: .3; }
.gate-corner.shake { animation: shake .4s; }

/* ===== GATE V4 — landing con vida ===== */
.gate-big { display: flex; flex-direction: column; align-items: center; gap: 0; }
.gate-big .gb-solid {
  color: #fff;
  font-size: clamp(3.6rem, 13vw, 10rem);
  line-height: .92;
}
.gate-big .gb-outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--accent);
  font-size: clamp(3.6rem, 13vw, 10rem);
  line-height: .92;
}
.gate-tag { margin-top: 1.2rem; }
.gate-chips {
  display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.6rem;
}
.gate-chips span {
  font-family: var(--round); font-weight: 700; font-size: .64rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: #bcd0ff; border: 1px solid rgba(255,255,255,.18);
  padding: .45rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.04);
  transition: transform .25s, border-color .25s, color .25s;
}
.gate-chips span:hover { transform: translateY(-3px) rotate(-1deg); border-color: var(--accent); color: var(--accent); }

/* banda diagonal */
.gate-band {
  position: absolute; left: -10%; right: -10%; top: 50%;
  transform: rotate(-6deg) translateY(-50%);
  background: rgba(34,211,238,.08);
  border-top: 1px solid rgba(34,211,238,.25);
  border-bottom: 1px solid rgba(34,211,238,.25);
  padding: .7rem 0; overflow: hidden;
  z-index: 1; pointer-events: none;
}
.gate-band-track { display: flex; white-space: nowrap; width: max-content; animation: marquee 24s linear infinite; }
.gate-band-track span {
  font-family: var(--display); font-size: 1rem; letter-spacing: .4em;
  color: rgba(188,208,255,.5); padding-right: 20px;
}

/* fotos flotantes */
.gate-photo {
  position: absolute; z-index: 1;
  width: clamp(120px, 15vw, 210px); aspect-ratio: 4/5; object-fit: cover;
  border: 5px solid rgba(255,255,255,.9); border-radius: 3px;
  box-shadow: 0 24px 60px -18px rgba(0,0,0,.6);
  opacity: 0; animation: photoIn 1s cubic-bezier(.2,.8,.2,1) forwards, gFloat 7s ease-in-out 1s infinite;
}
@keyframes photoIn { from { opacity: 0; transform: translateY(30px) rotate(0deg) scale(.9); } to { opacity: 1; } }
@keyframes gFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}
.gp1 { top: 10%; left: 6%; rotate: -7deg; animation-delay: .5s, 1.2s; }
.gp2 { bottom: 14%; left: 12%; rotate: 5deg; animation-delay: .7s, 1.6s; }
.gp3 { top: 14%; right: 7%; rotate: 6deg; animation-delay: .9s, 2s; }
.gp4 { bottom: 12%; right: 11%; rotate: -5deg; animation-delay: 1.1s, 2.4s; }
@media (max-width: 900px) {
  .gp2, .gp3 { display: none; }
  .gate-photo { width: 110px; }
  .gp1 { top: 6%; left: 4%; }
  .gp4 { bottom: 9%; right: 5%; }
}

/* ===== GATE V5 — sereno, cero info ===== */
.gate-aurora { opacity: .32; }
.ga2 { opacity: .2; }
.ga3 { opacity: .16; }
.gate-stars { opacity: .35; }
.gate-rule {
  display: block; height: 1px; width: 0;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.7), transparent);
  margin: 1.6rem auto 0;
  animation: ruleGrow 1.2s cubic-bezier(.2,.8,.2,1) .8s forwards;
}
@keyframes ruleGrow { to { width: min(320px, 60vw); } }
.gate-rule.gate-el { opacity: 1; animation: ruleGrow 1.2s cubic-bezier(.2,.8,.2,1) .8s forwards; transform: none; }
.gate-tag { letter-spacing: .42em; font-size: .7rem; }

/* ===== KOL — temporada nueva + archivo ===== */
.kol-empty {
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: var(--r);
  padding: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  margin-bottom: 2rem;
}
.kol-empty h3 {
  color: #fff; text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: .8rem 0 .6rem;
}
.kol-empty p:last-child { color: #96a0c8; font-size: .93rem; max-width: 34rem; margin: 0 auto; line-height: 1.65; }
.kol-fold { border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); }
.kol-fold summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem clamp(1.2rem, 3vw, 2rem);
  transition: background .25s;
}
.kol-fold summary::-webkit-details-marker { display: none; }
.kol-fold summary:hover { background: rgba(255,255,255,.05); }
.kol-fold summary h3 { color: #fff; text-transform: uppercase; font-size: 1.15rem; flex: 1; }
.kol-fold summary .arr { color: var(--accent); transition: transform .3s; }
.kol-fold[open] summary .arr { transform: rotate(90deg); }
.kol-fold .kol-grid { border: 0; border-top: 1px solid rgba(255,255,255,.14); }

/* ===== VAADA MAC — videos temporada ===== */
.mac-videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mac-slot {
  border: 1px dashed #c9cede; border-radius: var(--r);
  min-height: 210px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; text-align: center;
  color: #b6bccd;
  transition: border-color .25s, color .25s, transform .25s;
}
.mac-slot:hover { border-color: var(--royal); color: var(--royal); transform: translateY(-3px); }
.mac-slot p { font-size: .85rem; color: var(--muted); }
@media (max-width: 720px) { .mac-videos { grid-template-columns: 1fr; } }

/* ===== PRECIOS legibles ===== */
.pay-price {
  display: flex; align-items: baseline; gap: .35rem;
  font-size: clamp(3rem, 6.5vw, 5rem);
  letter-spacing: .03em;
}
.pay-cur {
  font-size: .45em; color: var(--royal);
  align-self: flex-start; margin-top: .35em;
}
.pay-per {
  font-family: var(--round); font-weight: 700;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-left: .4rem;
}

/* ===== ROL PADRES — ocultar Kol Macabi y Vaada Mac ===== */
.role-padres a[data-view="videos"],
.role-padres a[data-view="kolmacabi"],
.role-padres a[href="#/videos"],
.role-padres a[href="#/kolmacabi"] { display: none !important; }

/* ===== LOGOS DE VAADOT EN NAV ===== */
.nav-vlogo-link { padding: 0 !important; border: none !important; line-height: 0; }
.nav-vlogo-link::after { display: none !important; }
.nav-vlogo {
  height: 30px; width: auto; display: block;
  border-radius: 4px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.nav-vlogo-link:hover .nav-vlogo { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 18px -8px rgba(14,23,56,.4); }
.nav-vlogo-link.active .nav-vlogo { box-shadow: 0 2px 0 0 var(--navy), 0 8px 18px -8px rgba(14,23,56,.35); }

/* logos nav: ajustes */
.nav-vlogo { height: 34px; }
.nav-vlogo-tall { height: 40px; }
.nav-vlogo[src*="merch-logo"] { height: 36px; }
@media (max-width: 1080px) { .nav-vlogo { height: 28px; } }

/* logos nav: tamaños afinados */
.nav-vlogo[src*="tzilum-logo"] { height: 42px; }
.nav-vlogo[src*="vaadot-logo"] { height: 38px; }
.nav-vlogo[src*="archives-logo"] { height: 38px; }
.nav-vlogo[src*="guisbar-logo"] { height: 36px; }
.nav-vlogo-tall { height: 34px; }

/* ===== VAADOT — logos en filas ===== */
.v-logo { height: 58px; width: auto; max-width: 100%; justify-self: start; transition: transform .3s; }
.vaada summary:hover .v-logo { transform: scale(1.05); }
.vaada summary { grid-template-columns: 3.5rem 1fr auto auto; align-items: center; }
@media (max-width: 760px) { .v-logo { height: 44px; } }
.nav-vlogo[src*="digitali-nav"] { height: 34px; }

/* ===== NAV LOGOS — mas grandes ===== */
.nav-vlogo { height: 44px; }
.nav-vlogo-tall { height: 44px; }
.nav-vlogo[src*="merch-logo"] { height: 46px; }
.nav-vlogo[src*="tzilum-logo"] { height: 50px; }
.nav-vlogo[src*="vaadot-logo"] { height: 44px; }
.nav-vlogo[src*="archives-logo"] { height: 44px; }
.nav-vlogo[src*="guisbar-logo"] { height: 46px; }
.nav-vlogo[src*="digitali-nav"] { height: 42px; }
.mnav { gap: 1.3rem; }
@media (max-width: 1280px) { .nav-vlogo { height: 36px; } }

/* nav con mas aire, sin buscador desktop */
.mnav { gap: 2.2rem; }
.mast-inner { gap: 2rem; min-height: 72px; }
@media (max-width: 1380px) { .mnav { gap: 1.5rem; } }

/* ===== NAV — logos grandes y legibles ===== */
.mast-inner { min-height: 88px; gap: 2rem; }
.nav-vlogo { height: 54px; }
.nav-vlogo-tall { height: 54px; }
.nav-vlogo[src*="merch-logo"] { height: 54px; }
.nav-vlogo[src*="tzilum-logo"] { height: 58px; }
.nav-vlogo[src*="vaadot-logo"] { height: 52px; }
.nav-vlogo[src*="archives-logo"] { height: 52px; }
.nav-vlogo[src*="guisbar-logo"] { height: 54px; }
.nav-vlogo[src*="digitali-nav"] { height: 50px; }
.nav-vlogo[src*="kol-logo"] { height: 50px; }
.nav-vlogo[src*="mac-logo"] { height: 50px; }
.crest { width: 46px; height: 46px; }
.wordmark { font-size: 1.15rem; }
.wordmark small { font-size: .52rem; }
@media (max-width: 1500px) { .nav-vlogo, .nav-vlogo-tall { height: 44px !important; } .mnav { gap: 1.5rem; } }
@media (max-width: 1280px) { .nav-vlogo, .nav-vlogo-tall { height: 38px !important; } .mnav { gap: 1.1rem; } }

/* kol temporada nueva */
.kol-soon { cursor: default; opacity: .55; }
.kol-soon:hover { background: #101b46; }
.kol-cover-soon {
  display: flex; align-items: center; justify-content: center;
  color: #4a5a9e;
  border-bottom: 1px dashed rgba(255,255,255,.2);
}
.kol-cover img { object-position: center top; }

/* telefonos guisbarim */
.roster-tel {
  font-weight: 500; font-size: .84rem; color: var(--royal);
  margin-left: .8rem; white-space: nowrap;
}
.roster-tel:hover { text-decoration: underline; }
/* logos nuevos con cache-bust siguen matcheando alturas */
.nav-vlogo[src*="kol-logo"] { height: 50px; }

/* ===== ROSTER — etiquetas legibles ===== */
.roster-row span {
  font-family: var(--sans); font-weight: 600;
  font-size: .8rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--muted);
}

/* ===== NAV — distribucion pareja y fina ===== */
.mast-inner { grid-template-columns: 1fr auto 1fr; gap: 2.5rem; min-height: 92px; }
.mnav { flex: 1; gap: 1rem; }
.mnav.left { justify-content: space-evenly; }
.mnav.right { justify-content: space-evenly; }
.nav-vlogo, .nav-vlogo-tall {
  height: 48px !important; max-width: 150px;
  width: auto; object-fit: contain;
}
.nav-vlogo[src*="tzilum-logo"] { height: 54px !important; }
.nav-vlogo-link { display: flex; align-items: center; }
@media (max-width: 1500px) { .nav-vlogo, .nav-vlogo-tall { height: 40px !important; max-width: 120px; } }
@media (max-width: 1280px) { .nav-vlogo, .nav-vlogo-tall { height: 34px !important; max-width: 100px; } }

/* miembros de vaada */
.v-mem {
  padding: 0 clamp(1.2rem, 3vw, 2rem) 1.5rem calc(clamp(1.2rem, 3vw, 2rem) + 4.7rem);
  color: var(--muted); font-size: .88rem;
}
.v-mem b { color: var(--navy-deep); font-weight: 600; }
@media (max-width: 760px) { .v-mem { padding-left: clamp(1.2rem, 3vw, 2rem); } }

/* ===== NAV centrado, sin desborde ===== */
.mast-inner { max-width: 1560px; gap: 1.2rem; padding-left: clamp(12px, 2vw, 32px); padding-right: clamp(12px, 2vw, 32px); }
.mnav { min-width: 0; }
.nav-vlogo, .nav-vlogo-tall { height: 42px !important; max-width: 122px; }
.nav-vlogo[src*="tzilum-logo"] { height: 48px !important; }
.crest-lockup { padding: 0 1.2rem; }

/* ===== HERO V2 — titulo letra a letra + logo que se construye ===== */
.hd-line { animation: none; }
.hd-line .ch {
  display: inline-block;
  opacity: 0; transform: translateY(.55em) rotate(4deg) scale(.9);
  animation: chIn .6s cubic-bezier(.2,.85,.25,1.15) forwards;
}
@keyframes chIn {
  to { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
.hd-dot { display: inline-block; opacity: 0; animation: dotIn .4s cubic-bezier(.2,.8,.2,1) 1.35s forwards; }
@keyframes dotIn {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.logo-build {
  position: relative; z-index: 1;
  width: 62%; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.ring-svg {
  position: absolute; inset: -9%; width: 118%; height: 118%;
  transform: rotate(-90deg);
}
.ring-svg circle {
  fill: none; stroke: rgba(34,211,238,.85); stroke-width: 1.6;
  stroke-dasharray: 604; stroke-dashoffset: 604;
  animation: ringDraw 1.5s cubic-bezier(.4,0,.2,1) .3s forwards;
}
.ring-svg2 { inset: -2%; width: 104%; height: 104%; transform: rotate(90deg) scaleY(-1); }
.ring-svg2 circle {
  stroke: rgba(255,255,255,.35); stroke-width: 1;
  stroke-dasharray: 540; stroke-dashoffset: 540;
  animation: ringDraw 1.5s cubic-bezier(.4,0,.2,1) .55s forwards;
}
@keyframes ringDraw { to { stroke-dashoffset: 0; } }
.hero-logo-img {
  width: 84%;
  opacity: 0; transform: scale(.25) rotate(-160deg);
  animation: logoBuild 1.1s cubic-bezier(.2,.9,.3,1.15) .5s forwards;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
@keyframes logoBuild {
  60% { opacity: 1; }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
.hero-panel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 45%;
  left: -60%; transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  animation: panelShine 1.2s ease 1.7s forwards;
}
@keyframes panelShine { to { left: 130%; } }

/* titulo: mas presencia */
.hero-display { text-shadow: 0 1px 0 rgba(255,255,255,.4); }
.hd-blue .ch { color: var(--navy); }
.hd-black .ch { color: #0a0a0a; }

/* padres: nav derecho balanceado sin huecos */
.role-padres .mnav.right { justify-content: center; gap: clamp(2.5rem, 6vw, 6rem); }

/* ===== TITULOS-LOGO por seccion ===== */
.view-head h2, .split-head h2 {
  width: fit-content;
  transform: rotate(-1.5deg);
  background-clip: text; -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(3px 5px 0 rgba(14,23,56,.14));
  padding-right: .06em;
}
/* Merch: azul + rojo del sticker */
[data-view-panel="merch"] .view-head h2 { background-image: linear-gradient(100deg, #2b46c4 30%, #4c63d8 55%, #e0433d 100%); }
/* Fotos: morados Tzilum */
[data-view-panel="tzilum"] .view-head h2 { background-image: linear-gradient(100deg, #5f3fa8, #8a68d4 60%, #b394ec); }
/* Anualidad: verdes Guisbar */
[data-view-panel="anualidad"] .view-head h2 { background-image: linear-gradient(100deg, #2f7a37, #57a05b 55%, #8fcf93); }
/* On Air: azules Digitali */
[data-view-panel="podcast"] .view-head h2 { background-image: linear-gradient(100deg, #1c2e6b, #2b46c4 50%, #5a79ff); }
/* Las Vaadot: multicolor */
[data-view-panel="vaadot"] .view-head h2 { background-image: linear-gradient(95deg, #d8433d 0%, #ef7fbe 22%, #57a05b 44%, #2b46c4 64%, #8d78e0 82%, #f2a23c 100%); }
/* Archives: sepia vintage */
[data-view-panel="archivo"] .view-head h2 { background-image: linear-gradient(100deg, #6d5a41, #8a7355 55%, #bda37c); }
/* Kol Macabi: rojos sobre navy */
[data-view-panel="kolmacabi"] .view-head h2 {
  background-image: linear-gradient(100deg, #ff6b64, #d8433d 55%, #a32722);
  filter: drop-shadow(3px 5px 0 rgba(0,0,0,.35));
}
/* Vaada Mac: azules Mac */
[data-view-panel="videos"] .view-head h2 { background-image: linear-gradient(100deg, #1e3fae, #3b5bdb 55%, #7fa0ff); }
/* Canciones: rosas Makela */
[data-view-panel="canciones"] .split-head h2 { background-image: linear-gradient(100deg, #f8a8ce, #e0368b 55%, #8f1b52); }
/* MAC-News: navy a cian */
[data-view-panel="macnews"] .split-head h2 { background-image: linear-gradient(100deg, #0e1738, #1c2e6b 50%, #22d3ee); }
/* Anuncios: cian a navy */
[data-view-panel="anuncios"] .view-head h2 { background-image: linear-gradient(100deg, #22d3ee, #2b46c4 60%, #0e1738); }

/* padres: barra compacta centrada, cero huecos */
.role-padres .mast-inner {
  grid-template-columns: auto auto auto;
  justify-content: center;
  column-gap: clamp(2rem, 4vw, 4rem);
}
.role-padres .mnav { flex: none; gap: clamp(2rem, 4vw, 4rem); }
.role-padres .mnav.left, .role-padres .mnav.right { justify-content: center; }

/* mac logo completo, sin cortes */
.nav-vlogo[src*="mac-logo"] { height: 48px !important; max-width: 110px; }

/* padres: fila unica centrada */
.role-padres .mast-inner {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(1.6rem, 3.5vw, 3.5rem);
}
.role-padres .mnav { display: contents; }

/* padres: 3-3 alrededor del logo, Macabi al centro real */
.role-padres .mast-inner { gap: clamp(1.4rem, 2.6vw, 2.8rem); }
.role-padres .mnav.left a { order: -2; }
.role-padres a[data-view="merch"] { order: 1; }
.role-padres .crest-lockup { order: 0; }
.role-padres .mnav.right a { order: 2; }

/* ===== HERO V3 — denso y moderno ===== */
.hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3.2rem) 0 clamp(2.4rem, 4.5vw, 3.6rem);
  background:
    radial-gradient(46% 60% at 96% 10%, rgba(34,211,238,.07), transparent 70%),
    radial-gradient(40% 55% at 2% 95%, rgba(43,70,196,.05), transparent 70%),
    #fff;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(28,46,107,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,46,107,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(70% 80% at 60% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 80% at 60% 40%, black 20%, transparent 80%);
}
.hero .wrap { position: relative; }
.hero-meta-row { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.hero-main {
  display: grid; grid-template-columns: 6.5fr 5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-display {
  font-size: clamp(2.8rem, 7.2vw, 6.4rem);
  line-height: .96;
  margin-bottom: 1.6rem;
}
.hero-display .hd-line { display: block; }
.hero-left .lede {
  color: var(--muted); font-size: clamp(.98rem, 1.4vw, 1.08rem);
  max-width: 32rem; line-height: 1.7; margin-bottom: 1.8rem;
  animation: fadeUp .8s .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero-left .hero-actions { animation: fadeUp .8s 1.05s cubic-bezier(.2,.8,.2,1) both; }
.hero-panel {
  aspect-ratio: auto; height: 100%; min-height: 440px; max-height: none;
  border-radius: var(--r);
}
@media (max-width: 900px) {
  .hero-main { grid-template-columns: 1fr; gap: 2rem; }
  .hero-panel { min-height: 360px; max-width: none; }
}

/* padres: merch a la derecha (refuerzo) + ajuste optico a la izquierda */
.role-padres .mnav.left a[data-view="merch"] { order: 1 !important; }
.role-padres .mast-inner { transform: translateX(-18px); }

/* ===== HERO panel: logo SIEMPRE completo ===== */
.hero-panel {
  height: auto; min-height: 0;
  aspect-ratio: 4/5;
  max-width: 460px; max-height: 540px;
  width: 100%;
  justify-self: end;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-build { width: min(64%, 300px); }
.hero-logo-img { width: 100%; }
@media (max-width: 900px) {
  .hero-panel { justify-self: center; max-width: 420px; }
}

/* ===== LANDING COMPACTO — flujo continuo, no slides ===== */
.section-pad { padding-top: clamp(2.2rem, 4vw, 3.4rem); padding-bottom: clamp(2.4rem, 4.5vw, 3.8rem); }
.sec-head { margin-bottom: clamp(1.4rem, 2.5vw, 2rem); }
.sec-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.hero { padding-bottom: clamp(1.8rem, 3vw, 2.6rem); }
.hero-meta-row { margin-bottom: clamp(1.2rem, 2vw, 1.8rem); }
.hero-panel { max-height: 470px; max-width: 420px; }
.hero-display { margin-bottom: 1.2rem; }

/* bento y lista mas bajos */
.b-main { min-height: 340px; }
.b-cell { min-height: 165px; padding: clamp(1.2rem, 2.2vw, 1.8rem); }
.b-main .b-body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.b-ghost { width: clamp(110px, 16vw, 170px); height: clamp(110px, 16vw, 170px); }
.idx-row { padding-top: .9rem; padding-bottom: .9rem; }
.idx-name { font-size: clamp(1rem, 1.7vw, 1.25rem); }

/* quote y bandas mas discretas */
.quote-band { padding: clamp(2rem, 4vw, 3rem) 0; }
.big-quote { font-size: clamp(1.3rem, 2.6vw, 2rem); margin: 1rem 0 1.4rem; }
.info-band { padding: clamp(2.2rem, 4.5vw, 3.4rem) 0; }
.dicc { columns: 2; column-gap: 2.5rem; }
.info-grid { gap: clamp(2rem, 4vw, 3.5rem); }
.contact-card { padding: 1.2rem 1.4rem; }
.view-head { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.view-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
@media (max-width: 860px) { .dicc { columns: 1; } }

/* ===== HERO pantalla completa ===== */
.hero {
  min-height: calc(100vh - 92px - 46px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero .wrap { width: 100%; }
.hero-panel { max-height: min(520px, calc(100vh - 320px)); }
.hero-display { font-size: clamp(2.8rem, 6.8vw, 6rem); }
@media (max-height: 760px) {
  .hero-display { font-size: clamp(2.4rem, 6vw, 4.6rem); }
  .hero-left .lede { margin-bottom: 1.2rem; }
}

/* legibilidad: contactos y diccionario */
.contact-card b {
  font-family: var(--sans); font-weight: 700;
  text-transform: none; font-size: 1.02rem; letter-spacing: 0;
}
.dicc dt {
  font-family: var(--sans); font-weight: 700;
  font-size: .92rem; letter-spacing: .04em; color: var(--accent);
}

/* ===== CTAs del hero por rol ===== */
.cta-padres, .cta-janijim { display: none !important; }
.role-padres .cta-padres { display: inline-flex !important; }
.role-janijim .cta-janijim { display: inline-flex !important; }
.cta-logo {
  align-items: center; gap: .7rem;
  border: 1px solid var(--line); border-radius: var(--r);
  padding: .6rem 1.1rem; background: #fff;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.cta-logo img { height: 44px; width: auto; max-width: 150px; object-fit: contain; }
.cta-logo .arr { color: var(--royal); }
.cta-logo:hover { transform: translateY(-3px); border-color: rgba(43,70,196,.4); box-shadow: 0 14px 30px -14px rgba(14,23,56,.25); }

/* cta cards verticales (padres) */
.cta-card {
  flex-direction: column; align-items: center; gap: .55rem;
  border: 1px solid var(--line); border-radius: var(--r);
  padding: .9rem 1.4rem .8rem; background: #fff;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.cta-card img { height: 46px; width: auto; max-width: 160px; object-fit: contain; }
.cta-card span {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--round); font-weight: 700; font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--navy);
}
.cta-card .arr { color: var(--royal); }
.cta-card:hover { transform: translateY(-3px); border-color: rgba(43,70,196,.4); box-shadow: 0 14px 30px -14px rgba(14,23,56,.25); }
.role-padres .cta-padres.cta-card { display: inline-flex !important; }

/* ================= MOBILE PASS ================= */
@supports (height: 100svh) {
  .hero { min-height: calc(100svh - 92px - 46px); }
}
.mobile-menu.open { max-height: 860px; }

@media (max-width: 1080px) {
  /* header movil: burger + logo, sin fugas de roles */
  .mast-inner { min-height: 64px; padding-top: .5rem; padding-bottom: .5rem; }
  .role-padres .mast-inner {
    display: grid; grid-template-columns: auto 1fr auto;
    transform: none; justify-content: stretch; gap: 1rem;
  }
  .role-padres .mnav, .role-janijim .mnav.left, .role-janijim .mnav.right { display: none !important; }
  .role-padres .crest-lockup { order: 0; justify-self: start; padding: 0; }
  .crest { width: 38px; height: 38px; }
  .wordmark { font-size: 1rem; }
  .hero { min-height: 0; padding-top: 1.6rem; }
}

@media (max-width: 640px) {
  .hero-display { font-size: clamp(2.6rem, 14vw, 3.6rem); }
  .hero-panel { max-width: 100%; max-height: 400px; aspect-ratio: 1/1; justify-self: stretch; }
  .logo-build { width: min(60%, 240px); }
  .hero-actions { gap: .8rem; }
  .cta-card, .cta-logo { flex: 1 1 45%; justify-content: center; }
  .hero-meta-row .meta-label:last-child { display: none; }
  .marquee-track span { font-size: .68rem; }

  .sec-head { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .sec-head .note, .split-head .sub { border-left: 0; padding-left: 0; }
  .split-head { flex-direction: column; align-items: flex-start; gap: .8rem; }

  .b-main { min-height: 240px; }
  .idx-row { gap: .9rem; }
  .big-quote { font-size: 1.25rem; }
  .quote-grid { display: block; }

  .pay-price { font-size: 3rem; }
  .roster-row b { display: flex; flex-direction: column; align-items: flex-start; gap: .15rem; }
  .roster-tel { margin-left: 0; }

  .kol-cover { height: 300px; }
  .video-embed { margin-bottom: 1.4rem; }
  .vaada summary h3 { font-size: 1rem; }
  .v-logo { height: 38px; }
  .v-mem { font-size: .82rem; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .footer-bottom { flex-direction: column; gap: .3rem; }
  .digitize { flex-direction: column; align-items: flex-start; }

  .gate-big .gb-solid, .gate-big .gb-outline { font-size: clamp(3rem, 17vw, 4.2rem); }
  .gate-corner { right: .9rem; bottom: .9rem; }
  .gate-corner input { width: 110px; }
}

/* nunca scroll horizontal */
html, body { max-width: 100%; overflow-x: clip; }
img, svg { max-width: 100%; }

/* ================= GATE V6 — portada acuarela ================= */
.gate {
  background: url('../assets/portada.jpg') center / cover no-repeat #dbe7fb;
}
.gate-aurora, .gate-stars { display: none; }
.gate-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 30%, rgba(214,228,250,.55) 100%);
}
.gate-land { position: relative; z-index: 2; }
.gate .gate-logo {
  width: 104px; height: 104px; border-radius: 50%;
  background: #fff; object-fit: contain;
  box-shadow: 0 10px 24px -8px rgba(28,46,107,.35), 0 30px 60px -20px rgba(28,46,107,.25);
  margin-bottom: 1.6rem;
  animation: none;
}
.gate-crest { display: contents; }
.gate-crest::before, .gate-crest::after { display: none; }
.gate-big { display: block; }
.gate-big .gb-solid, .gate-big .gb-em {
  display: inline; color: var(--navy-deep);
  font-size: clamp(2.8rem, 8vw, 5.6rem); line-height: 1;
  -webkit-text-stroke: 0;
}
.gate-big .gb-em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  text-transform: none; color: var(--royal);
  font-size: clamp(2.9rem, 8.4vw, 5.9rem);
}
.gate-rule {
  background: linear-gradient(90deg, transparent, rgba(28,46,107,.55), transparent);
}
.gate-tag { color: #46507a; letter-spacing: .46em; }
.gate-foot { color: #5d689a; position: relative; z-index: 2; }
.gate-corner input {
  border: 1px solid rgba(28,46,107,.25);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--navy-deep);
}
.gate-corner input::placeholder { color: transparent; }
.gate-corner input:focus { border-color: var(--royal); background: #fff; }

/* ================= PULIDO PRO ================= */
::selection { background: rgba(34,211,238,.35); color: var(--ink); }
:focus-visible { outline: 2px solid var(--royal); outline-offset: 3px; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-thumb { background: #c6cbdb; border-radius: 6px; border: 3px solid #fff; }
::-webkit-scrollbar-thumb:hover { background: #a9b0c8; }

/* sombras en capas, mas finas */
.card, .b-cell, .idx-row, .track, .ep, .news-item, .album, .pay-card, .contact-card {
  box-shadow: 0 1px 2px rgba(14,23,56,.04);
}
.card:hover, .album:hover {
  box-shadow: 0 2px 4px rgba(14,23,56,.05), 0 20px 44px -18px rgba(14,23,56,.18);
}

/* marquee mas fino y elegante */
.marquee { padding: 9px 0; background: var(--navy-deep); }
.marquee-track span { font-size: .68rem; letter-spacing: .5em; color: rgba(255,255,255,.75); font-weight: 600; }

/* transiciones suaves globales */
.view.active { animation-duration: .6s; }
.reveal { transition-duration: .9s; }

/* footer con linea de acento */
.footer { position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));
}

/* botones: micro-polish */
.btn-solid, .btn-line { border-radius: 3px; }
.btn-solid:active, .btn-line:active { transform: translateY(1px); }

/* imagenes nitidas */
img { image-rendering: auto; }

/* ================= HERO V4 — elegante ================= */
.hero-kick { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.3rem; animation: fadeDown .7s cubic-bezier(.2,.8,.2,1) both; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; } }
.hero-kick span {
  font-family: var(--round); font-weight: 700; font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--navy); border: 1px solid var(--line);
  background: #fff; padding: .4rem .85rem; border-radius: 999px;
}
.hero-kick span:first-child { background: var(--navy); color: #fff; border-color: var(--navy); }

/* panel con estrella marca de agua */
.hero-panel {
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="none" stroke="white" stroke-width="5" stroke-linejoin="round" opacity=".08"><path d="M100 18 L171 141 L29 141 Z"/><path d="M100 182 L29 59 L171 59 Z"/></g></svg>') center 40% / 130% no-repeat,
    radial-gradient(60% 50% at 75% 12%, rgba(34,211,238,.22), transparent 70%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 80%);
  outline: 1px solid rgba(28,46,107,.18); outline-offset: 10px;
}

/* cta cards janijim premium */
.cta-logo {
  gap: .9rem; padding: .7rem 1.1rem .7rem .7rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 90%);
  border: none; color: #fff;
}
.cl-chip {
  width: 74px; height: 48px; flex-shrink: 0;
  background: #fff; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.cl-chip img { max-width: 86%; max-height: 82%; object-fit: contain; }
.cta-logo .cl-txt { display: flex; flex-direction: column; gap: .1rem; text-align: left; }
.cta-logo .cl-txt b {
  font-family: var(--round); font-weight: 700; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
}
.cta-logo .cl-txt i { font-style: normal; font-size: .7rem; color: #9fb0dd; }
.cta-logo .arr { color: var(--accent); }
.cta-logo:hover { border: none; box-shadow: 0 18px 38px -14px rgba(14,23,56,.5); }

/* ================= GATE: sin solaparse ================= */
.gate-land { padding-bottom: 5rem; }
.gate-foot { bottom: 1.3rem; font-size: .72rem; }
.gate-tag { margin-top: 1.1rem; }
@media (max-height: 700px) {
  .gate .gate-logo { width: 84px; height: 84px; margin-bottom: 1rem; }
  .gate-land { padding-bottom: 3.5rem; }
}

/* ================= MOBILE FINAL PASS ================= */
@media (max-width: 640px) {
  /* gate */
  .gate-big .gb-solid, .gate-big .gb-em { font-size: clamp(2.2rem, 12vw, 3rem); }
  .gate .gate-logo { width: 88px; height: 88px; }
  .gate-tag { letter-spacing: .3em; font-size: .62rem; }

  /* hero */
  .hero-kick span { font-size: .54rem; padding: .32rem .65rem; }
  .hero-panel { outline-offset: 6px; }
  .hero-left .lede { font-size: .95rem; }

  /* titulos-logo: menos tilt en columna */
  .view-head h2, .split-head h2 { transform: rotate(-1deg); filter: drop-shadow(2px 3px 0 rgba(14,23,56,.14)); }

  /* cta cards a lo ancho en pantallas chicas */
  .cta-card, .cta-logo { flex: 1 1 100%; }
  .cta-logo { justify-content: flex-start; }

  /* bento ghost mas chico para no chocar texto */
  .b-ghost { width: 90px; height: 90px; right: -4%; bottom: -8%; }

  /* pagos */
  .pay-card { padding: 1.4rem 1.2rem; }
  .split-head[style] { margin-top: 2.5rem !important; }

  /* video y kol */
  .kol-cover { height: 240px; }
  .lock-box { padding: 1.8rem 1.4rem; }

  /* footer */
  .footer { padding-left: 18px; padding-right: 18px; }
}
@media (max-width: 400px) {
  .hero-display { font-size: 2.35rem; }
  .gate-corner input { width: 96px; }
  .roster-row { padding-left: .9rem; padding-right: .9rem; }
}
/* touch: sin hovers pegados */
@media (hover: none) {
  .card:hover, .b-cell:hover, .idx-row:hover, .track:hover, .ep:hover, .news-item:hover { transform: none; }
  .idx-row:hover, .track:hover, .ep:hover, .news-item:hover { padding-left: clamp(1.2rem, 3vw, 2rem); }
}

/* menu movil con logos */
.mobile-menu a { display: flex; align-items: center; gap: .8rem; }
.mm-logo { height: 26px; width: 44px; object-fit: contain; flex-shrink: 0; }

/* iOS: sin zoom al enfocar inputs */
@media (max-width: 1080px) {
  input, textarea, select { font-size: 16px !important; }
  .gate-corner input { width: 140px; }
}

/* ================= AIRE Y ORDEN (deshace el modo compacto) ================= */
.section-pad { padding-top: clamp(3.4rem, 6.5vw, 5.5rem); padding-bottom: clamp(3.8rem, 7vw, 6rem); }
.sec-head { margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.sec-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
.view-head { margin-bottom: clamp(2.4rem, 4.5vw, 3.4rem); }
.view-head h2 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); }
.split-head { margin-bottom: clamp(2.2rem, 4vw, 3rem); }

/* indice: bento y lista respiran y se separan */
.b-cell { min-height: 200px; padding: clamp(1.5rem, 2.6vw, 2.2rem); }
.b-main { min-height: 400px; }
.b-main .b-body h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.b-body p { margin-bottom: 1.3rem; }
.index-list { margin-top: 1.6rem; border-top: 1px solid var(--line); }
.idx-row { padding-top: 1.15rem; padding-bottom: 1.15rem; }

/* bandas con presencia propia */
.quote-band { padding: clamp(3.2rem, 6vw, 5rem) 0; margin-top: clamp(2rem, 4vw, 3rem); }
.big-quote { font-size: clamp(1.5rem, 3vw, 2.4rem); margin: 1.4rem 0 2rem; }
.info-band { padding: clamp(3.2rem, 6vw, 5rem) 0; }
.info-grid { gap: clamp(2.5rem, 5vw, 4.5rem); }

/* folds y roster con mas cuerpo */
.fold summary { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.roster-row { padding-top: 1.05rem; padding-bottom: 1.05rem; }
.contact-card { padding: 1.6rem 1.5rem; gap: .5rem; }

/* hero: cierre con aire antes del marquee */
.hero { padding-bottom: clamp(2.4rem, 4vw, 3.4rem); }
.hero-display { margin-bottom: 1.5rem; }
.hero-left .lede { margin-bottom: 2.1rem; }

/* paginas internas: contenido no pegado al header */
.cards-3, .cards-4 { gap: 24px; }
.album-grid { gap: 1.8rem; }
.pay-card { padding: clamp(2rem, 4vw, 3rem); }
.vaada summary { padding-top: 1.3rem; padding-bottom: 1.3rem; }
.v-mem { padding-bottom: 1.4rem; }

/* ================= GATE POSTER ================= */
.gate {
  align-items: stretch; justify-content: flex-end;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.6rem);
}
.gate-land, .gate-crest { display: none; }
.gate-top {
  position: absolute; top: clamp(1.4rem, 3vw, 2.4rem); left: clamp(1.4rem, 3vw, 2.6rem);
  display: flex; align-items: center; gap: .8rem; z-index: 2;
}
.gate-mini {
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  box-shadow: 0 8px 20px -8px rgba(28,46,107,.4);
}
.gate-top span {
  font-family: var(--round); font-weight: 700; font-size: .6rem;
  letter-spacing: .26em; text-transform: uppercase; color: #3d4874;
}
.gate-side {
  position: absolute; right: clamp(1.2rem, 2.5vw, 2.2rem); top: 50%;
  transform: rotate(90deg) translateX(-50%); transform-origin: right top;
  font-family: var(--round); font-weight: 700; font-size: .58rem;
  letter-spacing: .5em; text-transform: uppercase; color: #6a76a8;
  z-index: 2; white-space: nowrap;
}
.gate-poster { position: relative; z-index: 2; padding-bottom: clamp(2.6rem, 5vh, 4rem); }
.gate-big { text-align: left; }
.gate-big .gb-solid, .gate-big .gb-em {
  display: block; line-height: .96;
  font-size: clamp(3.4rem, 13vw, 9.5rem);
}
.gate-big .gb-em { padding-left: clamp(1.5rem, 8vw, 7rem); font-size: clamp(3.5rem, 13.4vw, 9.8rem); }
.gate-rule, .gate-tag { display: none; }
.gate-foot { position: static; text-align: left; margin-top: 1.4rem; color: #6a76a8; }
.gate-corner { bottom: clamp(1.6rem, 4vh, 2.6rem); right: clamp(1.4rem, 3vw, 2.6rem); }
@media (max-height: 640px) { .gate-big .gb-solid, .gate-big .gb-em { font-size: clamp(2.6rem, 10vh, 5rem); } }

/* gate: nada del sitio existe detras */
body.gated .masthead, body.gated main, body.gated .footer { display: none !important; }
.gate { min-height: 100svh; }

/* ================= MOVIL: AIRE REAL ================= */
@media (max-width: 640px) {
  .wrap { padding-left: 22px; padding-right: 22px; }
  .section-pad { padding-top: 3rem; padding-bottom: 3.4rem; }
  .view-head { margin-bottom: 2.2rem; }
  .view-head .sub, .split-head .sub { font-size: .95rem; line-height: 1.7; }
  .cards-3, .cards-4, .portal-grid { gap: 18px; }
  .b-stack { gap: 2px; }
  .b-cell { min-height: 175px; }
  .idx-row { padding-top: 1.2rem; padding-bottom: 1.2rem; gap: 1rem; }
  .idx-name { font-size: 1.05rem; }
  .roster-row { padding-top: 1.1rem; padding-bottom: 1.1rem; gap: .3rem; }
  .fold summary, .vaada summary { padding-top: 1.2rem; padding-bottom: 1.2rem; }
  .quote-band { padding: 2.8rem 0; }
  .big-quote { line-height: 1.35; }
  .info-band { padding: 2.8rem 0; }
  .dicc > div, .tilb-row { padding-top: .9rem; padding-bottom: .9rem; }
  .contact-grid { gap: 2px; }
  .news-item, .ep, .track { padding-top: 1.2rem; padding-bottom: 1.2rem; }
  .kol-grid { gap: 2px; }
  .hero-actions { gap: .9rem; }
  .marquee { padding: 8px 0; }
  .footer-top { padding-top: 2.4rem; }
}

/* ================= ANIMACIONES DESKTOP ================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  z-index: 300; transition: width .1s linear;
}
@media (min-width: 900px) {
  .hero-panel { transition: transform .2s ease-out; will-change: transform; }
  .idx-row { transition: background .25s, padding-left .3s cubic-bezier(.2,.8,.2,1), transform .3s; }
  .reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
  .reveal-stagger.visible > * { opacity: 1; transform: none; }
}

/* ================= BOTON VOLVER ================= */
.back-fab {
  position: fixed; left: clamp(14px, 2.5vw, 28px); bottom: clamp(16px, 3vh, 28px);
  z-index: 90;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--navy-deep); color: #fff;
  font-family: var(--round); font-weight: 700; font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .75rem 1.2rem .75rem 1rem; border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(14,23,56,.5);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .3s, transform .3s cubic-bezier(.2,.8,.2,1), background .25s;
}
.back-fab .ic { transform: rotate(180deg); width: 16px; height: 16px; }
.back-fab.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-fab:hover { background: var(--royal); transform: translateY(-2px); }
@media (max-width: 640px) { .back-fab span { display: none; } .back-fab { padding: .8rem; } }

/* ================= GATE: bloque unico cohesivo ================= */
.gate-top {
  position: static;
  margin-bottom: clamp(1.2rem, 2.5vh, 2rem);
}
.gate-side { display: none; }
.gate-poster {
  padding: 0 0 clamp(2.8rem, 6vh, 4.5rem) clamp(.4rem, 2vw, 2rem);
  max-width: 900px;
}
.gate-big { margin-left: -0.04em; }
.gate-meta {
  display: flex; align-items: center; gap: 1.1rem;
  margin-top: clamp(1.2rem, 2.5vh, 1.8rem);
  font-size: .74rem; color: #5d689a;
  font-family: var(--round); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.gm-sep { width: 34px; height: 1px; background: rgba(28,46,107,.4); }
.gate-foot { display: none; }
.gate-corner input {
  width: 150px; height: 40px;
  border: 0; border-bottom: 2px solid rgba(28,46,107,.45);
  border-radius: 0; background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  text-align: center; caret-color: var(--royal);
}
.gate-corner input:focus { border-bottom-color: var(--royal); background: rgba(255,255,255,.5); width: 175px; }
@media (max-width: 640px) {
  .gate-poster { padding-left: 0; padding-bottom: 5.5rem; }
  .gate-meta { flex-wrap: wrap; gap: .6rem; font-size: .62rem; }
  .gm-sep { display: none; }
}

/* boton salir */
.nav-exit {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--round); font-weight: 700; font-size: .6rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line);
  padding: .55rem .9rem; border-radius: 999px;
  transition: color .25s, border-color .25s, background .25s;
}
.nav-exit:hover { color: #fff; background: var(--navy-deep); border-color: var(--navy-deep); }
@media (max-width: 1080px) { .nav-exit { display: none; } }
.role-padres .nav-exit { order: 3; }

/* ================= MENU MOVIL: scroll + orden ================= */
.mobile-menu.open {
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: env(safe-area-inset-bottom, 12px);
}
.mobile-menu a { padding-top: .8rem; padding-bottom: .8rem; font-size: .92rem; }
.mm-logo { height: 24px; width: 40px; }
.mobile-menu .nav-search-mobile {
  position: sticky; top: 0; z-index: 2;
  background: #fff; margin: 0;
  padding: .8rem clamp(16px, 3vw, 48px);
  border-bottom: 1px solid var(--line); border-radius: 0;
}
#exitBtnM {
  color: #b3261e; font-weight: 600;
  border-top: 2px solid var(--line);
}
#exitBtnM::before { content: '⎋  '; }

/* ================= MOVIL: menos scroll total ================= */
@media (max-width: 640px) {
  .section-pad { padding-top: 2.2rem; padding-bottom: 2.6rem; }
  .view-head { margin-bottom: 1.6rem; }
  .view-head h2 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .view-head .sub, .split-head .sub { font-size: .9rem; }
  .sec-head { margin-bottom: 1.4rem; }
  .split-head { margin-bottom: 1.6rem; }

  .hero { padding-top: 1.2rem; padding-bottom: 1.6rem; }
  .hero-display { font-size: clamp(2.4rem, 13vw, 3.2rem); margin-bottom: 1rem; }
  .hero-left .lede { margin-bottom: 1.4rem; }
  .hero-panel { max-height: 300px; aspect-ratio: 16/10; }
  .logo-build { width: min(50%, 190px); }
  .hero-meta-row { margin-bottom: 1rem; }

  .b-main { min-height: 230px; }
  .b-cell { min-height: 150px; padding: 1.2rem 1.1rem; }
  .b-main .b-body h3 { font-size: 1.5rem; }
  .b-body p { font-size: .86rem; margin-bottom: .9rem; }
  .index-list { margin-top: 1rem; }
  .idx-row { padding-top: 1rem; padding-bottom: 1rem; }

  .quote-band { padding: 2.2rem 0; margin-top: 1.4rem; }
  .big-quote { font-size: 1.2rem; margin: 1rem 0 1.3rem; }
  .info-band { padding: 2.2rem 0; }
  .info-grid { gap: 2rem; }
  .info-title { font-size: 1.5rem; margin: .8rem 0 1.2rem; }
  .dicc > div, .tilb-row { padding-top: .7rem; padding-bottom: .7rem; }
  .dicc dd { font-size: .84rem; }

  .roster-row { padding-top: .85rem; padding-bottom: .85rem; }
  .fold summary, .vaada summary { padding-top: .95rem; padding-bottom: .95rem; }
  .contact-card { padding: 1.1rem 1.2rem; }

  .cards-3, .cards-4, .portal-grid { gap: 12px; }
  .card { padding: 1.3rem 1.2rem; }
  .album-img { height: 190px; }
  .kol-cover { height: 210px; }
  .pay-card { padding: 1.5rem 1.2rem; }
  .pay-price { font-size: 2.6rem; }
  .news-item, .ep, .track { padding-top: 1rem; padding-bottom: 1rem; }
  .v-mem { padding-bottom: 1rem; }
  .mac-videos .mac-slot { min-height: 140px; }
  .footer { padding-top: 0; }
  .footer-top { padding-top: 1.8rem; padding-bottom: 1.6rem; }
  .footer-bottom { padding-bottom: 1.2rem; }
}
