/* Greater Love TV · Cinematic · reset, typography, layout utilities */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: none; /* Manrope turns (c) into © otherwise */
}
body.has-header { padding-top: var(--header-h); }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration-color: var(--red); text-underline-offset: 0.18em; }
a:hover { text-decoration-color: var(--text); }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: var(--lh-snug); letter-spacing: -0.02em; }
h1 { font-size: var(--fs-display); line-height: var(--lh-tight); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
blockquote { margin: 0; }
address { font-style: normal; }
input, select, textarea { font: inherit; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; box-shadow: var(--glow); border-radius: var(--r-sm); }
::selection { background: var(--red); color: #fff; }

.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 1000;
  padding: var(--s-3) var(--s-4); background: var(--red); color: #fff; font-weight: 700;
  border-radius: var(--r-sm); text-decoration: none;
}
.skip-link:focus { top: var(--s-4); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* layout */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--s-6); }
.section--dark { background: var(--surface-1); }
.measure { max-width: var(--measure); }
.lede { font-size: var(--fs-lg); color: var(--muted); max-width: var(--measure); }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; width: 10px; height: 2px; background: var(--red); border-radius: 2px; }
.eyebrow--plain::before { display: none; }
.stack > * + * { margin-top: var(--s-4); }
.stack > *, .grid > *, .split > *, .cluster > * { min-width: 0; }
.cluster { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.grid { display: grid; gap: var(--s-4); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.split { display: grid; gap: var(--s-6); align-items: start; }
@media (min-width: 1024px) { .split { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); } }
.tabular { font-variant-numeric: tabular-nums; }
.back-link { display: inline-flex; align-items: center; gap: var(--s-2); color: var(--muted); font-size: var(--fs-sm); font-weight: 700; text-decoration: none; }
.back-link:hover { color: var(--text); }
.back-link::before { content: "←"; }
hr.rule { border: 0; border-top: 1px solid var(--line); margin: var(--s-6) 0; }
.hide-mobile { display: none; }
@media (min-width: 1024px) { .hide-mobile { display: initial; } .hide-desktop { display: none !important; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
