/* ==========================================================================
   Gallery H & B — Design tokens
   A calm, editorial "white cube" gallery look: warm paper background,
   near-black type, hairline borders instead of heavy shadows, and a single
   restrained brass accent used sparingly. Built to feel uncluttered.
   ========================================================================== */
:root {
  --paper:        #FAF7F1;  /* page background */
  --paper-alt:    #F1EAE0;  /* alternating section background */
  --paper-card:   #FFFFFF;  /* card surfaces */
  --ink:          #1E1B17;  /* primary text */
  --ink-soft:     #58524A;  /* secondary text */
  --stone:        #8B8377;  /* muted / placeholder text */
  --line:         rgba(30,27,23,0.13);
  --line-soft:    rgba(30,27,23,0.07);

  --accent:       #9C6B2A;  /* brass, used sparingly */
  --accent-bright:#C68F42;
  --accent-wash:  #F4E9D8;  /* faint accent background */

  --forest:       #4B6B45;
  --rust:         #8B4A38;

  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Noto Naskh Arabic', 'Georgia', serif;
  --font-body: 'Work Sans', 'Noto Naskh Arabic', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius: 3px;
  --shadow: 0 2px 10px rgba(30,27,23,0.06);
  --shadow-lg: 0 20px 44px rgba(30,27,23,0.14);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 0.9em;
}
.section { padding: 88px 0; }
.section-tight { padding: 52px 0; }
.section-alt { background: var(--paper-alt); }
.center { text-align: center; }
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 620px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: #34302A; box-shadow: var(--shadow); }
.btn-gold { background: var(--accent); color: var(--white); }
.btn-gold:hover { background: var(--accent-bright); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--paper-alt); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Accessibility & motion
   ========================================================================== */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--ink); color: var(--white); padding: 12px 18px; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.site-header.is-scrolled { box-shadow: 0 2px 14px rgba(30,27,23,0.06); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--container); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; }
.brand-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); }
.brand-text span { color: var(--accent); }
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 0.88rem; font-weight: 500; position: relative; padding: 4px 0; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 700; }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--accent); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-phone-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.nav-phone-icon:hover { border-color: var(--ink); background: var(--paper-alt); color: var(--accent); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--ink); padding: 4px; }
.nav-cta-mobile { display: none; }

@media (max-width: 900px) {
  .nav-wrap { position: relative; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; align-items: stretch; gap: 2px; padding: 14px 24px 22px; display: none; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 11px 0; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
  .nav-cta-mobile .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Hero — quiet and spacious, not a busy gradient banner
   ========================================================================== */
.hero {
  position: relative;
  background: var(--paper);
  padding: 96px 0 76px;
  overflow: hidden;
}
.hero-watermark {
  position: absolute; top: -30px; right: -50px; width: 380px; height: 380px;
  opacity: 0.035; pointer-events: none; color: var(--ink);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 0.3em; }
.hero .lede { margin-bottom: 1.8em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  aspect-ratio: 4/5;
  background: var(--paper-alt);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-spotlight {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(circle 220px at var(--sx, 50%) var(--sy, 50%), rgba(200,150,70,0.28), transparent 70%);
  transition: opacity 0.3s ease;
}
.hero-art:hover .hero-spotlight { opacity: 1; }
.hero-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.94);
  padding: 9px 14px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.05em;
  color: var(--ink); border: 1px solid var(--line);
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Category cards / Feature grid
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.cat-card {
  background: var(--paper-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--shadow); }
.cat-card .thumb { overflow: hidden; aspect-ratio: 4/3; background: var(--paper-alt); }
.cat-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover .thumb img { transform: scale(1.04); }
.cat-card .body { padding: 20px; }
.cat-card h3 { margin-bottom: 4px; font-size: 1.15rem; }
.cat-card p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0; }

/* ==========================================================================
   Product grid & item cards (accession-tag styling for item IDs)
   ========================================================================== */
.toolbar {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding: 16px; background: var(--paper-card); border-radius: var(--radius);
  border: 1px solid var(--line);
}
.toolbar form { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; }
.toolbar input[type="text"], .toolbar select {
  padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem; background: var(--paper);
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 7px 14px; border-radius: 999px; font-size: 0.8rem; border: 1px solid var(--line);
  background: var(--paper-card); color: var(--ink-soft);
}
.chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.product-card {
  background: var(--paper-card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--shadow); }
.product-card .thumb { aspect-ratio: 1/1; background: var(--paper-alt); position: relative; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .thumb img { transform: scale(1.04); }
.product-card .tag-id {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.03em;
  background: rgba(255,255,255,0.94); color: var(--ink); padding: 4px 8px; border-radius: 2px;
  border: 1px solid var(--line);
}
.product-card .status-badge {
  position: absolute; bottom: 10px; left: 10px;
  font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 8px; border-radius: 2px; font-weight: 700;
}
.fav-btn {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,0.94); color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.fav-btn:hover { transform: scale(1.08); color: var(--rust); }
.fav-btn svg { pointer-events: none; }
.fav-btn.active { color: var(--rust); background: rgba(255,255,255,0.98); }
.fav-btn.active svg { fill: currentColor; }
.fav-btn.pop { animation: favPop 0.35s ease; }
@keyframes favPop { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }

.fav-btn-labeled { display: inline-flex; align-items: center; gap: 8px; }
.fav-btn-labeled.active { border-color: var(--rust); color: var(--rust); }
.fav-btn-labeled.active svg { fill: currentColor; }
.fav-btn-labeled.pop svg { animation: favPop 0.35s ease; }

.nav-saved-count-inline { font-weight: 700; color: var(--rust); }
.nav-saved { position: relative; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink); }
.nav-saved:hover { border-color: var(--ink); background: var(--paper-alt); color: var(--accent); }
.nav-saved-count {
  position: absolute; top: -4px; right: -4px; min-width: 16px; height: 16px; padding: 0 3px;
  background: var(--rust); color: #fff; border-radius: 999px; font-size: 0.62rem; font-weight: 700;
  align-items: center; justify-content: center; display: none;
}
   proportions instead of forced squares, closer to a real hung gallery wall. */
.product-grid.masonry { column-count: 3; column-gap: 22px; display: block; }
.product-grid.masonry .product-card { break-inside: avoid; margin-bottom: 22px; width: 100%; }
.product-grid.masonry .thumb { aspect-ratio: auto; }
.product-grid.masonry .thumb img { height: auto; max-height: 420px; object-fit: cover; }
@media (max-width: 900px) { .product-grid.masonry { column-count: 2; } }
@media (max-width: 560px) { .product-grid.masonry { column-count: 1; } }
.status-available { background: var(--forest); color: #fff; }
.status-sold { background: var(--rust); color: #fff; }
.status-reserved { background: var(--accent); color: #fff; }
.product-card .body { padding: 16px 18px; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 2px; color: var(--ink); }
.product-card .artist { font-size: 0.78rem; color: var(--accent); margin-bottom: 8px; }
.product-card .price { font-weight: 700; font-family: var(--font-mono); font-size: 0.9rem; color: var(--ink); }

/* Item detail */
.item-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.item-gallery-main { aspect-ratio: 1/1; background: var(--paper-alt); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; border: 1px solid var(--line); position: relative; }
.item-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.item-thumbs { display: flex; gap: 10px; }
.item-thumbs img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius); cursor: pointer; border: 2px solid var(--line); opacity: 0.75; }
.item-thumbs img.active { border-color: var(--ink); opacity: 1; }
.id-tag { font-family: var(--font-mono); background: var(--paper-alt); color: var(--ink); padding: 6px 12px; border-radius: 2px; font-size: 0.78rem; display: inline-block; margin-bottom: 14px; border: 1px solid var(--line); }
@media (max-width: 860px) { .item-detail { grid-template-columns: 1fr; } }

/* ==========================================================================
   Cards (events/classes/inquiry list)
   ========================================================================== */
.info-card { background: var(--paper-card); border-radius: var(--radius); padding: 26px; border: 1px solid var(--line); }
.date-badge { font-family: var(--font-mono); font-size: 0.73rem; color: var(--accent); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; display: block; }

/* ==========================================================================
   Contact / Custom order tab switcher
   ========================================================================== */
.form-tabs { display: flex; gap: 4px; margin-bottom: 22px; background: var(--paper-alt); padding: 4px; border-radius: var(--radius); }
.form-tab {
  flex: 1; padding: 10px 14px; border: none; background: transparent; border-radius: 2px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: var(--ink-soft); cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.form-tab.active { background: var(--paper-card); color: var(--ink); box-shadow: var(--shadow); }
.form-tab:hover:not(.active) { color: var(--ink); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem;
  background: var(--paper); color: var(--ink);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--stone); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(30,27,23,0.06);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 22px; font-size: 0.9rem; border: 1px solid; }
.alert-success { background: #EEF2EC; color: #3D5638; border-color: #CBDAC5; }
.alert-error { background: #F5EAE6; color: var(--rust); border-color: #E4C7BB; }

/* ==========================================================================
   Video callout - "prefer to watch?" link to a page's YouTube video
   ========================================================================== */
.video-callout {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; margin: 20px 0 8px;
  background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.15s ease, transform 0.15s ease;
  max-width: 460px;
}
.video-callout:hover { border-color: var(--ink); transform: translateY(-1px); }
.video-callout-icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: #E9432C; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.video-callout-text { display: flex; flex-direction: column; gap: 1px; }
.video-callout-text strong { font-size: 0.9rem; color: var(--ink); }
.video-callout-sub { font-size: 0.78rem; color: var(--ink-soft); }
.video-callout-arrow { margin-left: auto; color: var(--stone); font-size: 1.1rem; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--ink-soft); flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--stone); }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox-trigger { cursor: zoom-in; }
.lightbox-hint { font-size: 0.78rem; color: var(--stone); margin: 8px 2px 0; }

.zoom-lens {
  position: absolute; width: 160px; height: 160px; border-radius: 50%;
  border: 2px solid var(--white); box-shadow: var(--shadow-lg);
  pointer-events: none; display: none;
  background-repeat: no-repeat;
  z-index: 5;
}
.zoom-lens.active { display: block; }
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(20, 18, 15, 0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 40px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem; cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #C9C2B6; padding: 60px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.site-footer a { color: #C9C2B6; font-size: 0.88rem; }
.site-footer a:hover { color: var(--accent-bright); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(201,194,182,0.3); color: #C9C2B6;
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(201,194,182,0.15); padding-top: 22px; font-size: 0.78rem; color: #8C8578; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   Misc
   ========================================================================== */
.badge-strip { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 0.84rem; color: var(--ink-soft); }
.badge-strip .sep { color: var(--line); }
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; color: var(--accent); line-height: 1; }
.stat-label { display: block; margin-top: 6px; font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); row-gap: 26px; } }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: var(--radius); border: 1px solid var(--line); font-size: 0.88rem; color: var(--ink-soft); }
.pagination .current { background: var(--ink); color: var(--white); border-color: var(--ink); }
.empty-state { text-align: center; padding: 56px 20px; color: var(--stone); }

/* ==========================================================================
   Admin panel — plain, functional workspace for daily data entry
   ========================================================================== */
.admin-body { background: var(--paper-alt); min-height: 100vh; color: var(--ink); }
.admin-body h1, .admin-body h2, .admin-body h3, .admin-body h4 { color: var(--ink); }
.admin-shell { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--ink); color: #C9C2B6; padding: 24px 18px; }
.admin-sidebar .brand-text { color: var(--white); }
.admin-sidebar nav { margin-top: 30px; display: flex; flex-direction: column; gap: 4px; }
.admin-sidebar a { padding: 10px 12px; border-radius: var(--radius); font-size: 0.88rem; color: #C9C2B6; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,0.08); color: var(--accent-bright); }
.admin-main { padding: 32px 38px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.stat-card { background: var(--paper-card); border-radius: var(--radius); padding: 20px; border: 1px solid var(--line); }
.stat-card .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--ink); }
.stat-card .label { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--paper-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.admin-table th, .admin-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: 0.86rem; color: var(--ink); }
.admin-table th { background: var(--paper-alt); font-weight: 700; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; }
.admin-table tr:hover td { background: var(--paper-alt); }
.admin-body .info-card { background: var(--paper-card); border: 1px solid var(--line); }
.login-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--paper-alt); }
.login-card { background: var(--paper-card); padding: 44px; border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; max-width: 380px; border: 1px solid var(--line); }
.login-card .brand-text { color: var(--ink); }
.login-card .brand-text span { color: var(--accent); }
.thumb-img-sm { width: 44px; height: 44px; object-fit: cover; border-radius: 3px; }
