/* ============================================================
   HEAVENS HEROES — Design System
   Celestial & Inspiring Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  /* Palette */
  --navy-deep:    #0A1628;
  --navy-mid:     #0D1B3E;
  --navy-light:   #0F2044;
  --navy-bg:      #060E1F;
  --gold:         #D4AF50;
  --gold-light:   #E8C86A;
  --gold-dim:     #C8A040;
  --gold-faint:   rgba(212,175,80,0.08);
  --gold-border:  rgba(212,175,80,0.18);
  --green:        #7BC49A;
  --green-dim:    rgba(123,196,154,0.15);
  --blue:         #7B94BF;
  --blue-dim:     rgba(123,148,191,0.12);
  --purple:       #C8A0D8;
  --purple-dim:   rgba(180,130,210,0.1);
  --red:          #E87070;
  --red-dim:      rgba(232,112,112,0.08);

  /* Text */
  --text-primary:   #F0E6C8;
  --text-secondary: #C8D8E8;
  --text-muted:     #7B94BF;
  --text-dim:       #5A7099;
  --text-faint:     #3A5070;
  --text-ghost:     #2A3A52;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --radius-sm:  5px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.25);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);

  /* Transitions */
  --trans-fast: 0.12s ease;
  --trans-mid:  0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--navy-bg);
  color: var(--text-secondary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--trans-fast); }
a:hover { color: var(--gold-light); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
em { font-style: italic; color: var(--gold); }
strong { font-weight: 500; color: var(--text-primary); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-sm { gap: 8px; }
.flex-gap-md { gap: 14px; }
.flex-gap-lg { gap: 24px; }

/* ── Stars ── */
.stars { color: var(--gold); letter-spacing: 1px; }

/* ── Cards ── */
.card {
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card-body { padding: 20px 24px; }
.card-hd {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(212,175,80,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 7px;
}
.card-title i { color: var(--gold); font-size: 15px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--trans-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--gold); color: var(--navy-bg); }
.btn-primary:hover { background: var(--gold-dim); color: var(--navy-bg); }
.btn-outline   { background: transparent; border: 1px solid var(--gold-border); color: var(--gold); }
.btn-outline:hover { background: var(--gold-faint); }
.btn-ghost     { background: transparent; border: 1px solid rgba(255,255,255,0.07); color: var(--text-dim); }
.btn-ghost:hover { color: var(--text-secondary); }
.btn-danger    { background: transparent; border: 1px solid rgba(232,112,112,0.25); color: var(--red); }
.btn-danger:hover { background: var(--red-dim); }
.btn-success   { background: var(--green); color: var(--navy-bg); border: none; }
.btn-sm { padding: 6px 14px; font-size: 11px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.btn i { font-size: 15px; }

/* ── Forms ── */
.form-group  { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-label  { font-size: 11px; color: var(--text-dim); font-weight: 500; }
.form-label .req { color: var(--red); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 9px 13px;
  font-size: 13px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--trans-fast);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(212,175,80,0.45); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-ghost); }
.form-select { cursor: pointer; color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.form-hint { font-size: 10px; color: var(--text-faint); margin-top: 3px; }
.form-error { font-size: 11px; color: var(--red); margin-top: 3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Toggle ── */
.toggle-wrap { display: flex; align-items: center; gap: 8px; }
.toggle {
  width: 38px; height: 20px; border-radius: 10px;
  cursor: pointer; position: relative; transition: background var(--trans-fast);
  flex-shrink: 0;
}
.toggle.on  { background: rgba(123,196,154,0.4); border: 1px solid rgba(123,196,154,0.6); }
.toggle.off { background: rgba(232,112,112,0.18); border: 1px solid rgba(232,112,112,0.3); }
.toggle-knob {
  position: absolute; top: 2px; width: 14px; height: 14px;
  border-radius: 50%; transition: all var(--trans-fast);
}
.toggle.on  .toggle-knob { background: var(--green); right: 2px; }
.toggle.off .toggle-knob { background: var(--red);   left: 2px; }
.toggle-label { font-size: 12px; color: var(--text-muted); }

/* ── Badges & Pills ── */
.badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 10px; font-weight: 500; padding: 2px 8px; border-radius: 10px;
}
.badge-gold   { background: rgba(212,175,80,0.12); color: var(--gold);   border: 1px solid rgba(212,175,80,0.22); }
.badge-green  { background: rgba(123,196,154,0.1); color: var(--green);  border: 1px solid rgba(123,196,154,0.22); }
.badge-blue   { background: rgba(123,148,191,0.1); color: var(--blue);   border: 1px solid rgba(123,148,191,0.2); }
.badge-purple { background: rgba(180,130,210,0.1); color: var(--purple); border: 1px solid rgba(180,130,210,0.2); }
.badge-red    { background: rgba(232,112,112,0.1); color: var(--red);    border: 1px solid rgba(232,112,112,0.2); }
.badge-gray   { background: rgba(255,255,255,0.05); color: var(--text-dim); }

/* ── Therapy tags ── */
.therapy-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--gold-faint); color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 3px; padding: 2px 8px;
  font-size: 10px; font-weight: 500;
}

/* ── Progress bar ── */
.progress-bar {
  background: rgba(255,255,255,0.05);
  border-radius: 6px; height: 8px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 6px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.progress-labels {
  display: flex; justify-content: space-between;
  font-size: 11px; margin-top: 4px;
}
.progress-raised { color: var(--gold); font-weight: 500; }
.progress-goal   { color: var(--text-faint); }

/* ── Tables ── */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th {
  font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--text-ghost); font-weight: 500; padding: 8px 14px;
  background: rgba(0,0,0,0.15); border-bottom: 1px solid rgba(212,175,80,0.06);
  text-align: left;
}
.table td {
  padding: 10px 14px; font-size: 12px; color: var(--text-secondary);
  border-bottom: 1px solid rgba(212,175,80,0.04);
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: rgba(255,255,255,0.01); }

/* ── Alert / Notice boxes ── */
.alert {
  border-radius: var(--radius-md); padding: 11px 15px;
  font-size: 12px; line-height: 1.6;
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 14px;
}
.alert i { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.alert-info    { background: rgba(123,148,191,0.06); border: 1px solid rgba(123,148,191,0.18); color: var(--text-dim); }
.alert-info i  { color: var(--blue); }
.alert-gold    { background: rgba(212,175,80,0.05); border: 1px solid rgba(212,175,80,0.18); color: #7A6030; }
.alert-gold i  { color: var(--gold); }
.alert-success { background: rgba(123,196,154,0.05); border: 1px solid rgba(123,196,154,0.18); color: #4A7060; }
.alert-success i { color: var(--green); }
.alert-danger  { background: rgba(232,112,112,0.05); border: 1px solid rgba(232,112,112,0.2); border-left: 3px solid var(--red); color: #7A4545; }
.alert-danger i { color: var(--red); }
.alert strong  { font-weight: 500; }

/* ── Flash messages ── */
.flash-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.flash {
  background: var(--navy-mid); border-radius: var(--radius-md);
  padding: 12px 16px; font-size: 12px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-md);
  animation: slideIn 0.25s ease;
  min-width: 260px; max-width: 380px;
}
.flash-success { border-left: 3px solid var(--green); }
.flash-error   { border-left: 3px solid var(--red); }
.flash-info    { border-left: 3px solid var(--gold); }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ── Sidebar nav (admin/portal) ── */
.sidebar {
  background: #070F20;
  border-right: 1px solid rgba(212,175,80,0.07);
  width: 200px; flex-shrink: 0;
}
.sidebar-logo {
  font-family: var(--font-serif);
  font-size: 16px; color: var(--gold);
  padding: 14px; border-bottom: 1px solid rgba(212,175,80,0.07);
}
.sidebar-nav { padding: 8px 6px; }
.sidebar-group {
  font-size: 9px; letter-spacing: 1.3px; text-transform: uppercase;
  color: #1E2E42; font-weight: 500; padding: 10px 8px 4px;
}
.sidebar-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px; border-radius: 6px;
  font-size: 11px; color: var(--text-faint);
  cursor: pointer; transition: all var(--trans-fast);
  text-decoration: none;
}
.sidebar-item:hover { background: rgba(255,255,255,0.02); color: var(--blue); }
.sidebar-item.active { background: var(--gold-faint); color: var(--gold); }
.sidebar-item i { font-size: 14px; flex-shrink: 0; }
.sidebar-item-left { display: flex; align-items: center; gap: 7px; }

/* ── Role badges ── */
.role-badge {
  font-size: 10px; font-weight: 500; padding: 2px 8px;
  border-radius: 3px; display: inline-block;
}
.role-gold   { background: rgba(212,175,80,0.12); color: var(--gold);   border: 1px solid rgba(212,175,80,0.22); }
.role-blue   { background: rgba(123,148,191,0.1); color: var(--blue);   border: 1px solid rgba(123,148,191,0.2); }
.role-green  { background: rgba(123,196,154,0.08); color: var(--green); border: 1px solid rgba(123,196,154,0.18); }
.role-purple { background: rgba(180,130,210,0.08); color: var(--purple); border: 1px solid rgba(180,130,210,0.18); }
.role-gray   { background: rgba(255,255,255,0.05); color: var(--text-dim); }

/* ── Modals / Drawers ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(4,10,22,0.87); z-index: 100;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  width: min(480px, 95vw);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.modal-hd {
  padding: 16px 20px; border-bottom: 1px solid rgba(212,175,80,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-title { font-family: var(--font-serif); font-size: 20px; color: var(--text-primary); }
.modal-close {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-dim); font-size: 14px;
}
.modal-body { padding: 18px 20px; }
.modal-footer {
  padding: 14px 20px; border-top: 1px solid rgba(212,175,80,0.08);
  display: flex; gap: 8px;
}

.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(4,10,22,0.85); z-index: 50;
  align-items: flex-start; justify-content: flex-end;
}
.drawer-overlay.open { display: flex; }
.drawer {
  width: min(480px, 95vw); height: 100%;
  background: var(--navy-mid);
  border-left: 1px solid var(--gold-border);
  display: flex; flex-direction: column; overflow: hidden;
}
.drawer-hd {
  padding: 16px 20px; border-bottom: 1px solid rgba(212,175,80,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.drawer-title { font-family: var(--font-serif); font-size: 20px; color: var(--text-primary); }
.drawer-body  { flex: 1; overflow-y: auto; padding: 16px 20px; }
.drawer-footer {
  padding: 14px 20px; border-top: 1px solid rgba(212,175,80,0.08);
  display: flex; gap: 8px; flex-shrink: 0;
}

/* ── Public navigation ── */
.public-nav {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--gold-border);
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 10;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px; color: var(--gold);
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; color: var(--text-dim); padding: 6px 12px;
  border-radius: var(--radius-sm); transition: all var(--trans-fast);
  text-decoration: none;
}
.nav-links a:hover { color: var(--text-secondary); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--gold); }

/* ── Admin topbar ── */
.admin-topbar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(212,175,80,0.1);
  padding: 0 20px; height: 50px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.topbar-title {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  display: flex; align-items: center; gap: 8px;
}
.topbar-title i { color: var(--gold); }

/* ── Tabs ── */
.tabs {
  display: flex; border-bottom: 1px solid rgba(212,175,80,0.08);
  padding: 0 4px;
}
.tab-btn {
  padding: 10px 16px; font-size: 12px; color: var(--text-faint);
  cursor: pointer; border-bottom: 2px solid transparent;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-sans); transition: color var(--trans-fast);
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover  { color: var(--text-muted); }
.tab-btn i { font-size: 13px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Sponsor stars ── */
.star-rating { display: flex; gap: 2px; cursor: pointer; }
.star-rating .star { font-size: 22px; color: var(--text-ghost); transition: color var(--trans-fast); }
.star-rating .star.lit { color: var(--gold); }

/* ── Pagination ── */
.pagination {
  display: flex; align-items: center; gap: 4px;
  justify-content: center; margin-top: 20px;
}
.page-btn {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; cursor: pointer;
  border: 1px solid rgba(212,175,80,0.12);
  background: transparent; color: var(--text-faint);
  transition: all var(--trans-fast); text-decoration: none;
}
.page-btn:hover  { border-color: var(--gold-border); color: var(--gold); }
.page-btn.active { background: var(--gold-faint); border-color: var(--gold-border); color: var(--gold); }
.page-btn.disabled { opacity: 0.3; pointer-events: none; }

/* ── Hero / Campaign card ── */
.hero-card {
  background: var(--navy-mid); border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border); overflow: hidden;
  transition: transform var(--trans-mid), box-shadow var(--trans-mid);
  display: flex; flex-direction: column;
}
.hero-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero-card.featured { border-color: rgba(212,175,80,0.5); }
.hero-card-photo {
  height: 180px; background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.hero-card-name { font-family: var(--font-serif); font-size: 20px; }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.hero-card-footer { margin-top: auto; padding-top: 10px; border-top: 1px solid rgba(212,175,80,0.06); }

/* ── Stat cards ── */
.stat-card {
  background: var(--navy-mid); border: 1px solid rgba(212,175,80,0.1);
  border-radius: var(--radius-md); padding: 14px 16px;
}
.stat-num { font-family: var(--font-serif); font-size: 28px; line-height: 1; margin-bottom: 3px; }
.stat-num.gold   { color: var(--gold); }
.stat-num.green  { color: var(--green); }
.stat-num.blue   { color: var(--blue); }
.stat-num.purple { color: var(--purple); }
.stat-num.red    { color: var(--red); }
.stat-label { font-size: 11px; color: var(--text-faint); }
.stat-delta { font-size: 10px; color: var(--green); margin-top: 3px; display: flex; align-items: center; gap: 3px; }

/* ── Twinkling stars background ── */
.stars-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.stars-bg::before,
.stars-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(212,175,80,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(212,175,80,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 60%, rgba(212,175,80,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(212,175,80,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 70%, rgba(212,175,80,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 45%, rgba(255,255,255,0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 85%, rgba(255,255,255,0.08) 0%, transparent 100%);
  animation: twinkle 4s ease-in-out infinite alternate;
}
.stars-bg::after {
  background-image:
    radial-gradient(1px 1px at 75% 25%, rgba(212,175,80,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 75%, rgba(212,175,80,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 15%, rgba(255,255,255,0.1) 0%, transparent 100%);
  animation-delay: 2s;
}
@keyframes twinkle { from { opacity: 0.5; } to { opacity: 1; } }

/* ── Utilities ── */
.text-gold    { color: var(--gold); }
.text-green   { color: var(--green); }
.text-red     { color: var(--red); }
.text-blue    { color: var(--blue); }
.text-muted   { color: var(--text-muted); }
.text-faint   { color: var(--text-faint); }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-serif   { font-family: var(--font-serif); }
.text-sm      { font-size: 11px; }
.text-xs      { font-size: 10px; }
.text-italic  { font-style: italic; }
.fw-500       { font-weight: 500; }
.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.p-16  { padding: 16px; }
.p-20  { padding: 20px; }
.p-24  { padding: 24px; }
.divider { height: 1px; background: rgba(212,175,80,0.08); margin: 16px 0; }
.section-hed {
  font-size: 11px; letter-spacing: 2px; color: var(--gold);
  text-transform: uppercase; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.section-hed::after { content: ''; flex: 1; height: 1px; background: rgba(212,175,80,0.12); }
.w-100 { width: 100%; }
.d-none { display: none; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.scrollable { overflow-y: auto; }
.scrollable::-webkit-scrollbar { width: 3px; }
.scrollable::-webkit-scrollbar-thumb { background: rgba(212,175,80,0.1); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .container, .container-sm, .container-lg { padding: 0 16px; }
  .sidebar { display: none; }
  .public-nav { padding: 0 16px; }
  .nav-links { display: none; }
}
