/* ============================================================
   ABDULLAH REALTY — Main Brand Site Stylesheet
   Colors: Nosey Neighbor palette
   Typography: The Bold Font (display) · Lato (headings + body) · Roboto (UI)
   ============================================================ */

/* Google Fonts: Lato + Roboto + Anton (placeholder for "The Bold Font") */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lato:wght@400;700;900&family=Roboto:wght@400;500;700&display=swap');

/* When you have "The Bold Font" .woff2 file:
   1. Upload to /assets/fonts/the-bold-font.woff2
   2. Uncomment the @font-face rule below
   3. --font-display will automatically prefer it over Anton
*/
/*
@font-face {
  font-family: 'The Bold Font';
  src: url('/assets/fonts/the-bold-font.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*/

/* Reset + base */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: #2D2D2D;
  line-height: 1.65;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2C7A87; text-decoration: none; transition: color .2s; }
a:hover { color: #1A2E40; }
button { cursor: pointer; font-family: inherit; }

/* Brand tokens (CSS variables) */
:root {
  --teal: #2C7A87;
  --teal-dark: #205C67;
  --navy: #1A2E40;
  --navy-light: #2F4A63;
  --cream: #F5EDD7;
  --cream-warm: #FBF4E5;
  --orange: #D88A3F;
  --gold: #9E7F4D;
  --sage: #7A8B95;
  --text: #2D2D2D;
  --text-muted: #5A6B75;
  --success: #5A8B4D;
  --border: #E8E4D7;

  --font-display: 'The Bold Font', 'Anton', 'Bebas Neue', 'Arial Black', sans-serif;
  --font-heading: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-ui: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1200px;
  --container-narrow: 800px;
}

/* Typography */
h1, h2 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 900;
}
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); letter-spacing: 0; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: 0; }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h5 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }
p.lead { font-size: 1.25rem; line-height: 1.55; color: var(--text-muted); font-weight: 400; }
p.eyebrow, .eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }
.bg-cream { background: var(--cream); }
.bg-cream-warm { background: var(--cream-warm); }
.bg-navy { background: var(--navy); color: #FFFFFF; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #FFFFFF; }
.bg-navy p { color: rgba(255,255,255,0.85); }
.bg-teal { background: var(--teal); color: #FFFFFF; }
.bg-teal h1, .bg-teal h2, .bg-teal h3 { color: #FFFFFF; }
.center { text-align: center; }

/* ============================================================
   Nav Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.logo span { color: var(--teal); }
.logo-brokerage {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-brokerage strong { color: var(--gold); font-weight: 700; }
.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-main a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
}
.nav-main a:hover { color: var(--teal); }
.nav-main a.pm-link {
  color: var(--orange);
  font-weight: 600;
}
.nav-main a.pm-link::before {
  content: "★";
  margin-right: 0.25rem;
}
.nav-cta {
  background: var(--teal);
  color: #FFFFFF !important;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background .2s;
}
.nav-cta:hover { background: var(--teal-dark); color: #FFFFFF !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  padding: 0.5rem;
}
@media (max-width: 900px) {
  .nav-main {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: none;
  }
  .nav-main.is-open { display: flex; }
  .nav-main a { padding: 0.5rem 0; }
  .nav-toggle { display: block; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
  line-height: 1.3;
}
.btn-primary {
  background: var(--teal);
  color: #FFFFFF !important;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--teal) !important;
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: #FFFFFF !important;
}
.btn-navy {
  background: var(--navy);
  color: #FFFFFF !important;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}
.btn-orange {
  background: var(--orange);
  color: #FFFFFF !important;
  border-color: var(--orange);
}
.btn-orange:hover {
  background: #B87330;
  border-color: #B87330;
}
.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}
.btn-full { display: block; width: 100%; }
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.btn-group.center { justify-content: center; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, var(--cream-warm) 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
  max-width: 800px;
}
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero .lead {
  font-size: 1.375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 640px;
  line-height: 1.5;
}
.hero-trust {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
}
.hero-trust strong { color: var(--navy); font-style: normal; }

/* PM hero variant */
.hero-pm {
  background: linear-gradient(135deg, var(--navy) 0%, #0F1F30 100%);
  color: #FFFFFF;
  padding: 5rem 0 4rem;
  text-align: center;
}
.hero-pm h1 { color: #FFFFFF; }
.hero-pm .lead { color: rgba(255,255,255,0.85); margin-left: auto; margin-right: auto; }

/* ============================================================
   Section Header
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header .eyebrow { margin-bottom: 0.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--text-muted); }

/* ============================================================
   Cards + Feature Grid
   ============================================================ */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,46,64,0.08);
}
.card h3 { margin-bottom: 0.75rem; }
.card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 1.5rem;
}

/* ============================================================
   Step Cards (Buyer/Seller Guides)
   ============================================================ */
.step {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.step-number {
  position: absolute;
  top: -20px;
  left: 2.5rem;
  background: var(--teal);
  color: #FFFFFF;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 0 1px var(--border);
}
.step-header {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}
.step-header h3 { margin-bottom: 0.5rem; }
.step-body { font-size: 1rem; line-height: 1.7; }
.step-cta { margin-top: 2rem; }

/* Checklist / feature list */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.checklist li {
  padding: 0.625rem 0 0.625rem 2rem;
  position: relative;
  color: var(--text);
  line-height: 1.55;
  border-bottom: 1px solid #F1EDE0;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.125rem;
}
.checklist.checklist-tight li { padding: 0.375rem 0 0.375rem 1.75rem; border: none; }

/* Feature grid (icons) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
}
.feature-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--cream-warm);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.feature-item .icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  color: var(--teal);
}
.feature-item h4 { font-size: 1rem; margin-bottom: 0.375rem; }
.feature-item p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0; }

/* Stat blocks */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-block {
  padding: 1.75rem 1.25rem;
  background: var(--cream);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.375rem;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial {
  background: var(--cream-warm);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--teal);
}
.testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.testimonial .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 0.75rem; }
.testimonial cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9375rem;
  display: block;
}
.testimonial cite span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

/* ============================================================
   News Preview (RSS feed teaser)
   ============================================================ */
.news-preview {
  background: var(--navy);
  color: #FFFFFF;
  padding: 4rem 0;
}
.news-preview h2, .news-preview h3 { color: #FFFFFF; }
.news-preview .eyebrow { color: var(--orange); }
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}
.news-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 10px;
  transition: background .2s;
}
.news-card:hover { background: rgba(255,255,255,0.08); }
.news-source {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.news-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.news-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ============================================================
   PM Callout
   ============================================================ */
.pm-callout {
  background: linear-gradient(135deg, var(--navy) 0%, #0F1F30 100%);
  color: #FFFFFF;
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
}
.pm-callout h2 { color: #FFFFFF; margin-bottom: 1rem; }
.pm-callout p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.pm-callout .star {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
  font-size: 0.9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }
.footer-col h4 {
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   Utility
   ============================================================ */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.text-muted { color: var(--text-muted); }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }

/* ============================================================
   Brokerage Badge (Infiniti Properties)
   ============================================================ */
.brokerage-strip {
  background: var(--cream);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brokerage-strip strong { color: var(--navy); font-weight: 700; }
.brokerage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.brokerage-badge.light {
  background: var(--cream);
  border-color: var(--border);
  color: var(--navy);
}

/* ============================================================
   Mohammad "Honest Agent" Section
   ============================================================ */
.mohammad-section {
  background: var(--cream-warm);
  padding: 5rem 0;
}
.mohammad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .mohammad-grid { grid-template-columns: 1fr 1.5fr; }
}
.mohammad-photo-wrap {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  font-size: 0.875rem;
}
.mohammad-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.mohammad-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: #FFFFFF;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.mohammad-badge .icon {
  color: var(--gold);
  font-size: 1rem;
}
.mohammad-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  line-height: 1.15;
  margin: 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.mohammad-principles {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}
.mohammad-principle {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #FFFFFF;
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
}
.mohammad-principle .marker {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
}
.mohammad-principle p { margin: 0; font-size: 0.9375rem; }
.mohammad-principle strong { color: var(--navy); }

/* ============================================================
   Scroll Reveal Animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Card hover polish */
.card, .step, .news-card, .feature-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Video placeholder */
.video-block {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  margin: 2rem 0;
}
.video-block::before {
  content: "▶";
  font-size: 3rem;
  color: #FFFFFF;
  opacity: 0.9;
  background: rgba(255,255,255,0.15);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.video-block:hover::before { transform: scale(1.1); }
.video-block-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   Town landing page components
   ============================================================ */

/* Town hero variant — same structure, allows background image */
.hero-town {
  position: relative;
  min-height: auto;
  padding: 5rem 0 4rem;
}

/* Quick stats bar */
.stat-card {
  background: #FFFFFF;
  border: 1px solid var(--nn-border, #E8E4D7);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 46, 64, 0.08);
}
.stat-number {
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
}

/* Local highlights blocks */
.highlight-block {
  background: #FFFFFF;
  border: 1px solid var(--nn-border, #E8E4D7);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 46, 64, 0.08);
}
.highlight-block h3 {
  color: var(--navy);
  margin-bottom: 0.875rem;
  font-size: 1.25rem;
}
.highlight-block p {
  color: #2D2D2D;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Long-form prose blocks */
.prose {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #2D2D2D;
}
.prose p {
  margin-bottom: 1.25rem;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose h3 {
  color: var(--navy);
  font-size: 1.375rem;
  margin: 2rem 0 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.prose strong {
  color: var(--navy);
  font-weight: 700;
}

/* Dark variant for prose on navy sections */
.prose-dark {
  color: rgba(255, 255, 255, 0.85);
}
.prose-dark strong {
  color: #FFFFFF;
}

/* FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--nn-border, #E8E4D7);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(26, 46, 64, 0.06);
}
.faq-item h3 {
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.faq-item p {
  color: #2D2D2D;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

/* Linked card variant for Related Towns */
.card-link {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
}
.card-link:hover {
  transform: translateY(-3px);
}
.card-link h3 {
  color: var(--navy) !important;
  margin-bottom: 0.5rem;
}
.card-link p {
  color: #5A6B75 !important;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

/* Footer additions to match new HTML class-based structure */
.footer-brand {
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-size: 1.5rem;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.footer-disclosure {
  max-width: var(--container, 1280px);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
}
.site-footer h4 {
  color: #FFFFFF;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin-bottom: 0.5rem;
}
.site-footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--orange);
}
.site-footer p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
