/* Gukwdzi — Sea Wolf Fleet Command Centre
   Phase 3: THE LIVING BIG HOUSE
   Black & Gold | Kwakwaka'wakw Formline | Mobile-First */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #000000;
  --gold: #C8A84E;
  --gold-light: #E8D48E;
  --gold-dim: #8A7234;
  --red: #CC3333;
  --green: #33CC66;
  --amber: #CCAA33;
  --white: #F0E6D0;
  --grey: #555555;
  --card-bg: rgba(10, 10, 10, 0.85);
  --fire-orange: #D4731A;
  --fire-red: #A83220;
  --ember: #E8943A;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { font-size: 14px; }
body {
  background: #000;
  color: var(--white);
  font-family: var(--font);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== MIST / SMOKE EDGES ===== */
.mist {
  position: fixed;
  pointer-events: none;
  z-index: 50;
}
.mist-left {
  top: 0; left: 0; width: 60px; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.9), transparent);
  animation: mist-drift 12s ease-in-out infinite;
}
.mist-right {
  top: 0; right: 0; width: 60px; height: 100%;
  background: linear-gradient(to left, rgba(0,0,0,0.9), transparent);
  animation: mist-drift 14s ease-in-out infinite reverse;
}
.mist-top {
  top: 0; left: 0; width: 100%; height: 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}
@keyframes mist-drift {
  0%, 100% { opacity: 0.7; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.3); }
}

/* ===== BIG HOUSE CONTAINER ===== */
#bighouse {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 0 12px 40px;
}

/* ===== ROOF & SMOKE HOLE ===== */
#roof {
  position: relative;
  height: 60px;
  overflow: visible;
}
.smoke-hole {
  position: absolute;
  top: -20px;
  left: 30%;
  right: 30%;
  height: 50px;
  background: radial-gradient(ellipse, rgba(20, 18, 12, 0.6) 0%, transparent 70%);
}
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.roof-beam {
  width: 100%;
  height: 60px;
}

/* ===== HEADER ===== */
#header {
  text-align: center;
  padding: 4px 0 12px;
  position: relative;
  z-index: 5;
}
#header h1 {
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(200, 168, 78, 0.25);
}
#header .subtitle {
  font-size: 0.6rem;
  color: var(--gold-dim);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
#fleet-clock {
  font-size: 0.6rem;
  color: var(--grey);
  font-family: 'Courier New', monospace;
  margin-top: 4px;
}

/* ===== HOUSE WALLS ===== */
.house-wall {
  position: fixed;
  top: 60px;
  bottom: 0;
  width: 4px;
  z-index: 2;
}
.wall-left {
  left: max(0px, calc(50% - 460px));
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-dim) 50%, rgba(138,114,52,0.3) 100%);
  opacity: 0.25;
}
.wall-right {
  right: max(0px, calc(50% - 460px));
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-dim) 50%, rgba(138,114,52,0.3) 100%);
  opacity: 0.25;
}

/* Formline house posts */
.house-post {
  position: fixed;
  width: 8px;
  height: 40%;
  z-index: 3;
  opacity: 0.15;
  background: repeating-linear-gradient(
    to bottom,
    var(--gold) 0px, var(--gold) 2px,
    transparent 2px, transparent 20px,
    var(--gold) 20px, var(--gold) 22px,
    transparent 22px, transparent 30px
  );
  animation: post-breathe 10s ease-in-out infinite;
}
.post-left { left: max(8px, calc(50% - 448px)); }
.post-right { right: max(8px, calc(50% - 448px)); }
.post-1 { top: 20%; }
.post-2 { top: 55%; animation-delay: 5s; }
@keyframes post-breathe {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.22; }
}

/* ===== TRIAGE BAR ===== */
#triage-bar {
  position: relative;
  z-index: 10;
  background: rgba(26, 10, 0, 0.9);
  border: 1px solid rgba(204, 51, 51, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0 0 16px;
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
}
#triage-bar.has-items {
  border-color: var(--red);
  box-shadow: 0 0 25px rgba(204, 51, 51, 0.2), inset 0 0 20px rgba(204, 51, 51, 0.05);
  animation: triage-pulse 3s ease-in-out infinite;
}
@keyframes triage-pulse {
  0%, 100% { box-shadow: 0 0 25px rgba(204, 51, 51, 0.2); }
  50% { box-shadow: 0 0 40px rgba(204, 51, 51, 0.35); }
}
.triage-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.triage-header h2 {
  font-size: 0.75rem; color: var(--red); text-transform: uppercase;
  letter-spacing: 0.15em; font-weight: 600;
}
.triage-badge {
  background: var(--red); color: #000; font-size: 0.6rem; font-weight: 700;
  padding: 2px 7px; border-radius: 10px; min-width: 20px; text-align: center;
}
.triage-item {
  display: flex; align-items: center; gap: 8px; padding: 7px 0;
  border-top: 1px solid rgba(204, 51, 51, 0.15); font-size: 0.78rem;
  animation: triage-slide-in 0.4s ease-out;
}
@keyframes triage-slide-in {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.triage-item.resolving {
  animation: triage-fade-out 0.5s ease-out forwards;
}
@keyframes triage-fade-out {
  to { opacity: 0; transform: translateX(-30px); height: 0; padding: 0; overflow: hidden; }
}
.triage-agent { color: var(--gold); font-weight: 600; min-width: 60px; }
.triage-msg { flex: 1; color: var(--white); }
.triage-time { color: var(--grey); font-size: 0.6rem; white-space: nowrap; }
.triage-resolve {
  background: none; border: 1px solid var(--green); color: var(--green);
  width: 26px; height: 26px; border-radius: 50%; cursor: pointer;
  font-size: 0.75rem; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.triage-resolve:hover, .triage-resolve:active {
  background: var(--green); color: #000;
}
.triage-empty { color: var(--grey); font-size: 0.7rem; font-style: italic; }

/* ===== CHIEF'S SEAT — SIWID ===== */
#chief-seat {
  position: relative;
  z-index: 10;
  margin: 0 auto 20px;
  max-width: 100%;
}
#chief-seat .station {
  border-width: 2px;
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(15,12,4,0.95) 0%, rgba(10,10,10,0.9) 100%);
  padding: 16px;
}
#chief-seat .station-name { font-size: 1.1rem; }
.chief-label {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}

/* ===== FIRE PIT ===== */
#fire-pit {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 10px auto 20px;
  z-index: 5;
}
.fire-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 30px; height: 30px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #F4A830 0%, var(--fire-orange) 40%, var(--fire-red) 80%, transparent 100%);
  animation: fire-flicker 0.15s ease-in-out infinite alternate;
  box-shadow: 0 0 20px 8px rgba(212, 115, 26, 0.5);
}
@keyframes fire-flicker {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
  25% { transform: translate(-51%, -49%) scale(1.05); opacity: 1; }
  50% { transform: translate(-49%, -51%) scale(0.95); opacity: 0.85; }
  75% { transform: translate(-50%, -50%) scale(1.02); opacity: 0.95; }
  100% { transform: translate(-50.5%, -49.5%) scale(0.98); opacity: 1; }
}
.fire-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 140px; height: 140px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 115, 26, 0.12) 0%, rgba(168, 50, 32, 0.06) 40%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  30% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
  60% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
}
.fire-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(200, 168, 78, 0.2);
  animation: post-breathe 8s ease-in-out infinite;
}
#ember-canvas {
  position: absolute;
  top: -80px; left: -50px;
  width: 200px; height: 200px;
  pointer-events: none;
}

/* Fire casts warm light on nearby content */
#house-floor {
  position: relative;
  z-index: 10;
}

/* ===== AGENT WALLS — FACING THE FIRE ===== */
.agent-wall {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

/* ===== AGENT STATION ===== */
.station {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 8px;
  padding: 12px;
  padding-left: 62px; /* room for character */
  min-height: 90px;
  transition: all 0.5s ease;
  overflow: hidden;
  backdrop-filter: blur(2px);
}
.station.active {
  border-color: rgba(51, 204, 102, 0.5);
  box-shadow: 0 0 15px rgba(51, 204, 102, 0.08);
}
.station.waiting {
  border-color: rgba(204, 170, 51, 0.5);
  animation: waiting-glow 2.5s ease-in-out infinite;
}
@keyframes waiting-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(204, 170, 51, 0.1); }
  50% { box-shadow: 0 0 25px rgba(204, 170, 51, 0.25); }
}
.station.error {
  border-color: rgba(204, 51, 51, 0.6);
  animation: error-flash 1.5s ease-in-out infinite;
}
@keyframes error-flash {
  0%, 100% { box-shadow: 0 0 12px rgba(204, 51, 51, 0.15); }
  50% { box-shadow: 0 0 30px rgba(204, 51, 51, 0.35); }
}
.station.diagnosing {
  border-color: var(--red);
  border-style: dashed;
}

/* Status change ripple */
.station.ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid var(--gold);
  animation: ripple-out 0.8s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-out {
  from { transform: scale(1); opacity: 0.6; }
  to { transform: scale(1.08); opacity: 0; }
}

/* ===== ANIMATED CHARACTER ===== */
.agent-char {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 64px;
  z-index: 3;
}
/* Character body parts */
.char-head {
  position: absolute;
  top: 0; left: 50%;
  width: 14px; height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--gold-dim);
  transition: background 0.5s;
}
.char-body {
  position: absolute;
  top: 16px; left: 50%;
  width: 18px; height: 22px;
  transform: translateX(-50%);
  border-radius: 4px 4px 2px 2px;
  background: var(--gold-dim);
  transition: all 0.5s;
}
.char-arm-l, .char-arm-r {
  position: absolute;
  top: 18px;
  width: 4px; height: 16px;
  background: var(--gold-dim);
  border-radius: 2px;
  transform-origin: top center;
  transition: all 0.5s;
}
.char-arm-l { left: 8px; }
.char-arm-r { right: 8px; }
.char-leg-l, .char-leg-r {
  position: absolute;
  bottom: 0;
  width: 5px; height: 18px;
  background: var(--gold-dim);
  border-radius: 2px;
  transform-origin: top center;
  transition: all 0.5s;
}
.char-leg-l { left: 12px; }
.char-leg-r { right: 12px; }
.char-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 50px; height: 50px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.5s;
  opacity: 0;
}

/* Active — standing, working */
.station.active .char-head { background: var(--gold); }
.station.active .char-body { background: var(--gold); }
.station.active .char-arm-l, .station.active .char-arm-r { background: var(--gold); }
.station.active .char-leg-l, .station.active .char-leg-r { background: var(--gold); }
.station.active .char-arm-l { animation: arm-work-l 2s ease-in-out infinite; }
.station.active .char-arm-r { animation: arm-work-r 2s ease-in-out infinite 0.5s; }
.station.active .char-glow {
  opacity: 1;
  background: radial-gradient(circle, rgba(200,168,78,0.2) 0%, transparent 70%);
  animation: char-glow-pulse 3s ease-in-out infinite;
}
@keyframes arm-work-l {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(-25deg); }
}
@keyframes arm-work-r {
  0%, 100% { transform: rotate(5deg); }
  50% { transform: rotate(20deg); }
}
@keyframes char-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Idle — seated, breathing only */
.station.idle .char-head { background: var(--grey); }
.station.idle .char-body { 
  background: var(--grey); 
  transform: translateX(-50%) scaleY(0.85); 
  top: 20px;
}
.station.idle .char-arm-l { background: var(--grey); transform: rotate(15deg); top: 22px; }
.station.idle .char-arm-r { background: var(--grey); transform: rotate(-15deg); top: 22px; }
.station.idle .char-leg-l { background: var(--grey); transform: rotate(20deg); height: 14px; }
.station.idle .char-leg-r { background: var(--grey); transform: rotate(-20deg); height: 14px; }
.station.idle .agent-char { animation: breathe 4s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.02); }
}

/* Waiting — hand raised, blinking */
.station.waiting .char-head { background: var(--amber); }
.station.waiting .char-body { background: var(--amber); }
.station.waiting .char-arm-l { background: var(--amber); }
.station.waiting .char-arm-r { 
  background: var(--gold); 
  animation: hand-raise 1.5s ease-in-out infinite;
  height: 20px;
}
.station.waiting .char-leg-l, .station.waiting .char-leg-r { background: var(--amber); }
.station.waiting .char-glow {
  opacity: 1;
  background: radial-gradient(circle, rgba(204,170,51,0.25) 0%, transparent 70%);
  animation: char-glow-pulse 2s ease-in-out infinite;
}
@keyframes hand-raise {
  0%, 100% { transform: rotate(-140deg); }
  50% { transform: rotate(-160deg); }
}

/* Error — hunched, red glow */
.station.error .char-head { background: var(--red); animation: error-shake 0.3s ease-in-out infinite; }
.station.error .char-body { 
  background: var(--red); 
  transform: translateX(-50%) scaleY(0.8) rotate(5deg);
}
.station.error .char-arm-l { background: var(--red); transform: rotate(30deg); }
.station.error .char-arm-r { background: var(--red); transform: rotate(-30deg); }
.station.error .char-leg-l, .station.error .char-leg-r { background: var(--red); }
.station.error .char-glow {
  opacity: 1;
  background: radial-gradient(circle, rgba(204,51,51,0.3) 0%, transparent 70%);
  animation: char-glow-pulse 1.5s ease-in-out infinite;
}
@keyframes error-shake {
  0%, 100% { transform: translateX(-50%) rotate(0deg); }
  25% { transform: translateX(-50%) rotate(-2deg); }
  75% { transform: translateX(-50%) rotate(2deg); }
}

/* Diagnosing — Honayus special movement */
.station.diagnosing .char-body { background: var(--red); }
.station.diagnosing .char-head { background: var(--red); }
.station.diagnosing .char-arm-l, .station.diagnosing .char-arm-r { background: var(--red); }
.station.diagnosing .agent-char {
  animation: honayus-walk 1.2s steps(4) infinite;
}
@keyframes honayus-walk {
  0% { transform: translateY(-50%) translateX(0); }
  25% { transform: translateY(-52%) translateX(2px); }
  50% { transform: translateY(-50%) translateX(4px); }
  75% { transform: translateY(-48%) translateX(2px); }
  100% { transform: translateY(-50%) translateX(0); }
}

/* ===== STATION CONTENT ===== */
.station-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 6px;
  position: relative; z-index: 2;
}
.indicator-dot {
  display: block; width: 8px; height: 8px; border-radius: 50%;
}
.station-indicator.pulse .indicator-dot {
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
.station-identity { flex: 1; }
.station-name {
  font-size: 0.9rem; color: var(--gold); font-weight: 600; line-height: 1.2;
}
.station-role {
  font-size: 0.55rem; color: var(--gold-dim); text-transform: uppercase; letter-spacing: 0.08em;
}
.station-ip {
  font-size: 0.5rem; color: var(--grey); font-family: 'Courier New', monospace;
}
.station-status {
  display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
  position: relative; z-index: 2;
}
.status-badge {
  font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid; padding: 1px 6px; border-radius: 3px; white-space: nowrap;
}
.station-task {
  font-size: 0.75rem; color: var(--white); flex: 1;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Task panel */
.station-tasks {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(200, 168, 78, 0.08);
  padding-top: 4px;
}
.task-section { margin-bottom: 2px; }
.task-label {
  font-size: 0.45rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--grey); display: block;
}
.task-item {
  font-size: 0.65rem; padding: 1px 0 1px 6px;
  border-left: 2px solid transparent; line-height: 1.3;
}
.task-item.past { color: var(--grey); border-left-color: rgba(85,85,85,0.3); text-decoration: line-through; opacity: 0.5; }
.task-item.active { color: var(--gold-light); border-left-color: var(--gold); font-weight: 500; }
.task-item.queued { color: rgba(240,230,208,0.4); border-left-color: rgba(200,168,78,0.15); font-style: italic; }

/* Footer timestamp */
.station-footer {
  margin-top: 4px; position: relative; z-index: 2;
}
.station-updated {
  font-size: 0.5rem; color: var(--grey); font-family: 'Courier New', monospace;
}

/* Honayus fleet health */
.honayus-fleet-health {
  position: relative; z-index: 2;
  background: rgba(200,168,78,0.04);
  border: 1px solid rgba(200,168,78,0.1);
  border-radius: 4px; padding: 6px; margin-top: 4px;
}
.fleet-label {
  font-size: 0.45rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold-dim); display: block; margin-bottom: 3px;
}
.fleet-stats { display: flex; flex-wrap: wrap; gap: 6px; }
.fleet-stat { font-size: 0.6rem; white-space: nowrap; }
.fleet-stat.active { color: var(--green); }
.fleet-stat.idle { color: var(--grey); }
.fleet-stat.waiting { color: var(--amber); }
.fleet-stat.error { color: var(--red); }
.diag-target { margin-top: 3px; font-size: 0.6rem; color: var(--red); }
.diag-target strong { color: var(--gold-light); }

.honayus-badge {
  position: absolute; top: 4px; right: 8px;
  font-size: 0.5rem; color: var(--red); letter-spacing: 0.1em; font-weight: 700; z-index: 3;
}

/* ===== CONNECTION OVERLAY ===== */
#connection-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
}
.diag-line {
  stroke: var(--red);
  stroke-width: 2;
  stroke-dasharray: 8, 5;
  opacity: 0.7;
  animation: dash-flow 1s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -13; }
}
.triage-line {
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-dasharray: 4, 4;
  opacity: 0.4;
  animation: dash-flow 2s linear infinite;
}

/* ===== SOUND TOGGLE ===== */
#sound-toggle {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 200;
  background: rgba(10,10,10,0.8);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
#sound-toggle:hover { border-color: var(--gold); }
#sound-toggle.on { border-color: var(--green); }

/* ===== RESPONSIVE — MOBILE: VERTICAL BIG HOUSE ===== */
@media (max-width: 599px) {
  #bighouse { padding: 0 8px 30px; }
  #header h1 { font-size: 1.5rem; }
  #fire-pit { width: 80px; height: 80px; margin: 6px auto 14px; }
  .fire-core { width: 24px; height: 24px; }
  .fire-glow { width: 110px; height: 110px; }
  .fire-ring { width: 48px; height: 48px; }
  .station { padding-left: 56px; min-height: 80px; }
  .agent-char { width: 38px; height: 56px; }
  .char-head { width: 12px; height: 12px; }
  .char-body { width: 15px; height: 18px; }
}

/* Tablet — two columns flanking fire */
@media (min-width: 600px) {
  #house-floor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  #fire-pit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    pointer-events: none;
  }
  #house-floor { min-height: 500px; }
}

/* Desktop — wider house */
@media (min-width: 900px) {
  #bighouse { max-width: 1100px; }
  #header h1 { font-size: 2.2rem; }
  .station { padding-left: 68px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* Loading */
.loading {
  text-align: center; padding: 30px; color: var(--gold-dim);
  font-size: 0.75rem; letter-spacing: 0.2em;
}
