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

  :root {
    --teal: #2aacac;
    --teal-light: #4fc4c4;
    --teal-pale: #e8f7f7;
    --navy: #03264f;
    --navy-light: #1a3a6e;
    --caprock-copper: #B36924;
    --white: #ffffff;
    --off-white: #f7fbfb;
    --border: #ddeaea;
    --yt-red: #EA6F6F;
    --text: #03264f;
    --text-mid: #4a5a6a;
    --text-light: #8a9aaa;
  }

  html { font-size: 16px; }
  body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .logo img { height: 36px; width: auto; display: block; }
  .nav-links { display: none; }
  .nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); text-decoration: none; opacity: 0.55; transition: opacity 0.2s, color 0.2s; }
  .nav-links a:hover { opacity: 1; color: var(--teal); }

  .nav-right { display: flex; align-items: center; margin-left: auto; }
  .nav-ham-divider { display: block; width: 1px; height: 22px; background: var(--border); margin: 0 1.25rem; flex-shrink: 0; }
  .nav-sponsor { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
  .nav-sponsor-presented { font-family: 'Open Sans', sans-serif; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); font-weight: 400; line-height: 1; margin-bottom: 0.15rem; }
  .nav-sponsor-lockup { display: flex; align-items: center; gap: 0.4rem; }
  .nav-sponsor-wordmark { font-family: 'Open Sans', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--navy); letter-spacing: 0.12em; text-transform: uppercase; line-height: 1; }
  .nav-sponsor-tagline { font-family: 'Open Sans', sans-serif; font-size: 0.58rem; color: var(--text-light); font-weight: 300; letter-spacing: 0.04em; font-style: italic; line-height: 1; }
  .nav-sponsor-img { height: 38px; width: auto; display: block; }

  /* HERO */
  .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 5rem; background: var(--white); }
  .hero-left { display: flex; flex-direction: column; justify-content: center; padding: 5rem 4rem 5rem 5rem; position: relative; z-index: 2; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.7s 0.2s forwards; }
  .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 5.5rem); line-height: 1.05; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.7s 0.35s forwards; }
  .hero-title em { font-style: italic; color: var(--teal); }
  .hero-sub { font-size: 1.05rem; line-height: 1.7; color: var(--text-mid); max-width: 420px; font-weight: 300; margin-bottom: 3rem; opacity: 0; animation: fadeUp 0.7s 0.5s forwards; }
  .hero-ctas { display: flex; gap: 1rem; opacity: 0; animation: fadeUp 0.7s 0.65s forwards; }

  .btn-primary { background: var(--teal); color: var(--white); padding: 0.85rem 2rem; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
  .btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--text); padding: 0.85rem 2rem; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border: 1.5px solid #ccc; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s, transform 0.15s; }
  .btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }

  .hero-right { position: relative; overflow: hidden; opacity: 0; animation: fadeIn 1s 0.4s forwards; }
  .hero-img-main { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
  .hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(42,172,172,0.12) 0%, transparent 60%); }
  .hero-card { position: absolute; bottom: 2rem; left: 1.5rem; background: var(--white); padding: 1.2rem 1.5rem; max-width: 260px; box-shadow: 0 8px 40px rgba(0,0,0,0.15); border-left: 3px solid var(--teal); opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }
  .hero-card-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.4rem; }
  .hero-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; line-height: 1.3; color: var(--text); margin-bottom: 0.6rem; }
  .hero-card-meta { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.05em; }

  /* SECTIONS STRIP */
  .sections-strip { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--navy); opacity: 0; animation: fadeIn 0.7s 1.1s forwards; }
  .section-item { padding: 1.75rem 1.5rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: background 0.22s, border-bottom-color 0.22s; text-decoration: none; display: block; position: relative; border-bottom: 3px solid transparent; }
  .section-item:last-child { border-right: none; }
  .section-item:hover { background: rgba(255,255,255,0.09); border-bottom-color: var(--teal); }
  .section-item:hover .section-name { color: var(--teal-light); }
  .section-item:hover .section-arrow { opacity: 1; transform: translateX(3px); }
  .section-num { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--teal-light); margin-bottom: 0.6rem; opacity: 0.7; }
  .section-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); font-weight: 700; margin-bottom: 0.3rem; transition: color 0.22s; display: flex; align-items: center; gap: 0.4rem; }
  .section-arrow { font-size: 0.85rem; opacity: 0; transform: translateX(-2px); transition: opacity 0.22s, transform 0.22s; color: var(--teal-light); }
  .section-desc { font-size: 0.72rem; color: rgba(255,255,255,0.45); line-height: 1.5; font-weight: 300; }

  /* FEATURED */
  .featured { padding: 5rem; background: var(--white); }
  .section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2.5rem; }
  .section-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); font-weight: 500; }
  .section-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; margin-top: 0.3rem; color: var(--text); }
  .see-all { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); text-decoration: none; border-bottom: 1px solid var(--teal); padding-bottom: 0.1rem; }
  .grid-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 1px; background: var(--border); }
  .grid-3 .card:first-child { grid-row: span 2; }
  .grid-3 .card:not(:first-child) .card-img { aspect-ratio: 3/2; }
  .grid-3 .card:not(:first-child) .card-title { font-size: 0.9rem; }
  .feat-mobile { display: none !important; }
  .feat-hero-item { display: block; text-decoration: none; margin-bottom: 0; border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: 1rem; }
  .feat-hero-thumb { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg,#f0ede8,#e5ddd4); }
  .feat-hero-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .feat-hero-info { padding: 0.75rem 0 0; }
  .feat-hero-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--text); line-height: 1.3; margin-top: 0.3rem; }
  .card { position: relative; overflow: hidden; background: var(--white); cursor: pointer; }
  .card:hover .card-img { transform: scale(1.04); }
  .card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.5s ease; }
  .card:first-child .card-img { aspect-ratio: 16/10; }
  .card-body { padding: 1.2rem 1.3rem 1.5rem; }
  .card-tag { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 0.4rem; }
  .card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; line-height: 1.35; color: var(--text); font-weight: 700; }
  .card:first-child .card-title { font-size: 1.5rem; }
  .card-excerpt { font-size: 0.8rem; color: var(--text-mid); line-height: 1.6; margin-top: 0.5rem; font-weight: 300; }

  /* YOUTUBE */
  .youtube-section { background: var(--off-white); padding: 5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .youtube-section .section-label { color: var(--yt-red); }
  .youtube-section .section-title { color: var(--text); }
  .youtube-section .see-all { color: var(--yt-red); border-bottom-color: var(--yt-red); }
  .yt-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
  .yt-featured { position: relative; cursor: pointer; overflow: hidden; }
  .yt-featured-thumb { width: 100%; aspect-ratio: 16/9; background: #111; display: block; position: relative; overflow: hidden; }
  .yt-featured-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, opacity 0.3s; }
  .yt-featured:hover .yt-featured-thumb img { transform: scale(1.03); opacity: 0.9; }
  .yt-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.2); transition: background 0.2s; }
  .yt-featured:hover .yt-play-btn { background: rgba(0,0,0,0.35); }
  .yt-play-circle { width: 68px; height: 68px; border-radius: 50%; background: var(--yt-red); display: flex; align-items: center; justify-content: center; transition: transform 0.2s; box-shadow: 0 4px 20px rgba(204,0,0,0.4); }
  .yt-featured:hover .yt-play-circle { transform: scale(1.1); }
  .yt-play-circle svg { width: 26px; height: 26px; fill: white; margin-left: 3px; }
  .yt-duration { position: absolute; bottom: 0.6rem; right: 0.6rem; background: rgba(0,0,0,0.8); color: #fff; font-size: 0.7rem; padding: 0.15rem 0.45rem; font-weight: 500; }
  .yt-featured-meta { padding: 1.2rem 0 0; }
  .yt-tag { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yt-red); font-weight: 500; margin-bottom: 0.4rem; }
  .yt-featured-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text); line-height: 1.3; font-weight: 700; margin-bottom: 0.5rem; }
  .yt-featured-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; max-width: 480px; }
  .yt-meta-row { display: flex; align-items: center; gap: 1rem; margin-top: 0.9rem; }
  .yt-views { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.06em; }
  .yt-watch-link { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yt-red); text-decoration: none; border-bottom: 1px solid var(--yt-red); padding-bottom: 0.1rem; transition: opacity 0.2s; }
  .yt-watch-link:hover { opacity: 0.65; }
  .yt-list { display: flex; flex-direction: column; border-top: 2px solid var(--text); }
  .yt-list-item { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); cursor: pointer; text-decoration: none; transition: opacity 0.2s; }
  .yt-list-item:hover { opacity: 0.7; }
  .yt-list-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #eee; }
  .yt-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .feat-mobile .yt-list-thumb { aspect-ratio: 4/3; }
  .yt-list-duration { position: absolute; bottom: 0.25rem; right: 0.25rem; background: rgba(0,0,0,0.8); color: #fff; font-size: 0.6rem; padding: 0.1rem 0.3rem; }
  .yt-list-info { display: flex; flex-direction: column; justify-content: center; }
  .yt-list-title { font-family: 'Playfair Display', serif; font-size: 0.88rem; color: var(--text); line-height: 1.35; font-weight: 700; margin-bottom: 0.3rem; }
  .yt-list-meta { font-size: 0.68rem; color: var(--text-light); }
  .yt-subscribe-row { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
  .yt-channel-info { display: flex; align-items: center; gap: 0.8rem; }
  .yt-channel-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); font-weight: 700; }
  .yt-channel-name { font-size: 0.88rem; color: var(--text); font-weight: 500; }
  .yt-channel-subs { font-size: 0.7rem; color: var(--text-light); margin-top: 0.1rem; }
  .yt-subscribe-btn { background: var(--yt-red); color: var(--white); border: none; padding: 0.65rem 1.4rem; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: opacity 0.2s; }
  .yt-subscribe-btn:hover { opacity: 0.85; }
  .yt-modal { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.88); align-items: center; justify-content: center; }
  .yt-modal.active { display: flex; }
  .yt-modal-inner { position: relative; width: min(900px, 92vw); aspect-ratio: 16/9; background: #000; }
  .yt-modal-inner iframe { width: 100%; height: 100%; border: none; }
  .yt-modal-close { position: absolute; top: -2.5rem; right: 0; background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
  .yt-modal-close:hover { color: #fff; }

  /* PRIVET IQ */
  .privet-iq { background: var(--teal); padding: 6rem 5rem; position: relative; overflow: hidden; }
  .privet-iq::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 85% 15%, rgba(255,255,255,0.06) 0%, transparent 50%), radial-gradient(ellipse at 10% 85%, rgba(0,0,0,0.08) 0%, transparent 45%); pointer-events: none; }
  .iq-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center; }
  .iq-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.9); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 2rem; }
  .iq-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 2s infinite; }
  .iq-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 4vw, 4rem); color: var(--white); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; }
  .iq-title em { font-style: italic; color: rgba(255,255,255,0.75); }
  .iq-sub { font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }
  .iq-search-wrap { position: relative; max-width: 660px; margin: 0 auto 1.5rem; display: flex; align-items: center; background: var(--white); border-radius: 12px; border: 2px solid var(--teal); box-shadow: 0 0 0 4px rgba(42,172,172,0.08), 0 4px 24px rgba(42,172,172,0.15); padding: 0.5rem 0.5rem 0.5rem 1.2rem; }
  .iq-search-input { flex: 1; background: transparent; border: none; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 300; padding: 0.85rem 0.5rem; outline: none; }
  .iq-search-input::placeholder { color: #aaa; }
  .iq-search-btn { background: var(--teal); border: none; color: var(--white); width: 44px; height: 44px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
  .iq-search-btn:hover { background: #0f1a30; }
  .iq-search-btn svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; }
  .iq-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
  .iq-chip { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 0.72rem; font-weight: 400; padding: 0.3rem 0.75rem; border-radius: 999px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
  .iq-chip:hover { background: rgba(255,255,255,0.25); color: var(--white); }
  .iq-response { display: none; text-align: left; background: var(--white); padding: 1.5rem 2rem; margin-top: 0.5rem; max-width: 660px; margin-left: auto; margin-right: auto; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
  .iq-response.active { display: block; }
  .iq-response-label { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; font-weight: 600; }
  .iq-response-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .iq-response-text { font-size: 0.9rem; color: var(--text); line-height: 1.75; font-weight: 300; }
  .iq-loading { display: flex; gap: 0.4rem; align-items: center; padding: 0.5rem 0; }
  .iq-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: bounce 1.2s infinite; }
  .iq-dot:nth-child(2) { animation-delay: 0.2s; }
  .iq-dot:nth-child(3) { animation-delay: 0.4s; }
  .iq-disclaimer { font-size: 0.68rem; color: rgba(255,255,255,0.45); text-align: center; margin-top: 1.5rem; }

  /* SOCIAL BAR */
  .social-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: grid; grid-template-columns: repeat(3, 1fr); }
  .social-platform { display: flex; align-items: center; gap: 0.75rem; padding: 1.5rem 1.5rem; text-decoration: none; border-right: 1px solid var(--border); transition: background 0.2s; color: var(--text); }
  .social-platform:last-child { border-right: none; }
  .social-platform:hover { background: var(--off-white); }
  .social-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .social-icon svg { width: 18px; height: 18px; }
  .social-icon.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
  .social-icon.tiktok { background: #000; }
  .social-icon.facebook { background: #1877f2; }
  .social-info { display: flex; flex-direction: column; flex: 1; }
  .social-name { font-size: 0.82rem; font-weight: 600; color: var(--text); white-space: nowrap; }
  .social-handle { font-size: 0.72rem; color: var(--text-light); font-weight: 300; margin-top: 0.1rem; }
  .social-follow-btn { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: var(--teal); border: 1px solid var(--teal); padding: 0.3rem 0.85rem; transition: all 0.2s; white-space: nowrap; }
  .social-platform:hover .social-follow-btn { background: var(--teal); color: var(--white); }

  /* NEWSLETTER */
  .nl-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.62); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s ease; }
  .nl-popup-overlay.visible { opacity: 1; }
  .nl-popup-card { background: var(--navy); color: var(--white); padding: 3rem 2.5rem 2.5rem; max-width: 480px; width: calc(100% - 2rem); position: relative; border-top: 3px solid var(--teal); }
  .nl-popup-close { position: absolute; top: 1rem; right: 1.1rem; background: none; border: none; color: rgba(255,255,255,0.55); font-size: 1.6rem; cursor: pointer; line-height: 1; padding: 0; }
  .nl-popup-close:hover { color: var(--white); }
  .nl-popup-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.8rem; }
  .nl-popup-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; line-height: 1.15; font-weight: 700; margin-bottom: 1rem; }
  .nl-popup-title em { font-style: italic; opacity: 0.7; }
  .nl-popup-desc { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; line-height: 1.5; }
  .nl-popup-form { display: flex; margin-bottom: 0.75rem; margin-right: 2rem; background: #fff; border-radius: 5px; overflow: visible; padding: 0.1rem 0 0.1rem 0.85rem; align-items: center; position: relative; }
  .nl-popup-input { flex: 1; padding: 0.3rem 0.5rem 0.3rem 0; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; border: none; outline: none; background: transparent; color: #333; min-width: 0; }
  .nl-popup-input::placeholder { color: #aaa; }
  .nl-popup-btn { background: #EA6F6F; color: #fff; border: none; padding: 0.32rem 0.85rem; border-radius: 4px; font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em; cursor: pointer; transition: background 0.2s; white-space: nowrap; position: absolute; right: -2.5rem; top: 50%; transform: translateY(-50%); box-shadow: 2px 2px 8px rgba(0,0,0,0.15); }
  .nl-popup-btn:hover { background: #d45a5a; }
  .nl-popup-toc { font-size: 0.68rem; color: rgba(255,255,255,0.3); margin-bottom: 0; }
  .nl-popup-msg { font-size: 0.8rem; margin-top: 0.5rem; min-height: 1.2em; }
  .nl-popup-msg.success { color: #7ee8a2; }
  .nl-popup-msg.error { color: #f87171; }
  .nl-sub { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 1rem; line-height: 1.5; }

  /* SPONSOR BAR */
  .footer-caprock-wrap { display: flex; align-items: center; gap: 0.75rem; }
  .footer-caprock-label { font-family: 'Open Sans', sans-serif; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); font-weight: 400; }
  .footer-caprock-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.15); }
  .footer-caprock-img { height: 26px; width: auto; display: block; filter: brightness(0) invert(1); }
  /* MEMBER BANNER */
  .member-banner { background: #fff; border-top: 1px solid var(--border); padding: 3rem 5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
  .member-banner-text { flex: 1; }
  .member-banner-eyebrow { font-family: 'Open Sans', sans-serif; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); font-weight: 700; margin-bottom: 0.5rem; }
  .member-banner-headline { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--navy); line-height: 1.25; font-weight: 700; }
  .member-banner-headline em { font-style: italic; color: var(--teal); }
  .member-banner-sub { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--text-light); margin-top: 0.5rem; }
  .member-banner-btn { flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.5rem; background: #EA6F6F; color: #fff; font-family: 'Open Sans', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; padding: 0.9rem 2rem; border-radius: 2px; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
  .member-banner-btn:hover { background: #d45a5a; transform: translateY(-1px); }
  @media(max-width:768px) { .member-banner { flex-direction: column; padding: 2.5rem 1.5rem; text-align: center; } .member-banner-headline { font-size: 1.35rem; } }

  .site-footer { background: #2E3649; padding: 2.5rem 4rem 1.75rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-logo-wrap { margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
  .footer-logo-wrap svg { height: 36px; width: auto; }
  .footer-cols { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 2rem; margin-bottom: 1.75rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
  .footer-cols .footer-col:last-child { padding-right: 2rem; }
  .footer-col-head { font-family: 'Open Sans', sans-serif; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 600; margin-bottom: 1.2rem; display: block; }
  a.footer-col-head-link { text-decoration: none; color: #fff !important; transition: color 0.2s; }
  a.footer-col-head-link:hover { color: var(--teal-light) !important; }
  .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; }
  .footer-links a { font-family: 'Open Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; font-weight: 600; transition: color 0.2s; }
  .footer-links a:hover { color: #fff; }
  .footer-nl-label { font-family: 'Open Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.9rem; }
  .footer-nl-form { display: flex; background: #fff; border-radius: 6px; overflow: visible; padding: 0.1rem 0 0.1rem 0.9rem; align-items: center; margin-bottom: 0.5rem; position: relative; margin-right: 1.8rem; }
  .footer-nl-input { flex: 1; background: transparent; border: none; color: #333; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; padding: 0.3rem 0.4rem 0.3rem 0; outline: none; min-width: 0; }
  .footer-nl-input::placeholder { color: #aaa; }
  .footer-nl-btn { background: #EA6F6F; border: none; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em; padding: 0.3rem 0.85rem; border-radius: 4px; cursor: pointer; transition: background 0.2s; white-space: nowrap; position: absolute; right: -1.8rem; top: 50%; transform: translateY(-50%); box-shadow: 2px 2px 6px rgba(0,0,0,0.12); }
  .footer-nl-btn:hover { background: #d45a5a; }
  .footer-nl-btn:disabled { opacity: 0.7; cursor: not-allowed; }
  .footer-nl-status { font-size: 0.72rem; min-height: 1.1em; margin-bottom: 0.5rem; }
  .footer-nl-status.success { color: #7ee8a2; }
  .footer-nl-status.error { color: #EA6F6F; }
  .footer-toc { font-size: 0.6rem; color: rgba(255,255,255,0.28); line-height: 1.7; }
  .footer-toc a { color: rgba(255,255,255,0.45); text-decoration: underline; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
  .footer-copyright { font-family: 'Open Sans', sans-serif; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
  @media(max-width:768px) { .site-footer { padding: 3rem 1.5rem 2rem; } .footer-cols { grid-template-columns: 1fr; gap: 2rem; } }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.75); } }
  @keyframes bounce { 0%, 80%, 100% { transform: translateY(0); opacity: 0.4; } 40% { transform: translateY(-6px); opacity: 1; } }

  /* HERO IQ CHAT BAR */
  .hero-iq-bar {
    margin-top: 0;
    max-width: 420px;
    opacity: 0; animation: fadeUp 0.7s 0.65s forwards;
  }
  .hero-iq-bar-label {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--teal);
    margin-bottom: 0.55rem;
  }
  .hero-iq-input-wrap {
    display: flex; align-items: flex-end;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--teal);
    box-shadow: 0 0 0 4px rgba(42,172,172,0.08), 0 4px 24px rgba(42,172,172,0.15);
    padding: 0.5rem 0.5rem 0.5rem 1.2rem;
    transition: box-shadow 0.25s;
    gap: 0.5rem;
  }
  .hero-iq-input-wrap:focus-within {
    box-shadow: 0 0 0 5px rgba(42,172,172,0.15), 0 6px 30px rgba(42,172,172,0.2);
  }
  .hero-iq-input {
    flex: 1; border: none; outline: none; background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; font-weight: 300; color: var(--text);
    padding: 0.5rem 0;
    min-width: 0;
    resize: none;
    line-height: 1.5;
    overflow: hidden;
    height: calc(1.5em * 3 + 1rem);
    max-height: calc(1.5em * 3 + 1rem);
  }
  .hero-iq-input::placeholder { color: var(--text-light); font-size: 0.78rem; }
  .hero-iq-input-wrap > svg { align-self: flex-start; margin-top: 0.45rem; flex-shrink: 0; }
  .hero-iq-submit {
    background: var(--teal); border: none;
    width: 36px; height: 36px; border-radius: 8px;
    cursor: pointer; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(42,172,172,0.3);
  }
  .hero-iq-submit:hover { background: var(--teal-light); transform: scale(1.08); }
  .hero-iq-submit svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2.5; }

  .hero-iq-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
  }
  .hero-iq-suggestion {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-mid);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .hero-iq-suggestion:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-pale);
  }

  /* HAMBURGER */
  .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.25s; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; position: fixed; left: 0; right: 0; top: 60px; z-index: 99; background: var(--white); padding: 0.5rem 1.5rem 1rem; flex-direction: column; gap: 0; border-top: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 1.05rem; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--text); text-decoration: none; padding: 0.65rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
  .mobile-menu a::after { content: '→'; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; opacity: 0.4; }
  .mobile-menu a.admin-link::after { display: none; }
  .mobile-menu a.no-arrow::after { display: none; }
  .mobile-menu .sub-links { display: flex; flex-direction: column; border-bottom: 1px solid var(--border); margin-top: -1px; }
  .mobile-menu .sub-links a { font-size: 0.78rem; font-family: 'DM Sans', sans-serif; font-weight: 500; color: var(--text-light); padding: 0.4rem 0 0.4rem 1rem; border-bottom: none; letter-spacing: 0.02em; }
  .mobile-menu .sub-links a::after { content: '↗'; font-size: 0.7rem; opacity: 0.35; }
  .mobile-menu .sub-links a:last-child { padding-bottom: 0.65rem; }

  /* MOBILE */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .logo img { height: 28px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-sponsor { border-left: none; margin-left: auto; padding-left: 0; flex-direction: row; align-items: center; gap: 0.3rem; }
    .hamburger { margin-left: 0.75rem; }
    .nav-sponsor-presented { display: block; font-size: 0.44rem; letter-spacing: 0.1em; white-space: nowrap; }
    .nav-sponsor-lockup { gap: 0; }
    .nav-sponsor-wordmark { display: none; }
    .nav-sponsor-tagline { display: none; }
    .nav-sponsor-img { height: 22px; }
    .hero { grid-template-columns: 1fr; padding-top: 60px; min-height: auto; }
    .hero-right { height: 55vw; min-height: 240px; order: -1; }
    .hero-card { left: 1rem; bottom: 1rem; max-width: 220px; padding: 1rem 1.2rem; }
    .hero-card-title { font-size: 0.9rem; }
    .hero-left { padding: 2.5rem 1.5rem 3rem; }
    .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
    .hero-sub { font-size: 0.78rem; margin-bottom: 2rem; }
    .hero-iq-bar { max-width: 100%; }
    .hero-ctas { flex-direction: column; }
    .btn-primary, .btn-ghost { text-align: center; width: 100%; padding: 1rem; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; margin-bottom: 1.5rem; }
    .section-title { font-size: 1.4rem; }
    .see-all { align-self: flex-start; }
    .sections-strip { grid-template-columns: repeat(5, 1fr); }
    .section-item { padding: 0.75rem 0.4rem; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.35); text-align: center; }
    .section-item:last-child { border-right: none; }
    .section-num { display: none; }
    .section-name { font-size: 0.7rem; margin-bottom: 0; }
    .section-desc { display: none; }
    .featured { padding: 2.5rem 1.5rem; }
    .feat-desktop { display: none !important; }
    .feat-mobile { display: flex !important; flex-direction: column; }
    .youtube-section { padding: 2.5rem 1.5rem; }
    .yt-layout { grid-template-columns: 1fr; gap: 2rem; }
    .yt-featured-desc { display: none; }
    .yt-list-item { grid-template-columns: 100px 1fr; }
    .yt-subscribe-row { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .yt-subscribe-btn { width: 100%; text-align: center; padding: 0.9rem; }
    .privet-iq { padding: 2rem 1.5rem; }
    .iq-badge { font-size: 0.58rem; padding: 0.3rem 0.75rem; margin-bottom: 0.9rem; }
    .iq-title { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 0.6rem; }
    .iq-sub { font-size: 0.78rem; margin-bottom: 1.2rem; line-height: 1.55; }
    .iq-chips { gap: 0.35rem; margin-bottom: 1rem; }
    .iq-chip { font-size: 0.65rem; padding: 0.25rem 0.6rem; }
    .iq-search-input { font-size: 1rem; padding: 0.6rem 0.4rem; }
    .iq-disclaimer { font-size: 0.6rem; margin-top: 0.75rem; }
    .social-bar { grid-template-columns: 1fr; }
    .social-platform { border-right: none; border-bottom: 1px solid var(--border); padding: 1.2rem 1.5rem; }
    .social-platform:last-child { border-bottom: none; }
    .nl-popup-card { padding: 2.5rem 1.4rem 2rem; }
    .nl-popup-title { font-size: 1.8rem; }
    .nl-popup-form { flex-direction: row; margin-right: 2rem; }
    .nl-popup-btn { width: auto; position: absolute; right: -2.5rem; }
    .footer-logo-wrap { flex-wrap: wrap; gap: 1rem; }
    .yt-modal-inner { width: 95vw; }
    input, textarea, select { font-size: 16px !important; }
  }
  @media (max-width: 400px) {
    .sections-strip { grid-template-columns: repeat(5, 1fr); }
    .section-item:nth-child(5) { grid-column: auto; }
  }

  .show-banner { background: #03264f; border-bottom: 3px solid #2aacac; overflow: hidden; }
  .show-banner-eyebrow { padding: .9rem 5rem .6rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.12); }
  .show-progress { display: none; } .show-progress-bar { display: none; }
  .show-stage { position: relative; overflow: hidden; }
  .show-slide { display: none; grid-template-columns: 1fr 46%; height: 280px; padding: 1.2rem 4rem 1.2rem 0; box-sizing: border-box; align-items: center; max-width: 1400px; margin: 0 auto; width: 100%; }
  .show-slide.active { display: grid; animation: showSlideIn .5s ease; }
  @keyframes showSlideIn { from { opacity:0; transform:translateX(12px); } to { opacity:1; transform:translateX(0); } }
  .show-info { padding: 1.8rem 5rem; display: flex; flex-direction: column; justify-content: center; gap: .4rem; min-width: 0; }
  .show-tag { font-size: .56rem; letter-spacing: .15em; text-transform: uppercase; color: #2aacac; font-weight: 600; min-height:0; }
  .show-name { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: #fff; line-height: 1.15; }
  .show-name em { font-style: italic; color: #4fc4c4; }
  .show-host { font-size: .7rem; color: rgba(255,255,255,.4); font-style: italic; font-weight: 300; }
  .show-desc { font-size: .76rem; color: rgba(255,255,255,.48); line-height: 1.65; font-weight: 300; max-width: 340px; }
  .show-cta-row { display: flex; align-items: center; gap: 1.2rem; margin-top: .35rem; flex-wrap: wrap; }
  .show-cta { display: inline-flex; align-items: center; gap: .4rem; font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: #2aacac; text-decoration: none; border-bottom: 1px solid rgba(42,172,172,.4); padding-bottom: .1rem; width: fit-content; transition: color .2s; }
  .show-cta:hover { color: #4fc4c4; }
  .show-cta-learn { opacity: .75; }
  .show-thumb { position: relative; overflow: hidden; height: 100%; background: #03264f; border-radius: 12px; min-width: 0; }
  .show-thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
  .show-details-btn { display: none; }
  .show-details-overlay { display: none; }
  .show-counter { position: absolute; bottom: .7rem; right: .9rem; font-size: .58rem; color: rgba(255,255,255,.28); letter-spacing: .08em; }
  .show-dots { display: flex; justify-content: center; align-items: center; gap: .55rem; padding: .7rem 0 .8rem; position: relative; z-index: 10; }
  .show-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.2); border: none; cursor: pointer; padding: 0; transition: all .25s; pointer-events: all; position: relative; z-index: 10; }
  .show-dot.active { background: #2aacac; transform: scale(1.35); }
  @media (max-width: 768px) {
    .show-slide { grid-template-columns: 1fr 60%; height: 200px; padding: 0; }
    .show-slide.active { display: grid; }
    .show-thumb { height: 200px; border-radius: 12px; }
    .show-info { padding: .65rem 1rem; gap: .15rem; justify-content: center; }
    .show-name { font-size: 1rem; line-height: 1.2; }
    .show-host { font-size: .58rem; }
    .show-desc { display: none; }
    .show-cta { font-size: .58rem; margin-top: .25rem; }
    .show-banner-eyebrow { padding: .5rem 1.5rem .4rem; font-size: .62rem; }
    .show-details-btn { display: inline-block; margin-bottom: .3rem; font-size: .62rem; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,.45); background: none; border: none; padding: 0; cursor: pointer; font-family: 'DM Sans', sans-serif; font-style: italic; }
    .show-details-overlay { display: none; position: absolute; inset: 0; background: rgba(3,38,79,0.97); z-index: 10; padding: 1.1rem 1.4rem; flex-direction: column; justify-content: center; gap: .35rem; }
    .show-details-overlay.show-details-open { display: flex; }
    .show-details-close { position: absolute; top: .6rem; right: .8rem; background: none; border: none; color: rgba(255,255,255,.5); font-size: 1rem; cursor: pointer; padding: .2rem; line-height: 1; }
    .show-overlay-name { font-size: 1.05rem; }
    .show-overlay-desc { display: block; font-size: .72rem; color: rgba(255,255,255,.6); line-height: 1.55; }
  }
  
  /* PAGE VISIBILITY */
  #landing-page { display: block; }
  #archive-page { display: none; }
  #archive-page.active { display: block; }

  /* ARCHIVE PAGE */
  #archive-page {
    padding-top: 0;

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --teal: #2aacac; --teal-light: #4fc4c4; --teal-pale: #e8f7f7;
      --navy: #03264f; --white: #ffffff; --off-white: #f7fbfb;
      --border: #ddeaea; --yt-red: #EA6F6F;
      --text: #03264f; --text-mid: #4a5a6a; --text-light: #8a9aaa;
      --copper: #B36924;
    }
    html { font-size: 16px; }
    body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

    /* NAV */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 3rem; background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
    .logo img { height: 36px; width: auto; display: block; }
    .nav-back { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
    .nav-back:hover { color: var(--teal); }
    .nav-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

    /* PAGE HEADER */
    .page-header { padding: 8rem 5rem 3rem; border-bottom: 1px solid var(--border); }
    .archive-back-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); text-decoration: none; margin-bottom: 1.5rem; transition: color 0.2s; }
    .archive-back-link:hover { color: var(--teal); }
    .page-eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 0.75rem; }
    .page-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 0.5rem; }
    .page-title em { font-style: italic; color: var(--teal); }
    .page-sub { font-size: 0.95rem; color: var(--text-mid); font-weight: 300; line-height: 1.65; max-width: 480px; }

    /* ── SERIES BANNER ── */
    .series-banner {
      background: var(--navy);
      border-bottom: 3px solid var(--teal);
    }
    .series-banner-label {
      padding: 0.7rem 5rem 0;
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      font-weight: 500;
    }
    .series-banner-shows {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid rgba(255,255,255,0.06);
      margin-top: 0.6rem;
    }
    .show-item {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 0.9rem 1.5rem;
      text-decoration: none;
      border-right: 1px solid rgba(255,255,255,0.06);
      transition: background 0.2s;
    }
    .show-item:last-child { border-right: none; }
    .show-item:hover { background: rgba(255,255,255,0.04); }
    .series-banner .show-thumb {
      position: relative;
      width: 60px;
      height: 40px;
      flex-shrink: 0;
      overflow: hidden;
      background: rgba(255,255,255,0.05);
    }
    .series-banner .show-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .show-overlay { position: absolute; inset: 0; background: rgba(3,38,79,0.35); }
    .show-play {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .show-soon-badge {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.5rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--copper);
      text-align: center; padding: 0 4px;
    }
    .show-info { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
    .show-name {
      font-family: 'Playfair Display', serif;
      font-size: 0.85rem;
      color: var(--white);
      font-weight: 700;
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .show-hosts {
      font-size: 0.62rem;
      color: rgba(255,255,255,0.4);
      font-weight: 300;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .show-item.coming .show-name { opacity: 0.45; }

    /* FILTER BAR */
    .filter-bar { position: sticky; top: 65px; z-index: 50; background: var(--white); border-bottom: 1px solid var(--border); padding: 0 5rem; display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; }
    .filter-bar::-webkit-scrollbar { display: none; }
    .filter-tab { padding: 1rem 1.2rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; white-space: nowrap; user-select: none; }
    .filter-tab:hover { color: var(--text); }
    .filter-tab.active { color: var(--teal); border-bottom-color: var(--teal); }
    .filter-count { display: inline-block; background: var(--teal-pale); color: var(--teal); font-size: 0.58rem; font-weight: 600; padding: 0.1rem 0.4rem; border-radius: 999px; margin-left: 0.3rem; vertical-align: middle; }
    .filter-tab.active .filter-count { background: var(--teal); color: var(--white); }

    /* RESULTS */
    .results-bar { padding: 1.5rem 5rem 0; display: flex; align-items: center; justify-content: space-between; }
    .results-count { font-size: 0.75rem; color: var(--text-light); }

    /* CONTENT GRID */
    .content-grid { padding: 1.5rem 5rem 5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

    .card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; text-decoration: none; color: inherit; }
    .card:hover { box-shadow: 0 8px 32px rgba(42,172,172,0.1); transform: translateY(-2px); }
    .card.hidden { display: none; }

    .card-thumb { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--off-white); }
    .card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
    .card:hover .card-thumb img { transform: scale(1.04); }

    /* Gradient placeholders by franchise */
    .thumb-good-day { background: linear-gradient(135deg, #2aacac 0%, #03264f 100%); }
    .thumb-new-girl { background: linear-gradient(135deg, #4fc4c4 0%, #1a3a6e 100%); }
    .thumb-afraid { background: linear-gradient(135deg, #03264f 0%, #2aacac 100%); }
    .thumb-clipped { background: linear-gradient(135deg, #1a3a6e 0%, #03264f 100%); }
    .thumb-instagram { background: linear-gradient(135deg, #f09433 0%, #bc1888 100%); }
    .thumb-bestof { background: linear-gradient(135deg, #2aacac 0%, #B36924 100%); }
    .thumb-calendar { background: linear-gradient(135deg, #B36924 0%, #03264f 100%); }

    .card-channel-badge { position: absolute; top: 0.7rem; left: 0.7rem; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 999px; backdrop-filter: blur(8px); }
    .badge-clipped { background: rgba(3,38,79,0.85); color: #fff; }
    .badge-youtube { background: rgba(204,0,0,0.9); color: #fff; }
    .badge-instagram { background: linear-gradient(135deg, rgba(240,148,51,0.9), rgba(188,24,136,0.9)); color: #fff; }
    .badge-bestof { background: rgba(42,172,172,0.9); color: #fff; }
    .badge-calendar { background: rgba(183,105,36,0.9); color: #fff; }

    .yt-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.15); transition: background 0.2s; }
    .card:hover .yt-play-overlay { background: rgba(0,0,0,0.3); }
    .yt-play-sm { width: 44px; height: 44px; border-radius: 50%; background: var(--yt-red); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0,0,0,0.3); transition: transform 0.2s; }
    .card:hover .yt-play-sm { transform: scale(1.1); }
    .yt-play-sm svg { width: 16px; height: 16px; fill: white; margin-left: 2px; }

    .card-body { padding: 1.1rem 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
    .card-meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
    .card-franchise { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
    .card-section { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); font-weight: 400; }
    .card-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
    .card-date { font-size: 0.62rem; color: var(--text-light); }
    .card-title { font-family: 'Playfair Display', serif; font-size: 1rem; line-height: 1.35; color: var(--text); font-weight: 700; }
    .card-excerpt { font-size: 0.78rem; color: var(--text-mid); line-height: 1.6; font-weight: 300; }
    .card-footer { margin-top: auto; padding-top: 0.75rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); }
    .card-source { font-size: 0.65rem; color: var(--text-light); }
    .card-arrow { font-size: 0.7rem; color: var(--teal); opacity: 0.6; transition: opacity 0.2s, transform 0.2s; }
    .card:hover .card-arrow { opacity: 1; transform: translateX(3px); }

    /* SPONSOR */

    /* MOBILE */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .logo img { height: 28px; }
      .page-header { padding: 6rem 1.5rem 2rem; }
      .series-banner-label { padding: 0.7rem 1.5rem 0; }
      .series-banner-shows { grid-template-columns: 1fr 1fr; }
      .show-item { padding: 0.75rem 1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
      .filter-bar { padding: 0 1.5rem; top: 60px; }
      .results-bar { padding: 1rem 1.5rem 0; }
      .content-grid { padding: 1rem 1.5rem 3rem; grid-template-columns: 1fr; gap: 1.2rem; }
    }
    @media (min-width: 769px) and (max-width: 1100px) {
      .content-grid { grid-template-columns: repeat(2, 1fr); }
    }
  }

  /* ── PRIVET IQ MODAL ─────────────────────────────────────────────────────── */
  .iq-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .iq-modal.active { opacity: 1; pointer-events: all; }
  .iq-modal-backdrop { position: absolute; inset: 0; background: rgba(3,38,79,0.5); backdrop-filter: blur(4px); }
  .iq-modal-panel { position: relative; z-index: 1; width: 100%; max-width: 720px; height: 82vh; max-height: 760px; background: var(--white); border-radius: 20px 20px 0 0; display: flex; flex-direction: column; overflow: hidden; transform: translateY(100%); transition: transform .35s cubic-bezier(.32,.72,0,1); box-shadow: 0 -8px 40px rgba(3,38,79,0.15); }
  .iq-modal.active .iq-modal-panel { transform: translateY(0); }
  .iq-modal-header { padding: 1rem 1.4rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
  .iq-modal-brand { display: flex; align-items: center; gap: .6rem; }
  .iq-modal-sparkle { color: var(--teal); font-size: 1.1rem; }
  .iq-modal-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
  .iq-modal-sub { font-size: .68rem; color: var(--text-light); }
  .iq-modal-close { background: none; border: none; font-size: 1.2rem; color: var(--text-light); cursor: pointer; padding: .25rem; line-height: 1; }
  .iq-modal-close:hover { color: var(--navy); }
  .iq-modal-messages { flex: 1; overflow-y: auto; padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 1.1rem; scroll-behavior: smooth; }
  .iq-msg { max-width: 88%; display: flex; flex-direction: column; gap: .3rem; }
  .iq-msg-user { align-self: flex-end; background: var(--navy); color: white; padding: .85rem 1.1rem; border-radius: 18px 18px 4px 18px; font-size: .9rem; line-height: 1.6; }
  .iq-msg-ai-wrap { align-self: flex-start; display: flex; align-items: flex-start; gap: .6rem; max-width: 100%; }
  .iq-msg-ai-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem; }
  .iq-msg-ai-avatar svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2; }
  .iq-msg-ai { background: #f4f7fa; border: 1px solid rgba(0,0,0,0.07); padding: .9rem 1.1rem; border-radius: 4px 18px 18px 18px; font-size: .9rem; line-height: 1.75; color: var(--text); flex: 1; }
  .iq-msg-ai.loading { color: var(--text-light); }
  @keyframes dots { 0%,100%{content:'.'} 33%{content:'..'} 66%{content:'...'} }
  .iq-modal-chips { padding: .6rem 1.4rem; display: flex; flex-wrap: wrap; gap: .4rem; flex-shrink: 0; border-top: 1px solid var(--border); }
  .iq-modal-chip { background: var(--teal-pale); border: 1px solid rgba(42,172,172,.3); color: var(--teal); font-size: .7rem; padding: .3rem .7rem; border-radius: 999px; cursor: pointer; transition: all .2s; white-space: nowrap; }
  .iq-modal-chip:hover { background: var(--teal); color: white; }
  .iq-modal-input-row { padding: .85rem 1.4rem; border-top: 1px solid var(--border); display: flex; gap: .6rem; align-items: center; flex-shrink: 0; }
  .iq-modal-input { flex: 1; padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-family: inherit; font-size: .9rem; outline: none; transition: border .2s; }
  .iq-modal-input:focus { border-color: var(--teal); }
  .iq-modal-send { background: var(--teal); border: none; color: white; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
  .iq-modal-send:hover { background: #229999; }
  .iq-modal-send svg { width: 16px; height: 16px; }
  .iq-disclaimer-small { font-size: .62rem; color: var(--text-light); text-align: center; padding: .3rem 1.4rem .1rem; flex-shrink: 0; }
  @media (max-width: 768px) {
    .iq-modal-panel { height: 92vh; max-height: none; border-radius: 16px 16px 0 0; }
  }

  /* ── SCROLL REVEAL ──────────────────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0s; }
  .reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 0.1s; }
  .reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 0.2s; }
  .reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 0.3s; }
  .reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay: 0.4s; }

