/* === radio-patagonica.css — extraido LITERAL del prototipo radio-patagonica.html ===
   No editar a mano: regenerar desde el prototipo si cambia. */


        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --font-serif:      'Playfair Display', Georgia, serif;
            --font-serif-body: 'Source Serif 4', Georgia, serif;
            --font-sans:       'Inter', system-ui, sans-serif;
            --c-blood: #7a0000;
            --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);
        }
        html { scroll-behavior: smooth; }
        body { background: var(--rp-bg); color: var(--rp-text); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; }
        img { display: block; }

        /* ─── TICKER ─── */
        .ticker-bar { background: var(--rp-accent-d); color: #fff; display: flex; align-items: center; overflow: hidden; height: 32px; }
        .ticker-label { background: var(--rp-nav); color: #aac7d8; font-size: 0.58rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 0 18px; height: 100%; display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; gap: 8px; }
        .ticker-label::after { content: ''; width: 5px; height: 5px; background: var(--rp-accent); border-radius: 50%; animation: blink 1.4s ease infinite; }
        @keyframes blink { 0%,100%{opacity:1}50%{opacity:.2} }
        .ticker-track { flex: 1; overflow: hidden; }
        .ticker-content { display: inline-flex; align-items: center; gap: 60px; white-space: nowrap; font-size: 0.72rem; font-weight: 500; animation: ticker 30s linear infinite; padding-left: 40px; }
        .ticker-content span::before { content: '◆ '; opacity: .35; font-size: .45rem; }
        @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

        /* ─── HEADER ─── */
        header { position: sticky; top: 0; z-index: 100; background: rgba(0,0,0,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); }
        .header-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; height: 80px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
        .header-left { display: flex; align-items: center; }
        .header-right { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
        .btn-icon { background: none; border: none; cursor: pointer; padding: 9px; display: flex; align-items: center; justify-content: center; opacity: .7; transition: opacity .2s, background .2s; }
        .btn-icon:hover { opacity: 1; background: rgba(255,255,255,.08); }
        .logo-container { display: flex; justify-content: center; }
        .logo-container img { height: 60px; width: auto; }
        .logo-text { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 900; color: #fff; letter-spacing: 4px; text-transform: uppercase; }

        /* ─── NAV ─── */
        .nav-bar { background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.10); }
        .nav-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; height: 42px; }
        .subscribe-bar { border-bottom: 1px solid rgba(0,0,0,0.10); padding: 9px 0; background: #f2f2f0; }
        .subscribe-bar-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; width: 100%; display: flex; justify-content: space-between; align-items: center; }
        .subscribe-date { font-size: 0.74rem; color: #4a4a4a; font-weight: 500; }
        .btn-subscribe { background: #111111; color: #fff; font-size: .67rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 20px; border: none; cursor: pointer; transition: background .2s, transform .15s; }
        .btn-subscribe:hover { background: #c0392b; transform: translateY(-1px); }
        .nav-links { display: flex; align-items: center; list-style: none; }
        .nav-links a { font-size: .7rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #6b6b6b; padding: 12px 14px; display: block; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
        .nav-links a:hover { color: #111111; border-bottom-color: #111111; }
        .nav-links a.active { color: #111111; border-bottom-color: #111111; }
        .nav-date { font-size: .68rem; color: var(--rp-muted); font-weight: 500; }

        /* ══════════════════════════════
           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('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&q=80&w=1600');
            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; filter: brightness(0) invert(1); 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: flex; align-items: center; gap: 12px;
            background: var(--rp-accent); color: var(--rp-nav);
            border: none; cursor: pointer;
            font-size: .68rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
            padding: 14px 32px;
            transition: background .2s, transform .15s;
        }
        .play-btn:hover { background: var(--rp-accent-l); transform: translateY(-1px); }
        .play-icon { font-size: 1.1rem; line-height: 1; }

        /* 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); }

        .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-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: .35; filter: grayscale(50%); }

        /* ══════════════════════════════
           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); }

        /* ─── FOOTER ─── */
        footer { background: var(--rp-nav); color: #fff; padding: 72px 0 32px; border-top: 1px solid rgba(79,179,206,.1); }
        .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 32px; }
        .footer-col h4 { font-size: .6rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: #4a6a7e; margin-bottom: 20px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-col ul a { font-size: .82rem; color: #5a7a8e; transition: color .2s; }
        .footer-col ul a:hover { color: var(--rp-accent); }
        .footer-col p { font-size: .8rem; color: #4a6a7e; line-height: 1.7; }
        .footer-logo { font-family: var(--font-serif); font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; display: block; }
        .footer-input { background: #0c1825; border: 1px solid rgba(79,179,206,.15); color: #fff; padding: 11px 14px; width: 100%; font-size: .8rem; margin-bottom: 10px; outline: none; border-radius: 0; transition: border-color .2s; }
        .footer-input:focus { border-color: var(--rp-accent); }
        .footer-input::placeholder { color: #2e4a5e; }
        .footer-btn { width: 100%; background: var(--rp-accent); color: var(--rp-nav); border: none; padding: 11px; font-size: .7rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-radius: 0; transition: background .2s; }
        .footer-btn:hover { background: var(--rp-accent-l); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .66rem; color: #2e4a5e; }
        .social-links { display: flex; gap: 12px; }
        .social-links a { width: 30px; height: 30px; border: 1px solid rgba(79,179,206,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .68rem; color: #4a6a7e; transition: border-color .2s, color .2s; }
        .social-links a:hover { border-color: var(--rp-accent); color: var(--rp-accent); }
        .footer-sub { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
        .footer-sub span { font-size: .55rem; color: #2e4a5e; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
        /* ─── DRAWER MENU ─── */
        .menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9500; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
        .menu-overlay.active { opacity: 1; visibility: visible; }
        .menu-drawer { position: fixed; top: 0; left: 0; height: 100vh; width: 340px; max-width: 90vw; background: #0a0a0a; z-index: 9600; transform: translateX(-100%); transition: transform .35s cubic-bezier(.25,.46,.45,.94); display: flex; flex-direction: column; padding: 28px 36px 32px; overflow-y: auto; }
        .menu-drawer.active { transform: translateX(0); }
        .menu-close { background: none; border: none; cursor: pointer; padding: 8px; align-self: flex-end; color: rgba(255,255,255,0.55); transition: color .2s; margin-bottom: 8px; }
        .menu-close:hover { color: #fff; }
        .menu-logo { height: 32px; margin-bottom: 36px; filter: brightness(0) invert(1); }
        .menu-logo-fallback { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 36px; display: block; }
        .menu-eyebrow { font-size: 0.55rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
        .menu-nav { display: flex; flex-direction: column; list-style: none; padding: 0; margin: 0; }
        .menu-nav li { margin: 0; }
        .menu-nav a { display: block; padding: 16px 0; font-family: 'Playfair Display', Georgia, serif; font-size: 1.45rem; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: -0.5px; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color .2s, padding-left .2s; }
        .menu-nav a:hover { color: #c0392b; padding-left: 6px; }
        .menu-nav a.active { color: #c0392b; }
        .menu-footer { margin-top: auto; padding-top: 36px; }
        .menu-footer .menu-meta { font-size: 0.62rem; color: rgba(255,255,255,0.35); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
        .menu-social { display: flex; gap: 10px; }
        .menu-social a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.55); transition: border-color .2s, color .2s; text-decoration: none; }
        .menu-social a:hover { border-color: #fff; color: #fff; }
    