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

:root {
  --blue-deep:    #1D4ED8;
  --blue-mid:     #2563EB;
  --blue-bright:  #3B82F6;
  --blue-pale:    #BFDBFE;
  --blue-faint:   #EFF6FF;
  --amber:        #F59E0B;
  --amber-light:  #FCD34D;
  --amber-pale:   #FEF3C7;
  --ink:          #111827;
  --ink-2:        #1F2937;
  --ink-muted:    #6B7280;
  --ink-faint:    #9CA3AF;
  --white:        #FFFFFF;
  --bg:           #F0F5FF;
  --bg-2:         #E8F0FE;
  --surface:      #FFFFFF;
  --border:       #DBEAFE;
  --border-2:     #BFDBFE;
  --success:      #10B981;
  --danger:       #EF4444;
  --warning:      #F59E0B;
  --shadow-sm:    0 2px 12px rgba(37,99,235,0.08);
  --shadow-md:    0 8px 40px rgba(37,99,235,0.13);
  --shadow-lg:    0 20px 60px rgba(37,99,235,0.20);
  --radius:       18px;
  --radius-sm:    10px;
  --radius-xs:    6px;
  --nav-height:   68px;
  --drawer-width: 300px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(37,99,235,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 100%, rgba(245,158,11,0.08) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none; z-index: 0;
}

/* ── LAYOUT ── */
.sp-page { position: relative; z-index: 1; }

.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ════════════════════════════════════════════
   TOPNAV
════════════════════════════════════════════ */
.sp-nav {
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-height);
}
.sp-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  height: 100%;
  max-width: 1200px; margin: 0 auto;
  gap: 16px;
}
.sp-nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.sp-nav-logo svg { height: 48px; width: auto; }

/* Desktop nav links */
.sp-nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.sp-nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--ink-muted); text-decoration: none;
  padding: 7px 13px; border-radius: 8px;
  transition: all 0.2s; white-space: nowrap;
}
.sp-nav-links a:hover { color: var(--blue-mid); background: var(--blue-faint); }
.sp-nav-links a.active { color: var(--blue-mid); background: var(--blue-faint); }

/* Desktop CTA pill */
.sp-nav-cta {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--blue-mid);
  color: var(--white) !important; text-decoration: none;
  padding: 9px 20px; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.30);
  transition: all 0.25s;
  white-space: nowrap; flex-shrink: 0;
}
.sp-nav-cta:hover { opacity: 0.88; box-shadow: 0 6px 20px rgba(37,99,235,0.40); }
.sp-nav-cta-desktop { display: inline-flex; }

/* ════════════════════════════════════════════
   HAMBURGER BUTTON
   Default: hidden on desktop (!important so
   nothing in the cascade can override it).
   Shown only inside the ≤1024px media query.
════════════════════════════════════════════ */
.sp-hamburger {
  display: none !important;   /* ← hardened: never visible on desktop */
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--blue-faint);
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-xs);
  cursor: pointer; padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sp-hamburger:hover { background: var(--border-2); }
.sp-hamburger-bar {
  display: block;
  width: 20px; height: 2px;
  background: var(--blue-mid);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.sp-hamburger.is-active .sp-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sp-hamburger.is-active .sp-hamburger-bar:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.sp-hamburger.is-active .sp-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════
   MOBILE OVERLAY (dim backdrop)
════════════════════════════════════════════ */
.sp-mobile-overlay {
  display: none;
  position: fixed !important;
  inset: 0;
  background: rgba(17,24,39,0.50);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 290;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sp-mobile-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* ════════════════════════════════════════════
   MOBILE DRAWER
════════════════════════════════════════════ */
.sp-mobile-menu {
  position: fixed !important;
  top: 0; right: 0;
  width: var(--drawer-width);
  max-width: 85vw;
  height: 100dvh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  display: flex !important;
  flex-direction: column;
  transform: translateX(100%) !important;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.sp-mobile-menu.is-open {
  transform: translateX(0) !important;
}

.sp-mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sp-mobile-menu-header .sp-nav-logo svg { height: 38px; }

.sp-mobile-close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  cursor: pointer; color: var(--ink-muted);
  transition: all 0.2s;
  flex-shrink: 0;
}
.sp-mobile-close:hover { background: #FEE2E2; color: var(--danger); border-color: #FCA5A5; }

/* Drawer nav links */
.sp-mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 0;
  flex: 1;
  gap: 2px;
}
.sp-mobile-nav-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2); text-decoration: none;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: all 0.18s;
  white-space: nowrap;
}
.sp-mobile-nav-link svg { color: var(--ink-faint); flex-shrink: 0; transition: color 0.18s; }
.sp-mobile-nav-link:hover {
  background: var(--blue-faint);
  color: var(--blue-mid);
  border-left-color: var(--blue-mid);
}
.sp-mobile-nav-link:hover svg { color: var(--blue-mid); }
.sp-mobile-nav-link.active {
  background: var(--blue-faint);
  color: var(--blue-mid);
  border-left-color: var(--blue-mid);
  font-weight: 600;
}
.sp-mobile-nav-link.active svg { color: var(--blue-mid); }

/* Drawer footer CTAs */
.sp-mobile-menu-footer {
  padding: 20px 16px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   ADMIN SIDEBAR NAV
════════════════════════════════════════════ */
.sp-admin-wrap { display: flex; min-height: 100vh; }
.sp-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--ink);
  padding: 0 0 32px;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}
.sp-sidebar-logo {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}
.sp-sidebar-logo svg { height: 42px; width: auto; }
.sp-sidebar-section {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 16px 20px 6px;
}
.sp-sidebar a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 0;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.sp-sidebar a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.sp-sidebar a.active {
  color: var(--white);
  background: rgba(37,99,235,0.18);
  border-left-color: var(--blue-bright);
}
.sp-sidebar a svg { width: 16px; height: 16px; flex-shrink: 0; }

.sp-admin-content { flex: 1; padding: 32px; overflow-x: hidden; }

/* ── PAGE HEADER ── */
.sp-page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.sp-page-title {
  font-family: 'Instrument Serif', serif;
  font-size: 28px; font-weight: 400;
  color: var(--ink);
}
.sp-breadcrumb {
  font-size: 12px; color: var(--ink-faint);
  margin-top: 2px;
}
.sp-breadcrumb a { color: var(--blue-mid); text-decoration: none; }

/* ── CARDS ── */
.sp-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}
.sp-card-title {
  font-size: 15px; font-weight: 600;
  color: var(--ink); margin-bottom: 18px;
}

/* ── STAT CARDS ── */
.sp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.sp-stat {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sp-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sp-stat-icon {
  width: 38px; height: 38px;
  background: var(--blue-faint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.sp-stat-icon svg { width: 18px; height: 18px; }
.sp-stat-value {
  font-family: 'Instrument Serif', serif;
  font-size: 30px; font-weight: 400;
  color: var(--ink); line-height: 1;
  margin-bottom: 4px;
}
.sp-stat-label { font-size: 12px; color: var(--ink-muted); }

/* ── TABLES ── */
.sp-table-wrap { overflow-x: auto; border-radius: var(--radius-sm); -webkit-overflow-scrolling: touch; }
.sp-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px; min-width: 540px;
}
.sp-table th {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--bg-2);
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.sp-table td {
  padding: 12px 16px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--bg-2);
}
.sp-table tr:hover td { background: var(--blue-faint); }
.sp-table tr:last-child td { border-bottom: none; }

/* ── BADGES ── */
.sp-badge {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
}
.sp-badge-blue   { background: var(--blue-faint);  color: var(--blue-mid); }
.sp-badge-green  { background: #ECFDF5; color: #059669; }
.sp-badge-amber  { background: var(--amber-pale);  color: #B45309; }
.sp-badge-red    { background: #FEF2F2; color: #DC2626; }
.sp-badge-gray   { background: var(--bg-2);        color: var(--ink-muted); }

/* ── BUTTONS ── */
.sp-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 20px; border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: all 0.22s;
}
.sp-btn-primary {
  background: var(--blue-mid); color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,0.28);
}
.sp-btn-primary:hover { opacity: 0.88; box-shadow: 0 6px 20px rgba(37,99,235,0.38); }
.sp-btn-secondary {
  background: var(--white); color: var(--ink-2);
  border-color: var(--border-2);
}
.sp-btn-secondary:hover { background: var(--blue-faint); border-color: var(--blue-mid); color: var(--blue-mid); }
.sp-btn-danger   { background: #EF4444; color: var(--white); }
.sp-btn-danger:hover { background: #DC2626; }
.sp-btn-sm { padding: 6px 14px; font-size: 11px; }

/* ── FORMS ── */
.sp-form-group { margin-bottom: 18px; }
.sp-label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 7px;
}
.sp-input, .sp-select, .sp-textarea {
  width: 100%; font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-size: max(16px, 14px); /* prevent iOS zoom on focus */
}
.sp-input:focus, .sp-select:focus, .sp-textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}
.sp-textarea { resize: vertical; min-height: 100px; }
.sp-form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sp-form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ── ALERTS ── */
.sp-alert {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 13px; margin-bottom: 18px;
  display: flex; align-items: flex-start; gap: 10px;
}
.sp-alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.sp-alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5; }
.sp-alert-info    { background: var(--blue-faint); color: var(--blue-deep); border: 1px solid var(--blue-pale); }

/* ── PAGINATION ── */
.sp-pagination {
  display: flex; align-items: center; gap: 6px;
  padding-top: 20px; flex-wrap: wrap;
}
.sp-pagination a, .sp-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  font-size: 13px; font-weight: 500;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--border-2);
  color: var(--ink-muted); text-decoration: none;
  transition: all 0.2s;
}
.sp-pagination a:hover { background: var(--blue-faint); color: var(--blue-mid); border-color: var(--blue-mid); }
.sp-pagination .current { background: var(--blue-mid); color: var(--white); border-color: var(--blue-mid); }

/* ── MODAL ── */
.sp-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(17,24,39,0.55);
  backdrop-filter: blur(4px);
  z-index: 500; display: flex;
  align-items: center; justify-content: center;
  padding: 20px;
}
.sp-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  width: 100%; max-width: 520px;
  position: relative;
  max-height: 90dvh;
  overflow-y: auto;
}
.sp-modal-title {
  font-family: 'Instrument Serif', serif;
  font-size: 22px; margin-bottom: 20px;
}
.sp-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  color: var(--ink-faint); cursor: pointer;
  font-size: 20px; line-height: 1;
}

/* ── SECTION HEADINGS (user-side) ── */
.sp-section { padding: 72px 0; }
.sp-section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-faint);
  border: 1px solid var(--border-2);
  border-radius: 100px; padding: 5px 16px;
  margin-bottom: 18px;
}
.sp-section-eyebrow::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--amber);
}
.sp-section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400; line-height: 1.1;
  color: var(--ink); margin-bottom: 14px;
}
.sp-section-title em { font-style: italic; color: var(--blue-mid); }
.sp-section-sub {
  font-size: 15px; font-weight: 300;
  color: var(--ink-muted); max-width: 500px;
  line-height: 1.7;
}

/* ── FOOTER ── */
.sp-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 28px;
  position: relative; z-index: 1;
}
.sp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.sp-footer-logo svg { height: 48px; width: auto; margin-bottom: 14px; }
.sp-footer-desc { font-size: 13px; line-height: 1.7; max-width: 240px; }
.sp-footer-heading {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.sp-footer-links { list-style: none; }
.sp-footer-links li { margin-bottom: 8px; }
.sp-footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.sp-footer-links a:hover { color: var(--white); }
.sp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; flex-wrap: wrap; gap: 10px;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.gap-2 { gap: 8px; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.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: 20px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.55s ease both; }

@keyframes drawerIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* ════════════════════════════════════════════
   RESPONSIVE — 1280px
════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .sp-nav-links a { padding: 7px 10px; font-size: 12px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — 1024px  ← HAMBURGER BREAKPOINT
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Hide desktop nav & CTA */
  .sp-nav-links        { display: none !important; }
  .sp-nav-cta-desktop  { display: none !important; }

  /* Show hamburger — overrides the !important default above */
  .sp-hamburger { display: flex !important; }

  .sp-nav-inner { padding: 0 18px; }
  .sp-container { padding: 0 18px; }

  /* Footer 2-col */
  .sp-footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4         { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — 768px
════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Admin sidebar stacks */
  .sp-admin-wrap    { flex-direction: column; }
  .sp-sidebar       { width: 100%; height: auto; position: relative; }
  .sp-admin-content { padding: 18px; }

  /* Forms single-col */
  .sp-form-row, .sp-form-row-3 { grid-template-columns: 1fr; }

  /* Grids single-col */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Footer single-col */
  .sp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sp-footer-desc { max-width: 100%; }

  /* Stats 2-col */
  .sp-stats-grid { grid-template-columns: 1fr 1fr; }

  .sp-section { padding: 48px 0; }

  /* Hero buttons stack */
  .sp-hero-actions { flex-direction: column; align-items: stretch !important; }
  .sp-hero-actions .sp-btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — 480px (small phones)
════════════════════════════════════════════ */
@media (max-width: 480px) {
  .sp-container { padding: 0 14px; }
  .sp-nav-inner { padding: 0 14px; }

  .sp-card { padding: 20px 18px; }

  .sp-section { padding: 36px 0; }

  /* Stats single-col */
  .sp-stats-grid { grid-template-columns: 1fr; }

  .sp-stat-value { font-size: 26px; }

  /* Modal slides up from bottom */
  .sp-modal-overlay { padding: 0; align-items: flex-end; }
  .sp-modal {
    border-radius: var(--radius) var(--radius) 0 0;
    max-height: 92dvh;
    padding: 24px 20px;
  }

  .sp-table th, .sp-table td { padding: 10px 12px; }

  .sp-footer-bottom { flex-direction: column; text-align: center; }

  .sp-page-title { font-size: 22px; }

  /* Inline flex button groups stack */
  .flex.items-center.gap-2 {
    flex-direction: column;
    align-items: stretch;
  }
  .flex.items-center.gap-2 .sp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .animate-up        { animation: none; }
  .sp-hamburger-bar  { transition: none; }
  .sp-mobile-menu    { transition: none; }
  .sp-mobile-overlay { transition: none; }
  *                  { scroll-behavior: auto !important; }
}