@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  /* Cinematic editorial: warm near-black ink, ivory paper, single rust accent */
  --bg: #0d0c0b;
  --ink-0: #131210;
  --ink-1: #1a1815;
  --ink-2: #25221d;
  --ink-3: #36322b;
  --line: rgba(245, 240, 230, 0.10);
  --line-strong: rgba(245, 240, 230, 0.22);
  --paper: #f5f0e6;
  --paper-2: #ebe5d8;
  --muted: rgba(245, 240, 230, 0.62);
  --muted-soft: rgba(245, 240, 230, 0.42);

  --rust: #b04a2e;
  --rust-2: #c26447;
  --rust-soft: #d28d72;

  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Fraunces", "Times New Roman", serif;

  /* legacy aliases, keep so any inline styles still resolve */
  --red: var(--rust);
  --red-2: var(--rust-2);
  --red-deep: var(--rust);
  --violet: var(--rust);
  --electric: var(--rust);

  color-scheme: dark;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

img { display: block; max-width: 100%; }

::selection {
  background: var(--paper);
  color: var(--ink-0);
}

/* ---------- LAYOUT ---------- */

.rtv-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px;
}

@media (max-width: 780px) {
  .rtv-wrap { padding: 0 24px; }
}

.rtv-section {
  position: relative;
  padding: 140px 0;
}

@media (max-width: 780px) {
  .rtv-section { padding: 88px 0; }
}

.rtv-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.rtv-eyebrow .dot { display: none; }

.rtv-display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.0;
  text-transform: none;
  margin: 0;
  color: var(--paper);
}

.rtv-display em {
  font-style: italic;
  color: var(--paper);
  font-weight: 300;
}

.rtv-display .underline {
  background: none;
  padding: 0;
  font-style: italic;
}

.rtv-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* ---------- NAV ---------- */

.rtv-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(13, 12, 11, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.rtv-nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(13, 12, 11, 0.94);
}

.rtv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.rtv-nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.rtv-nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
  transition: color 0.2s;
}

.rtv-nav-links a:hover { color: var(--paper); }

.rtv-nav-cta {
  display: flex;
  gap: 24px;
  align-items: center;
}

@media (max-width: 880px) {
  .rtv-nav-links { display: none; }
}

@media (max-width: 560px) {
  .rtv-nav-cta .ghost { display: none; }
}

/* ---------- BUTTONS ---------- */

.rtv-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 0;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}

.rtv-btn:hover { transform: none; }

.rtv-btn-primary {
  background: var(--paper);
  color: var(--ink-0);
  box-shadow: none;
}

.rtv-btn-primary:hover {
  background: var(--rust-soft);
  box-shadow: none;
  color: var(--ink-0);
}

.rtv-btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-strong);
}

.rtv-btn-ghost:hover {
  border-color: var(--paper);
  background: transparent;
}

.rtv-btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: var(--rust);
}

.rtv-btn-outline:hover {
  background: var(--rust);
  color: var(--paper);
  border-color: var(--rust);
}

.rtv-btn-arrow {
  display: inline-flex;
  transition: transform 0.2s;
}

.rtv-btn:hover .rtv-btn-arrow { transform: translateX(3px); }

/* in nav: smaller, link-like */

.rtv-nav-cta .rtv-btn-ghost.ghost {
  padding: 0 !important;
  border: 0;
  font-size: 13px !important;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.rtv-nav-cta .rtv-btn-ghost.ghost:hover {
  color: var(--paper);
  background: transparent;
}

.rtv-nav-cta .rtv-btn-primary {
  padding: 11px 20px !important;
  font-size: 12.5px !important;
  letter-spacing: 0.04em;
}

/* ---------- LOGO ---------- */

.rtv-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.rtv-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.rtv-logo-mark::before { display: none; }

.rtv-logo-mark svg {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
}

.rtv-logo-mark svg path { fill: var(--rust-soft); }

.rtv-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.rtv-logo-text .name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.012em;
  color: var(--paper);
}

.rtv-logo-text .name em {
  color: var(--paper);
  font-style: italic;
  font-weight: 300;
}

.rtv-logo-text .tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ---------- HERO ---------- */

.rtv-hero {
  position: relative;
  padding: 72px 0 120px;
  overflow: hidden;
}

.rtv-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.rtv-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 980px) {
  .rtv-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.rtv-hero-headline {
  font-size: clamp(56px, 8.4vw, 124px);
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.rtv-hero-sub {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
  margin: 32px 0 40px;
  font-weight: 400;
}

.rtv-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.rtv-hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.rtv-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rtv-hero-meta span svg {
  color: var(--rust-soft);
}

/* ---------- VIDEO TILE ---------- */

.rtv-video-tile {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-1);
  border: 0;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
  transition: none;
}

.rtv-video-tile:hover {
  transform: none;
  border-color: transparent;
}

.rtv-video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.rtv-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 12, 11, 0.05) 0%, transparent 30%, transparent 60%, rgba(13, 12, 11, 0.85) 100%);
  pointer-events: none;
}

.rtv-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: rgba(245, 240, 230, 0.95);
  display: grid;
  place-items: center;
  color: var(--ink-0);
  border: 0;
  box-shadow: none;
  animation: none;
  transition: background 0.25s ease;
}

.rtv-video-play svg {
  fill: var(--ink-0) !important;
  margin-left: 4px;
}

.rtv-video-play:hover {
  background: var(--paper);
}

@keyframes rtv-pulse { 0%, 100% { box-shadow: none; } }

.rtv-video-meta {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  color: var(--paper);
}

.rtv-video-meta .show-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.012em;
  line-height: 1.1;
}

.rtv-video-meta .show-sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.rtv-video-meta .runtime {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: 0;
  color: var(--paper);
}

.rtv-live-tag {
  position: absolute;
  top: 24px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  font-weight: 500;
  border-radius: 0;
  text-transform: uppercase;
}

.rtv-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--rust-soft);
  animation: none;
}

@keyframes rtv-blink { 0%, 100% { opacity: 1; } }

.rtv-social-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.rtv-social-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  border: 0;
  display: inline-grid;
  place-items: center;
  color: var(--muted);
  transition: color 0.2s;
  padding: 4px;
}

.rtv-social-icon:hover {
  color: var(--paper);
  border-color: transparent;
  background: transparent;
}

/* ---------- SECTION HEADER ---------- */

.rtv-sec-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

@media (max-width: 880px) {
  .rtv-sec-head {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
}

.rtv-sec-head h2 {
  font-size: clamp(40px, 5.6vw, 76px);
  margin: 22px 0 0;
  letter-spacing: -0.025em;
  line-height: 1.0;
}

.rtv-sec-head p {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
  font-weight: 400;
}

/* ---------- DIVIDER ---------- */

.rtv-divider {
  position: relative;
  border-top: 1px solid var(--line);
}

/* ---------- CHANNEL GRID ---------- */

.rtv-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .rtv-channel-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

.rtv-channel-card {
  position: relative;
  padding: 36px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  min-height: 0;
  overflow: hidden;
  transition: padding-left 0.3s ease;
  cursor: default;
}

.rtv-channel-card::after { display: none; }

.rtv-channel-card:hover {
  transform: none;
  border-color: var(--line);
  background: transparent;
  padding-left: 12px;
}

.rtv-channel-icon {
  display: inline-grid;
  place-items: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--rust-soft);
  border: 0;
  margin-bottom: 14px;
}

.rtv-channel-card .name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--paper);
}

.rtv-channel-card .desc {
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.55;
  max-width: 42ch;
}

.rtv-channel-card .count {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--rust-soft);
  text-transform: none;
  white-space: nowrap;
}

/* ---------- FLOW ---------- */

.rtv-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

@media (max-width: 880px) {
  .rtv-flow { grid-template-columns: 1fr; }
}

.rtv-flow-step {
  position: relative;
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rtv-flow-step:last-child { border-right: 0; }

@media (max-width: 880px) {
  .rtv-flow-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
  }
  .rtv-flow-step:last-child { border-bottom: 0; }
}

.rtv-flow-step .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--rust-soft);
  text-transform: none;
}

.rtv-flow-step .title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.4rem;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--paper);
}

.rtv-flow-step .body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.rtv-flow-step .icon-wrap {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  display: inline-grid;
  place-items: end;
  border: 0;
}

/* ---------- SHOW TILES ---------- */

.rtv-show-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .rtv-show-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .rtv-show-grid { grid-template-columns: 1fr; }
}

.rtv-show-tile {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--ink-1);
  border: 0;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.rtv-show-tile:hover {
  transform: none;
  border-color: transparent;
}

.rtv-show-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: saturate(0.85) contrast(1.02);
}

.rtv-show-tile:hover img {
  transform: scale(1.03);
}

.rtv-show-tile .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 12, 11, 0.92));
  pointer-events: none;
}

.rtv-show-tile .info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.rtv-show-tile .info .label {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--rust-soft);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.rtv-show-tile .info h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
  color: var(--paper);
}

.rtv-show-tile .play-mini {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(245, 240, 230, 0.95);
  display: grid;
  place-items: center;
  color: var(--ink-0);
  flex-shrink: 0;
  transition: background 0.3s;
}

.rtv-show-tile .play-mini svg {
  fill: var(--ink-0) !important;
  margin-left: 2px;
}

.rtv-show-tile:hover .play-mini { transform: none; background: var(--paper); }

/* ---------- LEGACY STRIP ---------- */

.rtv-legacy {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: start;
}

@media (max-width: 980px) {
  .rtv-legacy {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.rtv-legacy-credits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.rtv-legacy-card {
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 28px;
}

.rtv-legacy-card .yr {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--rust-soft);
  text-transform: none;
}

.rtv-legacy-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--paper);
  grid-column: 2;
}

.rtv-legacy-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  grid-column: 2;
}

/* ---------- AI BLOCK ---------- */

.rtv-ai {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 980px) {
  .rtv-ai {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.rtv-ai-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink-1);
  min-height: 520px;
  aspect-ratio: 4 / 5;
}

.rtv-ai-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
}

.rtv-ai-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 12, 11, 0.55));
  pointer-events: none;
}

.rtv-ai-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.rtv-ai-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  align-items: start;
  transition: padding-left 0.3s ease;
}

.rtv-ai-row:hover {
  border-color: var(--line);
  background: transparent;
  padding-left: 12px;
}

.rtv-ai-row .ic { display: none; }

.rtv-ai-row h5 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: -0.018em;
  margin: 0 0 8px;
  line-height: 1.1;
  color: var(--paper);
}

.rtv-ai-row p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}

/* ---------- SERVICES ---------- */

.rtv-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .rtv-services { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .rtv-services { grid-template-columns: 1fr; }
}

.rtv-svc {
  padding: 36px 28px 36px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  transition: background 0.25s;
}

.rtv-svc:nth-child(3n) { border-right: 0; padding-right: 0; }

.rtv-svc:hover {
  border-color: var(--line);
  background: var(--ink-0);
  transform: none;
}

.rtv-svc .ic {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--rust-soft);
  display: inline-grid;
  place-items: start;
  border: 0;
  padding-left: 28px;
}

.rtv-svc h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 0;
  padding-left: 28px;
  color: var(--paper);
}

.rtv-svc p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  padding-left: 28px;
}

@media (max-width: 980px) {
  .rtv-svc:nth-child(3n) { border-right: 1px solid var(--line); padding-right: 28px; }
  .rtv-svc:nth-child(2n) { border-right: 0; padding-right: 0; }
}

@media (max-width: 560px) {
  .rtv-svc { border-right: 0 !important; padding-right: 0 !important; }
}

/* ---------- NETWORK ---------- */

.rtv-network {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 980px) {
  .rtv-network {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.rtv-network-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.rtv-network-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: padding-left 0.3s ease;
  gap: 28px;
}

.rtv-network-row:hover {
  border-color: var(--line);
  background: transparent;
  padding-left: 12px;
}

.rtv-network-row .name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: -0.018em;
  color: var(--paper);
}

.rtv-network-row .role {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14.5px;
  letter-spacing: 0;
  color: var(--muted);
  text-transform: none;
  margin-top: 6px !important;
}

/* ---------- CTA ---------- */

.rtv-cta {
  position: relative;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.rtv-cta::after { display: none; }

@media (max-width: 780px) {
  .rtv-cta { padding: 0; }
}

/* ---------- FOOTER ---------- */

.rtv-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background: var(--bg);
}

.rtv-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}

@media (max-width: 780px) {
  .rtv-footer-grid {
    grid-template-columns: 1fr;
  }
}

.rtv-footer-grid h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 500;
}

.rtv-footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rtv-footer-grid li a {
  font-size: 14px;
  color: var(--paper);
  transition: color 0.2s;
}

.rtv-footer-grid li a:hover { color: var(--rust-soft); }

.rtv-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
  letter-spacing: 0;
}

@media (max-width: 560px) {
  .rtv-footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
}

/* ---------- REVEAL ---------- */

.rtv-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.rtv-reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .rtv-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
body[data-renderer-key="retailing-tv-home"] {
    background: #0d0c0b !important;
    color: #f5f0e6 !important;
  }