/* === radio-patagonica.css — extraido del rediseño de Gregorio (radio-patagonica.html, 20-06) ===
   No editar a mano: regenerar desde el prototipo si cambia.
   Estilos scoped a la página Radio Patagónica (body.dark-page.radio-page). */


        :root {
            --rp-accent:  #1a8fff;
            --rp-accent-l:#56b3ff;
            --rp-accent-d:#0060cc;
            --rp-bg:      #06080f;
            --rp-card:    #0a0e1a;
            --rp-nav:     #050710;
            --rp-border:  rgba(26,143,255,0.12);
            --rp-border2: rgba(255,255,255,0.06);
            --rp-text:    #edeae4;
            --rp-muted:   rgba(237,234,228,0.5);
            --rp-muted2:  rgba(237,234,228,0.22);
            --ease: cubic-bezier(.25,.46,.45,.94);
        }
        .radio-page { background: var(--rp-bg); color: var(--rp-text); -webkit-font-smoothing: antialiased; }

        /* ══════════════════════════════
           LIVE PLAYER HERO
        ══════════════════════════════ */
        .live-hero {
            position: relative;
            height: 100vh; min-height: 600px;
            overflow: hidden;
            display: flex; flex-direction: column;
        }

        /* Background photo */
        .live-hero-bg {
            position: absolute; inset: 0;
            background-image: url('/assets/img/radio-patagonia-bg.jpg');
            background-size: cover; background-position: center;
            filter: brightness(0.25) saturate(0.6);
            transition: transform 12s ease;
        }
        .live-hero:hover .live-hero-bg { transform: scale(1.04); }

        /* Dark gradient overlay */
        .live-hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(7,14,24,0.4) 0%,
                rgba(7,14,24,0.15) 35%,
                rgba(7,14,24,0.88) 72%,
                rgba(7,14,24,1) 100%
            );
        }

        /* Content */
        .live-hero-content {
            position: relative; z-index: 2;
            flex: 1;
            max-width: 1260px; margin: 0 auto; padding: 0 24px;
            width: 100%;
            display: flex; flex-direction: column; justify-content: flex-end;
            padding-bottom: 0;
        }

        /* Top bar: subbrand + on air */
        .live-hero-topbar {
            position: absolute; top: 36px; left: 24px; right: 24px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .subbrand-pill {
            display: flex; align-items: center; gap: 8px;
            font-size: .58rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
            color: rgba(255,255,255,.45);
        }
        .subbrand-pill a { color: rgba(255,255,255,.45); transition: color .2s; }
        .subbrand-pill a:hover { color: var(--rp-accent-l); }
        .subbrand-pill .sep { opacity: .3; }

        .on-air-badge {
            display: flex; align-items: center; gap: 8px;
            background: rgba(7,14,24,.8); backdrop-filter: blur(8px);
            border: 1px solid rgba(79,179,206,.35);
            padding: 7px 16px;
        }
        .on-air-dot { width: 8px; height: 8px; background: var(--rp-accent); border-radius: 50%; animation: livePulse 1.4s ease infinite; }
        @keyframes livePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(1.5)} }
        .on-air-badge span { font-size: .6rem; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rp-accent); }

        /* Station ID at top center */
        .station-id {
            position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
            text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
        }
        .station-id img { height: 72px; width: auto; opacity: .92; }
        .station-id .freq { font-family: var(--font-serif); font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.35); letter-spacing: 5px; text-transform: uppercase; }

        /* Main player area */
        .player-area {
            padding-bottom: 56px;
        }

        /* Current show info */
        .current-show {
            display: grid; grid-template-columns: auto 1fr auto;
            gap: 32px; align-items: end;
            margin-bottom: 32px;
        }
        .show-artwork {
            width: 120px; height: 120px;
            background: var(--rp-card);
            border: 1px solid rgba(79,179,206,.2);
            overflow: hidden; flex-shrink: 0;
            position: relative;
        }
        .show-artwork img { width: 100%; height: 100%; object-fit: cover; }
        .show-artwork-live {
            position: absolute; top: 6px; left: 6px;
            background: var(--rp-accent); color: var(--rp-nav);
            font-size: .45rem; font-weight: 900; letter-spacing: 2px;
            text-transform: uppercase; padding: 3px 7px;
        }

        .show-info { }
        .show-program { font-size: .6rem; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rp-accent); margin-bottom: 8px; }
        .show-track { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; line-height: 1.0; color: var(--rp-text); margin-bottom: 6px; letter-spacing: -.5px; }
        .show-artist { font-size: .88rem; color: var(--rp-muted); font-weight: 400; }

        /* Waveform + controls */
        .player-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }

        .vu-meter {
            display: flex; align-items: flex-end; gap: 2px; height: 40px;
        }
        .vu-bar {
            width: 4px; background: var(--rp-accent); border-radius: 1px;
            animation: vuAnim 0.8s ease-in-out infinite alternate;
        }
        .vu-bar:nth-child(1)  { animation-delay:.00s; --h:20px; }
        .vu-bar:nth-child(2)  { animation-delay:.07s; --h:32px; }
        .vu-bar:nth-child(3)  { animation-delay:.14s; --h:14px; }
        .vu-bar:nth-child(4)  { animation-delay:.21s; --h:38px; }
        .vu-bar:nth-child(5)  { animation-delay:.28s; --h:24px; }
        .vu-bar:nth-child(6)  { animation-delay:.35s; --h:40px; }
        .vu-bar:nth-child(7)  { animation-delay:.42s; --h:18px; }
        .vu-bar:nth-child(8)  { animation-delay:.49s; --h:30px; }
        .vu-bar:nth-child(9)  { animation-delay:.56s; --h:10px; }
        .vu-bar:nth-child(10) { animation-delay:.63s; --h:28px; }
        .vu-bar:nth-child(11) { animation-delay:.70s; --h:36px; }
        .vu-bar:nth-child(12) { animation-delay:.77s; --h:16px; }
        @keyframes vuAnim {
            from { height: calc(var(--h) * 0.3); opacity: .5; }
            to   { height: var(--h); opacity: 1; }
        }

        .play-btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            background: var(--rp-accent); color: var(--rp-nav);
            border: none; cursor: pointer; border-radius: 999px;
            font-size: .72rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase;
            padding: 13px 28px; white-space: nowrap;
            box-shadow: 0 6px 18px rgba(0,0,0,.28);
            transition: background .2s, transform .15s, box-shadow .2s;
        }
        .play-btn:hover { background: var(--rp-accent-l); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,.34); }
        .play-btn.playing { background: var(--rp-accent-l); }
        .play-icon { font-size: 1rem; line-height: 1; }
        @media (max-width: 768px) {
            .player-controls { align-items: stretch; }
            .play-btn { width: 100%; }
        }

        /* Progress bar (fake) */
        .progress-wrap {
            border-top: 1px solid var(--rp-border);
            padding-top: 20px;
            display: flex; align-items: center; gap: 16px;
        }
        .progress-track { flex: 1; height: 2px; background: rgba(255,255,255,.1); position: relative; cursor: pointer; }
        .progress-fill { height: 100%; background: var(--rp-accent); width: 37%; transition: width .5s linear; }
        .progress-handle { position: absolute; top: 50%; right: 0; transform: translate(50%, -50%); width: 10px; height: 10px; background: var(--rp-accent); border-radius: 50%; }
        .progress-time { font-size: .62rem; font-weight: 700; color: var(--rp-muted); white-space: nowrap; font-variant-numeric: tabular-nums; }

        /* ══════════════════════════════
           HOY EN LA RADIO (Schedule)
        ══════════════════════════════ */
        .schedule-section {
            background: var(--rp-bg);
            border-top: 1px solid var(--rp-border);
        }
        .schedule-inner {
            max-width: 1260px; margin: 0 auto; padding: 64px 24px 80px;
        }
        .schedule-header {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 40px; padding-bottom: 20px;
            border-bottom: 1px solid var(--rp-border);
        }
        .schedule-title { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 900; color: var(--rp-text); }
        .schedule-date { font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rp-muted); }

        /* Tabs por día */
        .schedule-tabs { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
        .schedule-tab {
            background: transparent; border: 1px solid var(--rp-border);
            color: var(--rp-muted); font-family: var(--font-sans);
            font-size: .62rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
            padding: 12px 24px; cursor: pointer; transition: color .2s, border-color .2s, background .2s;
        }
        .schedule-tab:hover { color: var(--rp-text); border-color: var(--rp-accent); }
        .schedule-tab.active { background: var(--rp-accent); border-color: var(--rp-accent); color: var(--rp-nav); }
        .schedule-day { display: none; }
        .schedule-day.active { display: block; animation: fadeDay .35s var(--ease); }
        @keyframes fadeDay { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
        .schedule-note {
            margin-top: 20px; padding: 16px 20px;
            background: rgba(26,143,255,0.06);
            border-left: 2px solid var(--rp-accent);
            font-size: .8rem; color: var(--rp-muted); line-height: 1.7;
        }
        .schedule-note strong { color: var(--rp-accent-l); font-weight: 700; }
        .schedule-note .lbl { font-size: .54rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--rp-accent); display: block; margin-bottom: 6px; }

        .schedule-list { display: flex; flex-direction: column; gap: 0; }

        .schedule-item {
            display: grid; grid-template-columns: 72px 4px 1fr auto;
            gap: 0 24px; align-items: stretch;
            cursor: pointer;
        }

        .schedule-item-time {
            padding: 22px 0;
            display: flex; align-items: flex-start; justify-content: flex-end;
            font-family: var(--font-sans); font-size: .82rem; font-weight: 800;
            color: var(--rp-muted); white-space: nowrap; padding-top: 26px;
        }
        .schedule-item.now .schedule-item-time { color: var(--rp-accent); }

        /* Timeline line */
        .schedule-line-col {
            display: flex; flex-direction: column; align-items: center;
            padding: 0;
        }
        .schedule-dot {
            width: 10px; height: 10px; border-radius: 50%;
            background: var(--rp-border); border: 2px solid var(--rp-border);
            margin-top: 28px; flex-shrink: 0; z-index: 1;
        }
        .schedule-item.now .schedule-dot { background: var(--rp-accent); border-color: var(--rp-accent); box-shadow: 0 0 0 4px rgba(78,181,160,.15); animation: livePulse 1.4s ease infinite; }
        .schedule-item.past .schedule-dot { background: #222; border-color: #333; }
        .schedule-connector { flex: 1; width: 1px; background: var(--rp-border); }

        .schedule-item-body {
            padding: 18px 0 18px 0;
            border-bottom: 1px solid var(--rp-border);
            display: flex; align-items: center; gap: 20px;
        }
        .schedule-item:last-child .schedule-item-body { border-bottom: none; }
        .schedule-item:hover .schedule-item-body { background: rgba(79,179,206,.04); }

        .schedule-show-img {
            width: 72px; height: 52px; object-fit: cover;
            opacity: .7; flex-shrink: 0;
            filter: grayscale(30%);
        }
        .schedule-item.now .schedule-show-img { opacity: 1; filter: none; }
        .schedule-item.past .schedule-show-img { opacity: .35; filter: grayscale(70%); }

        .schedule-show-info { flex: 1; }
        .schedule-show-name {
            font-family: var(--font-serif); font-size: 1.05rem;
            font-weight: 900; color: var(--rp-text); margin-bottom: 3px;
        }
        .schedule-item.past .schedule-show-name { color: var(--rp-muted); }
        .schedule-show-sub { font-size: .65rem; color: var(--rp-muted); font-weight: 500; }
        .schedule-show-cat { font-size: .54rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--rp-accent); display: block; margin-bottom: 4px; }
        .schedule-item.past .schedule-show-cat { color: var(--rp-muted2); }

        .schedule-item-badge {
            padding: 22px 0; display: flex; align-items: flex-start; padding-top: 24px;
        }
        .now-label {
            background: var(--rp-accent); color: var(--rp-nav);
            font-size: .5rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
            padding: 4px 10px;
        }
        .past-label { font-size: .58rem; color: var(--rp-muted2); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding-top: 4px; }
        .next-label { font-size: .58rem; color: var(--rp-muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding-top: 4px; }

        /* ══════════════════════════════
           SHOWS (Program cards)
        ══════════════════════════════ */
        .shows-section { padding: 80px 0; }
        .container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
        .section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
        .section-header h2 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 900; white-space: nowrap; color: var(--rp-text); }
        .section-header::after { content: ''; flex: 1; height: 1px; background: var(--rp-border); }
        .section-tag { font-size: .56rem; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rp-nav); background: var(--rp-accent); padding: 4px 10px; flex-shrink: 0; }

        .shows-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

        .show-card { background: var(--rp-card); cursor: pointer; position: relative; overflow: hidden; }
        .show-card:hover .show-card-img { transform: scale(1.04); filter: brightness(.7); }

        .show-card-artwork {
            position: relative; overflow: hidden;
            aspect-ratio: 1 / 1;
        }
        .show-card-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.55) grayscale(20%); transition: transform .4s var(--ease), filter .3s; }

        .show-card-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(7,14,24,.95) 0%, transparent 60%);
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 16px;
        }
        .show-card-cat { font-size: .52rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--rp-accent); margin-bottom: 5px; }
        .show-card-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 900; line-height: 1.1; color: #fff; }

        .show-card-body { padding: 14px 16px 18px; }
        .show-card-desc { font-family: var(--font-serif-body); font-size: .78rem; color: var(--rp-muted); line-height: 1.55; margin-bottom: 12px; }
        .show-card-schedule { display: flex; align-items: center; justify-content: space-between; }
        .show-card-days { font-size: .58rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--rp-muted2); }
        .show-card-time { font-family: var(--font-serif); font-size: .9rem; font-weight: 900; color: var(--rp-accent-l); }

        /* ══════════════════════════════
           GÉNEROS
        ══════════════════════════════ */
        .genres-strip {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
            margin-top: 80px;
        }
        .genre-tile { position: relative; height: 220px; overflow: hidden; cursor: pointer; }
        .genre-tile img { width: 100%; height: 100%; object-fit: cover; opacity: .3; transition: opacity .35s, transform .5s var(--ease); }
        .genre-tile:hover img { opacity: .55; transform: scale(1.05); }
        .genre-tile-content {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(7,14,24,.98) 0%, transparent 70%);
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 20px;
        }
        .genre-tile-line { width: 24px; height: 2px; background: var(--rp-accent); margin-bottom: 10px; transition: width .3s var(--ease); }
        .genre-tile:hover .genre-tile-line { width: 44px; }
        .genre-tile-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 900; color: var(--rp-text); }
        .genre-tile-sub { font-size: .58rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--rp-muted); margin-top: 3px; }

        /* ══════════════════════════════
           APES AWARD
        ══════════════════════════════ */
        .apes-section {
            margin-top: 80px;
            display: grid; grid-template-columns: 1fr 1fr;
        }
        .apes-left {
            background: #0d2a3a;
            border-top: 3px solid var(--rp-accent);
            padding: 72px 64px;
            display: flex; flex-direction: column; justify-content: center;
        }
        .apes-eyebrow { font-size: .58rem; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--rp-accent); margin-bottom: 12px; }
        .apes-title { font-family: var(--font-serif); font-size: 3.2rem; font-weight: 900; line-height: .95; letter-spacing: -1px; color: var(--rp-text); margin-bottom: 20px; }
        .apes-body { font-family: var(--font-serif-body); font-size: .92rem; color: var(--rp-muted); line-height: 1.75; max-width: 400px; margin-bottom: 24px; }
        .apes-body strong { color: var(--rp-accent-l); font-weight: 700; }
        .apes-tag { display: inline-block; border: 1px solid rgba(79,179,206,.3); padding: 7px 18px; font-size: .6rem; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rp-accent); }
        .apes-right { position: relative; overflow: hidden; min-height: 380px; background: #0a1a27; }
        .apes-right img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }

        /* ══════════════════════════════
           HISTORIA
        ══════════════════════════════ */
        .historia-section { padding: 96px 0; border-top: 1px solid var(--rp-border); margin-top: 80px; }
        .historia-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .historia-img-col { position: relative; }
        .historia-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(25%); }
        .historia-badge { position: absolute; top: -16px; right: -16px; background: var(--rp-accent); color: var(--rp-nav); padding: 18px 20px; text-align: center; }
        .historia-badge .yr { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 900; line-height: 1; display: block; }
        .historia-badge .desde { font-size: .5rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 2px; opacity: .6; }
        .historia-kicker { font-size: .58rem; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--rp-accent); margin-bottom: 16px; display: block; }
        .historia-title { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 900; line-height: 1.05; color: var(--rp-text); margin-bottom: 20px; letter-spacing: -.5px; }
        .historia-body { font-family: var(--font-serif-body); font-size: .92rem; color: var(--rp-muted); line-height: 1.85; }
        .historia-body p { margin-bottom: 1.2em; }
        .historia-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--rp-border); }
        .stat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 900; color: var(--rp-accent); display: block; line-height: 1; margin-bottom: 4px; }
        .stat-label { font-size: .58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rp-muted2); }

        /* ══════════════════════════════
           STORYTELLING
        ══════════════════════════════ */
        .story-section {
            padding: 0;
            border-top: 1px solid var(--rp-border);
            margin-top: 80px;
            overflow: hidden;
        }

        /* Opening — gran cita */
        .story-opening {
            background: #080c18;
            padding: 100px 24px 90px;
            text-align: center;
            position: relative;
        }
        .story-opening::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(26,143,255,0.10), transparent 65%);
            pointer-events: none;
        }
        .story-opening-inner { max-width: 800px; margin: 0 auto; position: relative; }
        .story-opening-eyebrow {
            font-size: .58rem; font-weight: 900; letter-spacing: 4px;
            text-transform: uppercase; color: var(--rp-accent);
            margin-bottom: 32px; display: block;
        }
        .story-opening-quote {
            font-family: var(--font-serif);
            font-size: clamp(1.6rem, 3vw, 2.6rem);
            font-weight: 900; line-height: 1.2;
            color: var(--rp-text);
            font-style: italic;
            margin-bottom: 28px;
        }
        .story-opening-quote em {
            color: var(--rp-accent-l);
            font-style: normal;
        }
        .story-opening-sub {
            font-family: var(--font-serif-body);
            font-size: .9rem;
            color: var(--rp-muted);
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }
        .story-opening-line {
            width: 1px; height: 60px;
            background: linear-gradient(to bottom, var(--rp-accent), transparent);
            margin: 36px auto 0;
        }

        /* Capítulos */
        .story-chapters { }

        .story-chapter {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 480px;
        }
        .story-chapter:nth-child(even) { direction: rtl; }
        .story-chapter:nth-child(even) > * { direction: ltr; }

        .story-chapter-img {
            position: relative; overflow: hidden;
        }
        .story-chapter-img img {
            width: 100%; height: 100%;
            object-fit: cover;
            filter: brightness(0.4) saturate(0.7);
            transition: filter .5s var(--ease), transform .6s var(--ease);
        }
        .story-chapter:hover .story-chapter-img img {
            filter: brightness(0.55) saturate(0.9);
            transform: scale(1.03);
        }
        .story-chapter-img-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(7,14,24,0.55), transparent 60%);
        }
        .story-chapter-year {
            position: absolute; bottom: 24px; left: 24px;
            font-family: var(--font-serif);
            font-size: 4.5rem; font-weight: 900;
            color: rgba(255,255,255,0.12);
            line-height: 1; letter-spacing: -2px;
            user-select: none;
        }
        .story-chapter:nth-child(even) .story-chapter-year { left: auto; right: 24px; text-align: right; }

        .story-chapter-content {
            background: var(--rp-card);
            padding: 60px 64px;
            display: flex; flex-direction: column; justify-content: center;
            border-top: 1px solid var(--rp-border);
            border-bottom: 1px solid var(--rp-border);
        }
        .story-chapter-tag {
            font-size: .54rem; font-weight: 900; letter-spacing: 3px;
            text-transform: uppercase; color: var(--rp-accent);
            margin-bottom: 14px; display: block;
        }
        .story-chapter-title {
            font-family: var(--font-serif);
            font-size: clamp(1.5rem, 2.2vw, 2rem);
            font-weight: 900; line-height: 1.1;
            color: var(--rp-text);
            margin-bottom: 20px;
            letter-spacing: -.3px;
        }
        .story-chapter-body {
            font-family: var(--font-serif-body);
            font-size: .9rem; color: var(--rp-muted);
            line-height: 1.85;
        }
        .story-chapter-body p { margin-bottom: 1.1em; }
        .story-chapter-body p:last-child { margin-bottom: 0; }

        .story-chapter-quote {
            font-family: var(--font-serif);
            font-size: 1.1rem; font-style: italic;
            color: var(--rp-accent-l);
            line-height: 1.45;
            padding: 18px 0 18px 20px;
            border-left: 2px solid var(--rp-accent);
            margin-top: 20px;
        }

        /* Manifiesto final */
        .story-manifiesto {
            background: linear-gradient(135deg, #050a15 0%, #0a1528 50%, #060c1a 100%);
            padding: 110px 24px 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .story-manifiesto::before {
            content: '';
            position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
            width: 800px; height: 800px; border-radius: 50%;
            background: radial-gradient(circle, rgba(26,143,255,0.07), transparent 70%);
            pointer-events: none;
        }
        .story-manifiesto-inner { max-width: 760px; margin: 0 auto; position: relative; }
        .story-manifiesto-icon {
            font-family: var(--font-serif);
            font-size: 5rem; font-weight: 900;
            color: var(--rp-accent);
            opacity: 0.25; line-height: 1;
            display: block; margin-bottom: -10px;
        }
        .story-manifiesto-text {
            font-family: var(--font-serif);
            font-size: clamp(1.3rem, 2.2vw, 1.9rem);
            font-weight: 700; line-height: 1.5;
            color: var(--rp-text);
            margin-bottom: 20px;
        }
        .story-manifiesto-text em { color: var(--rp-accent-l); font-style: normal; }
        .story-manifiesto-sign {
            font-size: .6rem; font-weight: 900; letter-spacing: 4px;
            text-transform: uppercase; color: var(--rp-muted2);
            margin-top: 36px; display: block;
        }
        .story-manifiesto-divider {
            width: 40px; height: 1px;
            background: var(--rp-accent);
            margin: 24px auto;
            opacity: .5;
        }

        @media (max-width: 900px) {
            .story-chapter { grid-template-columns: 1fr; min-height: auto; }
            .story-chapter:nth-child(even) { direction: ltr; }
            .story-chapter-img { min-height: 240px; }
            .story-chapter-content { padding: 40px 28px; }
            .story-chapter-year { font-size: 3rem; }
        }

        /* ══════════════════════════════
           ARCHIVO HISTÓRICO
        ══════════════════════════════ */
        .archivo-section {
            background: #060b16;
            border-top: 1px solid var(--rp-border);
            padding: 96px 24px;
            position: relative;
            overflow: hidden;
        }
        .archivo-section::before {
            content: '';
            position: absolute; inset: 0;
            background:
                radial-gradient(ellipse at 15% 20%, rgba(26,143,255,0.10), transparent 55%),
                radial-gradient(ellipse at 85% 90%, rgba(26,143,255,0.07), transparent 55%);
            pointer-events: none;
        }
        .archivo-inner {
            max-width: 1100px; margin: 0 auto;
            position: relative;
            display: grid; grid-template-columns: 1.3fr 1fr;
            gap: 56px; align-items: center;
        }
        .archivo-eyebrow {
            font-size: .58rem; font-weight: 900; letter-spacing: 4px;
            text-transform: uppercase; color: var(--rp-accent);
            margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
        }
        .archivo-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--rp-accent); }
        .archivo-title {
            font-family: var(--font-serif);
            font-size: clamp(1.9rem, 3.4vw, 2.8rem);
            font-weight: 900; line-height: 1.08;
            color: var(--rp-text); letter-spacing: -.6px;
            margin-bottom: 22px;
        }
        .archivo-title em { color: var(--rp-accent-l); font-style: normal; }
        .archivo-body {
            font-family: var(--font-serif-body);
            font-size: 1rem; color: var(--rp-muted);
            line-height: 1.8; max-width: 540px;
            margin-bottom: 32px;
        }
        .archivo-btn {
            display: inline-flex; align-items: center; gap: 12px;
            background: var(--rp-accent); color: var(--rp-nav);
            font-size: .7rem; font-weight: 900; letter-spacing: 2px;
            text-transform: uppercase;
            padding: 16px 30px;
            transition: background .2s, transform .15s;
        }
        .archivo-btn:hover { background: var(--rp-accent-l); transform: translateY(-1px); }
        .archivo-btn svg { width: 16px; height: 16px; }

        .archivo-card {
            background: var(--rp-card);
            border: 1px solid var(--rp-border);
            padding: 36px 34px;
            position: relative;
        }
        .archivo-card-tag {
            font-size: .54rem; font-weight: 900; letter-spacing: 2.5px;
            text-transform: uppercase; color: var(--rp-muted2);
            margin-bottom: 22px; display: block;
        }
        .archivo-card-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
        .archivo-card-list li {
            display: flex; align-items: center; gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--rp-border);
            font-family: var(--font-serif);
            font-size: 1rem; font-weight: 700; color: var(--rp-text);
        }
        .archivo-card-list li:last-child { border-bottom: none; }
        .archivo-card-list .yr {
            font-family: var(--font-sans);
            font-size: .68rem; font-weight: 900; letter-spacing: 1px;
            color: var(--rp-accent); min-width: 52px;
        }

        @media (max-width: 860px) {
            .archivo-section { padding: 64px 24px; }
            .archivo-inner { grid-template-columns: 1fr; gap: 40px; }
        }
