/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0f0f13;
  --surface:    #1a1a24;
  --card:       #22222f;
  --card-hover: #2a2a3a;
  --border:     #2e2e42;
  --red:        #dc2626;
  --red-dark:   #b91c1c;
  --red-light:  #fef2f2;
  --green:      #16a34a;
  --green-bg:   #f0fdf4;
  --green-border:#86efac;
  --text:       #f1f1f5;
  --text-muted: #8888aa;
  --text-dim:   #555566;
  --radius:     10px;
  --radius-sm:  6px;
  --shadow:     0 4px 24px rgba(0,0,0,.4);
}

html { font-size: 15px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text',
               'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography helpers ──────────────────────────────────── */
.text-muted  { color: var(--text-muted); }
.text-small  { font-size: 0.82rem; }
.text-center { text-align: center; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.1rem;
  border: none; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background .15s, opacity .15s, transform .1s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary  { background: var(--red);     color: #fff; }
.btn-primary:hover { background: var(--red-dark); text-decoration: none; }

.btn-outline  { background: transparent; color: var(--text);
                border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--text-muted); text-decoration: none; }

.btn-ghost    { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { background: rgba(255,255,255,.06);
                   color: var(--text); text-decoration: none; }

.btn-danger:hover { color: #f87171 !important; }

.btn-full { width: 100%; justify-content: center; }
.btn-sm   { padding: .35rem .8rem; font-size: .82rem; }
.btn-xs   { padding: .2rem .55rem; font-size: .75rem; font-weight: 500; }

/* ── Inputs ──────────────────────────────────────────────── */
input[type="text"], input[type="password"], textarea, select {
  width: 100%;
  padding: .6rem .85rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .93rem;
  font-family: inherit;
  transition: border-color .15s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--red);
}
textarea { resize: vertical; }

.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--text-muted);
               display: flex; align-items: center; gap: .5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.card-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.card-success {
  background: var(--green-bg);
  border-color: var(--green-border);
  color: #1a3a22;
  text-align: center;
}
.card-success .text-muted { color: #4a7a5a; }

/* ── Alerts ──────────────────────────────────────────────── */
.alert { padding: .7rem 1rem; border-radius: var(--radius-sm);
         margin-bottom: 1rem; font-size: .9rem; }
.alert-error { background: rgba(220,38,38,.12); border: 1px solid rgba(220,38,38,.3);
               color: #fca5a5; }

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .15rem .55rem;
  background: rgba(255,255,255,.1);
  border-radius: 99px;
  font-size: .78rem; font-weight: 600;
}
.badge-auto    { background: rgba(220,38,38,.15); color: #f87171; }
.badge-client  { background: rgba(99,102,241,.2); color: #a5b4fc; }

/* ── Toast ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  background: #22222f; border: 1px solid var(--border);
  color: var(--text); padding: .6rem 1.4rem;
  border-radius: 99px; font-size: .9rem; font-weight: 600;
  z-index: 999; box-shadow: var(--shadow);
  transition: opacity .2s;
}
.toast.hidden { opacity: 0; pointer-events: none; }

/* ── Hidden ──────────────────────────────────────────────── */
.hidden { display: none !important; }


/* ══════════════════════════════════════════════════════════
   LOGIN PAGE
   ══════════════════════════════════════════════════════════ */
.login-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  background: radial-gradient(ellipse at 40% 30%, #1a0a0a 0%, #0f0f13 70%);
}

.login-box {
  width: 100%; max-width: 380px;
  padding: 2.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.login-logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: .3rem;
}
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 8px;
  font-size: .9rem; color: #fff;
}
.logo-text { color: var(--text); }

.login-sub {
  color: var(--text-muted); font-size: .85rem;
  margin-bottom: 1.8rem;
}

.login-box .field { margin-bottom: 1rem; }

/* ══════════════════════════════════════════════════════════
   ADMIN NAV
   ══════════════════════════════════════════════════════════ */
.admin-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}

.nav-brand {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 800; font-size: 1rem; color: var(--text);
  text-decoration: none;
}
.nav-brand:hover { text-decoration: none; }

.nav-links { display: flex; align-items: center; gap: .5rem; }
.nav-link {
  color: var(--text-muted); font-size: .88rem; font-weight: 500;
  padding: .35rem .8rem; border-radius: var(--radius-sm);
  text-decoration: none;
}
.nav-link:hover { background: rgba(255,255,255,.06);
                  color: var(--text); text-decoration: none; }
.nav-link-muted:hover { color: var(--text-muted); }


/* ══════════════════════════════════════════════════════════
   ADMIN LAYOUT
   ══════════════════════════════════════════════════════════ */
.admin-page { background: var(--bg); }

.container {
  max-width: 1100px; margin: 0 auto;
  padding: 2rem 1.5rem;
}
.container-narrow { max-width: 680px; }

.page-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: 2rem;
}
.page-header h1 { font-size: 1.6rem; font-weight: 800; }


/* ── Empty state ─────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 4rem 2rem;
  border: 2px dashed var(--border); border-radius: var(--radius);
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h2 { font-size: 1.3rem; margin-bottom: .5rem; }
.empty-state p  { color: var(--text-muted); margin-bottom: 1.5rem; }


/* ── Project grid ────────────────────────────────────────── */
.project-grid { display: flex; flex-direction: column; gap: 1rem; }

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.project-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.project-card-header h2 { font-size: 1.05rem; font-weight: 700; }

.version-list { padding: .5rem 0; }

.version-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 1.5rem;
  transition: background .1s;
}
.version-row:hover { background: rgba(255,255,255,.03); }

.version-info { display: flex; align-items: center; gap: .75rem; }

.version-badge {
  display: inline-block; padding: .15rem .6rem;
  background: rgba(220,38,38,.15); color: #f87171;
  border-radius: 99px; font-size: .78rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-width: 2.4rem; text-align: center;
}

.version-name {
  font-size: .85rem; max-width: 300px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.version-meta { display: flex; align-items: center; gap: .5rem; }
.version-date { font-size: .8rem; }
.comment-count { font-size: .82rem; color: var(--text-muted); }

.project-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.15);
}


/* ── Drop Zone ───────────────────────────────────────────── */
.drop-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}
.drop-zone:hover, .drop-zone.drag-over {
  border-color: var(--red);
  background: rgba(220,38,38,.04);
}
.drop-zone-inner { pointer-events: none; }
.drop-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.drop-zone h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.file-input-hidden {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}


/* ── File preview ────────────────────────────────────────── */
.file-preview {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem;
  background: rgba(220,38,38,.06);
  border: 1px solid rgba(220,38,38,.2);
  border-radius: var(--radius-sm);
  margin-top: .75rem;
}
.file-preview-icon { font-size: 1.8rem; }
.file-preview-info { flex: 1; }
.file-preview-info strong { display: block; font-size: .9rem; }

.input-highlight {
  background: rgba(220,38,38,.08) !important;
  border-color: rgba(220,38,38,.3) !important;
  font-weight: 700; color: #f87171 !important;
}

.project-select-row select { background: var(--surface); }


/* ── Progress bar ────────────────────────────────────────── */
.progress-bar-outer {
  height: 8px; background: var(--border);
  border-radius: 99px; overflow: hidden;
  margin-bottom: .6rem;
}
.progress-bar-inner {
  height: 100%; background: var(--red);
  border-radius: 99px; width: 0;
  transition: width .2s;
}


/* ── Success card ────────────────────────────────────────── */
.success-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.card-success h2 { margin-bottom: .4rem; color: #14532d; }

.link-box {
  display: flex; gap: .5rem; margin: 1.2rem 0 .4rem;
}
.link-input {
  flex: 1; font-family: 'SF Mono', monospace; font-size: .82rem;
  background: #fff !important; border-color: var(--green-border) !important;
  color: #1a3a22 !important;
}

.success-actions {
  display: flex; justify-content: center; gap: .75rem;
  margin-top: 1.2rem;
}
.success-actions .btn { color: #1a3a22 !important; }


/* ══════════════════════════════════════════════════════════
   REVIEW PAGE
   ══════════════════════════════════════════════════════════ */
.review-page {
  background: #0a0a0f;
  min-height: 100vh;
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 100vh;
}

/* ── Player column ───────────────────────────────────────── */
.review-player-col {
  display: flex; flex-direction: column;
  padding: 1.5rem;
  border-right: 1px solid var(--border);
}

.review-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.review-title-group {
  display: flex; align-items: center; gap: .75rem; flex: 1;
}
.review-version-badge {
  display: inline-block; padding: .2rem .7rem;
  background: var(--red); color: #fff;
  border-radius: 6px; font-size: .8rem; font-weight: 800;
  letter-spacing: .03em;
}
.review-title {
  font-size: 1.2rem; font-weight: 700; color: var(--text);
}
.review-client { font-size: .85rem; }

.video-wrapper {
  flex: 1; background: #000;
  border-radius: var(--radius); overflow: hidden;
  position: relative;
}
.video-wrapper video {
  width: 100%; display: block;
  min-height: 200px;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  background: #000;
}

.timestamp-bar {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 1rem; padding: .75rem 1rem;
  background: var(--surface); border-radius: var(--radius-sm);
  flex-wrap: wrap;
}
.current-time-display {
  font-family: 'SF Mono', 'Courier New', monospace;
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); min-width: 3.5rem;
}

/* ── Comments column ─────────────────────────────────────── */
.review-comments-col {
  display: flex; flex-direction: column;
  background: var(--surface);
  height: 100vh; position: sticky; top: 0;
  overflow-y: auto;
}

.comments-header {
  padding: 1.25rem 1.25rem .75rem;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: var(--surface); z-index: 10;
}
.comments-header h2 { font-size: 1rem; font-weight: 700; }

/* ── Comment form ────────────────────────────────────────── */
.comment-form-card {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .7rem;
}

.comment-form-timestamp {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem;
}
.timestamp-pill {
  background: var(--red); color: #fff;
  padding: .15rem .6rem; border-radius: 99px;
  font-family: 'SF Mono', monospace; font-size: .8rem; font-weight: 700;
}

.comment-input, .comment-textarea {
  background: var(--card) !important;
  border-color: var(--border) !important;
  font-size: .88rem;
}
.comment-input:focus, .comment-textarea:focus {
  border-color: var(--red) !important;
}

/* ── Comment list ────────────────────────────────────────── */
.comment-list {
  flex: 1; padding: .75rem 1.25rem;
  display: flex; flex-direction: column; gap: .6rem;
}

.comments-loading, .comments-empty {
  color: var(--text-muted); font-size: .88rem;
  text-align: center; padding: 2rem 0;
  line-height: 1.8;
}

.comment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  transition: border-color .15s;
}
.comment-card:hover { border-color: var(--text-dim); }

.comment-card-header {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap; margin-bottom: .5rem;
}
.timestamp-btn {
  background: rgba(220,38,38,.12); color: #f87171;
  border: none; border-radius: 99px;
  padding: .15rem .65rem;
  font-size: .78rem; font-weight: 700;
  font-family: 'SF Mono', monospace;
  cursor: pointer; transition: background .15s;
}
.timestamp-btn:hover { background: rgba(220,38,38,.25); }

.comment-author {
  font-size: .82rem; font-weight: 700; color: var(--text);
}
.comment-date {
  font-size: .75rem; margin-left: auto;
}
.comment-text {
  font-size: .88rem; color: var(--text);
  white-space: pre-wrap; line-height: 1.55;
}


/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 800px) {
  .review-layout {
    grid-template-columns: 1fr;
  }
  .review-comments-col {
    height: auto; position: relative;
  }
  .video-wrapper video { max-height: 60vw; }
  .field-row { grid-template-columns: 1fr; }
  .review-player-col { border-right: none;
    border-bottom: 1px solid var(--border); }
}

@media (max-width: 500px) {
  .container { padding: 1.2rem 1rem; }
  .page-header { flex-direction: column; }
  .version-row { flex-direction: column; align-items: flex-start; gap: .4rem; }
}

/* ══════════════════════════════════════════════════════════
   MANAGEMENT TABLES (Kunden / Projekte)
   ══════════════════════════════════════════════════════════ */
.alert-success {
  background: rgba(22,163,74,.12);
  border: 1px solid rgba(22,163,74,.3);
  color: #86efac;
}

.nav-link-active {
  background: rgba(255,255,255,.08);
  color: var(--text) !important;
}

.mgmt-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.mgmt-table-head {
  display: grid;
  grid-template-columns: 2fr 1.5fr 80px 80px 100px 260px;
  gap: 1rem;
  padding: .65rem 1.25rem;
  background: rgba(0,0,0,.25);
  font-size: .78rem; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

/* Kunden-Tabelle hat andere Spalten */
.mgmt-table:has(.mgmt-row form[action*="client"]) .mgmt-table-head {
  grid-template-columns: 2fr 2fr 70px 2fr 200px;
}

.mgmt-row {
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.mgmt-row:last-child { border-bottom: none; }
.mgmt-row:hover { background: rgba(255,255,255,.02); }

.mgmt-view,
.mgmt-edit {
  display: grid;
  grid-template-columns: 2fr 1.5fr 80px 80px 100px 260px;
  gap: 1rem;
  align-items: center;
  padding: .85rem 1.25rem;
}

/* Kunden-Rows: andere Spaltenbreite */
.mgmt-table .mgmt-view:has(+ form[action*="client"]),
form[action*="client"].mgmt-edit {
  grid-template-columns: 2fr 2fr 70px 2fr 200px;
}

.mgmt-name {
  font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.mgmt-actions {
  display: flex; gap: .4rem; align-items: center; flex-wrap: wrap;
}

.mgmt-edit input,
.mgmt-edit select {
  padding: .35rem .6rem;
  font-size: .85rem;
  min-width: 0;
}

/* ── Review page download button ────────────────────────── */
.download-btn {
  border-color: var(--border) !important;
  color: var(--text-muted) !important;
}
.download-btn:hover {
  border-color: var(--text-muted) !important;
  color: var(--text) !important;
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   DRAWING CANVAS & TOOLS
   ══════════════════════════════════════════════════════════ */

/* Canvases werden vollständig per JS gesteuert (inline styles) */
#draw-canvas-base,
#draw-canvas-temp,
#annotation-overlay {
    position: absolute;
    top: 0; left: 0;
    display: none;          /* JS setzt display:block beim Aktivieren */
    transition: opacity .3s;
}

/* ── Drawing toolbar ─────────────────────────────────── */
.draw-toolbar {
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 99px;
    padding: .4rem .85rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.draw-toolbar.hidden { display: none !important; }

.draw-tools { display: flex; gap: .2rem; }
.draw-options { display: flex; gap: .4rem; align-items: center; }
.draw-actions { display: flex; gap: .3rem; }

.tool-btn {
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: 8px;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer;
    transition: background .15s, border-color .15s;
    color: var(--text);
}
.tool-btn:hover  { background: rgba(255,255,255,.12); }
.tool-btn.active {
    background: rgba(220,38,38,.25);
    border-color: rgba(220,38,38,.6);
}

#draw-color {
    width: 30px; height: 30px;
    border: none; border-radius: 50%;
    padding: 0; cursor: pointer;
    background: none;
    appearance: none;
    -webkit-appearance: none;
}
#draw-color::-webkit-color-swatch-wrapper { padding: 0; }
#draw-color::-webkit-color-swatch { border-radius: 50%; border: 2px solid rgba(255,255,255,.3); }

#draw-width {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    border-radius: 6px;
    padding: .25rem .4rem;
    font-size: .8rem;
    width: 70px;
}

.btn.active { background: rgba(220,38,38,.15); color: var(--red); }

/* ── Annotation in form ──────────────────────────────── */
.annotation-preview-wrap {
    display: flex; align-items: center; gap: .75rem;
    padding: .6rem .75rem;
    background: rgba(220,38,38,.06);
    border: 1px dashed rgba(220,38,38,.3);
    border-radius: var(--radius-sm);
}
.annotation-preview-img {
    height: 60px; border-radius: 4px;
    border: 1px solid var(--border);
    cursor: pointer;
}

/* ── Annotation thumbnail in comment ─────────────────── */
.comment-annotation-thumb {
    margin: .4rem 0;
    cursor: pointer;
}
.annotation-thumb {
    width: 100%; max-height: 140px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: opacity .15s;
    display: block;
}
.annotation-thumb:hover { opacity: .85; }

/* ── Lightbox ────────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.88);
    display: flex; align-items: center; justify-content: center;
    cursor: zoom-out;
}
.lightbox.hidden { display: none !important; }
.lightbox-img {
    max-width: 92vw; max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0,0,0,.6);
}

/* ── Projekt-Thumbnail ───────────────────────────────────── */
.project-thumb-inline {
  width: 80px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #000;
  display: block;
}
.project-thumb-placeholder {
  width: 80px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ── View-Statistiken ────────────────────────────────────── */
.view-count {
  font-size: .82rem;
  color: #60a5fa;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  cursor: default;
}
.view-unseen {
  font-size: .78rem;
  color: var(--text-dim);
  cursor: default;
}

/* ── Resolved comments ───────────────────────────────────── */
.comment-card.resolved {
  border-color: rgba(22,163,74,.4);
  background: rgba(22,163,74,.04);
}
.resolved-badge {
  font-size: .75rem; margin-left: auto;
}

/* ── Admin controls ──────────────────────────────────────── */
.admin-controls {
  display: flex; gap: .4rem; margin-top: .6rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

/* ── Admin replies ───────────────────────────────────────── */
.comment-reply {
  margin-top: .6rem;
  padding: .65rem .85rem;
  background: rgba(196,163,90,.06);
  border-left: 2px solid rgba(196,163,90,.4);
  border-radius: 0 6px 6px 0;
}
.comment-reply-header {
  display: flex; align-items: center;
  margin-bottom: .3rem;
}
.comment-reply-author {
  font-size: .78rem; font-weight: 700;
  color: #c4a35a;
}

/* ── Reply form ──────────────────────────────────────────── */
.reply-form { margin-top: .3rem; }
.reply-form.hidden { display: none; }
