/* ============================================================
   HABBO RETRO HOTEL — DESIGN TOKENS (v3 · Dark & Clean)
   ------------------------------------------------------------
   Angelehnt an gängige Habbo-Retro-CMS (dunkle Fläche, warmer
   Gold-Akzent für die Haupt-Aktion) kombiniert mit der Ruhe und
   den weichen Pillen-Buttons von apple.com. Alle Bilder sind
   selbst gebaute SVG-Platzhalter unter /assets/img/ — keine
   Habbo-Assets.
   ============================================================ */

:root {
  --bg: #0e1015;
  --bg-elevated: #14161c;
  --surface: #1a1d25;
  --surface-2: #21242e;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text: #f4f5f7;
  --text-dim: #9a9eab;
  --text-faint: #676b78;

  --gold: #ffcc33;
  --gold-dim: #e6b400;
  --gold-ink: #7a5c00;
  --blue: #4a91ff;
  --blue-tint: #1c2540;
  --mint: #24d99b;
  --mint-tint: #123328;
  --danger: #ff5d6c;
  --danger-tint: #3a1a1f;
  --gold-tint: #332a10;

  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 10px 24px rgba(255, 204, 51, 0.22);
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.scanlines { display: none; }

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

.pixel-cut { border-radius: var(--radius); clip-path: none; }

/* ============================================================
   TOP-NAVIGATION
   ============================================================ */
.hud-bar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 16, 21, 0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.hud-inner { max-width: 1240px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 28px; }
.hud-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hud-logo-tile { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--gold), #ff9b3d 65%); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.hud-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: var(--text); }
.hud-nav { display: flex; gap: 2px; flex: 1; }
.hud-nav a { font-family: var(--font-body); font-weight: 500; font-size: 14.5px; color: var(--text-dim); padding: 9px 16px; border-radius: var(--radius-pill); transition: color 0.15s, background 0.15s; }
.hud-nav a:hover { color: var(--text); background: var(--surface-2); }
.hud-nav a.active { color: var(--gold); background: var(--gold-tint); }
.hud-auth { display: flex; align-items: center; gap: 10px; }
.hud-userchip { display: flex; align-items: center; gap: 9px; padding: 5px 14px 5px 5px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-pill); }
.hud-userchip-avatar { width: 30px; height: 30px; object-fit: cover; object-position: top; border-radius: 999px; background: var(--surface); }
.hud-userchip-meta { display: flex; flex-direction: column; line-height: 1.2; }
.hud-userchip-name { font-size: 12.5px; font-weight: 600; color: var(--text); }
.hud-userchip-rank { font-size: 10.5px; color: var(--gold); font-weight: 600; }

/* ============================================================
   BUTTONS — Apple-Pillen, hier im Gold-Ton der Haupt-Aktion
   ============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 13px 26px; border: none; cursor: pointer; border-radius: var(--radius-pill); transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, filter 0.15s ease; }
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-accent { background: linear-gradient(180deg, #ffdb66, var(--gold)); color: #241a00; box-shadow: var(--shadow-gold); }
.btn-accent:hover { filter: brightness(1.06); box-shadow: 0 14px 30px rgba(255, 204, 51, 0.30); transform: translateY(-1px); }
.btn-pink { background: linear-gradient(180deg, #6aa8ff, var(--blue)); color: #fff; box-shadow: 0 10px 24px rgba(74, 145, 255, 0.28); }
.btn-pink:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: var(--surface); border-color: var(--text-faint); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================================================
   PAGE SHELL / LAYOUT
   ============================================================ */
.page-shell { max-width: 1240px; margin: 0 auto; padding: 36px 24px 90px; }
.flash-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.flash { padding: 14px 18px; font-size: 14px; font-weight: 500; border-radius: var(--radius-sm); background: var(--surface-2); }
.flash-success { background: var(--mint-tint); color: var(--mint); }
.flash-error { background: var(--danger-tint); color: var(--danger); }
.flash-info { background: var(--blue-tint); color: var(--blue); }

/* ============================================================
   INDEX-HERO — Zimmer-Collage links, Login-Karte rechts
   ============================================================ */
.index-hero {
  display: grid;
  grid-template-columns: 1.35fr 400px;
  gap: 28px;
  margin-bottom: 64px;
  align-items: stretch;
}
@media (max-width: 900px) { .index-hero { grid-template-columns: 1fr; } }

.room-collage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-elevated);
  min-height: 480px;
}
.room-collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 118px;
  gap: 3px;
  height: 100%;
}
.room-collage-grid img { width: 100%; height: 100%; object-fit: cover; }
.room-collage-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.room-collage-grid a:nth-child(6) { grid-column: span 2; }
.room-collage-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,16,21,0.05) 40%, rgba(14,16,21,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
  pointer-events: none;
}
.room-collage-overlay h1 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 12px; color: #fff;
}
.room-collage-overlay h1 span { color: var(--gold); }
.room-collage-overlay p { color: rgba(255,255,255,0.72); font-size: 15px; max-width: 440px; margin: 0; }

.login-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.login-card-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.login-card-online {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--text-dim); margin-bottom: 28px;
}
.login-card-online::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px var(--mint-tint); }
.login-card h2 { font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 18px; }
.login-card .field { margin-bottom: 16px; }
.login-card-links { display: flex; justify-content: flex-end; margin: -6px 0 18px; }
.login-card-links a { font-size: 12.5px; color: var(--text-faint); }
.login-card-links a:hover { color: var(--text-dim); }
.login-card-footer { margin-top: 20px; text-align: center; font-size: 13px; color: var(--text-dim); }
.login-card-footer a { color: var(--gold); font-weight: 600; }

.welcome-card { text-align: center; padding: 40px 28px; }
.welcome-card .dash-avatar-wrap { margin: 0 auto 18px; }
.welcome-card h2 { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin: 0 0 8px; }
.welcome-card p { color: var(--text-dim); font-size: 14px; margin: 0 0 24px; }

/* ============================================================
   SECTIONS / CARDS
   ============================================================ */
.section-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; margin: 0 0 24px; color: var(--text); }
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } .hud-nav { display: none; } }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 30px; }
.tile-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px; transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.tile-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-strong); }
.tile-card h3 { font-family: var(--font-display); font-size: 16.5px; font-weight: 700; margin: 0 0 8px; }
.tile-card p { font-size: 14px; color: var(--text-dim); margin: 0; line-height: 1.55; }
.tile-icon { width: 40px; height: 40px; margin-bottom: 16px; background: var(--gold-tint); display: flex; align-items: center; justify-content: center; border-radius: 12px; color: var(--gold); font-family: var(--font-display); font-weight: 700; font-size: 14px; }

.resident-card { text-align: center; padding: 22px 14px 18px; }
.resident-avatar-wrap { background: radial-gradient(circle at 50% 25%, var(--surface-2), transparent 72%); border-radius: 14px; margin-bottom: 6px; height: 118px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.resident-avatar-wrap img { height: 136px; width: auto; }
.resident-name { font-size: 13.5px; font-weight: 700; margin-top: 6px; color: var(--text); }
.resident-rank { font-size: 11.5px; color: var(--text-faint); font-weight: 500; }

/* ============================================================
   FORMS
   ============================================================ */
.form-shell { max-width: 460px; margin: 0 auto; }
.form-shell.wide { max-width: 640px; }
.form-header { text-align: center; margin-bottom: 32px; }
.form-header h1 { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.01em; margin: 0 0 10px; }
.form-header p { color: var(--text-dim); font-size: 15px; margin: 0; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
.field input[type="text"], .field input[type="password"], .field input[type="email"], .field input[type="date"], .field select {
  width: 100%; background: var(--surface-2); border: 1.5px solid var(--line); color: var(--text); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: var(--font-body); font-size: 15px; outline: none; transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field select:focus { border-color: var(--gold); background: var(--surface); box-shadow: 0 0 0 4px var(--gold-tint); }
.field-hint { font-size: 12.5px; color: var(--text-faint); margin-top: 7px; }
.field-row { display: flex; gap: 14px; }
.field-row .field { flex: 1; }
.gender-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gender-option { position: relative; }
.gender-option input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.gender-option .tile-card { text-align: center; cursor: pointer; padding: 18px 10px 16px; }
.gender-option input:checked + .tile-card { border-color: var(--gold); background: var(--gold-tint); box-shadow: 0 0 0 2px var(--gold); }
.gender-option .avatar-preview { height: 96px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; margin-bottom: 4px; }
.gender-option .avatar-preview img { height: 114px; width: auto; }
.gender-option .gender-label { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; }

/* ============================================================
   APP-SHELL — Sidebar-Layout für eingeloggte Bereiche
   ============================================================ */
.app-shell { display: flex; gap: 28px; align-items: flex-start; }
.app-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky; top: 92px;
}
.app-sidebar-user { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.app-sidebar-user img { width: 42px; height: 42px; border-radius: 999px; object-fit: cover; object-position: top; background: var(--surface-2); }
.app-sidebar-user .name { font-weight: 700; font-size: 14px; }
.app-sidebar-user .motto { font-size: 11.5px; color: var(--text-faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 130px; }
.app-nav-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-faint); margin: 18px 0 8px; padding: 0 12px; }
.app-nav-label:first-of-type { margin-top: 0; }
.app-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--text-dim); }
.app-nav a:hover { background: var(--surface-2); color: var(--text); }
.app-nav a.active { background: var(--gold-tint); color: var(--gold); font-weight: 700; }
.app-nav a.disabled { opacity: 0.4; cursor: default; }
.app-nav a.disabled:hover { background: transparent; color: var(--text-dim); }
.app-nav-logout { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.app-main { flex: 1; min-width: 0; }
@media (max-width: 860px) {
  .app-shell { flex-direction: column; }
  .app-sidebar { width: 100%; position: static; }
}

/* ============================================================
   DASHBOARD / ACCOUNT (me.php)
   ============================================================ */
.dash-header { display: flex; align-items: center; gap: 28px; padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin-bottom: 26px; flex-wrap: wrap; }
.dash-avatar-wrap { width: 116px; height: 136px; background: radial-gradient(circle at 50% 22%, var(--surface-2), transparent 72%); border-radius: 18px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; flex-shrink: 0; }
.dash-avatar-wrap img { height: 156px; width: auto; }
.dash-id { flex: 1; min-width: 200px; }
.dash-id h1 { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.01em; margin: 0 0 10px; }
.dash-motto { color: var(--text-dim); font-size: 14.5px; margin: 0 0 12px; }
.dash-badge { display: inline-block; font-size: 12.5px; font-weight: 700; color: var(--gold); background: var(--gold-tint); border-radius: var(--radius-pill); padding: 6px 14px; }
.stat-row { display: flex; gap: 14px; flex-wrap: wrap; }
.stat-box { background: var(--surface-2); border-radius: var(--radius-sm); padding: 16px 22px; min-width: 110px; }
.stat-box .num { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); }
.stat-box .lbl { font-size: 11.5px; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.info-list li:last-child { border-bottom: none; }
.info-list .k { color: var(--text-faint); font-weight: 500; font-size: 13px; }
.info-list .v { color: var(--text); font-weight: 600; }

/* ============================================================
   ARTIKEL / NEWS (articles.php)
   ============================================================ */
.article-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card-image { height: 170px; overflow: hidden; background: var(--surface-2); }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 20px 22px 22px; }
.article-card-date { font-size: 11.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
.article-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.article-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; margin: 0 0 14px; }
.article-card .read-more { font-size: 13px; font-weight: 700; color: var(--gold); }

.article-detail { max-width: 760px; }
.article-detail-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; box-shadow: var(--shadow-md); }
.article-detail-image img { width: 100%; display: block; }
.article-detail-date { font-size: 12.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 10px; }
.article-detail h1 { font-family: var(--font-display); font-size: 30px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 22px; }
.article-detail-content { font-size: 15.5px; line-height: 1.75; color: var(--text-dim); white-space: pre-line; }

/* Zweispaltiges Layout: großer Artikel + "Letzte Artikel" ------------- */
.articles-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .articles-layout { grid-template-columns: 1fr; } }
.articles-main .article-detail-image { margin-bottom: 24px; }
.articles-main h1 { font-size: 26px; }
.articles-side { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; position: sticky; top: 92px; }
.articles-side-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-dim); margin: 0 0 16px; }
.side-article-item { display: flex; flex-direction: column; gap: 4px; padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 10px; border-left: 4px solid var(--gold); background: var(--surface-2); transition: transform 0.15s ease, background 0.15s ease; }
.side-article-item:last-child { margin-bottom: 0; }
.side-article-item:hover { transform: translateX(2px); background: var(--surface); }
.side-article-title { font-size: 13.5px; font-weight: 700; color: var(--text); }
.side-article-more { font-size: 11.5px; color: var(--text-faint); }
.side-accent-1 { border-left-color: var(--gold); }
.side-accent-2 { border-left-color: var(--blue); }
.side-accent-3 { border-left-color: var(--mint); }
.side-accent-4 { border-left-color: #a78bfa; }
.side-accent-5 { border-left-color: var(--danger); }

/* Reaktionen ------------------------------------------------------------ */
.reaction-bar { display: flex; gap: 10px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.reaction-btn { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--text-dim); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 8px 16px; cursor: pointer; transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease; }
.reaction-btn:hover:not(:disabled) { transform: translateY(-1px); border-color: var(--line-strong); }
.reaction-btn.active { background: var(--gold-tint); border-color: var(--gold); color: var(--gold); }
.reaction-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Kommentare -------------------------------------------------------------- */
.comments-section { margin-top: 20px; }
.comment-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.comment-item:last-of-type { border-bottom: none; }
.comment-avatar { width: 34px; height: 34px; border-radius: 999px; object-fit: cover; object-position: top; background: var(--surface-2); flex-shrink: 0; }
.comment-body { flex: 1; min-width: 0; }
.comment-meta { font-size: 11.5px; color: var(--text-faint); margin-bottom: 4px; }
.comment-author { font-weight: 700; color: var(--text-dim); }
.comment-text { font-size: 14px; color: var(--text); margin: 0; line-height: 1.5; }
.comment-form { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.comment-form input[type="text"] { flex: 1; background: var(--surface-2); border: 1.5px solid var(--line); color: var(--text); border-radius: var(--radius-pill); padding: 10px 18px; font-family: var(--font-body); font-size: 14px; outline: none; }
.comment-form input[type="text"]:focus { border-color: var(--gold); }

/* ============================================================
   MITARBEITER (staff.php)
   ============================================================ */
.staff-group { margin-bottom: 40px; }
.staff-group-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 16px; font-weight: 700; margin: 0 0 18px; }
.staff-group-count { font-size: 12px; color: var(--text-faint); font-weight: 500; background: var(--surface-2); border-radius: var(--radius-pill); padding: 3px 10px; }
.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .staff-grid { grid-template-columns: repeat(2, 1fr); } }
.staff-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.staff-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.staff-card-avatar { height: 110px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; margin-bottom: 4px; }
.staff-card-avatar img { height: 128px; width: auto; }
.staff-card-name { font-weight: 700; font-size: 13.5px; margin-top: 4px; }
.staff-card-motto { font-size: 11.5px; color: var(--text-faint); margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; }
.site-footer-inner { max-width: 1240px; margin: 0 auto; padding: 26px 24px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: var(--text-faint); }
.dot { opacity: 0.5; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px var(--mint-tint); animation: pulse 2s infinite ease-in-out; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.mono { font-family: var(--font-mono); }
