/* ===== DESIGN TOKENS ===== */
:root {
  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Inter', 'Helvetica Neue', sans-serif;
  --font-body: 'Nunito Sans', 'Helvetica Neue', sans-serif;

  /* Swiss Blue — One Color, Clean Neutrals */
  --color-bg: #F5F5F3;
  --color-surface: #FFFFFF;
  --color-surface-2: #EDEDEB;
  --color-surface-offset: #E5E5E2;
  --color-border: #D0D0CC;
  --color-divider: #DCDCDA;

  --color-text: #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-text-faint: #A3A3A3;

  --color-primary: #1A5CA8;
  --color-primary-hover: #134580;
  --color-primary-light: #E6EEF7;

  --color-accent: #1A5CA8;
  --color-accent-light: #E6EEF7;

  /* Radius — Swiss-sharp */
  --radius-sm: 2px;
  --radius-md: 3px;
  --radius-lg: 4px;
  --radius-xl: 6px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.25 0.02 60 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.25 0.02 60 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.25 0.02 60 / 0.12);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 999;
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}
.skip-link:focus {
  top: var(--space-2);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: box-shadow 300ms var(--ease-out);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  color: var(--color-text);
  line-height: 1;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--color-text);
  line-height: 1;
}
.logo-divider {
  width: 1px;
  height: 2.25rem;
  background: var(--color-border);
  flex-shrink: 0;
}
.brokerage-logo {
  height: 2.35rem;
  width: auto;
  flex-shrink: 0;
}
.footer-brokerage-logo {
  filter: brightness(0) invert(1);
}
.logo-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-tagline {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: clamp(0.55rem, 0.5rem + 0.15vw, 0.625rem);
  color: var(--color-text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  width: 100%;
}
.logo-tagline::before,
.logo-tagline::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to var(--dir, right), var(--color-border), transparent);
}
.logo-tagline::before { --dir: left; }  /* fades out to the left */
.logo-tagline::after { --dir: right; }   /* fades out to the right */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-primary);
  color: #fff !important;
  border-radius: 0;
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}
.nav-cta:active {
  transform: translateY(0);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 300ms var(--ease-out);
  display: block;
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .logo-group { gap: 0.5rem; }
  .logo-divider { height: 1.75rem; }
  .brokerage-logo { height: 1.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-surface);
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    gap: var(--space-4);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: var(--text-base); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.15 0.02 40 / 0.85) 0%,
    oklch(0.15 0.02 40 / 0.4) 40%,
    oklch(0.15 0.02 40 / 0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-12) var(--space-6) var(--space-10);
  width: 100%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  max-width: 14ch;
  margin-bottom: var(--space-3);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.hero-subtitle {
  font-size: var(--text-lg);
  color: oklch(1 0 0 / 0.8);
  max-width: 42ch;
  margin-bottom: var(--space-6);
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 180ms var(--ease-out);
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid oklch(1 0 0 / 0.4);
}
.btn-outline:hover {
  background: oklch(1 0 0 / 0.1);
  border-color: oklch(1 0 0 / 0.7);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn-outline-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn:active {
  transform: translateY(0);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: oklch(1 0 0 / 0.12);
  backdrop-filter: blur(8px);
  border-radius: 0;
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.85);
  margin-bottom: var(--space-4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid oklch(1 0 0 / 0.15);
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}
.section-narrow {
  max-width: var(--content-default);
  margin: 0 auto;
}
.section-wide {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.section-header {
  margin-bottom: var(--space-10);
}
.section-label {
  font-size: var(--text-xs);
  color: var(--color-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-top: var(--space-4);
  line-height: 1.6;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--color-primary);
  padding: var(--space-10) var(--space-6);
}
.stats-grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}
.stat-item {
  color: #fff;
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.7);
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

/* ===== ABOUT SPLIT ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.about-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
@media (max-width: 768px) {
  .about-split, .about-split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-6);
  }
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.service-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: box-shadow 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.service-card p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.review-card {
  background: var(--color-surface);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--color-accent);
  font-size: var(--text-lg);
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}
.review-text {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: var(--text-base);
  flex: 1;
  margin-bottom: var(--space-5);
}
.review-author {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== AREAS / COMMUNITY CARDS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.area-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.area-card:hover img {
  transform: scale(1.05);
}
.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.1 0.02 40 / 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
}
.area-card-meta {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.75);
}
@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--color-surface-2);
  text-align: center;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.cta-banner p {
  color: var(--color-text-muted);
  max-width: 48ch;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-base);
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.form-group {
  margin-bottom: var(--space-4);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-1);
  color: var(--color-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-text);
  color: oklch(1 0 0 / 0.7);
  padding: var(--space-16) var(--space-6) var(--space-8);
}
.footer-grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer-brand .logo-name {
  color: #fff;
  margin-bottom: var(--space-3);
}
.footer-logo-group {
  margin-bottom: var(--space-4);
}
.footer-logo-group .logo-divider {
  background: oklch(1 0 0 / 0.25);
}
.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 30ch;
}
.footer-col h4 {
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: var(--space-2);
}
.footer-col a {
  color: oklch(1 0 0 / 0.6);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 180ms var(--ease-out);
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-top: var(--space-8);
  border-top: 1px solid oklch(1 0 0 / 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.4);
}
.brokered-by {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.5);
}
.photo-credit {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.35);
  margin-top: var(--space-1);
}
.photo-credit a {
  color: oklch(1 0 0 / 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.photo-credit a:hover {
  color: oklch(1 0 0 / 0.7);
}
.footer-logo {
  align-items: flex-start;
}
.footer-logo .logo-tagline {
  max-width: 160px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PAGE SECTIONS ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.15 0.02 40 / 0.8) 0%, oklch(0.15 0.02 40 / 0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
  width: 100%;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
  font-weight: 700;
}
.page-hero .hero-subtitle {
  color: oklch(1 0 0 / 0.75);
}

/* Page content */
.page-body {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-6);
}
.page-content {
  max-width: var(--content-default);
  margin: 0 auto;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  margin-top: var(--space-12);
}
.page-content h2:first-child {
  margin-top: 0;
}
.page-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.page-content ul {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}
.page-content li {
  margin-bottom: var(--space-2);
}

/* Feature list with checks */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== SCROLL REVEALS ===== */
.fade-in { opacity: 1; }

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* ===== PAGE VISIBILITY ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== MISC ===== */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ===== RECENTLY SOLD SECTION ===== */
.sold-section {
  background: var(--color-bg);
}
.sold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.sold-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  transition: box-shadow 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.sold-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.sold-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: 0;
  line-height: 1.4;
}
.sold-card-body {
  padding: var(--space-8) var(--space-6) var(--space-6);
  padding-top: calc(var(--space-8) + var(--space-4));
}
.sold-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.1;
}
.sold-address {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}
.sold-specs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  flex-wrap: wrap;
}
.sold-sep {
  color: var(--color-border);
  line-height: 1;
}
.sold-cta-wrap {
  text-align: center;
  margin-top: var(--space-4);
}
@media (max-width: 960px) {
  .sold-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .sold-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ACCORDION SECTION ===== */
.faq-section {
  background: var(--color-surface-2);
}
.faq-accordion {
  max-width: var(--content-default);
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-5);
}
.faq-item:first-of-type {
  border-top: 1px solid var(--color-border);
}
.faq-question {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  user-select: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: '+';
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-left: var(--space-4);
  transition: transform 200ms var(--ease-out);
  line-height: 1;
}
details[open] .faq-question::after {
  content: '\2212';
}
.faq-answer {
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-top: var(--space-3);
  margin: 0;
  font-size: var(--text-base);
}

/* ===== PAGE CALLOUT BOX ===== */
.page-callout {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 0;
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-10);
}
.page-callout-heading {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  margin-top: 0;
}
.page-callout-text {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
}
@media (max-width: 600px) {
  .page-callout {
    padding: var(--space-5) var(--space-5);
  }
}
