/* ============================================================
   Safarix Web App — design tokens, mobile-first responsive
   ============================================================ */

:root {
  --primary: #F97316;
  --primary-dark: #EA580C;
  --primary-light: #FFF7ED;
  --primary-tint: #FFEDD5;
  --bg: #FFFFFF;
  --surface: #FAFAF9;
  --surface-2: #F1F5F9;
  --text: #0F172A;
  --text-muted: #64748B;
  --text-soft: #94A3B8;
  --border: #E2E8F0;
  --border-soft: #F1F5F9;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(249, 115, 22, 0.15), 0 8px 10px -6px rgba(249, 115, 22, 0.08);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-h: 56px;
  --bottom-nav-h: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;  /* defensively prevent horizontal scroll on small screens */
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

/* ============================================================
   App Shell
   ============================================================ */
.app-root { min-height: 100vh; display: flex; flex-direction: column; }

.app-boot {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ============================================================
   Top header
   ============================================================ */
.top-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  display: flex;
  align-items: center;
}

.top-header-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-header .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.top-header .brand img { width: 28px; height: 28px; }

.top-header .header-title {
  font-weight: 700;
  font-size: 17px;
  flex: 1;
  text-align: left;
  margin-left: 4px;
}

.top-header .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  position: relative;
}
.top-header .icon-btn:hover { background: var(--surface); }
.top-header .icon-btn svg { width: 22px; height: 22px; }

.back-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-left: -8px;
}
.back-btn:hover { background: var(--surface); }
.back-btn svg { width: 22px; height: 22px; }

/* ============================================================
   Main content
   ============================================================ */
.main {
  flex: 1;
  padding-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 16px);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}

.page-pad { padding: 16px; }

/* ============================================================
   Bottom navigation (mobile)
   ============================================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-bottom: var(--safe-bottom);
  display: flex;
  height: calc(var(--bottom-nav-h) + var(--safe-bottom));
}

.bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-muted);
  padding: 6px 4px;
  font-size: 11px;
  font-weight: 600;
}

.bottom-nav a svg { width: 22px; height: 22px; }

.bottom-nav a.active {
  color: var(--primary);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
  text-align: center;
  min-height: 44px;  /* iOS tap target */
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:not(:disabled):hover { background: var(--primary-dark); }
.btn-primary:not(:disabled):active { transform: scale(0.98); }

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:not(:disabled):hover { background: var(--surface); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:not(:disabled):hover { background: var(--surface); color: var(--text); }

.btn-danger {
  background: var(--bg);
  color: var(--danger);
  border-color: var(--border);
}
.btn-danger:not(:disabled):hover { background: rgba(239, 68, 68, 0.08); }

.btn-block { width: 100%; }
.btn-lg { padding: 14px 22px; font-size: 16px; min-height: 50px; }

.btn-row {
  display: flex;
  gap: 12px;
}
.btn-row .btn { flex: 1; }

/* ============================================================
   Forms
   ============================================================ */
.form-field { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;  /* prevents iOS zoom on focus */
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 48px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}
.form-textarea { min-height: 96px; resize: vertical; }

.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 6px; }

.input-prefix {
  display: flex;
  align-items: stretch;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.input-prefix:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}
.input-prefix .prefix {
  padding: 12px 14px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.input-prefix .form-input {
  border: none;
  border-radius: 0;
  box-shadow: none !important;
  min-width: 0;  /* prevent input's default text width from overflowing flex parent */
  flex: 1;
}
.input-prefix .form-input:focus { box-shadow: none; }

/* OTP input */
.otp-input {
  width: 100%;
  text-align: center;
  letter-spacing: 12px;
  font-size: 24px;
  font-weight: 700;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-variant-numeric: tabular-nums;
}
.otp-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

/* ============================================================
   Cards & list items
   ============================================================ */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.card + .card { margin-top: 12px; }

.card-link {
  display: block;
  color: inherit;
  transition: transform 0.1s, box-shadow 0.15s;
}
.card-link:hover { box-shadow: var(--shadow-sm); }
.card-link:active { transform: scale(0.99); }

.list-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.list-item:last-child { border-bottom: none; }

/* ============================================================
   Trip card
   ============================================================ */
.trip-card { display: block; }
.trip-card .route {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.trip-card .route-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.trip-card .route-rail .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.trip-card .route-rail .line {
  width: 2px;
  flex: 1;
  min-height: 18px;
  background: var(--border);
  margin: 4px 0;
}
.trip-card .route-rail .pin {
  width: 14px;
  height: 14px;
  color: var(--success);
}
.trip-card .route-text { flex: 1; min-width: 0; }
.trip-card .route-text .addr {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trip-card .route-text .addr + .addr { margin-top: 14px; }
.trip-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.trip-card .meta .item { display: inline-flex; align-items: center; gap: 4px; }
.trip-card .fare {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================================
   Status pill
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.pill.open { background: rgba(59, 130, 246, 0.12); color: var(--info); }
.pill.accepted { background: rgba(249, 115, 22, 0.12); color: var(--primary); }
.pill.in-progress { background: rgba(245, 158, 11, 0.12); color: var(--warning); }
.pill.completed { background: rgba(16, 185, 129, 0.12); color: var(--success); }
.pill.cancelled { background: rgba(239, 68, 68, 0.12); color: var(--danger); }
.pill.expired { background: rgba(100, 116, 139, 0.12); color: var(--text-muted); }

/* ============================================================
   Vehicle card
   ============================================================ */
.vehicle-card .header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vehicle-card .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--surface);
  border-radius: var(--radius);
}
.vehicle-card .photo-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 12px;
  -webkit-overflow-scrolling: touch;
}
.vehicle-card .photo-strip img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: var(--surface);
}

.badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.badge {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--surface-2);
  color: var(--text-muted);
}
.badge.primary { background: rgba(249, 115, 22, 0.12); color: var(--primary); }
.badge.success { background: rgba(16, 185, 129, 0.12); color: var(--success); }
.badge.info { background: rgba(59, 130, 246, 0.12); color: var(--info); }

/* ============================================================
   Auth screens
   ============================================================ */
/* Auth — centered card on desktop, full-screen on mobile */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  padding: 24px 16px;
}
.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 480px) {
  .auth-wrapper { padding: 0; align-items: flex-start; }
  .auth-card {
    max-width: none;
    border-radius: 0;
    padding: 24px 20px calc(24px + var(--safe-bottom));
    box-shadow: none;
  }
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 32px;
}
.auth-brand img { width: 32px; height: 32px; }
.auth-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.auth-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}
.auth-card .actions {
  padding-top: 8px;
}
.auth-footer {
  text-align: center;
  color: var(--text-soft);
  font-size: 12px;
  margin-top: 16px;
}

/* ============================================================
   Photo grid (uploads)
   ============================================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.photo-grid .photo,
.photo-grid .add-photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface);
}
.photo-grid .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-grid .photo .remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--danger);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-grid .add-photo {
  border: 1px dashed var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
}
.photo-grid .add-photo:hover { border-color: var(--primary); color: var(--primary); }
.photo-grid .add-photo svg { width: 24px; height: 24px; }

/* ============================================================
   Location picker
   ============================================================ */
.loc-picker { position: relative; }
.loc-picker .suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-height: 260px;
  overflow-y: auto;
  z-index: 20;
}
.loc-picker .suggestion {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  font-size: 14px;
}
.loc-picker .suggestion:last-child { border-bottom: none; }
.loc-picker .suggestion:hover { background: var(--surface); }
.loc-picker .suggestion .main { font-weight: 600; color: var(--text); }
.loc-picker .suggestion .sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.loc-picker .current-loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  margin-top: 4px;
  border: none;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
}

/* ============================================================
   Chips, segmented controls
   ============================================================ */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.chip.active {
  background: rgba(249, 115, 22, 0.12);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   Stepper (number)
   ============================================================ */
.stepper {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 8px;
}
.stepper button {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.stepper button:not(:disabled):hover { background: var(--surface); }
.stepper button:disabled { color: var(--text-soft); }
.stepper .value {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================================
   Empty state
   ============================================================ */
.empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
}
.empty svg { width: 56px; height: 56px; margin-bottom: 12px; color: var(--text-soft); }
.empty h3 { font-size: 17px; color: var(--text); margin-bottom: 4px; }
.empty p { font-size: 14px; margin-bottom: 18px; }

/* ============================================================
   Avatar
   ============================================================ */
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar.sm { width: 32px; height: 32px; font-size: 13px; }
.avatar.lg { width: 64px; height: 64px; font-size: 22px; }

/* ============================================================
   Toast
   ============================================================ */
#toast-host {
  position: fixed;
  top: calc(var(--safe-top) + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: calc(100% - 32px);
  max-width: 420px;
}
.toast {
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  animation: toast-in 0.2s ease-out;
  pointer-events: auto;
}
.toast.error { background: var(--danger); }
.toast.success { background: var(--success); }
.toast.info { background: var(--info); }
@keyframes toast-in {
  from { transform: translateY(-12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   Modal / bottom sheet
   ============================================================ */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: scrim-in 0.15s;
}
@keyframes scrim-in { from { opacity: 0; } to { opacity: 1; } }

.sheet {
  background: var(--bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px 20px calc(20px + var(--safe-bottom));
  animation: sheet-in 0.2s ease-out;
}
@keyframes sheet-in {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.sheet-handle {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 16px;
}
.sheet h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ============================================================
   Section helpers
   ============================================================ */
.section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}
.row + .row { border-top: 1px solid var(--border-soft); }
.row .label { color: var(--text-muted); font-size: 14px; }
.row .value { font-weight: 600; }

.skeleton {
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hide { display: none !important; }

/* ============================================================
   Responsive: tablet & desktop
   ============================================================ */
@media (min-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 24px; }
}

@media (min-width: 1024px) {
  :root { --header-h: 64px; }

  /* Side navigation replaces bottom nav on desktop */
  .bottom-nav { display: none; }

  .app-shell { flex-direction: row; }
  .top-header { display: none; }

  .side-nav {
    width: 240px;
    flex-shrink: 0;
    background: var(--bg);
    border-right: 1px solid var(--border);
    padding: 20px 12px;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .side-nav .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    padding: 8px 12px;
    margin-bottom: 16px;
  }
  .side-nav .brand img { width: 32px; height: 32px; }
  .side-nav a.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
  }
  .side-nav a.nav-item:hover { background: var(--surface); color: var(--text); }
  .side-nav a.nav-item.active {
    background: var(--primary-light);
    color: var(--primary);
  }
  .side-nav a.nav-item svg { width: 20px; height: 20px; }

  .side-nav .spacer { flex: 1; }

  .main {
    flex: 1;
    padding-bottom: 24px;
    min-width: 0;
  }
  .container { padding: 32px 40px; max-width: 920px; }

  /* On desktop, show inline header for pages that have one */
  .page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .page-header h1 { font-size: 28px; font-weight: 800; }
}

@media (max-width: 1023px) {
  /* .page-header is the desktop-only inline title row; pages that show it
     should also rely on .page-header-mobile inside the container. */
  .page-header { display: none; }
}

@media (min-width: 1024px) {
  /* Hide bottom-nav on desktop already done above */
  .side-nav-only-mobile { display: none; }
}

@media (max-width: 1023px) {
  .side-nav { display: none; }
  .desktop-only { display: none !important; }
}

/* Page header for mobile (when present) */
.page-header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 16px;
}
.page-header-mobile h1 { font-size: 22px; font-weight: 800; }
@media (min-width: 1024px) {
  .page-header-mobile { display: none; }
}
