  :root {
    --black:    #000000;
    --ink:      #0A0A0A;
    --ink-2:    #14141A;
    --ink-3:    #1F1F26;
    --bone:     #F2EDE2;
    --cream:    #FFFFFF;
    --cream-dk: #F5F5F5;
    --white:    #FFFFFF;
    --gold:     #BDB09D;
    --gold-2:   #A89882;
    --gold-3:   #8A7D6A;
    --red:      #B83A2E;

    --w-90: rgba(255,255,255,0.90);
    --w-70: rgba(255,255,255,0.70);
    --w-55: rgba(255,255,255,0.55);
    --w-40: rgba(255,255,255,0.40);
    --w-25: rgba(255,255,255,0.25);
    --w-15: rgba(255,255,255,0.15);
    --w-10: rgba(255,255,255,0.10);
    --w-06: rgba(255,255,255,0.06);
    --w-04: rgba(255,255,255,0.04);

    --display: 'Bodoni Moda', 'Didot', 'Bodoni 72', Georgia, serif;
    --body:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

    --max:     1320px;
    --gutter:  32px;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; overflow-x: clip; }
  body {
    font-family: var(--body);
    background: var(--black);
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    overscroll-behavior-x: none;
    width: 100%;
    max-width: 100%;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  /* ════════════ NAV ════════════ */
  .nav {
    position: fixed;
    top: 22px;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
  }
  .nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    pointer-events: auto;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--w-04);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 0.5px solid var(--w-15);
    border-radius: 100px;
    padding: 8px 18px 8px 8px;
  }
  .brand-mark {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  .brand-name {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
  }

  .pill-nav {
    background: var(--w-04);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 0.5px solid var(--w-15);
    border-radius: 100px;
    padding: 6px;
    display: flex;
    gap: 2px;
  }
  .pill-nav a {
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--w-70);
    border-radius: 100px;
    transition: all 0.2s ease;
  }
  .pill-nav a:hover {
    color: var(--white);
  }
  .pill-nav a.active {
    color: var(--white);
  }
  /* Indicador deslizante (sigue el cursor entre items) */
  .pill-nav > a, .pill-nav > .pill-drop { position: relative; z-index: 1; }
  .pill-ind {
    position: absolute; top: 0; left: 0;
    border-radius: 100px;
    background: var(--w-10);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.34s cubic-bezier(0.4,0,0.2,1), width 0.34s cubic-bezier(0.4,0,0.2,1), height 0.34s ease, opacity 0.2s ease;
  }
  /* dropdown "Conócenos" */
  .pill-drop { position: relative; display: inline-flex; }
  .pill-drop-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 16px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500; color: var(--w-70); border-radius: 100px; cursor: pointer;
    background: none; border: none; transition: all 0.2s ease;
  }
  .pill-drop-btn:hover, .pill-drop.open .pill-drop-btn, .pill-drop.active .pill-drop-btn { color: var(--white); }
  .pd-caret { width: 10px; height: 10px; opacity: 0.65; transition: transform 0.25s ease; }
  .pill-drop.open .pd-caret { transform: rotate(180deg); }
  .pill-drop-menu {
    position: absolute; top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%) translateY(-6px) scale(0.98); transform-origin: top center;
    min-width: 210px; z-index: 50; display: flex; flex-direction: column;
    background: rgba(18,18,24,.97); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 0.5px solid var(--w-15); border-radius: 16px; padding: 8px;
    opacity: 0; pointer-events: none; transition: opacity 0.22s ease, transform 0.22s ease;
    box-shadow: 0 18px 48px rgba(0,0,0,.55);
  }
  .pill-drop-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
  .pill-drop.open .pill-drop-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0) scale(1); }
  .pill-drop-menu a {
    padding: 11px 14px; border-radius: 10px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500; color: var(--w-70); white-space: nowrap; transition: all 0.18s ease;
  }
  .pill-drop-menu a:hover { background: var(--w-06); color: var(--gold); }
  /* layout nav: logo izq · menú centrado · botones juntos a la derecha */
  .nav-inner { position: relative; }
  .pill-nav { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .nav-actions { display: flex; align-items: center; gap: 12px; }

  .nav-cta {
    padding: 10px 22px;
    background: var(--gold);
    color: var(--black);
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.2s ease;
  }
  .nav-cta:hover { background: #CFC2AE; }

  .ham {
    display: none;
    width: 44px; height: 44px;
    border: 0.5px solid var(--w-15);
    border-radius: 50%;
    background: var(--w-04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .ham span { width: 16px; height: 1.5px; background: var(--white); }

  /* ── Navbar inteligente: vidrio esmerilado al hacer scroll ── */
  .nav { transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
  body.nav-solid .nav {
    background: rgba(10,10,10,0.72);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    backdrop-filter: blur(22px) saturate(160%);
    border-bottom: 0.5px solid var(--w-10);
    box-shadow: 0 8px 30px rgba(0,0,0,0.28);
  }
  body.nav-solid:not(.has-announce) .nav { top: 0; }
  /* al volverse barra, el logo y el menú se aplanan dentro de ella */
  body.nav-solid .brand,
  body.nav-solid .ham {
    background: transparent;
    border-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  /* Mobile menu fullscreen */
  .mob-menu {
    position: fixed;
    inset: 0;
    z-index: 600;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    display: none;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
  .mob-menu.open { display: flex; }
  /* La barra de anuncio se oculta mientras el menú móvil está abierto */
  body.menu-open .announce { display: none !important; }
  .mob-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px var(--gutter);
    border-bottom: 0.5px solid var(--w-10);
  }
  .mob-menu-close {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 0.5px solid var(--w-15);
    font-size: 24px;
    line-height: 1;
  }
  .mob-menu-links {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 12px var(--gutter);
  }
  .mob-menu-links a {
    font-family: var(--display);
    font-size: 30px;
    line-height: 1.1;
    color: var(--white);
    padding: 11px 0;
    border-bottom: 0.5px solid var(--w-10);
  }
  .mob-menu-links a em {
    font-style: italic;
    color: var(--gold);
  }
  .mob-menu-cta {
    margin: 8px var(--gutter);
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
  }

  /* ════════════ HERO ════════════ */
  .hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: end;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    animation: heroSlide 36s ease-in-out infinite;
    will-change: opacity, transform;
  }
  .hero-bg img:nth-child(1) { animation-delay: 0s; }
  .hero-bg img:nth-child(2) { animation-delay: 6s; }
  .hero-bg img:nth-child(3) { animation-delay: 12s; }
  .hero-bg img:nth-child(4) { animation-delay: 18s; }
  .hero-bg img:nth-child(5) { animation-delay: 24s; }
  .hero-bg img:nth-child(6) { animation-delay: 30s; }

  @keyframes heroSlide {
    0%      { opacity: 0; transform: scale(1.0); }
    3%      { opacity: 1; }
    14%     { opacity: 1; transform: scale(1.06); }
    17%     { opacity: 0; transform: scale(1.08); }
    100%    { opacity: 0; }
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      radial-gradient(ellipse at 60% 30%, transparent 25%, rgba(0,0,0,0.55) 80%),
      linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
  }
  .hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter) 80px;
    display: grid;
    grid-template-columns: 1.4fr 0.85fr;
    gap: 48px;
    align-items: end;
  }
  .hero-side-label {
    position: absolute;
    top: 130px;
    right: var(--gutter);
    z-index: 4;
    font-size: 10px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--w-40);
    font-weight: 500;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--gold);
  }
  .hero-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(48px, 7.5vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.018em;
    margin-bottom: 28px;
    text-shadow: 0 4px 32px rgba(0,0,0,0.45);
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .hero-lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--w-90);
    max-width: 540px;
    margin-bottom: 36px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  }
  .hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-primary {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--black);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease;
  }
  .btn-primary:hover {
    background: #CFC2AE;
    transform: translateY(-1px);
  }
  .btn-secondary {
    padding: 16px 32px;
    background: var(--w-06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid var(--w-25);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    transition: all 0.2s ease;
  }
  .btn-secondary:hover {
    background: var(--w-10);
    border-color: var(--w-40);
  }

  /* Glass card "Próxima función" hero side */
  .glass-card {
    background: var(--w-04);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 0.5px solid var(--w-15);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .gc-label {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--w-55);
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .gc-label::before {
    content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23BDB09D' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8.5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v1.2a2 2 0 0 0 0 4.6v1.2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1.2a2 2 0 0 0 0-4.6z'/><path d='M14.5 9.2v5.6'/></svg>");
    flex: none;
    line-height: 0;
  }
  .gc-title {
    font-family: var(--display);
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .gc-title em { font-style: italic; }
  .gc-meta {
    font-size: 13px;
    color: var(--w-70);
    line-height: 1.55;
    margin-bottom: 14px;
  }
  .gc-divider {
    height: 0.5px;
    background: var(--w-15);
    margin: 16px 0;
  }
  .gc-link {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
  }
  .gc-link:hover { gap: 10px; color: #CFC2AE; }

  .scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--w-40);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .scroll-indicator::after {
    content: "";
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, var(--w-40), transparent);
  }

  /* ════════════ SECCIÓN GENÉRICA ════════════ */
  section {
    position: relative;
    padding: 120px var(--gutter);
  }
  .section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .section-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.20;
  }
  .section-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, var(--black) 0%, rgba(0,0,0,0.82) 50%, var(--black) 100%);
  }
  .section-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
  }
  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .section-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.0;
    letter-spacing: -0.012em;
    margin-bottom: 24px;
    max-width: 900px;
  }
  .section-title em {
    font-style: italic;
    color: var(--gold);
  }
  .section-lede {
    font-size: 17px;
    line-height: 1.65;
    color: var(--w-70);
    max-width: 720px;
    margin-bottom: 64px;
  }

  /* ════════════ COMPAÑÍA ════════════ */
  .compania-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
  }
  .compania-prose p {
    margin-bottom: 18px;
    color: var(--w-90);
    font-size: 16px;
    line-height: 1.75;
  }
  .compania-prose p:first-child {
    font-size: 19px;
    color: var(--white);
    line-height: 1.5;
  }
  .compania-prose strong {
    color: var(--gold);
    font-weight: 500;
  }
  .pillars {
    display: grid;
    gap: 8px;
  }
  .pillar {
    background: var(--w-04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid var(--w-15);
    border-radius: 16px;
    padding: 28px 30px;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .pillar:hover {
    background: var(--w-06);
    border-color: var(--w-25);
  }
  .pillar-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
  }
  .pillar-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.06em;
  }
  .pillar-title {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
  }
  .pillar-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--w-70);
  }

  /* Fundación y dirección artística (Omar integrado) */
  .fundacion {
    margin-top: 96px;
    padding-top: 64px;
    border-top: 0.5px solid var(--w-15);
  }
  .fundacion-eyebrow {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
  }
  .fundacion-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
  }
  .fundacion-portrait {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
  }
  .fundacion-portrait img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.1) contrast(1.05);
    opacity: 0;
    transform-origin: 50% 35%;
    animation: fundCross 35s infinite;
  }
  .fundacion-portrait img:nth-child(2) { animation-delay: 7s; }
  .fundacion-portrait img:nth-child(3) { animation-delay: 14s; }
  .fundacion-portrait img:nth-child(4) { animation-delay: 21s; }
  .fundacion-portrait img:nth-child(5) { animation-delay: 28s; }
  /* fade in/out + zoom lento (Ken Burns) */
  @keyframes fundCross {
    0%   { opacity: 0; transform: scale(1); }
    2%   { opacity: 1; }
    24%  { opacity: 1; }
    29%  { opacity: 0; transform: scale(1.10); }
    100% { opacity: 0; transform: scale(1.10); }
  }
  @media (prefers-reduced-motion: reduce) {
    .fundacion-portrait img { animation: none !important; opacity: 0; }
    .fundacion-portrait img:first-child { opacity: 1; }
  }
  .fundacion-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
  }
  .fundacion-caption {
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--w-40);
    font-weight: 500;
  }
  .fundacion-name {
    font-family: var(--display);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.0;
    margin-bottom: 6px;
  }
  .fundacion-role {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 28px;
  }
  .fundacion-prose p {
    color: var(--w-90);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
  }
  .fundacion-prose em { color: var(--gold); font-style: italic; }
  .fundacion-credits {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 0.5px solid var(--w-15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
  }
  .fc-label {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 6px;
  }
  .fc-value {
    font-size: 13px;
    line-height: 1.5;
    color: var(--w-90);
  }

  /* ════════════ TRAYECTORIA ════════════ */
  .trayectoria-list {
    display: grid;
    gap: 8px;
  }
  .tray-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1.2fr 1fr;
    gap: 32px;
    padding: 32px 30px;
    background: var(--w-04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 0.5px solid var(--w-15);
    border-radius: 16px;
    transition: all 0.25s ease;
    align-items: center;
  }
  .tray-item:hover {
    background: var(--w-06);
    border-color: var(--w-25);
    transform: translateY(-1px);
  }
  .tray-item.no-image {
    grid-template-columns: 100px 1fr;
  }
  .tray-num {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .tray-roman {
    font-family: var(--display);
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
  }
  .tray-year {
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--w-55);
    font-weight: 500;
  }
  .tray-body { padding-right: 8px; }
  .tray-cat {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .tray-title {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .tray-title em { font-style: italic; }
  .tray-meta {
    font-size: 13px;
    color: var(--w-70);
    line-height: 1.55;
    margin-bottom: 6px;
  }
  .tray-venues {
    font-size: 11px;
    color: var(--w-40);
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  .tray-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
  }
  .tray-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .tray-item:hover .tray-image img { transform: scale(1.04); }

  /* Multi-photo slideshow inside same frame */
  .tray-image.slideshow { position: relative; }
  .tray-image.slideshow img {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: traySlide 20s ease-in-out infinite;
  }
  .tray-image.slideshow img:nth-child(1) { animation-delay: 0s; }
  .tray-image.slideshow img:nth-child(2) { animation-delay: 5s; }
  .tray-image.slideshow img:nth-child(3) { animation-delay: 10s; }
  .tray-image.slideshow img:nth-child(4) { animation-delay: 15s; }
  @keyframes traySlide {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    25%  { opacity: 1; }
    30%  { opacity: 0; }
    100% { opacity: 0; }
  }
  .tray-no-photo {
    aspect-ratio: 4/3;
    border: 0.5px dashed var(--w-15);
    border-radius: 8px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 16px;
  }
  .tray-no-photo span {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--w-25);
    font-weight: 500;
  }
  .tray-item.tray-highlight {
    background: linear-gradient(135deg, rgba(189,176,157,0.08) 0%, var(--w-04) 60%);
    border-color: rgba(189,176,157,0.25);
  }
  .tray-item.tray-highlight .tray-cat,
  .tray-item.tray-highlight .tray-title em {
    color: var(--gold);
  }

  /* ════════════ MORELIA ════════════ */
  .morelia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .morelia-prose p {
    color: var(--w-90);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .morelia-list {
    list-style: none;
    margin-top: 28px;
  }
  .morelia-list li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 16px 0;
    border-top: 0.5px solid var(--w-15);
    font-size: 14px;
    color: var(--w-90);
  }
  .morelia-list li:first-child { border-top: 0.5px solid var(--gold); padding-top: 16px; }
  .morelia-list .dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    transform: translateY(-2px);
  }
  .morelia-frame {
    aspect-ratio: 16/10;
    border: 0.5px solid var(--w-15);
    border-radius: 8px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    align-self: start;
    margin-top: 40px;
  }
  .morelia-frame-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .morelia-frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.4) 100%
    );
    z-index: 1;
  }
  .morelia-frame::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 0.5px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    pointer-events: none;
    z-index: 3;
  }
  .morelia-frame-content {
    text-align: center;
    z-index: 4;
    padding: 32px;
  }
  .morelia-frame-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 64px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
  }
  .morelia-frame-label {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--w-55);
    font-weight: 500;
    margin-bottom: 24px;
  }
  .morelia-frame-title {
    font-family: var(--display);
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--white);
  }
  .morelia-frame-sub {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--w-55);
    font-weight: 500;
  }

  /* ════════════ ESTUDIA CON OMAR ════════════ */
  .estudia {
    background: var(--ink);
  }
  .estudia .section-bg img { opacity: 0.15; }
  .estudia-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 64px;
    align-items: start;
  }
  .estudia-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--w-90);
    margin-bottom: 16px;
  }
  .programa {
    margin-top: 36px;
    display: grid;
    gap: 8px;
  }
  .prog-card {
    background: var(--w-04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 0.5px solid var(--w-15);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    align-items: baseline;
    gap: 18px;
    transition: all 0.2s ease;
  }
  .prog-card:hover {
    background: var(--w-06);
    border-color: rgba(189,176,157,0.35);
  }
  .prog-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    min-width: 24px;
  }
  .prog-content { flex: 1; }
  .prog-title {
    font-family: var(--display);
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 4px;
    color: var(--white);
  }
  .prog-desc {
    font-size: 13px;
    color: var(--w-70);
    line-height: 1.5;
  }

  /* Form */
  .form-box {
    background: var(--w-04);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 0.5px solid var(--w-15);
    border-radius: 20px;
    padding: 36px 34px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: sticky;
    top: 100px;
  }
  .form-eyebrow {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .form-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .form-title {
    font-family: var(--display);
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .form-sub {
    font-size: 13px;
    color: var(--w-70);
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .form-row { margin-bottom: 16px; }
  .form-row label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--w-55);
    font-weight: 500;
    margin-bottom: 6px;
  }
  .form-row input,
  .form-row select,
  .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--w-04);
    border: 0.5px solid var(--w-15);
    border-radius: 8px;
    font: inherit;
    font-size: 14px;
    color: var(--white);
    transition: border-color 0.15s ease, background 0.15s ease;
  }
  .form-row select { cursor: pointer; }
  .form-row select option {
    background: var(--ink-2);
    color: var(--white);
  }
  .form-row input::placeholder,
  .form-row textarea::placeholder { color: var(--w-40); }
  .form-row input:focus,
  .form-row select:focus,
  .form-row textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--w-06);
  }
  .form-row textarea { resize: vertical; min-height: 90px; font-family: inherit; }
  .btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 8px;
    transition: background 0.2s ease;
  }
  .btn-submit:hover { background: #CFC2AE; }
  .form-notice {
    margin-top: 16px;
    font-size: 11px;
    color: var(--w-55);
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-align: center;
  }
  .form-thanks { display: none; text-align: center; padding: 32px 0; }
  .form-thanks.show { display: block; }
  .form-thanks-icon {
    font-family: var(--display);
    font-style: italic;
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
  }
  .form-thanks h4 {
    font-family: var(--display);
    font-size: 24px;
    margin-bottom: 12px;
  }
  .form-thanks p {
    font-size: 14px;
    color: var(--w-70);
    line-height: 1.6;
  }
  /* Form tabs */
  .form-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: var(--w-04);
    border-radius: 100px;
    padding: 4px;
    border: 0.5px solid var(--w-10);
  }
  .form-tab {
    flex: 1;
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--w-55);
    border-radius: 100px;
    transition: all 0.2s ease;
    text-align: center;
  }
  .form-tab.active {
    background: var(--gold);
    color: var(--black);
  }
  .form-tab:hover:not(.active) {
    color: var(--white);
    background: var(--w-06);
  }
  .form-panel { display: none; }
  .form-panel.active { display: block; }
  .form-error {
    display: none;
    background: rgba(184,58,46,0.15);
    border: 0.5px solid rgba(184,58,46,0.35);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: #E8756A;
    margin-bottom: 16px;
  }
  .ohnohoney {
    opacity: 0;
    position: absolute;
    top: 0; left: 0;
    height: 0; width: 0;
    z-index: -1;
    overflow: hidden;
  }

  /* ════════════ STRIP ════════════ */
  .strip-section {
    padding: 48px var(--gutter);
  }
  .strip-glass {
    max-width: var(--max);
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(189,176,157,0.10) 0%, var(--w-04) 60%);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 0.5px solid rgba(189,176,157,0.25);
    border-radius: 20px;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .strip-block {
    border-left: 0.5px solid var(--w-15);
    padding-left: 24px;
  }
  .strip-block:first-child { border-left: 0; padding-left: 0; }
  .strip-lbl {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .strip-val {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 4px;
  }
  .strip-sub {
    font-size: 12px;
    color: var(--w-55);
    letter-spacing: 0.04em;
  }

  /* ════════════ MISIÓN ════════════ */
  .mision {
    text-align: center;
    padding: 140px var(--gutter);
    padding-bottom: 140px;
  }
  .mision-quote {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.25;
    color: var(--white);
    max-width: 980px;
    margin: 0 auto 32px;
    quotes: "“" "”";
    position: relative;
  }
  .mision-quote::before {
    content: "“";
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--display);
    font-size: 90px;
    color: var(--gold);
    line-height: 1;
    opacity: 0.5;
  }
  .mision-attr {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .mision-attr::before { content: "— "; }

  /* ════════════ TALLER DE CORO ════════════ */
  .coro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .coro-prose p {
    color: var(--w-90);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .coro-info-card {
    background: var(--w-04);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 0.5px solid var(--w-15);
    border-radius: 16px;
    padding: 32px 30px;
  }
  .coro-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 0.5px solid var(--w-10);
  }
  .coro-detail:last-child { border-bottom: none; }
  .coro-lbl {
    font-size: 9px;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-transform: uppercase;
    min-width: 100px;
    padding-top: 3px;
    font-weight: 500;
  }
  .coro-val { font-size: 14px; color: var(--w-70); line-height: 1.6; }
  .coro-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 64px;
  }
  .coro-gal-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
  }
  .coro-gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .coro-gal-item:hover img { transform: scale(1.04); }
  .coro-gal-cap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 14px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--w-70);
    text-transform: uppercase;
  }

  /* ════════════ CONTACTO ════════════ */
  .contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .contacto-card {
    background: var(--w-04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid var(--w-15);
    border-radius: 16px;
    padding: 32px 30px;
    transition: background 0.2s ease;
    min-width: 0;
  }
  .contacto-card:hover { background: var(--w-06); }
  .ct-label {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .ct-label::before {
    content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23BDB09D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><path d='M22 6 12 13 2 6'/></svg>");
    flex: none;
    line-height: 0;
  }
  .ct-label.ct-label--phone::before {
    content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23BDB09D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>");
  }
  .ct-value {
    font-family: var(--display);
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 6px;
    overflow-wrap: anywhere;
  }
  .ct-value a:hover { color: var(--gold); }
  .ct-sub {
    font-size: 12px;
    color: var(--w-55);
    letter-spacing: 0.04em;
  }

  /* ════════════ FOOTER ════════════ */
  footer {
    background: var(--black);
    border-top: 0.5px solid var(--w-10);
    padding: 80px var(--gutter) 36px;
  }
  .footer-inner {
    max-width: var(--max);
    margin: 0 auto;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 0.5px solid var(--w-10);
  }
  .footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
  }
  .footer-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer-brand-mark {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  .footer-name {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .footer-sub {
    font-size: 11px;
    color: var(--w-55);
    letter-spacing: 0.04em;
    margin-top: 2px;
  }
  .footer-desc {
    font-size: 13px;
    color: var(--w-55);
    line-height: 1.65;
    max-width: 380px;
  }
  .footer-col h4 {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 18px;
  }
  .footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
  }
  .footer-col a, .footer-col span {
    font-size: 13px;
    color: var(--w-70);
    transition: color 0.15s ease;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bot {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--w-40);
  }

  /* ════════════ LIGHT SECTIONS ════════════ */
  .section-light {
    background: var(--cream) !important;
    color: var(--black);
  }
  .section-light .section-bg-overlay {
    background: linear-gradient(rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.75) 100%) !important;
  }
  .section-light .section-eyebrow { color: var(--gold-3); }
  .section-light .section-title { color: var(--black); }
  .section-light .section-title em { color: var(--gold-3); }
  .section-light p { color: rgba(0,0,0,0.65); }
  .section-light strong { color: var(--black); }
  .section-light .morelia-point { color: rgba(0,0,0,0.6); border-color: rgba(0,0,0,0.08); }
  .section-light .morelia-bullet { color: var(--gold-3); }
  .section-light .morelia-frame {
    background:
      linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
    border-color: rgba(0,0,0,0.2);
  }
  .section-light .morelia-frame-num { color: var(--gold); }
  .section-light .morelia-frame-label { color: var(--w-55); }
  .section-light .morelia-frame-title { color: var(--white); }
  .section-light .morelia-frame-sub { color: var(--w-55); }
  .section-light .pillar { border-color: rgba(0,0,0,0.08); }
  .section-light .pillar-num { color: var(--gold-3); }
  .section-light .pillar-label { color: rgba(0,0,0,0.35); }
  .section-light .pillar-value { color: var(--black); }
  .section-light .pillar-sub { color: rgba(0,0,0,0.4); }

  .section-light .prog-card {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
  }
  .section-light .prog-card:hover { border-color: var(--gold-3); }
  .section-light .prog-num { color: var(--gold-3); }
  .section-light .prog-title { color: var(--black); }
  .section-light .prog-desc { color: rgba(0,0,0,0.55); }

  .section-light .coro-prose p { color: rgba(0,0,0,0.65); }
  .section-light .coro-info-card {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .section-light .coro-info-card h3 { color: var(--black); }
  .section-light .coro-lbl { color: var(--gold-3); }
  .section-light .coro-val { color: rgba(0,0,0,0.6); }
  .section-light .coro-detail { border-color: rgba(0,0,0,0.08); }
  .section-light .btn-primary {
    background: var(--black);
    color: var(--cream);
  }
  .section-light .btn-primary:hover { background: var(--ink-3); }

  /* ════════════ RESPONSIVE ════════════ */
  @media (max-width: 980px) {
    .pill-nav { display: none; }
    .nav-cta { display: none; }
    .ham { display: flex; }
    .hero-side-label { display: none; }
    .hero-content { grid-template-columns: 1fr; gap: 36px; padding-bottom: 64px; }

    .compania-grid,
    .fundacion-grid,
    .morelia-grid,
    .estudia-grid,
    .coro-grid { grid-template-columns: 1fr; gap: 40px; }

    .form-box { position: static; }

    .tray-item { grid-template-columns: 80px 1fr; gap: 20px; padding: 24px 22px; }
    .tray-item .tray-image,
    .tray-item.no-image { grid-template-columns: 80px 1fr; }
    .tray-image { grid-column: 1 / -1; max-width: none; aspect-ratio: 16/10; }
    .tray-roman { font-size: 26px; }

    .strip-glass {
      grid-template-columns: 1fr 1fr;
      gap: 28px 24px;
      padding: 32px 28px;
    }
    .strip-block { border-left: 0; padding-left: 0; }
    .strip-block:nth-child(3) { border-top: 0.5px solid var(--w-15); padding-top: 24px; }
    .strip-block:nth-child(4) { border-top: 0.5px solid var(--w-15); padding-top: 24px; }

    .contacto-grid { grid-template-columns: 1fr; }
    .contacto-card { padding: 26px 22px; }
    .ct-value { font-size: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .fundacion-credits { grid-template-columns: 1fr; }

    section { padding: 80px var(--gutter); }
  }

  @media (max-width: 560px) {
    :root { --gutter: 20px; }
    .hero-title { font-size: 48px; }
    .hero-cta-row { flex-direction: column; }
    .hero-cta-row .btn-primary,
    .hero-cta-row .btn-secondary { text-align: center; }
    .nav { top: 14px; }
    .brand-name { display: none; }
    .brand { padding: 6px; }
  }

  /* ════════════ BARRA DE ANUNCIO (La Mulata) ════════════ */
  .announce {
    position: relative;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 8px 50px;
    background: linear-gradient(90deg, rgba(20,20,26,0.86), rgba(31,31,38,0.86));
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 0.5px solid var(--w-15);
  }
  .a-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12.5px;
    letter-spacing: 0.03em;
    color: var(--w-90);
    text-align: center;
    flex-wrap: wrap;
  }
  .a-link strong { color: var(--white); font-weight: 600; }
  .a-title { white-space: nowrap; }
  .a-em { color: var(--gold); font-style: italic; font-family: var(--display); font-size: 16px; line-height: 1; }
  .a-sep { color: var(--w-40); }
  .a-lead {
    color: var(--w-55);
    text-transform: uppercase;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }
  /* Cuenta regresiva estilo SHEIN */
  .a-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .ac-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding: 3px 4px 3px;
    border-radius: 5px;
    background: var(--gold);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.14);
  }
  .ac-box b {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
  }
  .ac-box i {
    font-style: normal;
    font-size: 6.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    color: rgba(10,10,10,0.55);
    margin-top: 2px;
  }
  .a-cta {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }
  .announce:hover .a-cta { color: #CFC2AE; }
  /* Rotador de mensajes tipo SHEIN (fade + sube) */
  .a-rotator {
    position: relative;
    width: 100%;
    height: 30px;
    overflow: hidden;
  }
  .a-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(105%);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    will-change: opacity, transform;
  }
  .a-slide.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .a-slide.is-leaving { opacity: 0; transform: translateY(-105%); }
  .a-ico { display: inline-flex; align-items: center; color: var(--gold); flex: none; }
  .a-ico svg { width: 25px; height: 25px; display: block; }
  .a-where, .a-when { white-space: nowrap; }
  @media (prefers-reduced-motion: reduce) {
    .a-slide, .a-slide.is-leaving { transition: opacity 0.4s ease; transform: none; }
  }
  .announce-x {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    font-size: 18px; line-height: 1;
    color: var(--w-55);
    transition: all 0.2s ease;
  }
  .announce-x:hover { color: var(--white); background: var(--w-10); }
  body.has-announce .nav { top: 46px; }

  /* ════════════ CARTELERA · LA MULATA ════════════ */
  .cartelera {
    background: linear-gradient(180deg, #000 0%, #0A0A0A 100%);
    border-top: 0.5px solid var(--w-10);
    border-bottom: 0.5px solid var(--w-10);
  }
  .cart-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 64px;
    align-items: center;
  }
  .cart-poster img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    border: 0.5px solid var(--w-10);
  }
  .cart-eyebrow {
    display: flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    font-weight: 500; color: var(--gold); margin-bottom: 22px;
  }
  .cart-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
  .cart-title {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(40px, 5vw, 72px); line-height: 0.96;
    letter-spacing: -0.018em; margin-bottom: 18px;
  }
  .cart-title em { font-style: italic; color: var(--gold); }
  .cart-sub { font-size: 15px; letter-spacing: 0.02em; color: var(--w-90); margin-bottom: 18px; }
  .cart-lede { font-size: 15.5px; line-height: 1.65; color: var(--w-70); max-width: 600px; margin-bottom: 32px; }
  .cart-funcs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
  .cart-func { padding: 22px 24px; }
  .cart-func-venue { font-family: var(--display); font-size: 22px; line-height: 1.1; margin-bottom: 4px; }
  .cart-func-addr { font-size: 13px; color: var(--w-55); margin-bottom: 16px; }
  .cart-func-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .cart-mini {
    font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
    color: var(--gold); border: 0.5px solid var(--w-15); border-radius: 100px;
    padding: 7px 14px; transition: all 0.2s ease;
  }
  .cart-mini:hover { background: var(--w-06); border-color: var(--w-40); color: #CFC2AE; }
  /* chooser (mapas / calendario con varias apps) */
  .chooser { position: relative; display: inline-flex; }
  .chooser-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px; z-index: 40;
    background: rgba(18,18,24,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: .5px solid var(--w-15); border-radius: 12px; padding: 6px;
    opacity: 0; pointer-events: none; transform: translateY(-6px) scale(.98); transform-origin: top left;
    transition: opacity .2s, transform .2s; box-shadow: 0 16px 44px rgba(0,0,0,.55); }
  .chooser.open .chooser-menu { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .chooser--right .chooser-menu { left: auto; right: 0; transform-origin: top right; }
  .chooser-item { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border-radius: 9px;
    font-size: 13px; color: var(--w-90); text-decoration: none; transition: background .18s, color .18s; white-space: nowrap; }
  .chooser-item:hover { background: var(--w-06); color: var(--gold); }
  .chooser-item svg { width: 15px; height: 15px; flex: none; opacity: .85; }
  .gc-links { display: flex; flex-direction: row; align-items: center; gap: 16px; flex-wrap: wrap; }
  .gc-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 18px; background: var(--bone); color: var(--ink); border-radius: 100px;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
    transition: background 0.2s ease;
  }
  .gc-btn:hover { background: #CFC2AE; }
  .nav-cta-ghost { background: transparent; border: 0.5px solid var(--w-25); color: var(--w-90); }
  .nav-cta-ghost:hover { background: var(--w-06); border-color: var(--w-40); color: #fff; }
  .cart-meta-row {
    display: flex; gap: 36px; flex-wrap: wrap;
    padding: 20px 0; margin-bottom: 28px;
    border-top: 0.5px solid var(--w-10); border-bottom: 0.5px solid var(--w-10);
  }
  .cart-meta-item { display: flex; flex-direction: column; gap: 5px; }
  .cart-meta-k { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--w-55); font-weight: 500; }
  .cart-meta-v { font-size: 15px; color: var(--white); font-weight: 500; }
  .cart-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
  .cart-foot { font-size: 12.5px; color: var(--w-55); line-height: 1.5; }

  /* ════════════ POPUP LA MULATA ════════════ */
  .mulata-modal {
    position: fixed; inset: 0; z-index: 500;
    display: none; align-items: center; justify-content: center;
    padding: 24px;
  }
  .mulata-modal.open { display: flex; animation: mmFade 0.35s ease; }
  @keyframes mmFade { from { opacity: 0; } to { opacity: 1; } }
  .mm-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  }
  .mm-card {
    position: relative; z-index: 1;
    display: flex;
    max-width: 720px; width: 100%; max-height: 88vh;
    background: var(--ink-2);
    border: 0.5px solid var(--w-15);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,0.7);
    animation: mmRise 0.4s cubic-bezier(0.2,0.7,0.2,1);
  }
  @keyframes mmRise { from { transform: translateY(18px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
  .mm-poster { flex: 0 0 44%; display: block; background: #000; }
  .mm-poster img { width: 100%; height: 100%; object-fit: cover; }
  .mm-body { flex: 1; padding: 38px 34px; display: flex; flex-direction: column; justify-content: center; }
  .mm-eyebrow { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 14px; }
  .mm-title { font-family: var(--display); font-size: 34px; line-height: 1.05; margin-bottom: 16px; }
  .mm-title em { font-style: italic; color: var(--gold); }
  .mm-meta { font-size: 14px; line-height: 1.6; color: var(--w-70); margin-bottom: 28px; }
  .mm-cta { display: flex; flex-direction: column; gap: 12px; }
  .mm-cta .btn-primary, .mm-cta .btn-secondary { text-align: center; }
  .mm-close {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 0.5px solid var(--w-15);
    display: flex; align-items: center; justify-content: center; padding: 0;
    color: var(--white); transition: background 0.2s ease;
  }
  .mm-close svg { width: 14px; height: 14px; display: block; }
  .mm-close:hover { background: rgba(0,0,0,0.78); }

  @media (max-width: 960px) {
    .cart-inner { grid-template-columns: 1fr; gap: 40px; }
    .cart-poster { max-width: 420px; margin: 0 auto; }
  }
  @media (max-width: 620px) {
    .cart-funcs { grid-template-columns: 1fr; }
    .cart-meta-row { gap: 22px 28px; }
    .mulata-modal { padding: 14px; }
    .mm-card { flex-direction: column; max-height: 90vh; max-height: calc(100dvh - 28px); overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .mm-poster { flex: none; width: 100%; max-height: none; }
    .mm-poster img { width: 100%; height: auto; max-height: none; object-fit: contain; display: block; }
    .mm-close { position: sticky; top: 12px; align-self: flex-end; margin: 12px 14px -46px auto; z-index: 5; }
    .mm-body { padding: 24px 22px 34px; }
    .mm-title { font-size: 26px; }
    .a-cta { display: none; }
    .a-lead { display: none; }
    .announce { padding: 6px 34px 6px 10px; min-height: 42px; }
    .announce-x { right: 8px; width: 26px; height: 26px; }
    .a-rotator { height: 28px; }
    .a-link { font-size: 10.5px; gap: 6px; flex-wrap: nowrap; }
    .a-title { flex: none; }
    .a-where { overflow: hidden; text-overflow: ellipsis; min-width: 0; }
    .a-ico svg { width: 20px; height: 20px; }
    .a-count { gap: 3px; }
    .ac-box { min-width: 24px; padding: 2px 3px; }
    .ac-box b { font-size: 11px; }
    .ac-box i { font-size: 6px; }
    body.has-announce .nav { top: 42px; }
  }
  /* ════════════ ACCESIBILIDAD ════════════ */
  .skip-link {
    position: fixed; top: -120px; left: 16px; z-index: 1000;
    background: var(--gold); color: var(--black);
    padding: 12px 22px; border-radius: 100px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    text-decoration: none; transition: top 0.2s ease;
  }
  .skip-link:focus { top: 16px; }
  #contenido { outline: none; }
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
  :focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 3px;
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* ════════════ MODAL LEGAL (Aviso de Privacidad) ════════════ */
  .legal-modal { position: fixed; inset: 0; z-index: 600; display: none; align-items: center; justify-content: center; padding: 24px; }
  .legal-modal.open { display: flex; animation: lmFade 0.3s ease; }
  @keyframes lmFade { from { opacity: 0; } to { opacity: 1; } }
  .legal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); }
  .legal-card { position: relative; z-index: 1; width: 100%; max-width: 720px; max-height: 86vh; max-height: calc(100dvh - 48px); display: flex; flex-direction: column; background: rgba(20,20,26,0.92); border: 0.5px solid var(--w-15); border-radius: 18px; overflow: hidden; box-shadow: 0 40px 120px rgba(0,0,0,0.7); animation: lmRise 0.4s cubic-bezier(0.2,0.7,0.2,1); }
  @keyframes lmRise { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }
  .legal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 26px; border-bottom: 0.5px solid var(--w-15); flex: none; }
  .legal-head h2 { font-family: var(--display); font-size: 22px; color: #fff; margin: 0; font-weight: 500; }
  .legal-close { width: 36px; height: 36px; border-radius: 50%; background: var(--w-08); border: 0.5px solid var(--w-15); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; padding: 0; transition: background 0.2s ease; }
  .legal-close:hover { background: var(--w-15); }
  .legal-close svg { width: 14px; height: 14px; display: block; }
  .legal-body { padding: 24px 30px 32px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .legal-body h3 { font-family: var(--display); font-size: 17px; color: #fff; margin: 22px 0 8px; font-weight: 500; }
  .legal-body p, .legal-body li { font-size: 14px; line-height: 1.65; color: var(--w-70); margin-bottom: 12px; }
  .legal-body ul { margin: 0 0 14px 20px; }
  .legal-body li { margin-bottom: 7px; }
  .legal-body strong { color: #fff; font-weight: 600; }
  .legal-body a { color: var(--gold); }
  .legal-updated { font-size: 12px; color: var(--w-55); }
  @media (max-width: 620px) { .legal-modal { padding: 12px; } .legal-head { padding: 18px 20px; } .legal-body { padding: 20px 22px 26px; } }

  /* ════════════ FOOTER SOCIAL ROW (5 redes oficiales) ════════════ */
  .footer-social{
    display:flex; gap:14px; align-items:center; margin:18px 0 0; flex-wrap:wrap;
  }
  .footer-social a{
    display:inline-flex; align-items:center; justify-content:center;
    width:38px; height:38px; border-radius:50%;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(189,176,157,.22);
    transition: color .22s ease, background .22s ease, transform .22s ease, border-color .22s ease;
    text-decoration:none;
  }
  .footer-social a:hover, .footer-social a:focus-visible{
    color: #fff;
    background: rgba(189,176,157,.12);
    border-color: rgba(189,176,157,.55);
    transform: translateY(-1px);
    outline:none;
  }
  .footer-social svg{ width:18px; height:18px; display:block; }

  /* Mobile drawer social row */
  .mob-social{
    display:flex; gap:18px; justify-content:center; align-items:center;
    padding:24px 24px 14px;
    margin-top:14px;
    border-top:1px solid rgba(189,176,157,.18);
  }
  .mob-social a{
    display:inline-flex; align-items:center; justify-content:center;
    width:46px; height:46px; border-radius:50%;
    color: var(--gold);
    background: rgba(189,176,157,.08);
    border: 1px solid rgba(189,176,157,.18);
    transition: color .22s ease, background .22s ease, transform .22s ease, border-color .22s ease;
    text-decoration:none;
  }
  .mob-social a:hover, .mob-social a:focus-visible{
    color: #fff;
    background: rgba(189,176,157,.18);
    border-color: rgba(189,176,157,.45);
    transform: translateY(-1px);
    outline:none;
  }
  .mob-social svg{ width:22px; height:22px; display:block; }
