/* Shared design system for raheemsells.com town pages */
:root {
  --cream: #F5F0E6;
  --cream-deep: #ECE4D3;
  --cream-light: #FAF7F0;
  --ink: #161513;
  --ink-soft: #4A463F;
  --ink-mute: #8A857B;
  --forest: #1F3D2E;
  --forest-deep: #14281E;
  --forest-light: #2D5440;
  --terracotta: #C97B5F;
  --terracotta-deep: #A85D43;
  --border: #E1D6C2;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: 'Fraunces', Georgia, serif; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 700px) { .container, .container-narrow { padding: 0 20px; } }

/* NAV */
nav.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--forest);
  text-decoration: none;
}
.brand-dot { color: var(--terracotta); margin: 0 4px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a.nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-links a.nav-cta:hover { background: var(--forest-deep); color: var(--cream); }
@media (max-width: 820px) { .nav-links a:not(.nav-cta) { display: none; } }

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--forest);
  color: var(--cream);
  border: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, transform 0.05s;
}
.btn:hover { background: var(--forest-deep); }
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: var(--cream); }

/* HERO */
.town-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}
.crumbs {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.crumbs a { color: var(--ink-mute); text-decoration: none; }
.crumbs a:hover { color: var(--forest); }
.crumbs span { margin: 0 8px; opacity: 0.5; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 20px;
}
.town-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 800px;
}
.town-hero h1 em {
  font-style: italic;
  color: var(--forest);
}
.town-hero .lede {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.55;
}

/* MARKET STAT GRID */
.market-snapshot {
  background: var(--forest);
  color: var(--cream);
  padding: 48px 0;
  margin-bottom: 64px;
}
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 760px) { .snapshot-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.snap-item .snap-num {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.snap-item .snap-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.7);
}
.snap-source {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.55);
  margin-top: 32px;
  border-top: 1px solid rgba(245, 240, 230, 0.15);
  padding-top: 16px;
  letter-spacing: 0.02em;
}

/* ARTICLE BODY */
.article {
  padding: 32px 0 80px;
}
.article h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 56px 0 20px;
  color: var(--ink);
}
.article h2:first-child { margin-top: 0; }
.article h2 em { font-style: italic; color: var(--forest); }
.article h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin: 36px 0 12px;
  color: var(--forest);
}
.article p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.7;
}
.article p.intro {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
}
.article strong { color: var(--ink); font-weight: 500; }
.article ul { margin: 0 0 24px 24px; }
.article ul li { font-size: 17px; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.6; }
.article a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.article a:hover { color: var(--terracotta); }

/* INLINE CTA CARD */
.inline-cta {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 600px) { .inline-cta { flex-direction: column; text-align: center; gap: 16px; } }
.inline-cta .cta-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--forest);
  color: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 24px;
}
.inline-cta .cta-body { flex: 1; }
.inline-cta .cta-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.inline-cta .cta-body p {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0;
}
.inline-cta .btn { flex-shrink: 0; }

/* NEIGHBORHOOD CARDS */
.hood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
@media (max-width: 600px) { .hood-grid { grid-template-columns: 1fr; } }
.hood-card {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.hood-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.hood-card .hood-meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  font-weight: 600;
}
.hood-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* FAQ */
.faq-section {
  background: var(--cream-light);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.faq-section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.faq-a {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* FINAL CTA */
.final-cta-band {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
}
.final-cta-band h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.final-cta-band h2 em { font-style: italic; color: var(--terracotta); }
.final-cta-band p {
  font-size: 17px;
  color: rgba(245, 240, 230, 0.8);
  max-width: 540px;
  margin: 0 auto 32px;
}
.final-cta-band .btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-band .btn {
  background: var(--cream);
  color: var(--forest);
}
.final-cta-band .btn:hover { background: var(--cream-light); }
.final-cta-band .btn-outline {
  background: transparent;
  border: 1.5px solid var(--cream);
  color: var(--cream);
}
.final-cta-band .btn-outline:hover { background: var(--cream); color: var(--forest); }

/* FOOTER */
footer.site-footer {
  background: var(--forest-deep);
  color: rgba(245, 240, 230, 0.75);
  padding: 48px 0 32px;
  font-size: 13px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(245, 240, 230, 0.15);
  margin-bottom: 24px;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.015em;
}
.footer-row a {
  color: rgba(245, 240, 230, 0.85);
  text-decoration: none;
  margin: 0 12px;
}
.footer-legal {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
