/* ============================================================
   HOMIES — Global Stylesheet
   Font: Nunito (rounded, matches logo personality)
   Palette: White #FFFFFF / Orange #FF6B00 / Black #111111
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --or: #FF6B00;
  --or10: rgba(255,107,0,0.08);
  --or20: rgba(255,107,0,0.20);
  --or30: rgba(255,107,0,0.30);
  --bk: #111111;
  --wh: #FFFFFF;
  --g50: #F8F8F7;
  --g100: #F0EFED;
  --g200: #E4E3E0;
  --g400: #AEACA8;
  --g600: #706E6A;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 100px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--wh); color: var(--bk); -webkit-font-smoothing: antialiased; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: 'Nunito', sans-serif; cursor: pointer; }
input, select, textarea { font-family: 'Nunito', sans-serif; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-size: 2rem; font-weight: 900; line-height: 1.15; }
h2 { font-size: 1.5rem; font-weight: 800; }
h3 { font-size: 1.125rem; font-weight: 700; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.page-wrap { padding: 40px 28px; max-width: 1100px; margin: 0 auto; }

/* ── Navigation ── */
.nav {
  height: 64px;
  background: var(--wh);
  border-bottom: 1px solid var(--g200);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--or);
  letter-spacing: -0.3px;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--g600);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.15s;
}
.nav-link:hover { background: var(--g100); color: var(--bk); }
.nav-link.active { background: var(--or10); color: var(--or); }
.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--or10);
  border: 2px solid var(--or20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--or);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--or); color: var(--wh); }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--bk); border: 1.5px solid var(--g200); }
.btn-secondary:hover { background: var(--g50); border-color: var(--g400); }
.btn-outline-or { background: transparent; color: var(--or); border: 1.5px solid var(--or20); }
.btn-outline-or:hover { background: var(--or10); }
.btn-danger { background: transparent; color: #C62828; border: 1.5px solid rgba(198,40,40,0.25); }
.btn-danger:hover { background: rgba(198,40,40,0.05); }
.btn-whatsapp { background: #25D366; color: var(--wh); }
.btn-whatsapp:hover { opacity: 0.9; }
.btn-full { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 8px 14px; font-size: 0.8125rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ── Card ── */
.card { background: var(--wh); border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 24px; }

/* ── Form ── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--g600);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--g200);
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: var(--bk);
  background: var(--wh);
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--or); }
.form-input::placeholder { color: var(--g400); font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

/* ── Chips ── */
.chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 16px;
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 700;
  border: 1.5px solid var(--g200);
  background: var(--wh);
  color: var(--g600);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
  font-family: 'Nunito', sans-serif;
}
.chip:hover { border-color: var(--or); color: var(--or); background: var(--or10); }
.chip.active { background: var(--or); border-color: var(--or); color: var(--wh); }

/* ── Toggle pills (for gender etc) ── */
.pill-group { display: flex; gap: 8px; }
.pill-btn {
  flex: 1;
  padding: 11px 16px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1.5px solid var(--g200);
  background: var(--wh);
  color: var(--g600);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}
.pill-btn.active { background: var(--or); border-color: var(--or); color: var(--wh); }

/* ── Badge ── */
.badge { display: inline-block; padding: 4px 10px; border-radius: var(--r-full); font-size: 0.75rem; font-weight: 800; }
.badge-pending { background: #FFF4DC; color: #995C00; }
.badge-confirmed { background: #E3F5E9; color: #1A6E38; }
.badge-rejected { background: #FDEAEA; color: #C62828; }

/* ── Alert ── */
.alert { padding: 13px 16px; border-radius: var(--r-sm); font-size: 0.875rem; font-weight: 700; margin-bottom: 18px; }
.alert-warning { background: #FFF8ED; color: #7A4900; border-left: 3px solid var(--or); }
.alert-error { background: #FDEAEA; color: #C62828; border-left: 3px solid #E53935; }
.alert-success { background: #E3F5E9; color: #1A6E38; border-left: 3px solid #43A047; }

/* ── Divider ── */
.divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--g400); font-size: 0.8125rem; font-weight: 700; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--g200); }

/* ── Toast ── */
.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bk);
  color: var(--wh);
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--wh);
  border-radius: var(--r-xl);
  padding: 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  animation: popIn 0.22s ease;
}
@keyframes popIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-title { font-size: 1.25rem; font-weight: 900; margin-bottom: 6px; }
.modal-sub { font-size: 0.9rem; color: var(--g600); margin-bottom: 24px; font-weight: 500; }
.modal-actions { display: flex; gap: 12px; margin-top: 24px; }

/* ── Auth pages ── */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--g50);
}
.auth-card {
  background: var(--wh);
  border: 1px solid var(--g200);
  border-radius: var(--r-xl);
  padding: 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo-text { font-size: 1.75rem; font-weight: 900; color: var(--or); letter-spacing: -0.5px; }
.auth-logo-sub { font-size: 0.8125rem; color: var(--g400); font-weight: 600; margin-top: 3px; }
.auth-heading { font-size: 1.5rem; font-weight: 900; text-align: center; margin-bottom: 6px; }
.auth-sub { font-size: 0.9rem; color: var(--g600); text-align: center; margin-bottom: 28px; font-weight: 500; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.875rem; color: var(--g600); font-weight: 600; }
.auth-footer a { color: var(--or); font-weight: 800; }

/* ── Profile header ── */
.profile-header { background: var(--or); padding: 44px 28px; text-align: center; }
.profile-avatar-wrap { width: 84px; height: 84px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.45); background: rgba(255,255,255,0.15); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 1.875rem; font-weight: 900; color: var(--wh); overflow: hidden; }
.profile-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-size: 1.5rem; font-weight: 900; color: var(--wh); }
.profile-role { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 4px; font-weight: 600; }

/* ── Info card rows ── */
.info-card { background: var(--wh); border: 1px solid var(--g200); border-radius: var(--r-lg); overflow: hidden; }
.info-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--g100); }
.info-row:last-child { border-bottom: none; }
.info-label { font-size: 0.8125rem; color: var(--g600); font-weight: 700; }
.info-value { font-size: 0.9rem; font-weight: 800; color: var(--bk); max-width: 60%; text-align: right; }

/* ── Intro pages ── */
.intro-page { min-height: calc(100vh - 64px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 48px 28px; }
.intro-illustration { font-size: 5rem; margin-bottom: 28px; line-height: 1; }
.intro-title { font-size: 2rem; font-weight: 900; max-width: 500px; margin: 0 auto 14px; line-height: 1.2; }
.intro-sub { font-size: 1rem; color: var(--g600); max-width: 380px; margin: 0 auto 40px; font-weight: 500; line-height: 1.6; }

/* ── Properties page ── */
.prop-stage-wrap { max-width: 480px; margin: 0 auto; overflow: hidden; }
.prop-card { background: var(--wh); border: 1px solid var(--g200); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); }
.prop-card-img { height: 240px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.prop-card-body { padding: 22px; }
.prop-rent { font-size: 1.625rem; font-weight: 900; color: var(--or); }
.prop-name { font-size: 1rem; font-weight: 800; margin: 3px 0 16px; }
.prop-lister-row { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid var(--g100); }
.prop-lister-name { font-size: 0.875rem; font-weight: 800; }
.prop-lister-meta { font-size: 0.75rem; color: var(--g600); font-weight: 600; margin-top: 2px; }
.prop-cta { display: flex; gap: 12px; max-width: 480px; margin: 16px auto 0; }
.prop-cta .btn { flex: 1; padding: 15px; }

/* ── Slide animations ── */
@keyframes slideOutL { from { transform: translateX(0); opacity: 1; } to { transform: translateX(-115%); opacity: 0; } }
@keyframes slideOutR { from { transform: translateX(0); opacity: 1; } to { transform: translateX(115%); opacity: 0; } }
@keyframes slideIn  { from { transform: translateX(55%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.slide-out-l { animation: slideOutL 0.27s ease forwards; }
.slide-out-r { animation: slideOutR 0.27s ease forwards; }
.slide-in    { animation: slideIn 0.27s ease forwards; }

/* ── Activity layout ── */
.activity-layout { display: grid; grid-template-columns: 320px 1fr; gap: 20px; align-items: start; }
.a-list { display: flex; flex-direction: column; gap: 8px; }
.a-item { padding: 14px 16px; border-radius: var(--r-md); border: 1px solid var(--g200); background: var(--wh); cursor: pointer; transition: all 0.15s; }
.a-item:hover { border-color: var(--or20); background: var(--or10); }
.a-item.sel { border-color: var(--or); background: var(--or10); }
.a-item-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.a-item-name { font-size: 0.875rem; font-weight: 800; }
.a-item-sub { font-size: 0.75rem; color: var(--g600); font-weight: 600; margin-top: 2px; }
.a-item-foot { display: flex; align-items: center; justify-content: space-between; }
.detail-panel { border: 1px solid var(--g200); border-radius: var(--r-lg); background: var(--wh); min-height: 420px; display: flex; flex-direction: column; overflow: hidden; }
.detail-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--g400); font-size: 0.875rem; font-weight: 600; gap: 8px; }
.detail-img { height: 168px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.detail-body { padding: 20px; flex: 1; overflow: auto; }
.detail-section { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--g100); }
.detail-section:last-child { border: none; margin: 0; padding: 0; }
.detail-section-label { font-size: 0.6875rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; color: var(--g400); margin-bottom: 10px; }
.detail-row { display: flex; justify-content: space-between; align-items: baseline; padding: 4px 0; font-size: 0.8125rem; }
.detail-label { color: var(--g600); font-weight: 600; }
.detail-value { font-weight: 800; color: var(--bk); max-width: 58%; text-align: right; }
.detail-actions { padding: 16px 20px; border-top: 1px solid var(--g100); display: flex; gap: 8px; flex-shrink: 0; }
.detail-actions .btn { flex: 1; padding: 11px; font-size: 0.875rem; }

/* ── Upload slots ── */
.upload-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.upload-slot { aspect-ratio: 1; border: 2px dashed var(--g200); border-radius: var(--r-md); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; transition: all 0.15s; background: var(--g50); position: relative; overflow: hidden; }
.upload-slot:hover { border-color: var(--or); background: var(--or10); }
.upload-slot.filled { border-style: solid; border-color: var(--g200); }
.upload-slot input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.upload-slot-label { font-size: 0.75rem; color: var(--g400); font-weight: 700; position: relative; z-index: 1; pointer-events: none; }
.upload-slot-icon { font-size: 1.5rem; position: relative; z-index: 1; pointer-events: none; }
.upload-remove { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; border-radius: 50%; background: rgba(0,0,0,0.65); color: var(--wh); border: none; font-size: 12px; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 2; font-weight: 900; }
.upload-slot.filled .upload-remove { display: flex; }

/* ── Filter panel ── */
.filter-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 400; display: none; }
.filter-overlay.open { display: block; }
.filter-panel {
  position: fixed; top: 0; right: 0; width: 360px; height: 100vh;
  background: var(--wh); z-index: 401;
  transform: translateX(100%); transition: transform 0.25s ease;
  overflow-y: auto; padding: 28px;
  box-shadow: -4px 0 32px rgba(0,0,0,0.1);
}
.filter-panel.open { transform: translateX(0); }
.filter-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.filter-title { font-size: 1.125rem; font-weight: 900; }
.filter-close { background: none; border: none; font-size: 1.375rem; cursor: pointer; color: var(--g600); line-height: 1; padding: 4px; }
.filter-section { margin-bottom: 22px; }
.filter-section-label { font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: var(--g400); margin-bottom: 10px; display: block; }
.range-row { display: flex; justify-content: space-between; font-size: 0.8125rem; font-weight: 800; color: var(--or); margin-top: 8px; }
input[type=range] { width: 100%; accent-color: var(--or); height: 4px; }

/* ── Onboarding ── */
.onboard-wrap { min-height: 100vh; display: flex; flex-direction: column; background: var(--wh); }
.onboard-slides { flex: 1; position: relative; overflow: hidden; display: flex; }
.onboard-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 36px; text-align: center; opacity: 0; transform: translateX(50px); transition: all 0.38s cubic-bezier(0.22,1,0.36,1); pointer-events: none; }
.onboard-slide.active { opacity: 1; transform: translateX(0); pointer-events: all; }
.onboard-slide.exit { opacity: 0; transform: translateX(-50px); }
.onboard-emoji { font-size: 5.5rem; margin-bottom: 32px; line-height: 1; }
.onboard-title { font-size: 2rem; font-weight: 900; margin-bottom: 14px; line-height: 1.2; max-width: 400px; }
.onboard-sub { font-size: 1rem; color: var(--g600); max-width: 340px; font-weight: 500; line-height: 1.65; }
.onboard-footer { padding: 28px 36px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--g100); }
.onboard-dots { display: flex; gap: 6px; }
.onboard-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--g200); transition: all 0.22s; }
.onboard-dot.active { background: var(--or); width: 22px; border-radius: 4px; }
.onboard-skip { background: none; border: none; color: var(--g600); font-weight: 700; font-size: 0.875rem; font-family: 'Nunito', sans-serif; cursor: pointer; }
.onboard-skip:hover { color: var(--bk); }

/* ── Section headings ── */
.section-label { font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.07em; color: var(--g400); margin-bottom: 12px; display: block; }

/* ── Listing detail sections ── */
.listing-detail-section { margin-bottom: 24px; }
.listing-section-title { font-size: 0.6875rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; color: var(--g400); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--g100); }
.listing-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid var(--g50); }
.listing-row:last-child { border: none; }
.listing-row-label { color: var(--g600); font-weight: 600; }
.listing-row-value { font-weight: 800; color: var(--bk); }

/* ── My listing card (activity lister view) ── */
.my-listing-card { background: var(--or10); border: 1px solid var(--or20); border-radius: var(--r-md); padding: 16px; margin-bottom: 16px; }
.my-listing-name { font-size: 0.9375rem; font-weight: 800; }
.my-listing-sub { font-size: 0.8125rem; color: var(--g600); font-weight: 600; margin-top: 3px; }
.my-listing-btns { display: flex; gap: 8px; margin-top: 12px; }

/* ── Spinner ── */
.spinner { display: inline-block; width: 20px; height: 20px; border: 2.5px solid var(--g200); border-top-color: var(--or); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Empty state ── */
.empty-state { text-align: center; padding: 56px 28px; }
.empty-state-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 6px; }
.empty-state p { font-size: 0.9rem; color: var(--g600); font-weight: 500; margin-bottom: 20px; }

/* ── Image carousel ── */
.carousel { position: relative; }
.carousel-track { display: flex; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.carousel-slide { min-width: 100%; height: 260px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.carousel-dots { display: flex; justify-content: center; gap: 5px; padding: 10px 0; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g200); cursor: pointer; transition: all 0.2s; }
.carousel-dot.active { background: var(--or); width: 18px; border-radius: 4px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: all 0.15s; }
.carousel-btn:hover { background: var(--wh); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

/* ── Avatar ── */
.avatar { border-radius: 50%; background: var(--or10); display: flex; align-items: center; justify-content: center; font-weight: 900; color: var(--or); flex-shrink: 0; }

/* ── Home page cards ── */
.home-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 560px; }
.home-card { padding: 32px 24px; border-radius: var(--r-xl); border: 1px solid var(--g200); cursor: pointer; transition: all 0.18s; text-align: center; background: var(--wh); }
.home-card:hover { border-color: var(--or); transform: translateY(-2px); box-shadow: var(--shadow); }
.home-card.primary { background: var(--or); border-color: var(--or); }
.home-card.primary:hover { opacity: 0.92; }
.home-card-icon { font-size: 2.75rem; margin-bottom: 14px; }
.home-card h3 { font-size: 1.125rem; font-weight: 900; margin-bottom: 4px; }
.home-card p { font-size: 0.875rem; font-weight: 500; }
.home-card.primary h3, .home-card.primary p { color: var(--wh); }
.home-card:not(.primary) h3 { color: var(--bk); }
.home-card:not(.primary) p { color: var(--g600); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .activity-layout { grid-template-columns: 1fr; }
  .upload-grid { grid-template-columns: repeat(3, 1fr); }
  .filter-panel { width: 100%; }
  .home-cards { grid-template-columns: 1fr; max-width: 320px; }
  h1 { font-size: 1.625rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
}
