/* RSA Dinner Highlights — player page. Palette matches the dinner site. */
:root {
  --ink: #14212b; --paper: #f5f7f4; --surface: #ffffff; --line: #d6ddcf;
  --navy: #10233b; --navy-deep: #0a1626; --evergreen: #1d5045;
  --evergreen-dark: #12352e; --gold: #bd8a35; --muted: #5a6670;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink);
  font-family: Arial, Helvetica, sans-serif; line-height: 1.55; }
.hidden { display: none !important; }

.site-header { background: var(--navy); padding: 0.9rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.mark { background: var(--gold); color: var(--navy); font-weight: bold;
  padding: 0.25rem 0.55rem; border-radius: 4px; letter-spacing: 0.05em; }
.brand-name { color: #fff; font-weight: bold; }
.site-header nav a { color: #c9d3e0; text-decoration: none; font-size: 0.9rem; }
.site-header nav a:hover { color: #fff; }

.hero-band { text-align: center; padding: 2.2rem 1rem 1.2rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem;
  color: var(--gold); font-weight: bold; margin: 0 0 0.4rem; }
h1 { font-family: Georgia, "Times New Roman", serif; color: var(--evergreen-dark);
  font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0; }

.player-band { padding: 0 1rem; }
.player-shell { max-width: 62rem; margin: 0 auto; }
.player { position: relative; background: var(--navy-deep); border-radius: 10px;
  overflow: hidden; box-shadow: 0 12px 34px rgba(10, 22, 38, 0.35);
  aspect-ratio: 16 / 9; outline: none; }
.player:focus-visible { box-shadow: 0 0 0 3px var(--gold); }
video { width: 100%; height: 100%; display: block; background: #000; }

.big-play { position: absolute; inset: 0; margin: auto; width: 86px; height: 86px;
  border-radius: 50%; border: none; background: rgba(16, 35, 59, 0.75);
  color: var(--gold); cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: transform 0.15s ease, background 0.15s; }
.big-play:hover { transform: scale(1.07); background: rgba(16, 35, 59, 0.92); }

.spinner { position: absolute; inset: 0; margin: auto; width: 46px; height: 46px;
  border: 4px solid rgba(255,255,255,0.25); border-top-color: var(--gold);
  border-radius: 50%; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .spinner { animation-duration: 2.5s; }
  .big-play { transition: none; }
}

.controls { position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.4rem 0.8rem 0.55rem;
  background: linear-gradient(transparent, rgba(6, 13, 24, 0.88));
  opacity: 0; transition: opacity 0.2s; }
.player:hover .controls, .player:focus-within .controls,
.player.paused .controls, .player.touch .controls { opacity: 1; }

.seek { width: 100%; accent-color: var(--gold); height: 5px; cursor: pointer; }
.controls-row { display: flex; align-items: center; gap: 0.55rem; margin-top: 0.15rem; }
.controls-row button { background: none; border: none; color: #e8ede9;
  cursor: pointer; padding: 0.25rem; display: flex; align-items: center;
  font: inherit; font-size: 0.82rem; border-radius: 4px; }
.controls-row button:hover { color: var(--gold); }
.time { color: #c9d3e0; font-size: 0.8rem; font-variant-numeric: tabular-nums; }
.spacer { flex: 1; }
.volume { width: 84px; accent-color: var(--gold); }
.menu-holder { position: relative; }
.menu { position: absolute; bottom: 2.2rem; right: 0; background: var(--navy);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; min-width: 7rem;
  padding: 0.25rem; z-index: 5; }
.menu button { width: 100%; text-align: left; padding: 0.4rem 0.6rem; }
.menu button.on { color: var(--gold); font-weight: bold; }

.empty-state { max-width: 40rem; margin: 1rem auto; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 2.5rem 1.5rem; }
.empty-state h2 { font-family: Georgia, serif; color: var(--evergreen-dark); margin: 0 0 0.5rem; }
.empty-state p { color: var(--muted); margin: 0; }

.content-band { max-width: 62rem; margin: 0 auto; padding: 1.2rem 1rem 3rem; }
.description { color: var(--muted); max-width: 46rem; white-space: pre-line; }
.more h2 { font-family: Georgia, serif; color: var(--evergreen-dark);
  font-size: 1.2rem; margin: 2rem 0 0.8rem; }
.more-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1rem; }
.more-card { background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden; cursor: pointer; text-align: left;
  padding: 0; font: inherit; }
.more-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  background: var(--navy-deep); }
.more-card .label { padding: 0.6rem 0.8rem; }
.more-card .label b { display: block; color: var(--evergreen-dark); }
.more-card .label span { font-size: 0.8rem; color: var(--muted); }
.more-card:hover { border-color: var(--evergreen); }

.footer { text-align: center; color: var(--muted); font-size: 0.8rem;
  padding: 1.6rem; border-top: 1px solid var(--line); }
