/* ===========================================================
   MOUNTAIN MOVERS — RCCG Annual Convention Activity Site
   Design tokens
   - Brand blue (mandated): #0098DA
   - Deep navy (contrast/dark sections): #06304A
   - Summit gold (sparing accent, pulled from official flyer): #F2B33D
   - Rock/charcoal (text): #1B232B
   - Mist (light bg): #F4FAFD
   =========================================================== */

:root {
  --blue: #0098DA;
  --blue-bright: #14B0F0;   /* brighter electric blue for broadcast energy */
  --blue-dark: #0177AC;
  --navy: #06304A;
  --navy-deep: #04212F;
  --gold: #F2B33D;
  --gold-deep: #C98A1D;
  --live: #FB3B4B;          /* "ON AIR" live-red accent (use sparingly) */
  --live-dark: #D92638;
  --ink: #14202B;
  --mist: #F2F9FE;
  --mist-2: #E2F1FB;
  --white: #FFFFFF;
  --line: #D6E7F0;

  --font-display: "Space Grotesk", "Poppins", "Arial", sans-serif;
  --font-body: "Inter", "Calibri", "Arial", sans-serif;
  --font-mono: "Space Mono", ui-monospace, "Courier New", monospace;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 14px 40px rgba(6, 48, 74, 0.12);
  --shadow-card: 0 6px 20px rgba(6, 48, 74, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
}

p { line-height: 1.6; margin: 0; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Skip link / a11y ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--white);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 36px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
}
.brand-text span {
  font-size: 11px;
  color: var(--mist-2);
  opacity: 0.85;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  max-width: 720px;
}
.nav a {
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 10px;
  color: var(--mist-2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.nav a:hover {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 152, 218, 0.28);
}
.nav a.active {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: var(--white);
  border-color: rgba(20,176,240,0.65);
  box-shadow: 0 4px 14px rgba(20,176,240,0.35);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; align-items: stretch; width: 100%; padding: 10px 20px 16px; gap: 4px; }
  .nav-toggle { display: block; }
  .topbar-inner { flex-wrap: wrap; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  overflow: hidden;
  padding-bottom: 0;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 0;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 152, 218, 0.18);
  border: 1px solid rgba(0, 152, 218, 0.45);
  color: #BFE6F8;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  margin-top: 18px;
  max-width: 720px;
}
.hero h1 .accent { color: var(--gold); }
.hero p.lead {
  margin-top: 16px;
  max-width: 560px;
  font-size: 17px;
  color: #CFE6F2;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
  padding-bottom: 28px;
}
.hero-meta-item {
  font-size: 13px;
  color: #9FC6DA;
}
.hero-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
}

/* Mountain skyline graphic */
.skyline {
  position: relative;
  height: 150px;
  margin-top: 30px;
}
.skyline svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 152, 218, 0.35);
}
.btn-primary:hover { background: var(--blue-dark); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 6px 18px rgba(242, 179, 61, 0.35);
}
.btn-gold:hover { background: var(--gold-deep); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-outline-blue {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue-dark);
}
.btn-outline-blue:hover { background: var(--mist-2); }

.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- Sections ---------- */
.section {
  padding: 64px 0;
}
.section-tight { padding: 40px 0; }
.section-navy { background: var(--navy); color: var(--white); }
.section-white { background: var(--white); }

.section-head {
  margin-bottom: 36px;
  max-width: 640px;
}
.section-head .eyebrow {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
}
.section-navy .section-head .eyebrow { color: var(--gold); }
.section-head h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-top: 8px;
}
.section-head p {
  margin-top: 12px;
  color: #5A6B76;
  font-size: 15.5px;
}
.section-navy .section-head p { color: #B9D6E4; }

/* ---------- Cards grid (venues) ---------- */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.venue-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.venue-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.venue-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mist-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
}
.venue-card h3 {
  font-size: 19px;
}
.venue-card .venue-sub {
  font-size: 13px;
  color: #6B7A85;
  font-weight: 600;
}
.venue-card p.desc {
  font-size: 14px;
  color: #4B5963;
}
.venue-stat {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: #5A6B76;
}
.venue-stat strong {
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 16px;
}

/* ---------- Progress / mountain climb motif ---------- */
.climb-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  padding: 28px;
}
.climb-track {
  position: relative;
  height: 90px;
  margin: 18px 0 8px;
}
.climb-track svg { width: 100%; height: 100%; display: block; }
.climb-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  transition: left 0.6s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
.climb-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6B7A85;
  font-weight: 600;
}
.climb-points {
  text-align: center;
  margin-top: 6px;
}
.climb-points strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--blue-dark);
}
.climb-points span {
  font-size: 13px;
  color: #6B7A85;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  padding: 28px;
  max-width: 480px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.field input, .field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--mist);
}
.field input:focus, .field select:focus {
  border-color: var(--blue);
  outline: none;
  background: var(--white);
}
.field-hint {
  font-size: 12px;
  color: #7C8A93;
  margin-top: 4px;
}

.toast {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.toast.show { display: block; }
.toast.success { background: #E2F6EA; color: #176B3A; }
.toast.error { background: #FCE8E6; color: #9A2C1F; }
.toast.info { background: var(--mist-2); color: var(--navy); }

/* ---------- Quiz ---------- */
.quiz-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.quiz-progressbar {
  height: 8px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 24px;
}
.quiz-progressbar > div {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 99px;
  transition: width 0.3s ease;
}
.quiz-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  padding: 30px;
}
.quiz-q-count {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.quiz-question {
  font-size: 20px;
  margin-top: 8px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-weight: 600;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  text-align: left;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--mist);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.12s ease;
}
.quiz-option:hover { border-color: var(--blue); background: var(--mist-2); }
.quiz-option.selected { border-color: var(--blue); background: var(--mist-2); box-shadow: inset 0 0 0 1px var(--blue); }
.quiz-option.correct { border-color: #28A862; background: #E2F6EA; }
.quiz-option.incorrect { border-color: #D9483A; background: #FCE8E6; }
.quiz-option[disabled] { cursor: default; }

.quiz-footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.quiz-result {
  text-align: center;
  padding: 20px 0;
}
.quiz-result .big-score {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--blue-dark);
  margin: 10px 0;
}
.badge-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.badge {
  background: var(--mist-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- Leaderboard ---------- */
.lb-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.lb-table th, .lb-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14.5px;
}
.lb-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.lb-table tbody tr:nth-child(even) { background: var(--mist); }
.lb-table tbody tr:hover { background: var(--mist-2); }
.lb-rank {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-dark);
}
.lb-rank.top1 { color: var(--gold-deep); }
.lb-points {
  font-family: var(--font-display);
  font-weight: 700;
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: #6B7A85;
}
.empty-state h3 { color: var(--navy); margin-bottom: 8px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: #9FC6DA;
  padding: 40px 0 24px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}
.footer h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 12px;
}
.footer a {
  display: block;
  font-size: 13.5px;
  padding: 4px 0;
  color: #9FC6DA;
}
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  font-size: 12.5px;
  text-align: center;
  color: #6E93A4;
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.muted { color: #6B7A85; }
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mist-2);
  color: var(--blue-dark);
  letter-spacing: 0.03em;
}
.tag.gold { background: #FCF1DA; color: var(--gold-deep); }

.offline-banner {
  background: #FCF1DA;
  color: #7A4E0C;
  font-size: 13.5px;
  text-align: center;
  padding: 10px 16px;
  display: none;
}
.offline-banner.show { display: block; }

/* ---------- Sticky live bar (say the link out loud, every page) ---------- */
.live-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.live-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.live-bar-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FF5A5A;
  box-shadow: 0 0 0 0 rgba(255,90,90,0.6);
  animation: livepulse 1.6s infinite;
  flex: 0 0 auto;
}
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,90,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(255,90,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,90,0); }
}
.live-bar-text {
  color: #fff;
  font-size: 13px;
  flex: 1 1 auto;
  min-width: 0;
}
.live-bar-text strong { font-family: var(--font-display); margin-right: 6px; }
.live-bar-sub { color: #9FC6DA; }
.live-bar-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.live-bar-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  white-space: nowrap;
}
.live-bar-btn:hover { background: var(--blue-dark); }
.live-bar-btn-alt { background: var(--gold); color: var(--navy-deep); }
.live-bar-btn-alt:hover { background: var(--gold-deep); }

@media (max-width: 720px) {
  .live-bar-sub { display: none; }
  .live-bar-inner { padding: 8px 16px; }
  .live-bar-btn { padding: 6px 10px; font-size: 11.5px; }
}

/* ---------- Live Now / Up Next widget (homepage) ---------- */
.now-next-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) {
  .now-next-card { grid-template-columns: 1fr; }
}
.now-next-cell {
  padding: 26px 28px;
}
.now-next-cell + .now-next-cell {
  border-left: 1px solid var(--line);
}
@media (max-width: 700px) {
  .now-next-cell + .now-next-cell { border-left: none; border-top: 1px solid var(--line); }
}
.now-next-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.now-next-label .dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF5A5A;
  animation: livepulse 1.6s infinite;
}
.now-next-cell.is-next .now-next-label { color: var(--gold-deep); }
.now-next-program {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
}
.now-next-time {
  margin-top: 4px;
  font-size: 13.5px;
  color: #6B7A85;
  font-weight: 600;
}

/* ---------- Impact page layout ---------- */
.impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .impact-layout { grid-template-columns: 1fr; }
}

/* ---------- Impact wall ---------- */
.impact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  padding: 18px 20px;
  margin-bottom: 14px;
}
.impact-card .impact-msg {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.impact-card .impact-meta {
  margin-top: 10px;
  font-size: 12.5px;
  color: #6B7A85;
  font-weight: 600;
}
.char-counter {
  text-align: right;
  font-size: 12px;
  color: #8A96A0;
  margin-top: -6px;
  margin-bottom: 14px;
}

.spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 44px 0; }
}

/* ===========================================================
   Quiz setup — category & difficulty choice cards
   =========================================================== */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.choice-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .1s;
  font-family: var(--font-body);
}
.choice-card:hover { border-color: var(--blue); box-shadow: var(--shadow-card); }
.choice-card.selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,152,218,0.18);
  background: var(--mist-2);
}
.choice-emoji { font-size: 26px; }
.choice-name { font-weight: 700; font-family: var(--font-display); color: var(--ink); }
.choice-sub { color: var(--gold-deep); font-weight: 600; font-size: 12px; }
.choice-blurb { font-size: 13px; color: #5a6b78; }

/* ===========================================================
   Countdown timer (homepage)
   =========================================================== */
.countdown-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.countdown-label { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.countdown-units { display: flex; justify-content: center; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.countdown-unit { min-width: 72px; }
.countdown-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 1;
  color: #fff;
}
.countdown-unit span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: #B9D6E4; margin-top: 6px; }
.countdown-sub { margin-top: 14px; color: #B9D6E4; font-size: 14px; }

/* ===========================================================
   Word Climb game
   =========================================================== */
.wc-footholds-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.wc-footholds { display: inline-flex; gap: 6px; font-size: 22px; }
.wc-foothold { transition: opacity .2s, filter .2s; }
.wc-foothold.lost { opacity: .55; filter: grayscale(0.3); }
.wc-blanks { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0; }
.wc-slot {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 46px; padding: 0 6px;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 5vw, 30px);
  color: var(--navy); border-bottom: 3px solid var(--line);
}
.wc-slot.filled { border-bottom-color: var(--blue); }
.wc-keys { display: grid; grid-template-columns: repeat(auto-fit, minmax(40px, 1fr)); gap: 8px; margin-top: 18px; }
.wc-key {
  padding: 12px 0; font-weight: 700; font-family: var(--font-display);
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer; transition: all .12s;
}
.wc-key:hover:not(:disabled) { border-color: var(--blue); }
.wc-key:disabled { opacity: .35; cursor: default; }
.wc-key.good { background: var(--blue); color: #fff; border-color: var(--blue); }
.wc-key.bad { background: #e9555f; color: #fff; border-color: #e9555f; }

/* ===========================================================
   Diaries page
   =========================================================== */
.diary-entry {
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.diary-entry h3 { margin: 0 0 4px; font-size: 18px; }
.diary-when { font-size: 13px; color: var(--gold-deep); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.diary-entry p { margin: 10px 0 0; color: #3c4a55; }

/* ===========================================================
   Admin report tables
   =========================================================== */
.report-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 14px;
  margin-bottom: 8px;
}
.report-table th, .report-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.report-table thead th {
  background: var(--mist-2);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}
.report-table tbody tr:last-child td { border-bottom: none; }
.report-table tbody tr:nth-child(even) { background: var(--mist); }

/* ===========================================================
   Flyer + countdown side-by-side
   =========================================================== */
.flyer-countdown {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.flyer-countdown-img { text-align: center; }
.flyer-countdown-img img {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.flyer-countdown .countdown-card { width: 100%; }
@media (max-width: 760px) {
  .flyer-countdown { grid-template-columns: 1fr; gap: 20px; }
}

/* ===========================================================
   Brand icons inside live-platform buttons/links
   =========================================================== */
.brand-ico {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  margin-right: 0.4em;
  flex: 0 0 auto;
}
.live-bar-btn { display: inline-flex; align-items: center; }

/* ===========================================================
   News Bulletin — filters & category tags
   =========================================================== */
.bulletin-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.bulletin-chip {
  padding: 7px 14px; border-radius: 999px; border: 2px solid var(--line);
  background: var(--white); font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); color: var(--ink); transition: all .12s;
}
.bulletin-chip:hover { border-color: var(--blue); }
.bulletin-chip.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.bulletin-cat {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .03em;
  padding: 2px 8px; border-radius: 6px; text-transform: uppercase;
}
.bulletin-cat-schedule { background: #E1F0FB; color: #0177AC; }
.bulletin-cat-security { background: #FBE9E1; color: #B5541D; }
.bulletin-cat-medical  { background: #FBE1E6; color: #B51D3C; }
.bulletin-cat-weather  { background: #FFF3D6; color: #9A6A00; }
.bulletin-cat-venue    { background: #E6F2E1; color: #3C7A1D; }
.bulletin-cat-general  { background: var(--mist-2); color: var(--navy); }

/* ===========================================================
   Five Minutes With… status badges
   =========================================================== */
.fm-status {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .03em;
  padding: 2px 8px; border-radius: 6px; text-transform: uppercase;
}
.fm-today    { background: var(--gold); color: #4a3200; }
.fm-upcoming { background: #E1F0FB; color: #0177AC; }
.fm-aired    { background: var(--mist-2); color: #5a6b78; }

/* ===========================================================
   Global hover polish (UI feel)
   =========================================================== */
.venue-card, .impact-card, .diary-entry, .choice-card, .report-table {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.venue-card:hover, .impact-card:hover, .diary-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(6, 48, 74, 0.14);
}
.btn { transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
a:not(.btn):not(.nav a):not(.brand) { transition: color 0.15s ease; }

/* Soft glow that follows the cursor (desktop, fine-pointer only) */
#cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 340px; height: 340px;
  margin: -170px 0 0 -170px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, rgba(0,152,218,0.16) 0%, rgba(0,152,218,0.06) 40%, rgba(0,152,218,0) 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  #cursor-glow.on { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  #cursor-glow { display: none; }
}

/* ===========================================================
   Seven Mountains game options
   =========================================================== */
.sm-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.sm-option {
  display: flex; align-items: center; gap: 10px;
  text-align: left; padding: 13px 14px;
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer; font-family: var(--font-body);
  font-weight: 600; font-size: 14.5px; color: var(--ink);
  transition: border-color .14s, background .14s, transform .12s;
}
.sm-option:hover:not(:disabled) { border-color: var(--blue); transform: translateY(-2px); }
.sm-option:disabled { cursor: default; }
.sm-option.correct { border-color: #2e9e5b; background: #e8f7ee; }
.sm-option.incorrect { border-color: #e9555f; background: #fdeaec; }
.sm-option-emoji { font-size: 22px; flex: 0 0 auto; }

/* ===========================================================
   ===  BRIGHT & BROADCAST — full restyle layer  ============
   Distinctive identity: Space Grotesk display, Space Mono
   utility voice (radio timecodes), electric blue, airy whites,
   a sparing ON-AIR red, and an equalizer signature.
   =========================================================== */

body { background: var(--mist); letter-spacing: 0.1px; }
h1, h2, h3, h4 { letter-spacing: -0.015em; }

/* --- Eyebrows speak in the mono "broadcast" voice --- */
.eyebrow, .hero-eyebrow, .section-head .eyebrow {
  font-family: var(--font-mono) !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11.5px;
}
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.section-head .eyebrow::before {
  content: ""; width: 22px; height: 12px; flex: 0 0 auto;
  background:
    linear-gradient(var(--blue),var(--blue)) 0 50%/3px 6px no-repeat,
    linear-gradient(var(--blue),var(--blue)) 6px 50%/3px 12px no-repeat,
    linear-gradient(var(--blue),var(--blue)) 12px 50%/3px 8px no-repeat,
    linear-gradient(var(--blue),var(--blue)) 18px 50%/3px 5px no-repeat;
}

/* --- Hero: brighter, deeper, broadcast glow --- */
.hero {
  background:
    radial-gradient(120% 90% at 78% -10%, rgba(20,176,240,0.30) 0%, rgba(20,176,240,0) 55%),
    radial-gradient(80% 70% at 12% 0%, rgba(242,179,61,0.12) 0%, rgba(242,179,61,0) 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.hero h1 { font-weight: 700; line-height: 1.05; }
.hero h1 .accent { color: var(--gold); }
.hero-eyebrow {
  background: rgba(20,176,240,0.16);
  border-color: rgba(20,176,240,0.5);
  color: #CBEBFB;
  border-radius: 8px;
}

/* --- Buttons: crisper, brighter primary --- */
.btn { border-radius: 12px; font-family: var(--font-display); letter-spacing: -0.01em; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 10px 24px rgba(0,152,218,0.34);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.btn-gold { border-radius: 12px; }
.btn-ghost { border-radius: 12px; }
.btn-outline-blue { border-radius: 12px; }

/* --- Cards: cleaner border, reveal a top accent on hover --- */
.venue-card, .impact-card, .diary-entry, .form-card, .choice-card {
  border-radius: var(--radius);
}
.venue-card { position: relative; overflow: hidden; }
.venue-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease;
}
.venue-card:hover::after { transform: scaleX(1); }

/* --- Section headings scale up a touch for confidence --- */
.section-head h2 { font-size: clamp(28px, 4.4vw, 40px); }

/* --- Equalizer signature (ON AIR) --- */
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 14px; }
.eq span {
  width: 3px; height: 100%; border-radius: 2px; background: currentColor;
  animation: eqbar 1s ease-in-out infinite;
  transform-origin: bottom;
}
.eq span:nth-child(1) { animation-delay: 0s; }
.eq span:nth-child(2) { animation-delay: 0.18s; }
.eq span:nth-child(3) { animation-delay: 0.36s; }
.eq span:nth-child(4) { animation-delay: 0.54s; }
@keyframes eqbar { 0%,100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }

/* ON AIR pill used in the live bar */
.on-air-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--live);
  padding: 5px 10px; border-radius: 7px;
  box-shadow: 0 0 0 0 rgba(251,59,75,0.5); animation: airpulse 2.2s ease-out infinite;
}
@keyframes airpulse {
  0% { box-shadow: 0 0 0 0 rgba(251,59,75,0.45); }
  70% { box-shadow: 0 0 0 10px rgba(251,59,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(251,59,75,0); }
}

@media (prefers-reduced-motion: reduce) {
  .eq span { animation: none; transform: scaleY(0.7); }
  .on-air-pill { animation: none; }
}

/* ===========================================================
   Placeholders — soft, recede behind real content
   =========================================================== */
input::placeholder, textarea::placeholder { color: #BCC8D2 !important; opacity: 1 !important; font-weight: 400; }
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #BCC8D2 !important; }
input:focus::placeholder, textarea:focus::placeholder { color: #D2DBE2 !important; }

/* ===========================================================
   Auth control in nav
   =========================================================== */
.nav-auth {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #fff;
  background: rgba(242,179,61,0.16); border: 1px solid rgba(242,179,61,0.5);
  padding: 6px 10px; border-radius: 10px; margin-left: 4px;
}
.nav-auth-login { color: var(--gold); }
.nav-auth-login:hover { background: rgba(242,179,61,0.28); }
.nav-auth-name { font-family: var(--font-mono); font-size: 12px; }
.nav-auth-link { color: #fff; text-decoration: underline; font-size: 12px; }
.nav-logout {
  background: none; border: none; color: #FCD9A0; cursor: pointer;
  font: inherit; font-size: 12px; text-decoration: underline; padding: 0;
}
.nav-logout:hover { color: #fff; }

/* ===========================================================
   Auth (login/register) page
   =========================================================== */
.auth-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.auth-tab {
  flex: 1; padding: 11px; border-radius: var(--radius-sm); cursor: pointer;
  border: 2px solid var(--line); background: var(--white); font-weight: 700;
  font-family: var(--font-display); color: var(--ink); transition: all .14s;
}
.auth-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.role-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 8px; }
.role-opt {
  padding: 10px; border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer; text-align: center; font-weight: 600; font-size: 13.5px;
  transition: all .14s;
}
.role-opt:hover { border-color: var(--blue); }
.role-opt.selected { border-color: var(--blue); background: var(--mist-2); box-shadow: 0 0 0 3px rgba(0,152,218,0.15); }
.role-opt small { display: block; font-weight: 400; color: #5a6b78; font-size: 11.5px; margin-top: 2px; }

/* ===========================================================
   Admin activity chart (SVG bars)
   =========================================================== */
.chart-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-card); }
.bar-row { display: flex; align-items: center; gap: 12px; margin: 9px 0; }
.bar-label { width: 130px; flex: 0 0 130px; font-size: 13px; font-weight: 600; text-align: right; color: var(--navy); }
.bar-track { flex: 1; background: var(--mist-2); border-radius: 8px; height: 24px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 8px; min-width: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue));
  display: flex; align-items: center; justify-content: flex-end;
  color: #fff; font-size: 12px; font-weight: 700; padding-right: 8px;
  transition: width .6s cubic-bezier(.2,.7,.2,1);
}
.bar-fill.gold { background: linear-gradient(90deg, var(--gold), var(--gold-deep)); }
.bar-fill.live { background: linear-gradient(90deg, #ff6b76, var(--live)); }

/* ===========================================================
   Five Minutes posting panel
   =========================================================== */
.fm-select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px;
  background: var(--white); color: var(--ink);
}
.fm-del {
  position: absolute; top: 12px; right: 12px;
  width: 26px; height: 26px; border-radius: 7px; cursor: pointer;
  border: 1px solid var(--line); background: var(--white); color: #c0392b;
  font-weight: 700; line-height: 1;
}
.fm-del:hover { background: #fdeaec; border-color: #e9555f; }

/* ===========================================================
   Diary comments
   =========================================================== */
.diary-comments { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 12px; }
.diary-comments-head { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.diary-comment { background: var(--mist); border-radius: var(--radius-sm); padding: 8px 12px; margin-bottom: 8px; }
.diary-comment-meta { font-size: 12px; color: #5a6b78; margin-bottom: 2px; }
.diary-comment-text { font-size: 14px; color: var(--ink); }
.diary-comment-del, .fm-del {
  background: none; border: none; color: #b5541d; cursor: pointer; font-size: 13px;
  margin-left: 8px; font-weight: 700;
}
.fm-del { position: absolute; top: 10px; right: 12px; color: #b51d3c; }
.diary-comment-form { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; align-items: center; }
.diary-comment-form .dc-name { flex: 0 0 130px; }
.diary-comment-form .dc-text { flex: 1 1 200px; }
.diary-comment-form input {
  padding: 9px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px;
}
.diary-comment-form .dc-toast { flex-basis: 100%; }

/* ===========================================================
   Help chatbot (site-wide widget)
   =========================================================== */
.chatbot-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--blue); color: #fff; font-size: 24px;
  box-shadow: 0 8px 22px rgba(6,48,74,0.30); transition: transform .15s, box-shadow .15s;
}
.chatbot-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 26px rgba(6,48,74,0.38); }
.chatbot-panel {
  position: fixed; right: 18px; bottom: 84px; z-index: 61;
  width: min(370px, calc(100vw - 36px)); max-height: min(560px, calc(100vh - 120px));
  background: #fff; border-radius: 16px; overflow: hidden; display: none;
  flex-direction: column; box-shadow: 0 18px 50px rgba(6,48,74,0.30);
  border: 1px solid var(--line);
}
.chatbot-panel.open { display: flex; }
.chatbot-head { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; padding: 14px 16px; }
.chatbot-head strong { font-family: var(--font-display); font-size: 16px; }
.chatbot-head span { display: block; font-size: 12px; color: #B9D6E4; }
.chatbot-head .chatbot-close { float: right; background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }
.chatbot-body { flex: 1; overflow-y: auto; padding: 14px; background: var(--mist); display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 85%; padding: 9px 13px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.chat-msg.bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg a { color: var(--blue-dark); font-weight: 600; text-decoration: underline; }
.chat-msg.user a { color: #fff; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 14px; background: var(--mist); border-top: 1px solid var(--line); }
.chat-quick button {
  font-size: 12px; padding: 6px 10px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--blue); background: #fff; color: var(--blue-dark); font-weight: 600;
}
.chat-quick button:hover { background: var(--blue); color: #fff; }
.chatbot-input { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); background: #fff; }
.chatbot-input input { flex: 1; padding: 10px 12px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--font-body); font-size: 14px; }
.chatbot-input button { border: none; background: var(--blue); color: #fff; border-radius: 999px; padding: 0 16px; cursor: pointer; font-weight: 700; }

/* ===========================================================
   Caleb chatbot avatar
   =========================================================== */
.chatbot-fab { display: flex; align-items: center; justify-content: center; padding: 0; }
.chatbot-ava {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  font-size: 20px; line-height: 1;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
}
.chatbot-ava-sm { width: 34px; height: 34px; font-size: 18px; flex: 0 0 auto; }
.chatbot-head-row { display: flex; align-items: center; gap: 10px; }
.chatbot-head-sub { display: block; font-size: 12px; color: #B9D6E4; font-weight: 400; }

/* ===========================================================
   RCCG RADIO — flagship site layer (index / mountain-movers)
   =========================================================== */

/* ---------- Split hero: copy left, VR-listener portrait right ---------- */
.radio-hero { padding-bottom: 0; }
.radio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .radio-hero-grid { grid-template-columns: 1fr; padding-top: 40px; }
}
.radio-hero-copy .hero-eyebrow { margin-bottom: 0; }
.radio-hero-copy h1 { font-size: clamp(32px, 5.4vw, 54px); margin-top: 16px; max-width: 640px; }
.radio-hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  margin-top: -56px;
  margin-right: calc(-50vw + 50% - 20px);
  padding-top: 56px;
}
@media (max-width: 860px) {
  .radio-hero-media { margin-top: 0; margin-right: -20px; padding-top: 0; aspect-ratio: 16 / 12; }
}
.radio-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 42% 12%;
}
.radio-hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, var(--navy) 0%, rgba(6,48,74,0.92) 10%, rgba(6,48,74,0.45) 24%, rgba(6,48,74,0) 42%),
    linear-gradient(0deg, var(--navy-deep) 0%, rgba(6,48,74,0.35) 9%, rgba(6,48,74,0) 20%, rgba(6,48,74,0) 82%, rgba(6,48,74,0.7) 96%, var(--navy-deep) 100%);
  z-index: 1;
}
.radio-hero-media-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(4, 33, 47, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 10px 14px; border-radius: 14px;
  color: #fff; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
}
@media (max-width: 860px) {
  .radio-hero-media { aspect-ratio: 16 / 10; }
}

/* ---------- Show / host cards ---------- */
.show-card .venue-icon { background: linear-gradient(135deg, rgba(0,152,218,0.16), rgba(242,179,61,0.16)); font-size: 24px; }
.show-host {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
}

/* ---------- Broadcast highlight cards (Holy Ghost Service etc.) ---------- */
.bcast-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
}
.bcast-card h3 { font-size: 19px; margin-bottom: 8px; }
.bcast-card p { color: #B9D6E4; font-size: 14px; }
.bcast-card .tag { margin-top: 14px; }

/* ---------- Mountain Movers promo banner (on homepage) ---------- */
.mm-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
@media (max-width: 800px) { .mm-promo { grid-template-columns: 1fr; } }
.mm-promo-media { position: relative; background: var(--navy-deep); min-height: 240px; }
.mm-promo-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.mm-promo-copy { background: var(--navy); color: #fff; padding: 32px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.mm-promo-copy h2 { font-size: clamp(24px, 3.4vw, 32px); }
.mm-promo-copy p { color: #B9D6E4; font-size: 15px; }

/* ---------- Video wrapper (Mountain Movers trailer) ---------- */
.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}
.video-wrap video { width: 100%; display: block; max-height: 560px; }

/* ---------- Stat strip (About / mission) ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.stat-strip .stat-num { font-family: var(--font-display); font-size: clamp(30px, 5vw, 42px); color: var(--gold); font-weight: 800; }
.stat-strip .stat-label { color: #B9D6E4; font-size: 13.5px; margin-top: 4px; }

/* ---------- Date/info card (Mountain Movers convention dates) ---------- */
.date-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.date-card .eyebrow { color: var(--gold); }
.date-card h3 { font-size: 22px; margin: 10px 0 6px; }
.date-card p { color: #B9D6E4; font-size: 14.5px; }

/* ---------- Social row (footer) ---------- */
.social-row { display: flex; gap: 10px; margin-top: 10px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
}
.social-row a:hover { background: var(--blue); border-color: var(--blue); }
.social-row a svg { width: 16px; height: 16px; fill: currentColor; }

/* ===========================================================
   LAYOUT TOGGLE — switch between Vintage Radio / Modern hero
   =========================================================== */
.layout-switch-bar {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.layout-switch-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7FA9C0;
}
.layout-switch {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 3px;
  gap: 3px;
}
.layout-switch button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: #B9D6E4;
  background: transparent;
  border: none;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.layout-switch button.is-active {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(20,176,240,0.4);
}
[hidden] { display: none !important; }

/* ===========================================================
   Gradient-outline buttons — blue rounded-rect, filled gradient
   (used across nav pills / vintage-radio chassis buttons)
   =========================================================== */
.btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, rgba(20,176,240,0.35), rgba(1,119,172,0.35));
  border: 1.5px solid rgba(20,176,240,0.65);
  box-shadow: 0 4px 16px rgba(20,176,240,0.18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-grad:hover {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  box-shadow: 0 8px 22px rgba(20,176,240,0.45);
  transform: translateY(-2px);
}
.btn-grad.is-active {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  box-shadow: 0 6px 20px rgba(20,176,240,0.5);
}
.btn-live-radio {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.02em;
  color: #fff; padding: 10px 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: 0 6px 20px rgba(20,176,240,0.4);
}
.btn-live-radio:hover { box-shadow: 0 8px 26px rgba(20,176,240,0.55); transform: translateY(-1px); }

/* ===========================================================
   MODERN HERO — glass pill nav, feature links, deco accents
   (refinement pass to match reference concept)
   =========================================================== */
.glass-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 10px 12px 10px 20px;
  max-width: 1120px; margin: 20px auto 0;
  backdrop-filter: blur(8px);
}
.glass-nav-links { display: flex; gap: 4px; flex-wrap: wrap; }
.glass-nav-links a {
  font-size: 13px; font-weight: 700; color: #CFE6F2;
  padding: 8px 14px; border-radius: 999px; transition: all .15s ease;
}
.glass-nav-links a:hover, .glass-nav-links a.active { background: rgba(20,176,240,0.18); color: #fff; }
.glass-nav-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 14px; }
.glass-nav-brand img { height: 26px; }

.hero-deco-dots {
  position: absolute; top: 26px; left: 26px; z-index: 1;
  display: grid; grid-template-columns: repeat(5, 5px); gap: 6px;
  opacity: 0.35;
}
.hero-deco-dots span { width: 3px; height: 3px; border-radius: 50%; background: var(--blue-bright); }
.hero-deco-rail {
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%); z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-deco-rail span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.hero-deco-rail span:first-child { background: var(--blue-bright); box-shadow: 0 0 10px rgba(20,176,240,0.8); }

.scroll-cue {
  text-align: center; padding: 18px 0 30px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #7FA9C0;
}
.scroll-cue span { display: block; margin-top: 6px; animation: scrollbounce 1.6s ease-in-out infinite; }
@keyframes scrollbounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.feature-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.feature-link-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 18px 20px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.feature-link-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.07); border-color: rgba(20,176,240,0.5); }
.feature-link-icon {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: rgba(20,176,240,0.16); border: 1px solid rgba(20,176,240,0.4); color: #fff;
}
.feature-link-body strong { display: block; font-family: var(--font-display); font-size: 15px; color: #fff; }
.feature-link-body span { display: block; font-size: 12.5px; color: #9FC6DA; margin-top: 2px; }
.feature-link-arrow { margin-left: auto; color: var(--blue-bright); font-size: 18px; flex: 0 0 auto; }

/* ===========================================================
   VINTAGE RADIO HERO — boombox chassis concept
   =========================================================== */
.hero-vintage {
  background: radial-gradient(120% 100% at 50% -10%, rgba(20,176,240,0.10) 0%, rgba(20,176,240,0) 55%), #05070a;
  padding: 46px 16px 60px;
}
.vradio-wrap { max-width: 1160px; margin: 0 auto; position: relative; }
.vradio-antenna {
  position: absolute; top: -34px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 40px; z-index: 0;
  border-top: 3px solid rgba(20,176,240,0.55);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.vradio-antenna::before, .vradio-antenna::after {
  content: ""; position: absolute; top: -6px; width: 12px; height: 12px; border-radius: 50%;
  background: rgba(20,176,240,0.6); box-shadow: 0 0 12px rgba(20,176,240,0.8);
}
.vradio-antenna::before { left: -6px; }
.vradio-antenna::after { right: -6px; }

.vradio-chassis {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, #16191d 0%, #0a0c0f 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 34px;
  padding: 22px 22px 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
}

.vradio-topnav {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; padding: 6px 6px 22px;
}
.vradio-nav-group { display: flex; gap: 8px; flex-wrap: wrap; }
.vradio-nav-group:last-child { justify-content: flex-end; }
.vbtn {
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px; color: #EAF6FD;
  padding: 9px 16px; border-radius: 10px;
  border: 1.5px solid rgba(20,176,240,0.55);
  background: linear-gradient(135deg, rgba(20,176,240,0.28), rgba(1,119,172,0.28));
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity .15s ease, background .15s ease, box-shadow .15s ease, transform .15s ease;
}
.vbtn:hover, .vbtn:focus-visible {
  opacity: 1;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  box-shadow: 0 6px 18px rgba(20,176,240,0.45);
  transform: translateY(-1px);
}
/* Touch devices have no hover — keep the nav fully visible there */
@media (hover: none) {
  .vbtn { opacity: 1; }
}
.vradio-brand { display: flex; align-items: center; gap: 10px; }
.vradio-brand img { height: 30px; }
.vradio-brand strong { display: block; font-family: var(--font-display); color: #fff; font-size: 15px; letter-spacing: 0.03em; }
.vradio-brand span { display: block; font-size: 11px; color: #7FA9C0; }

.vradio-screen {
  position: relative;
  background: radial-gradient(120% 140% at 75% 15%, rgba(20,176,240,0.22) 0%, rgba(20,176,240,0) 55%), #04212F;
  border-radius: 22px;
  border: 1px solid rgba(20,176,240,0.25);
  padding: 30px clamp(70px, 12vw, 150px);
  display: flex; align-items: center; justify-content: center; gap: 30px;
  min-height: 320px;
  overflow: visible;
}
.vradio-center { display: flex; align-items: center; justify-content: center; gap: 30px; flex: 1 1 auto; max-width: 720px; }
.vradio-text h1 {
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: clamp(26px, 3.6vw, 42px); line-height: 1.08; letter-spacing: -0.01em;
}
.vradio-text h1 .accent { color: var(--blue-bright); }
.vradio-text p { margin-top: 14px; color: #B9D6E4; font-size: 14px; line-height: 1.5; }
.vradio-photo { flex: 0 0 auto; width: clamp(150px, 24vw, 300px); }
.vradio-photo img { border-radius: 16px; width: 100%; display: block; box-shadow: 0 14px 40px rgba(0,0,0,0.5); }

.vradio-dial {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: clamp(110px, 15vw, 190px); height: clamp(110px, 15vw, 190px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1c2126, #07090b 72%);
  border: 3px solid rgba(20,176,240,0.55);
  box-shadow: 0 0 0 6px rgba(20,176,240,0.08), 0 10px 30px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-decoration: none;
  transition: box-shadow .18s ease, transform .18s ease;
}
.vradio-dial:hover { box-shadow: 0 0 0 9px rgba(20,176,240,0.16), 0 14px 34px rgba(0,0,0,0.55); transform: translateY(-50%) scale(1.03); }
.vradio-dial-mixlr { left: clamp(-20px, -2vw, 10px); }
.vradio-dial-youtube { right: clamp(-20px, -2vw, 10px); }
.vradio-dial-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.vradio-dial-icon svg { width: 100%; height: 100%; }
.vradio-dial-label { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.vradio-dial-mixlr .vradio-dial-label { color: #FF5A5A; }
.vradio-dial-youtube .vradio-dial-label { color: #FF3B3B; }
.vradio-dial-sub { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #9FC6DA; }

.vradio-controls {
  display: flex; align-items: center; justify-content: center; gap: clamp(14px, 4vw, 40px);
  margin-top: 26px; padding: 0 10px;
}
.vradio-knob {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  background: radial-gradient(circle at 35% 30%, #2a2f35, #0a0c0f 75%);
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 4px rgba(20,176,240,0.06);
  position: relative;
}
.vradio-knob::after { content: ""; position: absolute; top: 6px; left: 50%; width: 2px; height: 12px; background: var(--blue-bright); transform: translateX(-50%); border-radius: 2px; }
.vradio-freq { flex: 1 1 auto; max-width: 640px; }
.vradio-freq-row {
  display: flex; justify-content: space-between; font-family: var(--font-mono);
  font-size: 11px; color: #7FA9C0; padding: 0 4px;
}
.vradio-freq-row span.vradio-freq-active { color: var(--blue-bright); font-weight: 700; }
.vradio-freq-line { height: 1px; background: rgba(255,255,255,0.14); margin: 8px 0; position: relative; }
.vradio-freq-line::after {
  content: ""; position: absolute; top: -8px; left: 68%; width: 2px; height: 17px;
  background: var(--blue-bright); box-shadow: 0 0 8px rgba(20,176,240,0.8);
}

@media (max-width: 860px) {
  .vradio-screen { flex-direction: column; padding: 26px 20px 60px; }
  .vradio-center { flex-direction: column; text-align: center; gap: 18px; }
  .vradio-dial { position: static; transform: none; margin-top: 6px; }
  .vradio-controls { flex-direction: column; }
  .vradio-freq { width: 100%; }
  .vradio-topnav { justify-content: center; }
  .vradio-nav-group:last-child { justify-content: center; }
}

/* ===========================================================
   FIXED PAGE BACKGROUND — the VR-listener photo stays put while
   content scrolls over it (index.html only, via body.has-fixed-bg)
   =========================================================== */
body.has-fixed-bg { background: #04212F; }
body.has-fixed-bg::before,
body.has-fixed-bg::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
}
body.has-fixed-bg::before {
  background: url("img/hero-vr-listener.png") center 20% / cover no-repeat;
}
body.has-fixed-bg::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(4,20,30,0.45) 0%, rgba(4,20,30,0.78) 45%, rgba(4,20,30,0.94) 100%);
}
body.has-fixed-bg > .live-bar,
body.has-fixed-bg > .layout-switch-bar,
body.has-fixed-bg > main,
body.has-fixed-bg > footer {
  position: relative;
  z-index: 1;
}

/* Content sections turn to translucent glass so the fixed photo shows through */
.has-fixed-bg .section-white,
.has-fixed-bg .section-navy {
  background: rgba(4,33,47,0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.has-fixed-bg .section-white .section-head .eyebrow { color: var(--gold); }
.has-fixed-bg .section-white .section-head h2 { color: #fff; }
.has-fixed-bg .section-white .section-head p { color: #CFE6F2; }
.has-fixed-bg .now-next-card { box-shadow: 0 20px 50px rgba(0,0,0,0.45); }

@media (prefers-reduced-transparency: reduce) {
  .has-fixed-bg .section-white,
  .has-fixed-bg .section-navy { background: var(--navy); backdrop-filter: none; }
}

/* ===========================================================
   Tag → button: "Monthly · Live" etc. now link straight to Mixlr
   =========================================================== */
.tag-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.tag-btn:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(242,179,61,0.4); }
.tag-btn::before { content: "\25B6"; font-size: 9px; }

/* ===========================================================
   Full-width promo banner strip (Daddy G.O., etc.) — every page
   =========================================================== */
.banner-strip { padding: 30px 0; }
.banner-strip .container { max-width: 1120px; }
.banner-strip a { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.banner-strip img { width: 100%; display: block; }

/* ===========================================================
   Kennis FM strip
   =========================================================== */
.kennis-strip {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; padding: 18px 20px; text-align: center;
}
.kennis-strip img { height: 34px; width: auto; border-radius: 6px; }
.kennis-strip span { font-size: 14px; color: #CFE6F2; }
.kennis-strip strong { color: #fff; }
.has-fixed-bg .kennis-strip span { color: #CFE6F2; }

/* ===========================================================
   Team / show photos — consistent crop ratio
   =========================================================== */
.person-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.show-card.has-photo .venue-icon { display: none; }
.team-card-link { text-decoration: none; }
.team-card-link:hover .venue-card { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

/* ===========================================================
   LIGHT MODE — html[data-theme="light"]
   Content sections/nav flip to white + RCCG light-blue; the
   hero (vintage boombox / modern glass) intentionally stays on
   its dark, high-contrast "device" look in both themes.
   =========================================================== */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px; padding: 3px; margin-left: 10px;
}
.theme-toggle button {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  color: #B9D6E4; background: transparent; border: none; padding: 6px 12px;
  border-radius: 999px; cursor: pointer;
}
.theme-toggle button.is-active {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff;
}

html[data-theme="light"] body.has-fixed-bg::before,
html[data-theme="light"] body.has-fixed-bg::after { opacity: 0; }
html[data-theme="light"] body.has-fixed-bg { background: var(--mist); }
html[data-theme="light"] .has-fixed-bg .section-white {
  background: var(--white); backdrop-filter: none;
}
html[data-theme="light"] .has-fixed-bg .section-navy {
  background: linear-gradient(180deg, #EAF6FD, #DCEFFA); backdrop-filter: none;
}
html[data-theme="light"] .has-fixed-bg .section-white .section-head .eyebrow { color: var(--blue-dark); }
html[data-theme="light"] .has-fixed-bg .section-white .section-head h2 { color: var(--ink); }
html[data-theme="light"] .has-fixed-bg .section-white .section-head p { color: #5A6B76; }
html[data-theme="light"] .section-navy .section-head .eyebrow { color: var(--blue-dark); }
html[data-theme="light"] .section-navy .section-head h2,
html[data-theme="light"] .section-navy h2,
html[data-theme="light"] .section-navy h3 { color: var(--ink); }
html[data-theme="light"] .section-navy .section-head p,
html[data-theme="light"] .section-navy p { color: #4B5963; }
html[data-theme="light"] .bcast-card {
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
html[data-theme="light"] .bcast-card p { color: #4B5963; }
html[data-theme="light"] .footer { background: #0D3A52; }
html[data-theme="light"] .kennis-strip span,
html[data-theme="light"] .has-fixed-bg .kennis-strip span { color: #4B5963; }
html[data-theme="light"] .kennis-strip strong { color: var(--ink); }
html[data-theme="light"] .glass-nav-links a { color: var(--navy); }
html[data-theme="light"] .glass-nav-links a:hover,
html[data-theme="light"] .glass-nav-links a.active { background: rgba(0,152,218,0.14); color: var(--blue-dark); }

/* ===========================================================
   Individual staff bio pages (team/*.html)
   =========================================================== */
.person-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
@media (max-width: 760px) {
  .person-page-layout { grid-template-columns: 1fr; }
}
.person-page-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.person-page-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.person-page-body h1 { font-size: clamp(28px, 4vw, 38px); margin-top: 8px; color: var(--ink); }
.person-page-body .show-host { font-size: 15px; margin: 8px 0 20px; }
.person-page-body p { color: #4B5963; font-size: 15.5px; margin-bottom: 14px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 22px; font-size: 13.5px; font-weight: 700; color: var(--blue-dark); }
.back-link:hover { color: var(--blue); }

/* ===========================================================
   "Follow Us" social cards (About section)
   =========================================================== */
.social-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 30px; }
.social-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 24px 16px; border-radius: var(--radius);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.social-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); }
.social-card-icon {
  width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
}
.social-card-icon svg { width: 22px; height: 22px; fill: currentColor; }
.social-card-icon.mixlr svg { width: 26px; height: 26px; }
.social-card-icon.facebook { background: #1877F2; }
.social-card-icon.instagram { background: radial-gradient(circle at 30% 110%, #fdf497, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-card-icon.mixlr { background: #FF3B3B; }
.social-card-icon.youtube { background: #FF0000; }
.social-card strong { font-family: var(--font-display); color: #fff; font-size: 14.5px; }
.social-card span { font-size: 12.5px; color: #9FC6DA; }
html[data-theme="light"] .social-card { background: var(--white); border-color: var(--line); box-shadow: var(--shadow-card); }
html[data-theme="light"] .social-card strong { color: var(--ink); }
html[data-theme="light"] .social-card span { color: #6B7A85; }

/* ===========================================================
   Kennis FM marker on the vintage-radio FM scale
   =========================================================== */
.vradio-freq-kennis {
  position: relative;
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--gold) !important; text-decoration: none;
}
.vradio-freq-kennis img { width: 20px; height: 20px; border-radius: 4px; object-fit: cover; margin-bottom: 1px; }
.vradio-freq-kennis span { font-size: 9px; white-space: nowrap; }

/* ===========================================================
   Admin: login + dashboard
   =========================================================== */
.admin-shell { max-width: 1040px; margin: 0 auto; padding: 40px 20px 60px; }
.admin-grid { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: 28px; align-items: start; }
@media (max-width: 860px) { .admin-grid { grid-template-columns: 1fr; } }

.post-list { display: flex; flex-direction: column; gap: 14px; }
.post-item {
  display: flex; gap: 14px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px; box-shadow: var(--shadow-card);
}
.post-item-thumb {
  width: 64px; height: 64px; flex: 0 0 auto; border-radius: 10px; overflow: hidden;
  background: var(--mist-2); display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.post-item-thumb img, .post-item-thumb video { width: 100%; height: 100%; object-fit: cover; }
.post-item-body { flex: 1 1 auto; min-width: 0; }
.post-item-body strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--ink); }
.post-item-body span { font-size: 12.5px; color: #6B7A85; }
.post-item-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.post-item-actions button {
  border: 1px solid var(--line); background: var(--white); border-radius: 8px;
  padding: 6px 10px; font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: var(--font-body);
}
.post-item-actions button.edit-btn { color: var(--blue-dark); }
.post-item-actions button.delete-btn { color: #b51d3c; }
.post-item-actions button:hover { background: var(--mist-2); }

.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.admin-topbar h1 { font-size: 22px; }
.admin-logged-in-as { font-size: 13px; color: #6B7A85; }

/* ===========================================================
   Public "Upcoming Programmes & Updates" feed (admin-posted)
   =========================================================== */
.upd-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.upd-card-media { aspect-ratio: 16/10; background: var(--mist-2); overflow: hidden; }
.upd-card-media img, .upd-card-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.upd-card-body { padding: 18px 20px; }
.upd-card-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue-dark); }
.upd-card-body h3 { font-size: 17px; margin: 6px 0 8px; }
.upd-card-body p { font-size: 14px; color: #4B5963; }
.upd-card-date { display: block; margin-top: 10px; font-size: 12px; color: #8A96A0; }

/* ===========================================================
   Live chat widget
   =========================================================== */
.chat-panel {
  max-width: 640px; margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(6,48,74,0.9), rgba(4,33,47,0.95));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.chat-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.chat-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b;
  box-shadow: 0 0 0 3px rgba(255,59,59,0.25); animation: chatPulse 1.6s infinite;
}
@keyframes chatPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.chat-messages {
  height: 320px; overflow-y: auto; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-empty { color: #9FC6DA; font-size: 13.5px; text-align: center; margin: auto; }
.chat-message { display: flex; flex-direction: column; gap: 2px; }
.chat-message-head { display: flex; align-items: baseline; gap: 8px; }
.chat-message-name { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--gold); }
.chat-message-time { font-size: 11px; color: #7FA9C0; }
.chat-message-text { font-size: 14px; color: #EAF6FD; line-height: 1.45; word-break: break-word; }
.chat-compose {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 14px 20px;
  display: flex; flex-direction: column; gap: 8px; background: rgba(0,0,0,0.12);
}
.chat-compose input[type="text"] {
  width: 100%; padding: 10px 14px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06); color: #fff; font-size: 14px; font-family: var(--font-body);
}
.chat-compose input[type="text"]::placeholder { color: #7FA9C0; }
.chat-compose-row { display: flex; gap: 8px; }
.chat-compose-row input { flex: 1; }
.chat-send-btn {
  padding: 10px 18px; border-radius: 10px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff; font-weight: 700; font-family: var(--font-display); font-size: 13.5px;
  transition: opacity .15s ease;
}
.chat-send-btn:disabled { opacity: 0.5; cursor: default; }
.chat-toast { padding: 0 20px 12px; font-size: 12.5px; }
.chat-toast.error { color: #ff8080; }

html[data-theme="light"] .chat-panel { background: var(--white); border-color: var(--line); }
html[data-theme="light"] .chat-header { color: var(--ink); border-color: var(--line); }
html[data-theme="light"] .chat-empty { color: #6B7A85; }
html[data-theme="light"] .chat-message-name { color: var(--blue-dark); }
html[data-theme="light"] .chat-message-time { color: #8A96A0; }
html[data-theme="light"] .chat-message-text { color: var(--ink); }
html[data-theme="light"] .chat-compose { background: var(--mist); border-color: var(--line); }
html[data-theme="light"] .chat-compose input[type="text"] { background: #fff; border-color: var(--line); color: var(--ink); }
html[data-theme="light"] .chat-compose input[type="text"]::placeholder { color: #9AA7B0; }

/* ===========================================================
   Cookie consent banner
   =========================================================== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 640px; margin: 0 auto;
  background: var(--navy-deep); color: #EAF6FD;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  animation: cookieSlideUp .3s ease;
}
@keyframes cookieSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner p { flex: 1 1 260px; font-size: 13.5px; line-height: 1.5; margin: 0; color: #CFE6F2; }
.cookie-banner-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-banner button {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  padding: 9px 16px; border-radius: 9px; cursor: pointer; white-space: nowrap;
}
.cookie-accept { border: none; background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark)); color: #fff; }
.cookie-decline { border: 1px solid rgba(255,255,255,0.25); background: transparent; color: #CFE6F2; }
html[data-theme="light"] .cookie-banner { background: var(--white); color: var(--ink); border-color: var(--line); }
html[data-theme="light"] .cookie-banner p { color: #4B5963; }
html[data-theme="light"] .cookie-decline { border-color: var(--line); color: var(--navy); }
@media (max-width: 500px) { .cookie-banner { flex-direction: column; align-items: stretch; } .cookie-banner-actions { justify-content: stretch; } .cookie-banner-actions button { flex: 1; } }

/* ===========================================================
   AI Assistant chatbot (rule-based FAQ widget, every page)
   =========================================================== */
.chatbot-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark)); color: #fff;
  box-shadow: 0 8px 22px rgba(6,48,74,0.4); transition: transform .15s, box-shadow .15s;
  display: flex; align-items: center; justify-content: center; padding: 0;
}
.chatbot-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 26px rgba(6,48,74,0.5); }
.chatbot-ava {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  font-size: 20px; line-height: 1;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
}
.chatbot-ava-sm { width: 34px; height: 34px; font-size: 18px; flex: 0 0 auto; }
.chatbot-panel {
  position: fixed; right: 18px; bottom: 84px; z-index: 151;
  width: min(370px, calc(100vw - 36px)); max-height: min(560px, calc(100vh - 120px));
  background: var(--white); border-radius: 16px; overflow: hidden; display: none;
  flex-direction: column; box-shadow: 0 18px 50px rgba(6,48,74,0.4);
  border: 1px solid var(--line);
}
.chatbot-panel.open { display: flex; }
.chatbot-head { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; padding: 14px 16px; }
.chatbot-head-row { display: flex; align-items: center; gap: 10px; }
.chatbot-head strong { font-family: var(--font-display); font-size: 16px; }
.chatbot-head-sub { display: block; font-size: 12px; color: #B9D6E4; font-weight: 400; }
.chatbot-close { float: right; background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }
.chatbot-body { flex: 1; overflow-y: auto; padding: 14px; background: var(--mist); display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 85%; padding: 9px 13px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.chat-msg.bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; color: var(--ink); }
.chat-msg.user { background: var(--blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg a { color: var(--blue-dark); font-weight: 600; text-decoration: underline; }
.chat-msg.user a { color: #fff; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 14px; background: var(--mist); border-top: 1px solid var(--line); }
.chat-quick button {
  font-size: 12px; padding: 6px 10px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--blue); background: #fff; color: var(--blue-dark); font-weight: 600;
}
.chat-quick button:hover { background: var(--blue); color: #fff; }
.chatbot-input { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); background: #fff; }
.chatbot-input input { flex: 1; padding: 10px 12px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--font-body); font-size: 14px; }
.chatbot-input button { border: none; background: var(--blue); color: #fff; border-radius: 999px; padding: 0 16px; cursor: pointer; font-weight: 700; }

html[data-theme="light"] .chatbot-panel { background: var(--white); }
html[data-theme="light"] .chatbot-body { background: var(--mist); }
html[data-theme="light"] .chat-msg.bot { background: #fff; color: var(--ink); }

/* ===========================================================
   Social feed embeds (Facebook Page Plugin + Instagram posts)
   =========================================================== */
.social-feed-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px;
  align-items: start; justify-items: center;
}
@media (max-width: 760px) { .social-feed-grid { grid-template-columns: 1fr; } }
.social-feed-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1000px) { .social-feed-grid-3 { grid-template-columns: 1fr; } }
.social-feed-col { width: 100%; max-width: 400px; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.social-feed-col .fb-page, .social-feed-col iframe { max-width: 100%; }
.social-feed-yt { width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-card); }
.social-feed-yt iframe { width: 100%; height: 100%; border: 0; }

/* ===========================================================
   Contact form (dark navy section)
   =========================================================== */
.contact-form { max-width: 640px; margin: 0 auto; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .contact-form-row { grid-template-columns: 1fr; } }
.contact-form .field label { color: #EAF6FD; }
.contact-form .field input,
.contact-form .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06);
  color: #fff; font-size: 15px; font-family: var(--font-body); resize: vertical;
}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder { color: #7FA9C0; }
.contact-form .field input:focus,
.contact-form .field textarea:focus { outline: none; border-color: var(--blue-bright); background: rgba(255,255,255,0.1); }
html[data-theme="light"] .contact-form .field label { color: var(--navy); }
html[data-theme="light"] .contact-form .field input,
html[data-theme="light"] .contact-form .field textarea { background: #fff; border-color: var(--line); color: var(--ink); }
html[data-theme="light"] .contact-form .field input::placeholder,
html[data-theme="light"] .contact-form .field textarea::placeholder { color: #9AA7B0; }
