/* Greater Love TV · Cinematic · components */

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 44px; padding: 0.6rem 1.15rem; border-radius: var(--r-pill);
  font-weight: 800; font-size: var(--fs-sm); letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform var(--dur) var(--ease), background var(--dur), border-color var(--dur), box-shadow var(--dur);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 0 24px var(--red-glow); }
.btn--primary:hover { background: var(--red-hover); }
.btn--secondary { background: var(--text); color: #000; }
.btn--secondary:hover { background: #e6e6e6; }
.btn--ghost { background: rgba(255,255,255,0.08); color: var(--text); border-color: var(--line-strong); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,0.14); }
.btn--live::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.25); animation: pulse 1.6s infinite; }
.btn--lg { min-height: 52px; padding: 0.8rem 1.6rem; font-size: var(--fs-md); }
.btn--block { width: 100%; }
.btn--phone { flex-direction: column; gap: 0; line-height: 1.15; padding-block: 0.4rem; }
.btn--phone small { font-weight: 600; font-size: var(--fs-xs); color: var(--muted); }
.btn-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid var(--line-strong); color: var(--text); cursor: pointer; }
.btn-icon:hover { background: rgba(255,255,255,0.16); }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.25); } 50% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } }

/* ---------- tag chips ---------- */
.tags { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.tags--nowrap { flex-wrap: nowrap; overflow: hidden; }
.tag {
  display: inline-flex; align-items: center; gap: 0.35em; min-height: 28px; padding: 0.15rem 0.7rem;
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.02em; color: var(--text); text-decoration: none;
  background: rgba(255,255,255,0.04); white-space: nowrap; transition: background var(--dur), border-color var(--dur), box-shadow var(--dur);
}
.tag:hover { border-color: var(--text); background: rgba(255,255,255,0.1); }
.tag--active, .tag[aria-pressed="true"], .tag[aria-current="true"] { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 18px var(--red-glow); }
.tag--more { color: var(--muted); border-style: dashed; }
.tag--family-topic { border-color: rgba(201,35,45,0.6); }
.tag--lg { min-height: 40px; padding: 0.35rem 1rem; font-size: var(--fs-sm); }

/* horizontally scrolling tag bar (filter) */
.tagbar { position: relative; margin-inline: calc(-1 * var(--gutter)); }
.tagbar__track {
  display: flex; gap: var(--s-2); padding: var(--s-2) var(--gutter); overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.tagbar__track::-webkit-scrollbar { display: none; }
.tagbar__track > * { flex: 0 0 auto; scroll-snap-align: start; }
.tagbar__group { display: inline-flex; align-items: center; gap: var(--s-2); }
.tagbar__group + .tagbar__group::before { content: ""; width: 1px; height: 22px; background: var(--line-strong); margin-inline: var(--s-2); }
.tagbar__label { font-size: var(--fs-xs); font-weight: 800; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--muted); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0));
  transition: background var(--dur), border-color var(--dur);
  border-bottom: 1px solid transparent;
}
.site-header--solid { background: rgba(0,0,0,0.96); border-bottom-color: var(--line); }
.site-header__inner { display: flex; align-items: center; gap: var(--s-4); height: 100%; }
.brand { display: inline-flex; align-items: center; gap: var(--s-3); text-decoration: none; font-weight: 800; letter-spacing: 0.08em; font-size: var(--fs-sm); white-space: nowrap; }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand__word { display: none; }
@media (min-width: 480px) { .brand__word { display: inline; } }
.site-nav { display: none; margin-inline: auto; }
.site-nav__list { display: flex; gap: var(--s-1); }
.site-nav__list a {
  display: inline-block; padding: 0.45rem 0.8rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: var(--fs-sm); color: var(--muted); text-decoration: none; white-space: nowrap; transition: color var(--dur), background var(--dur);
}
.site-nav__list a:hover { color: var(--text); background: rgba(255,255,255,0.08); }
.site-nav__list a[aria-current="page"] { color: var(--text); box-shadow: inset 0 -2px 0 var(--red); border-radius: 0; }
.header-actions { display: flex; gap: var(--s-2); margin-left: auto; align-items: center; }
.header-actions .btn--phone { display: none; }
.header-actions .btn--live { display: none; }
.nav-toggle { display: inline-flex; }
.nav-toggle .bars { position: relative; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--dur); }
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1024px) {
  .site-nav { display: block; }
  .site-nav__list { gap: 0; }
  .header-actions .btn--live { display: inline-flex; }
  .header-actions .btn-icon--watch, .nav-toggle { display: none; }
}
@media (min-width: 1200px) {
  .site-nav__list { gap: var(--s-1); }
  .site-nav__list a { font-size: var(--fs-md); }
  .header-actions .btn--phone { display: inline-flex; }
  .header-actions .btn-icon--call { display: none; }
}
.mobile-panel {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 99;
  background: rgba(0,0,0,0.97); padding: var(--s-5) var(--gutter) var(--s-8); overflow-y: auto;
}
.mobile-panel[hidden] { display: none; }
.mobile-panel__list a { display: block; padding: var(--s-4) 0; border-bottom: 1px solid var(--line); font-size: var(--fs-xl); font-weight: 800; text-decoration: none; }
.mobile-panel__list a[aria-current="page"] { color: var(--red-hover); }
.mobile-panel__contact { margin-top: var(--s-5); display: grid; gap: var(--s-3); }

/* ---------- hero stage (live player) ---------- */
.stage {
  position: relative; min-height: 70vh; display: grid; align-items: end; isolation: isolate;
  background: radial-gradient(120% 80% at 70% 20%, rgba(201,35,45,0.45), rgba(0,0,0,0) 60%), #000;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  overflow: hidden;
}
.stage--tall { min-height: 84vh; }
.stage__video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; background: #000; }
.stage__scrim { position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.75) 30%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.6) 100%); }
.stage__content { position: relative; padding-block: var(--s-6) var(--s-7); display: grid; gap: var(--s-4); justify-items: start; }
.stage__content > * { max-width: 900px; }
.stage__content .stage__player-bar { width: 100%; max-width: 900px; }
.stage__tagline { font-size: var(--fs-xl); font-weight: 600; color: var(--muted); font-style: italic; }
.stage__topline { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3); }
.stage__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-2); }
.stage__player-bar { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3); padding-block: var(--s-3); border-top: 1px solid var(--line); }
.stage__player-bar .muted { font-size: var(--fs-sm); }
.live-pill {
  display: inline-flex; align-items: center; gap: 0.5em; min-height: 32px; padding: 0.2rem 0.8rem 0.2rem 0.6rem;
  border-radius: var(--r-pill); background: rgba(0,0,0,0.6); border: 1px solid var(--line-strong);
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: var(--track-caps); text-transform: uppercase;
}
.live-pill::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px var(--red-glow); }
.live-pill--live::before { animation: pulse-red 1.6s infinite; }
.live-pill--error::before { background: var(--muted); box-shadow: none; }
@keyframes pulse-red { 0%, 100% { box-shadow: 0 0 0 4px var(--red-glow); } 50% { box-shadow: 0 0 0 8px rgba(201,35,45,0); } }
.player-controls { display: flex; gap: var(--s-2); flex-wrap: wrap; }

/* ---------- theatre (in-page player on show pages) ---------- */
.theatre { position: relative; aspect-ratio: 16 / 9; background: radial-gradient(90% 90% at 50% 10%, rgba(201,35,45,0.35), #000 70%); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.theatre video { width: 100%; height: 100%; object-fit: cover; }
.theatre__badge { position: absolute; top: var(--s-4); left: var(--s-4); }
.theatre__controls { position: absolute; right: var(--s-4); bottom: var(--s-4); display: flex; gap: var(--s-2); }
.theatre__status { position: absolute; left: var(--s-4); bottom: var(--s-4); }

/* ---------- rails ---------- */
.rail { padding-block: var(--s-5); }
.rail__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--s-3) var(--s-4); margin-bottom: var(--s-4); }
.rail__head > :first-child { flex: 1 1 260px; min-width: 0; }
.rail__title { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3); }
.rail__title h2, .rail__title h3 { font-size: var(--fs-2xl); }
.rail__sub { color: var(--muted); margin-top: var(--s-1); }
.rail__nav { display: none; gap: var(--s-2); flex: none; }
@media (min-width: 768px) { .rail__nav { display: flex; } }
.rail__nav[hidden] { display: none; }
.rail__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--surface-2); color: var(--text); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.rail__arrow:hover { background: var(--surface-3); }
.rail__arrow:disabled { opacity: 0.35; cursor: default; }
.rail__viewport { margin-inline: calc(-1 * var(--gutter)); }
.rail__track {
  display: flex; gap: var(--s-4); padding: var(--s-2) var(--gutter) var(--s-4);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.rail__track::-webkit-scrollbar { display: none; }
.rail__track > * { flex: 0 0 auto; scroll-snap-align: start; }
.rail__link { color: var(--muted); font-size: var(--fs-sm); font-weight: 700; white-space: nowrap; }

/* ---------- cards ---------- */
.card {
  position: relative; display: flex; flex-direction: column; background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; color: inherit; text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.card:hover, .card:focus-within { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lift); border-color: var(--line-strong); z-index: 1; }
.card__media { position: relative; overflow: hidden; background: var(--surface-2); }
.card--wide { width: min(78vw, 360px); }
.card--wide .card__media { aspect-ratio: 16 / 9; }
.card--tall { width: min(48vw, 200px); }
.card--tall .card__media { aspect-ratio: 2 / 3; }
.card--fluid { width: auto; }
.card__body { padding: var(--s-4); display: grid; gap: var(--s-2); align-content: start; flex: 1; }
.card__title { font-size: var(--fs-md); font-weight: 800; line-height: 1.25; }
.card__title a { text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__meta { color: var(--muted); font-size: var(--fs-sm); }
.card__text { color: var(--muted); font-size: var(--fs-sm); }
.card .tags { position: relative; z-index: 1; }
.card__badge { position: absolute; top: var(--s-3); left: var(--s-3); z-index: 1; }
.card__play { position: absolute; right: var(--s-3); bottom: var(--s-3); width: 40px; height: 40px; border-radius: 50%; background: var(--red); display: grid; place-items: center; box-shadow: 0 0 20px var(--red-glow); }
.card__play svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }
.card--topic .card__body { padding: var(--s-5); }
.card--topic .card__title { font-size: var(--fs-xl); }
.card--big .card__title { font-size: var(--fs-xl); }
.card--flat:hover { transform: none; box-shadow: none; }

/* poster placeholders (no artwork yet) */
.poster {
  position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden;
  background:
    radial-gradient(70% 60% at calc(15% + var(--seed, 0) * 9%) calc(25% + var(--seed, 0) * 5%), rgba(201,35,45,0.75), rgba(201,35,45,0) 70%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 12px),
    linear-gradient(160deg, var(--surface-3), #000);
}
.poster__initials { font-size: clamp(2rem, 10vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; color: rgba(255,255,255,0.92); text-shadow: 0 6px 30px rgba(0,0,0,0.7); }
.card--tall .poster__initials { font-size: clamp(2rem, 8vw, 3rem); }
.poster__label { position: absolute; left: var(--s-3); bottom: var(--s-3); right: var(--s-3); font-size: var(--fs-xs); font-weight: 800; letter-spacing: var(--track-caps); text-transform: uppercase; color: rgba(255,255,255,0.7); }
.poster--book { background: linear-gradient(100deg, var(--surface-3) 0 6%, var(--red-deep) 6% 8%, var(--surface-2) 8%), #000; }
.poster--book .poster__initials { font-size: 2rem; }
.poster--event { background: radial-gradient(80% 80% at 80% 100%, rgba(201,35,45,0.7), transparent 60%), linear-gradient(180deg, #1B1B1B, #000); }
.poster--live { background: radial-gradient(60% 60% at 50% 40%, rgba(201,35,45,0.6), transparent 70%), #000; }

/* ---------- crisis strip ---------- */
.crisis-strip {
  border-block: 2px solid var(--red); background: linear-gradient(90deg, rgba(201,35,45,0.18), rgba(201,35,45,0.04));
  padding: var(--s-4) 0;
}
.crisis-strip__inner { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3) var(--s-5); font-weight: 700; }
.crisis-strip__inner a { color: #fff; font-weight: 800; }
.crisis-strip .eyebrow { color: #fff; }

/* ---------- search ---------- */
.search { display: grid; gap: var(--s-3); max-width: 720px; }
.search > * { min-width: 0; }
.search__field { display: flex; align-items: center; gap: var(--s-2); padding: 0 var(--s-2) 0 var(--s-4); background: var(--surface-1); border: 1px solid var(--line-strong); border-radius: var(--r-pill); min-height: 56px; }
.search__field:focus-within { border-color: var(--text); box-shadow: var(--glow); }
.search__field svg { width: 20px; height: 20px; flex: none; color: var(--muted); }
.search__field input { flex: 1 1 0; width: 0; min-width: 0; background: transparent; border: 0; color: var(--text); font-size: var(--fs-lg); min-height: 44px; }
.search__field input::placeholder { color: var(--muted); }
.search__field input:focus { outline: none; box-shadow: none; }
.search__status { color: var(--muted); font-size: var(--fs-sm); min-height: 1.5em; }
.field { display: grid; gap: var(--s-2); }
.field label { font-size: var(--fs-xs); font-weight: 800; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--muted); }
.field input { min-height: 52px; padding: 0 var(--s-4); border-radius: var(--r-md); border: 1px solid var(--line-strong); background: var(--surface-1); color: var(--text); font-size: var(--fs-lg); width: 100%; }
.field input::placeholder { color: var(--muted); }
.field input:focus-visible { border-color: var(--text); }
.field__hint { color: var(--muted); font-size: var(--fs-sm); }
.form-row { display: grid; gap: var(--s-3); }
.form-row > * { min-width: 0; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr auto; align-items: end; } }

/* ---------- tiles, stats, lists ---------- */
.tile { display: flex; flex-direction: column; justify-content: space-between; gap: var(--s-3); min-height: 120px; padding: var(--s-4); background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md); text-decoration: none; transition: transform var(--dur) var(--ease), border-color var(--dur), background var(--dur); }
.tile:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--surface-2); }
.tile__title { font-weight: 800; }
.tile__meta { color: var(--muted); font-size: var(--fs-sm); }
.tile svg { width: 28px; height: 28px; }
.tile--accent { border-color: rgba(201,35,45,0.5); background: linear-gradient(160deg, rgba(201,35,45,0.18), var(--surface-1)); }
.stat { display: grid; gap: 0.15rem; padding: var(--s-4) var(--s-5); border-left: 2px solid var(--red); }
.stat__num { font-size: var(--fs-2xl); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat__label { color: var(--muted); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: var(--track-caps); font-weight: 800; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--s-3); }
.chip-list { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.chip { display: inline-flex; align-items: center; gap: 0.4em; padding: 0.35rem 0.8rem; border-radius: var(--r-sm); background: var(--surface-2); border: 1px solid var(--line); font-weight: 700; font-size: var(--fs-sm); }
.chip strong { color: var(--text); }

.schedule-list { display: grid; gap: var(--s-3); }
.schedule-row { display: grid; grid-template-columns: 1fr; gap: var(--s-3) var(--s-4); align-items: center; padding: var(--s-4); background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md); }
@media (min-width: 480px) { .schedule-row { grid-template-columns: auto 1fr; } }
.schedule-row > * { min-width: 0; }
.schedule-row__time { font-weight: 800; font-size: var(--fs-lg); }
@media (min-width: 480px) { .schedule-row__time { white-space: nowrap; } }
.schedule-row__slot { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: var(--track-caps); color: var(--muted); font-weight: 800; }
.schedule-row--featured { border-color: rgba(201,35,45,0.6); box-shadow: 0 0 30px rgba(201,35,45,0.15); }
.schedule-row--featured .schedule-row__slot { color: var(--red-hover); }
.schedule-row__actions { grid-column: 1 / -1; }
@media (min-width: 768px) { .schedule-row { grid-template-columns: 140px 1fr auto; } .schedule-row__actions { grid-column: auto; } }

.episode-list { display: grid; gap: var(--s-2); }
.episode > * { min-width: 0; }
.episode { display: grid; grid-template-columns: 44px 1fr; gap: var(--s-3); align-items: center; padding: var(--s-3) var(--s-4); background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md); }
.episode__num { font-weight: 800; color: var(--muted); font-size: var(--fs-lg); }
.episode__title { font-weight: 800; }
.episode__meta { color: var(--muted); font-size: var(--fs-sm); }
.episode__play { grid-column: 1 / -1; }
@media (min-width: 768px) { .episode { grid-template-columns: 44px 1fr auto; } .episode__play { grid-column: auto; } }

.station-list { display: grid; gap: var(--s-2); }
.station > * { min-width: 0; }
.station { display: grid; grid-template-columns: 1fr auto; gap: var(--s-2) var(--s-4); align-items: center; padding: var(--s-3) var(--s-4); background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md); }
.station__place { font-weight: 800; }
.station__market { color: var(--muted); font-size: var(--fs-sm); }
.station__signal { text-align: right; font-weight: 800; white-space: nowrap; }
.station__signal small { display: block; color: var(--muted); font-weight: 600; }
.station--match { border-color: var(--red); box-shadow: 0 0 20px rgba(201,35,45,0.2); }
.sat-card { padding: var(--s-5); background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md); display: grid; gap: var(--s-2); }
.sat-card__reach { font-size: var(--fs-2xl); font-weight: 800; letter-spacing: -0.03em; }

.next-step { display: grid; gap: var(--s-2); padding: var(--s-5); background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md); text-decoration: none; transition: transform var(--dur) var(--ease), border-color var(--dur); }
.next-step:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.next-step strong { font-size: var(--fs-lg); }
.next-step span { color: var(--muted); font-size: var(--fs-sm); }

.scripture { padding: var(--s-6); border-left: 3px solid var(--red); background: var(--surface-1); border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.scripture p { font-size: var(--fs-2xl); font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; }
.scripture cite { display: block; margin-top: var(--s-3); color: var(--muted); font-style: normal; font-weight: 700; }

.callout { padding: var(--s-5); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface-1); }
.callout--red { border-color: rgba(201,35,45,0.6); background: linear-gradient(120deg, rgba(201,35,45,0.2), var(--surface-1) 60%); }
.notice { color: var(--muted); font-size: var(--fs-sm); }

/* ---------- give strip ---------- */
.give-strip { background: linear-gradient(90deg, var(--red-deep), var(--red)); color: #fff; padding: var(--s-6) 0; }
.give-strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4); }
.give-strip .eyebrow { color: rgba(255,255,255,0.85); }
.give-strip .eyebrow::before { background: #fff; }
.give-strip h2 { font-size: var(--fs-2xl); }
.give-strip .btn--secondary { background: #fff; color: var(--red-deep); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface-1); padding-block: var(--s-8) var(--s-9); }
.site-footer__grid { display: grid; gap: var(--s-6); }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.4fr; } }
.site-footer h2 { font-size: var(--fs-xs); font-weight: 800; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--muted); margin-bottom: var(--s-3); }
.site-footer__links a { display: block; padding: var(--s-1) 0; font-weight: 700; text-decoration: none; color: var(--muted); }
.site-footer__links a:hover { color: var(--text); }
.site-footer__legal { margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--line); display: grid; gap: var(--s-3); color: var(--muted); font-size: var(--fs-sm); }
.site-footer__wordmark { font-size: var(--fs-2xl); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.18); }
.site-footer .tel { font-size: var(--fs-xl); font-weight: 800; text-decoration: none; }

/* ---------- persistent help bar (mobile) and Watch Live pill (desktop) ---------- */
.help-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; height: var(--helpbar-h);
  display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(0,0,0,0.96); border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.help-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; font-size: var(--fs-xs); font-weight: 800; text-decoration: none; color: var(--text); letter-spacing: 0.04em; text-transform: uppercase; }
.help-bar svg { width: 22px; height: 22px; }
.help-bar a.is-live { color: #fff; background: var(--red); }
body { padding-bottom: var(--helpbar-h); }
.watch-pill { display: none; }
@media (min-width: 1024px) {
  .help-bar { display: none; }
  body { padding-bottom: 0; }
  .watch-pill { display: inline-flex; position: fixed; right: var(--s-6); bottom: var(--s-6); z-index: 90; box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 30px var(--red-glow); }
  body.is-watch-page .watch-pill { display: none; }
}

/* ---------- misc ---------- */
.badge { display: inline-flex; align-items: center; gap: 0.4em; padding: 0.2rem 0.6rem; border-radius: var(--r-sm); background: var(--red); color: #fff; font-size: var(--fs-xs); font-weight: 800; letter-spacing: var(--track-caps); text-transform: uppercase; }
.badge--ghost { background: rgba(0,0,0,0.6); border: 1px solid var(--line-strong); }
.icon-list { display: grid; gap: var(--s-3); }
.icon-list li { display: flex; gap: var(--s-3); align-items: flex-start; }
.empty { padding: var(--s-5); border: 1px dashed var(--line-strong); border-radius: var(--r-md); color: var(--muted); text-align: center; }
[hidden] { display: none !important; }
