@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --gold:        #C9A84C;
  --gold-light:  #E2B93B;
  --gold-dark:   #9A7A2E;
  --silver:      #A8A9AD;
  --silver-light:#D4D5D9;
  --silver-dark: #6B6C70;
  --dark:        #1A1A1A;
  --dark-2:      #2C2C2C;
  --dark-3:      #3D3D3D;
  --light:       #F7F6F3;
  --light-2:     #EEECEA;
  --white:       #FFFFFF;
  --success:     #2D7D46;
  --danger:      #B83232;
  --warning:     #C9860A;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --transition:  0.22s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--light);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

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

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

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 1rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-brand img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.navbar-brand .brand-name span { color: var(--gold); }
.navbar-brand .brand-sub {
  font-size: 0.65rem;
  color: var(--silver);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.navbar-nav a {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  color: var(--silver-light);
  font-weight: 500;
  font-size: 0.88rem;
  transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.10);
}
.navbar-actions { display: flex; align-items: center; gap: 0.75rem; }

/* ─── ROLE SWITCHER ──────────────────────────────── */
.role-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 10px;
  padding: 0.35rem 0.75rem;
}
.role-switcher label {
  font-size: 0.75rem;
  color: var(--silver);
  white-space: nowrap;
}
.role-switcher select {
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}
.role-switcher select option { background: var(--dark-2); color: var(--white); }

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--dark);
  box-shadow: 0 2px 12px rgba(201,168,76,0.30);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.45); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-dark {
  background: var(--dark-2);
  color: var(--silver-light);
  border: 1px solid var(--dark-3);
}
.btn-dark:hover { background: var(--dark-3); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-success { background: var(--success); color: var(--white); }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── BADGES ─────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-gold    { background: rgba(201,168,76,0.15); color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.3); }
.badge-silver  { background: rgba(168,169,173,0.15); color: var(--silver-dark); border: 1px solid rgba(168,169,173,0.3); }
.badge-success { background: rgba(45,125,70,0.12); color: var(--success); border: 1px solid rgba(45,125,70,0.25); }
.badge-danger  { background: rgba(184,50,50,0.12); color: var(--danger); border: 1px solid rgba(184,50,50,0.25); }
.badge-warning { background: rgba(201,134,10,0.12); color: var(--warning); border: 1px solid rgba(201,134,10,0.25); }

/* ─── CARDS ──────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.25rem; }
.card-footer {
  padding: 1rem 1.25rem;
  background: var(--light);
  border-top: 1px solid var(--light-2);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}

/* ─── VEHICLE CARD ───────────────────────────────── */
.vehicle-card .vehicle-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  background: var(--light-2);
}
.vehicle-card .vehicle-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 3rem;
}
.vehicle-card .vehicle-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.vehicle-card .vehicle-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.vehicle-card .vehicle-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.vehicle-card .vehicle-price small {
  font-size: 0.75rem;
  color: var(--silver-dark);
  font-weight: 400;
}
.vehicle-card .vehicle-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  color: var(--silver-dark);
  font-size: 0.8rem;
}
.vehicle-card .investment-bar {
  margin-top: 0.75rem;
}
.investment-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--silver-dark);
  margin-bottom: 0.3rem;
}
.investment-bar-track {
  height: 6px;
  background: var(--light-2);
  border-radius: 3px;
  overflow: hidden;
}
.investment-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* ─── FORMS ──────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-3);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--light);
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-control.error { border-color: var(--danger); }
.form-hint { font-size: 0.75rem; color: var(--silver-dark); margin-top: 0.3rem; }
.form-error { font-size: 0.75rem; color: var(--danger); margin-top: 0.3rem; display: none; }
.form-error.visible { display: block; }

/* ─── MODAL ──────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn { from { opacity:0; transform:scale(.95) translateY(10px); } to { opacity:1; transform:none; } }
.modal-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--silver-dark);
  padding: 0.2rem;
  line-height: 1;
}
.modal-close:hover { color: var(--dark); }
.modal-body { padding: 1.25rem 1.5rem; }
.modal-footer {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* ─── SIDEBAR LAYOUT ─────────────────────────────── */
.layout-sidebar {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 68px);
}
.sidebar {
  background: var(--dark);
  padding: 1.5rem 0;
  border-right: 1px solid var(--dark-3);
}
.sidebar-section {
  padding: 0 1rem;
  margin-bottom: 0.5rem;
}
.sidebar-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dark);
  padding: 0.75rem 0.5rem 0.4rem;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--silver-light);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.1rem;
}
.sidebar-item:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.sidebar-item.active { background: rgba(201,168,76,0.15); color: var(--gold); }
.sidebar-icon { font-size: 1rem; width: 20px; text-align: center; }
.sidebar-badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
}

/* ─── MAIN CONTENT ───────────────────────────────── */
.main-content { padding: 2rem; overflow-y: auto; }
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-title { font-family: 'Playfair Display', serif; font-size: 1.75rem; }
.page-title span { color: var(--gold); }
.page-subtitle { color: var(--silver-dark); font-size: 0.88rem; margin-top: 0.2rem; }

/* ─── GRID SYSTEMS ───────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-vehicles { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* ─── STAT CARDS ─────────────────────────────────── */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.stat-card.silver { border-left-color: var(--silver); }
.stat-card.success { border-left-color: var(--success); }
.stat-card.danger  { border-left-color: var(--danger); }
.stat-value { font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--silver-dark); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-change { font-size: 0.78rem; margin-top: 0.5rem; color: var(--success); font-weight: 600; }

/* ─── TABLE ──────────────────────────────────────── */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: var(--white); }
thead th {
  background: var(--dark);
  color: var(--silver-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}
thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
thead th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
tbody tr { border-bottom: 1px solid var(--light-2); transition: var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--light); }
tbody td { padding: 0.85rem 1.25rem; font-size: 0.88rem; vertical-align: middle; }

/* ─── CHAT ───────────────────────────────────────── */
.chat-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  height: calc(100vh - 68px);
}
.chat-list { background: var(--white); border-right: 1px solid var(--light-2); overflow-y: auto; }
.chat-list-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--light-2);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}
.chat-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--light-2);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.chat-item:hover, .chat-item.active { background: var(--light); }
.chat-item.active { border-left: 3px solid var(--gold); }
.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.chat-item-info { flex: 1; min-width: 0; }
.chat-item-name { font-weight: 600; font-size: 0.88rem; }
.chat-item-preview { font-size: 0.78rem; color: var(--silver-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-item-time { font-size: 0.7rem; color: var(--silver); }
.chat-unread { background: var(--gold); color: var(--dark); font-size: 0.65rem; font-weight: 700; padding: 0.1rem 0.4rem; border-radius: 10px; }

.chat-window { display: flex; flex-direction: column; }
.chat-header {
  padding: 1rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--light-2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-messages { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; background: var(--light); }
.message { max-width: 72%; display: flex; flex-direction: column; gap: 0.2rem; }
.message.sent { align-self: flex-end; align-items: flex-end; }
.message.received { align-self: flex-start; }
.message-bubble {
  padding: 0.65rem 1rem;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.message.sent .message-bubble { background: var(--gold); color: var(--dark); border-bottom-right-radius: 4px; }
.message.received .message-bubble { background: var(--white); color: var(--dark); border-bottom-left-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.message-time { font-size: 0.68rem; color: var(--silver-dark); }
.chat-input-area {
  padding: 1rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--light-2);
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}
.chat-input {
  flex: 1;
  resize: none;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
  max-height: 120px;
}
.chat-input:focus { border-color: var(--gold); }
.chat-warning { color: var(--danger); font-size: 0.75rem; padding: 0.3rem 0; display: none; }
.chat-warning.visible { display: block; }

/* ─── INVESTMENT FORM ────────────────────────────── */
.inversion-calc {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--white);
  border: 1px solid var(--dark-3);
}
.inversion-calc .calc-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--dark-3);
  font-size: 0.88rem;
}
.inversion-calc .calc-row:last-child { border-bottom: none; font-weight: 700; font-size: 1rem; color: var(--gold); }
.inversion-calc .calc-label { color: var(--silver-light); }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #2A2210 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--white); margin-bottom: 1rem; }
.hero-title span { color: var(--gold); }
.hero-subtitle { color: var(--silver-light); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FILTERS ────────────────────────────────────── */
.filters-bar {
  background: var(--white);
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--light-2);
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.filter-group { display: flex; align-items: center; gap: 0.5rem; }
.filter-group label { font-size: 0.78rem; font-weight: 600; color: var(--silver-dark); text-transform: uppercase; white-space: nowrap; }
.filter-select {
  padding: 0.45rem 0.85rem;
  border: 1.5px solid var(--light-2);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  background: var(--light);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.filter-select:focus { border-color: var(--gold); }

/* ─── TABS ───────────────────────────────────────── */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--light-2); margin-bottom: 1.5rem; }
.tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--silver-dark);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab:hover { color: var(--dark); }
.tab.active { color: var(--gold-dark); border-bottom-color: var(--gold); }

/* ─── ALERTS ─────────────────────────────────────── */
.alert {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.alert-warning { background: rgba(201,134,10,0.10); border-left: 3px solid var(--warning); color: #7A4F00; }
.alert-info    { background: rgba(45,100,200,0.08); border-left: 3px solid #2D64C8; color: #1A3A70; }
.alert-success { background: rgba(45,125,70,0.10); border-left: 3px solid var(--success); color: var(--success); }

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 2px solid var(--gold-dark);
  padding: 1.5rem 2rem;
  text-align: center;
  color: var(--silver-dark);
  font-size: 0.78rem;
}
.footer span { color: var(--gold); }

/* ─── UTILITY ────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-gold { color: var(--gold-dark); }
.text-silver { color: var(--silver-dark); }
.text-muted { color: var(--silver-dark); font-size: 0.82rem; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.justify-between { justify-content: space-between; }
.w-100 { width: 100%; }
.divider { height: 1px; background: var(--light-2); margin: 1.5rem 0; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2rem; }
  .chat-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .navbar { padding: 0 1rem; }
  .hero { padding: 2rem 1rem; }
}

/* ─── PROGRESS RING ──────────────────────────────── */
.progress-ring-container { display: flex; align-items: center; gap: 1rem; }
.progress-ring { transform: rotate(-90deg); }
.progress-ring-bg { fill: none; stroke: var(--light-2); stroke-width: 6; }
.progress-ring-fill { fill: none; stroke: url(#goldGradient); stroke-width: 6; stroke-linecap: round; transition: stroke-dashoffset 0.6s ease; }

/* ─── EMPTY STATE ────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--silver-dark);
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { font-family: 'Playfair Display', serif; color: var(--dark-3); margin-bottom: 0.5rem; }

/* ─── DEMO BANNER ────────────────────────────────── */
.demo-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
