/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   CENTURY 21 PEOPLE'S CHOICE REALTY â Shared Stylesheet
   c21peopleschoice.com | 2026
   âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

/* ââ Reset & Base âââââââââââââââââââââââââââââââââââââââââââââ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Instrument Serif', Georgia, serif; line-height: 1.2; font-weight: 400; }

/* ââ CSS Variables ââââââââââââââââââââââââââââââââââââââââââââ */
:root {
  --brand: #FDB913;
  --brand-hover: #e5a710;
  --brand-light: #fef9e7;
  --ink: #000000;
  --ink-secondary: #333333;
  --ink-muted: #666666;
  --surface: #F5F5F5;
  --surface-warm: #fafaf7;
  --white: #ffffff;
  --border: #e0e0e0;
  --border-light: #f0f0f0;
  --success: #1a8754;
  --error: #d63031;
  --warning: #f39c12;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --container: 1200px;
  --container-narrow: 900px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ââ Layout ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-surface { background: var(--surface); }
.section-warm { background: var(--surface-warm); }

/* ââ Typography ââââââââââââââââââââââââââââââââââââââââââââââ */
.heading-xl { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
.heading-lg { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
.heading-md { font-size: clamp(1.5rem, 3vw, 2rem); }
.heading-sm { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.text-lg { font-size: 1.125rem; line-height: 1.7; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-muted { color: var(--ink-muted); }
.text-secondary { color: var(--ink-secondary); }
.text-brand { color: var(--brand); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.overline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ââ Buttons âââââââââââââââââââââââââââââââââââââââââââââââââ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.938rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: var(--ink); }
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #222; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); background: var(--surface); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { background: var(--surface); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); padding: 10px 16px; }
.btn-ghost:hover { background: var(--surface); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ââ Navigation ââââââââââââââââââââââââââââââââââââââââââââââ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--white);
  transition: color var(--transition);
  line-height: 1.2;
}
.nav-logo .logo-c21 { color: var(--brand); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.04em; }
.site-nav.scrolled .nav-logo { color: var(--ink); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.site-nav.scrolled .nav-links a { color: var(--ink-secondary); }
.site-nav.scrolled .nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--brand); font-weight: 500; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-actions .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.3);
}
.nav-actions .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.site-nav.scrolled .nav-actions .btn-outline { color: var(--ink); border-color: var(--border); }
.site-nav.scrolled .nav-actions .btn-outline:hover { background: var(--surface); border-color: var(--ink); }

/* Mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
}
.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: all 0.3s;
  position: absolute; left: 5px;
}
.mobile-toggle span { top: 15px; }
.mobile-toggle span::before { content: ''; top: -7px; }
.mobile-toggle span::after { content: ''; top: 7px; }
.site-nav.scrolled .mobile-toggle span,
.site-nav.scrolled .mobile-toggle span::before,
.site-nav.scrolled .mobile-toggle span::after { background: var(--ink); }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 20px 24px; background: var(--white);
  border-top: 1px solid var(--border); gap: 4px;
}
.mobile-menu a { padding: 12px 0; font-size: 1rem; color: var(--ink); border-bottom: 1px solid var(--border-light); }
.mobile-menu a:last-child { border: none; }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu.open { display: flex; }
}

/* ââ Hero ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; z-index: -2;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 100%);
  z-index: -1;
}
.hero-content { position: relative; z-index: 1; max-width: 640px; color: var(--white); }
.hero-content h1 { margin-bottom: 20px; }
.hero-content p { font-size: 1.125rem; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-short { min-height: 50vh; }
.hero-medium { min-height: 65vh; }

/* ââ Cards âââââââââââââââââââââââââââââââââââââââââââââââââââ */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition);
}
.card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-flat { border: none; background: var(--surface); }
.card-flat:hover { background: var(--border-light); }

/* ââ Stats Strip âââââââââââââââââââââââââââââââââââââââââââââ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--ink); border-radius: var(--radius-lg); overflow: hidden;
}
.stats-strip .stat {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-strip .stat:last-child { border-right: none; }
.stats-strip .stat-value {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--brand); margin-bottom: 4px;
}
.stats-strip .stat-label { font-size: 0.813rem; color: rgba(255,255,255,0.6); }
@media (max-width: 768px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ââ Grid Layouts ââââââââââââââââââââââââââââââââââââââââââââ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: 1fr; }
}

/* ââ Property Cards ââââââââââââââââââââââââââââââââââââââââââ */
.property-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition); background: var(--white);
}
.property-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.property-card-img { height: 200px; position: relative; background: #e5e5e5; }
.property-card-img img { width: 100%; height: 100%; object-fit: cover; }
.property-card-status {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
}
.status-active { background: var(--success); color: var(--white); }
.status-sold { background: var(--brand); color: var(--ink); }
.property-card-body { padding: 20px; }
.property-card-price { font-family: 'Instrument Serif', serif; font-size: 1.5rem; color: var(--ink); margin-bottom: 4px; }
.property-card-address { font-size: 0.875rem; color: var(--ink-secondary); margin-bottom: 12px; }
.property-card-meta { display: flex; gap: 16px; font-size: 0.813rem; color: var(--ink-muted); }

/* ââ Testimonials ââââââââââââââââââââââââââââââââââââââââââââ */
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.testimonial-stars { color: var(--brand); font-size: 1.125rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1rem; line-height: 1.7; color: var(--ink); margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.938rem; }
.testimonial-role { font-size: 0.813rem; color: var(--ink-muted); }

/* ââ CTA Banner ââââââââââââââââââââââââââââââââââââââââââââââ */
.cta-banner {
  background: var(--ink); border-radius: var(--radius-xl);
  padding: 56px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.cta-banner .overline { margin-bottom: 8px; }

/* ââ Forms âââââââââââââââââââââââââââââââââââââââââââââââââââ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.813rem; font-weight: 500; color: var(--ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.03em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); background: var(--white); color: var(--ink);
  transition: border-color var(--transition); font-size: 0.938rem;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.813rem; color: var(--ink-secondary); line-height: 1.5; }
.form-checkbox input { margin-top: 3px; accent-color: var(--brand); }
.form-dark .form-input, .form-dark .form-select, .form-dark .form-textarea {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: var(--white);
}
.form-dark .form-input:focus, .form-dark .form-select:focus, .form-dark .form-textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(253,185,19,0.15);
}
.form-dark .form-label { color: rgba(255,255,255,0.7); }
.form-dark .form-input::placeholder, .form-dark .form-textarea::placeholder { color: rgba(255,255,255,0.35); }

/* ââ Feature Cards âââââââââââââââââââââââââââââââââââââââââââ */
.feature-icon {
  width: 48px; height: 48px; background: var(--brand-light);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; color: var(--brand); font-size: 1.25rem;
}
.feature-title { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.0625rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.feature-desc { font-size: 0.875rem; color: var(--ink-secondary); line-height: 1.6; }

/* ââ Steps/Process âââââââââââââââââââââââââââââââââââââââââââ */
.step-number {
  width: 36px; height: 36px; background: var(--brand);
  border-radius: var(--radius-full); display: flex; align-items: center;
  justify-content: center; font-size: 0.875rem; font-weight: 700;
  color: var(--ink); margin-bottom: 16px;
}

/* ââ Agent Cards âââââââââââââââââââââââââââââââââââââââââââââ */
.agent-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; text-align: center;
  transition: all var(--transition);
}
.agent-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.agent-avatar {
  width: 88px; height: 88px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--surface), var(--border));
  margin: 0 auto 16px; display: flex; align-items: center;
  justify-content: center; font-size: 2rem; color: var(--ink-muted);
}
.agent-name { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 1.0625rem; margin-bottom: 4px; }
.agent-title { font-size: 0.813rem; color: var(--ink-muted); margin-bottom: 12px; }
.agent-specialties { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
.chip { padding: 4px 12px; background: var(--surface); border-radius: var(--radius-full); font-size: 0.75rem; color: var(--ink-secondary); }
.chip-brand { background: var(--brand-light); color: var(--ink); }

/* ââ Footer ââââââââââââââââââââââââââââââââââââââââââââââââââ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 80px 0 40px; }
.footer-search { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 48px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-search-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); }
.footer-pill { padding: 8px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-full); font-size: 0.813rem; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.footer-pill:hover { background: var(--brand); color: var(--ink); border-color: var(--brand); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .footer-logo { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 4px; }
.footer-brand .footer-logo-c21 { font-size: 0.625rem; color: var(--brand); font-weight: 600; letter-spacing: 0.04em; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.813rem; margin-bottom: 8px; }
.footer-col-title { font-family: 'IBM Plex Sans', sans-serif; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand); margin-bottom: 20px; }
.footer-links a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.6); padding: 6px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; }
.footer-legal { font-size: 0.7rem; color: rgba(255,255,255,0.35); max-width: 800px; line-height: 1.7; }

/* ââ Utility âââââââââââââââââââââââââââââââââââââââââââââââââ */
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.w-full { width: 100%; }
.relative { position: relative; }

/* ââ Animations ââââââââââââââââââââââââââââââââââââââââââââââ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ââ Search Bar ââââââââââââââââââââââââââââââââââââââââââââââ */
.search-bar {
  display: flex; gap: 12px; align-items: center;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 8px 8px 8px 24px; box-shadow: var(--shadow-md);
}
.search-bar input { flex: 1; border: none; outline: none; font-size: 1rem; background: none; min-width: 0; }
.search-bar select { border: none; outline: none; background: var(--surface); padding: 10px 16px; border-radius: var(--radius-lg); font-size: 0.875rem; color: var(--ink-secondary); }
.search-bar .btn { border-radius: var(--radius-lg); }
@media (max-width: 768px) {
  .search-bar { flex-direction: column; border-radius: var(--radius-lg); padding: 16px; }
  .search-bar input { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .search-bar select { width: 100%; }
  .search-bar .btn { width: 100%; justify-content: center; }
}

/* ââ Split layout âââââââââââââââââââââââââââââââââââââââââââ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* ââ Form success âââââââââââââââââââââââââââââââââââââââââââ */
.form-success { display: none; text-align: center; padding: 40px; }
.form-success.show { display: block; }
.form-success-icon { width: 56px; height: 56px; background: rgba(26,135,84,0.1); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--success); font-size: 1.5rem; }

/* ââ Info Cards âââââââââââââââââââââââââââââââââââââââââââââ */
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.info-card-icon { width: 44px; height: 44px; background: var(--brand-light); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--brand); }
.info-card-title { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 0.875rem; margin-bottom: 4px; }
.info-card-value { font-size: 0.875rem; color: var(--ink-secondary); }

/* ââ Neighbourhood Cards ââââââââââââââââââââââââââââââââââââ */
.neighbourhood-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.neighbourhood-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.neighbourhood-card-img { height: 180px; background: linear-gradient(135deg, #e0e0e0, #c0c0c0); position: relative; }
.neighbourhood-card-img img { width: 100%; height: 100%; object-fit: cover; }
.neighbourhood-card-body { padding: 24px; }
.neighbourhood-card-title { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 1.125rem; margin-bottom: 12px; }
.neighbourhood-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.neighbourhood-card-stat { font-size: 0.75rem; color: var(--ink-muted); }
.neighbourhood-card-stat strong { display: block; font-size: 0.875rem; color: var(--ink); }

/* ââ Calculator Cards âââââââââââââââââââââââââââââââââââââââ */
.calc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.calc-result { background: var(--brand-light); border-radius: var(--radius-md); padding: 20px; text-align: center; margin-top: 20px; }
.calc-result-value { font-family: 'Instrument Serif', serif; font-size: 2rem; color: var(--ink); }
.calc-result-label { font-size: 0.75rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ââ Tabs ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.tabs { display: flex; gap: 4px; background: var(--surface); border-radius: var(--radius-full); padding: 4px; margin-bottom: 32px; overflow-x: auto; }
.tab { padding: 10px 20px; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; cursor: pointer; border: none; background: none; color: var(--ink-muted); transition: all var(--transition); white-space: nowrap; }
.tab.active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.tab:hover:not(.active) { color: var(--ink); }

/* ââ Chip list âââââââââââââââââââââââââââââââââââââââââââââââ */
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-lg { padding: 10px 20px; background: var(--surface); border-radius: var(--radius-full); font-size: 0.875rem; color: var(--ink-secondary); border: 1px solid var(--border); }

/* ââ Office card âââââââââââââââââââââââââââââââââââââââââââââ */
.office-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.office-card-title { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 12px; }
.office-card-detail { font-size: 0.875rem; color: var(--ink-secondary); margin-bottom: 6px; display: flex; align-items: flex-start; gap: 8px; }
