/* ============================================================
   SUNFLOWER — Shared Design System
   ============================================================ */

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

:root {
  --brand:       #F5A01B;
  --brand-dark:  #D4881A;
  --brand-light: #FFF8E7;
  --dark:   #1C1C1E;
  --mid:    #6B6B6B;
  --light:  #F5F5F5;
  --border: #E8E8E8;
  --white:  #FFFFFF;
  --success: #22C55E;
  --danger:  #EF4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   6px;
  --radius-full: 9999px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { line-height: 1.2; }
.playfair { font-family: 'Playfair Display', serif; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 24px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--dark);
}
.section-sub { font-size: 15px; color: var(--mid); margin-top: 6px; }

/* ── NAV ─────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
nav.site-nav.scrolled {
  border-color: var(--border);
  background: rgba(255,255,255,.97);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo .logo-icon {
  width: 34px; height: 34px;
  background: var(--brand);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo .logo-text { color: var(--dark); }
.logo .logo-text span { color: var(--brand); }

/* Compact search in nav */
.nav-search {
  flex: 1;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 8px 8px 18px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .3s, transform .3s, box-shadow .2s;
}
nav.site-nav.scrolled .nav-search,
nav.site-nav.always-solid .nav-search {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
nav.site-nav.always-solid { background: rgba(255,255,255,.97); border-color: var(--border); }
.nav-search:hover { box-shadow: var(--shadow-md); }
.nav-search-text { flex: 1; font-size: 13px; font-weight: 500; color: var(--dark); }
.nav-search-text small { display: block; font-size: 11px; font-weight: 400; color: var(--mid); }
.nav-search-btn {
  background: var(--brand);
  border: none; border-radius: var(--radius-full);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: white; flex-shrink: 0;
  transition: background .15s;
}
.nav-search-btn:hover { background: var(--brand-dark); }
.nav-search-btn svg { width: 16px; height: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--dark);
  background: none; border: none; cursor: pointer;
  padding: 8px 12px; border-radius: var(--radius-full);
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.nav-link:hover { background: var(--light); }
.nav-link.active { font-weight: 600; }

.nav-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.nav-profile {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-full); padding: 5px 5px 5px 14px;
  cursor: pointer; transition: box-shadow .2s;
}
.nav-profile:hover { box-shadow: var(--shadow-md); }
.nav-profile-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 13px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius-full);
  border: none; cursor: pointer; text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-lg { font-size: 16px; padding: 16px 32px; }
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #333; }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: white; }
.btn-ghost { background: transparent; color: var(--dark); }
.btn-ghost:hover { background: var(--light); }
.btn-brand-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-brand-outline:hover { background: var(--brand); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-success { background: var(--success); color: white; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon {
  width: 40px; height: 40px; padding: 0;
  border-radius: 50%; flex-shrink: 0;
  justify-content: center;
}

/* ── FORMS ───────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--dark); margin-bottom: 7px; letter-spacing: .2px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(245,160,27,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: #B0B0B0; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-hint { font-size: 12px; color: var(--mid); margin-top: 5px; }
.form-row { display: grid; gap: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 640px) { .form-row-2, .form-row-3 { grid-template-columns: 1fr; } }

/* Checkbox & Radio */
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; padding: 2px 0;
}
.form-check input[type="checkbox"], .form-check input[type="radio"] {
  width: 18px; height: 18px; border: 2px solid var(--border);
  border-radius: 5px; cursor: pointer; flex-shrink: 0; margin-top: 1px;
  accent-color: var(--brand);
}
.form-check-label { font-size: 14px; color: var(--dark); line-height: 1.4; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow .2s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-sm { padding: 16px; border-radius: var(--radius-sm); }

/* Property Card */
.property-card {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.property-card:hover { transform: translateY(-4px); }
.property-card:hover .property-img img { transform: scale(1.06); }
.property-img {
  position: relative; aspect-ratio: 4/3;
  border-radius: var(--radius); overflow: hidden; background: var(--light);
}
.property-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; display: block;
}
.property-badge {
  position: absolute; top: 12px; left: 12px;
  background: white; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; color: var(--dark);
  padding: 4px 10px; letter-spacing: .3px; box-shadow: var(--shadow-sm);
}
.property-wish {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; cursor: pointer; padding: 4px; line-height: 1;
  transition: transform .2s;
}
.property-wish:hover { transform: scale(1.2); }
.property-wish svg { width: 24px; height: 24px; filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); }
.property-wish.liked svg path { fill: var(--brand); stroke: none; }
.property-info { padding: 14px 4px 4px; }
.property-loc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.property-location {
  font-size: 14px; font-weight: 600; color: var(--dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.property-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 500; color: var(--dark); flex-shrink: 0;
}
.property-rating svg { width: 12px; height: 12px; }
.property-desc, .property-dates { font-size: 13px; color: var(--mid); margin-top: 2px; }
.property-price { font-size: 14px; font-weight: 600; color: var(--dark); margin-top: 6px; }
.property-price span { font-weight: 400; color: var(--mid); }

/* ── BADGE / TAG ─────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--radius-full); letter-spacing: .3px;
}
.badge-brand { background: var(--brand-light); color: var(--brand-dark); }
.badge-dark { background: var(--dark); color: white; }
.badge-success { background: #DCFCE7; color: #15803D; }
.badge-danger { background: #FEE2E2; color: #B91C1C; }
.badge-warning { background: #FEF9C3; color: #A16207; }
.badge-neutral { background: var(--light); color: var(--mid); }

/* ── TAGS ────────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--dark);
  border: 1.5px solid var(--border); border-radius: var(--radius-full);
  padding: 6px 14px; cursor: pointer; background: white;
  transition: background .15s, border-color .15s;
}
.tag:hover { border-color: var(--dark); }
.tag.active { background: var(--dark); color: white; border-color: var(--dark); }

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--border); }
.divider-v { width: 1px; background: var(--border); align-self: stretch; }
.section-divider {
  max-width: calc(1320px - 48px);
  margin: 0 auto;
  height: 1px; background: var(--border);
}

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark); color: white;
  font-size: 14px; font-weight: 500; padding: 13px 22px;
  border-radius: var(--radius-full); box-shadow: var(--shadow-lg);
  z-index: 99999; transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity .3s; backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: 24px;
  max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: white; z-index: 1;
  border-radius: 24px 24px 0 0;
}
.modal-header h2 { font-size: 17px; font-weight: 600; }
.modal-close {
  width: 34px; height: 34px; border: none; background: var(--light);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; transition: background .15s;
}
.modal-close:hover { background: var(--border); }
.modal-body { padding: 28px; }

/* ── DASHBOARD LAYOUT ────────────────────────────────────── */
.dash-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
@media (max-width: 900px) { .dash-layout { grid-template-columns: 1fr; } }
.dash-sidebar {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 32px 0;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
@media (max-width: 900px) { .dash-sidebar { display: none; } }
.dash-sidebar-section { padding: 0 16px 24px; }
.dash-sidebar-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--mid);
  padding: 0 12px; margin-bottom: 8px;
}
.dash-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--dark);
  cursor: pointer; text-decoration: none;
  transition: background .15s;
  border: none; background: none; width: 100%; text-align: left;
}
.dash-nav-item:hover { background: var(--light); }
.dash-nav-item.active {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-weight: 600;
}
.dash-nav-icon { width: 20px; font-size: 16px; flex-shrink: 0; text-align: center; }
.dash-nav-badge {
  margin-left: auto; font-size: 11px; font-weight: 700;
  background: var(--brand); color: white;
  border-radius: var(--radius-full); padding: 2px 7px;
}
.dash-main { padding: 40px; background: #FAFAFA; min-height: calc(100vh - var(--nav-h)); }
@media (max-width: 900px) { .dash-main { padding: 24px 20px; } }

/* ── STAT CARDS ──────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .stats-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.stat-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.stat-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700; color: var(--dark); line-height: 1;
}
.stat-card-label { font-size: 13px; color: var(--mid); margin-top: 6px; }
.stat-card-delta {
  font-size: 12px; font-weight: 600; margin-top: 8px;
  display: flex; align-items: center; gap: 4px;
}
.delta-up { color: var(--success); }
.delta-down { color: var(--danger); }

/* ── TABLE ───────────────────────────────────────────────── */
.table-wrap {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.table-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.table-title { font-size: 16px; font-weight: 600; }
table { width: 100%; border-collapse: collapse; }
thead th {
  text-align: left; font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--mid); padding: 12px 20px;
  border-bottom: 1px solid var(--border); background: var(--light);
}
tbody td { font-size: 14px; padding: 16px 20px; border-bottom: 1px solid var(--border); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #FAFAFA; }

/* ── PROGRESS STEPPER ────────────────────────────────────── */
.stepper {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 48px;
}
.step {
  display: flex; align-items: center; gap: 12px; flex: 1;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  flex: 1; height: 2px; background: var(--border);
  margin: 0 12px;
}
.step.done::after { background: var(--brand); }
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--mid);
  flex-shrink: 0; background: white; transition: all .3s;
}
.step.done .step-dot { border-color: var(--brand); background: var(--brand); color: white; }
.step.active .step-dot { border-color: var(--brand); color: var(--brand); }
.step-label { font-size: 12px; font-weight: 600; color: var(--mid); white-space: nowrap; }
.step.active .step-label, .step.done .step-label { color: var(--dark); }
@media (max-width: 600px) { .step-label { display: none; } }

/* ── CATEGORIES BAR ──────────────────────────────────────── */
.categories-section {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: var(--nav-h); z-index: 800;
}
.categories-inner { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.categories-scroll {
  display: flex; gap: 4px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none; padding: 14px 0;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.category-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 16px; border: none; background: none; cursor: pointer;
  border-radius: var(--radius-sm); opacity: .6; flex-shrink: 0;
  border-bottom: 2px solid transparent; transition: opacity .15s, background .15s;
}
.category-btn:hover { opacity: 1; background: var(--light); }
.category-btn.active { opacity: 1; border-bottom-color: var(--dark); }
.category-icon { font-size: 22px; line-height: 1; }
.category-label { font-size: 11px; font-weight: 600; color: var(--dark); letter-spacing: .3px; }

/* ── PROPERTY GRID ───────────────────────────────────────── */
.properties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
@media (max-width: 1100px) { .properties-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .properties-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px)  { .properties-grid { grid-template-columns: 1fr; } }

/* ── RATING STARS ────────────────────────────────────────── */
.stars { color: #F4A12A; letter-spacing: 2px; font-size: 15px; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--mid);
}
.breadcrumb a { color: var(--mid); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb span { opacity: .5; }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 48px 24px 40px;
}
.page-header-inner { max-width: 1320px; margin: 0 auto; }
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px); font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.page-sub { font-size: 16px; color: var(--mid); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  background: white;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 14px; color: var(--mid); line-height: 1.7; max-width: 260px; margin-top: 12px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border: 1.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .15s, background .15s;
  font-size: 14px; text-decoration: none; color: var(--dark);
}
.social-btn:hover { border-color: var(--brand); background: var(--brand-light); color: var(--brand); }
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--dark);
  margin-bottom: 16px; letter-spacing: .3px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px; color: var(--mid); text-decoration: none; transition: color .15s;
}
.footer-col ul li a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--mid); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--mid); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--brand); }

/* ── RESPONSIVE UTILS ────────────────────────────────────── */
@media (max-width: 760px) {
  .nav-search { display: none; }
  .hide-mobile { display: none !important; }
  .dash-main { padding: 20px 16px; }
}
@media (max-width: 480px) { .hide-sm { display: none !important; } }
