@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ================================
   Custom Properties
================================ */
:root {
  --navy:      #0B1C30;
  --navy-2:    #122540;
  --navy-3:    #1E3A5F;
  --gold:      #C8922A;
  --gold-hover:#A87520;
  --red:       #C62828;
  --green:     #166534;
  --white:     #FFFFFF;
  --off-white: #F8F9FC;
  --gray-50:   #F1F5F9;
  --gray-100:  #E2E8F0;
  --gray-300:  #CBD5E1;
  --gray-500:  #64748B;
  --gray-700:  #334155;
  --text:      #1E293B;
  --text-light:#475569;
  --font-heading: 'Montserrat', -apple-system, system-ui, sans-serif;
  --font-body:    -apple-system, 'Segoe UI', Roboto, system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow:    0 2px 12px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --transition: 0.2s ease;
  --header-h: 72px;
}

/* ================================
   Reset & Base
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.65; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ================================
   Typography
================================ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-gold   { color: var(--gold); }
.text-light  { color: var(--text-light); }

.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin-bottom: 2.5rem; }

/* ================================
   Layout
================================ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section     { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--dark  { background: var(--navy);   color: var(--white); }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4 { color: var(--white); }
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }
.section--gray  { background: var(--off-white); }
.section--navy2 { background: var(--navy-2); color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* ================================
   Buttons
================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.02em; transition: all var(--transition);
  cursor: pointer; white-space: nowrap; text-decoration: none;
}
.btn-primary  { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,146,42,0.4); }
.btn-outline  { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-dark     { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-2); }
.btn-lg       { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-phone {
  background: var(--gold); color: var(--white);
  padding: 0.65rem 1.4rem; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.4rem; transition: all var(--transition);
}
.btn-phone:hover { background: var(--gold-hover); box-shadow: 0 4px 16px rgba(200,146,42,0.4); }

/* ================================
   Stars & Ratings
================================ */
.stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; }
.stars-lg { font-size: 1.4rem; letter-spacing: 3px; }
.rating-line { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.rating-score { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; }
.rating-count { font-size: 0.875rem; color: var(--text-light); }

/* ================================
   Emergency Bar
================================ */
.emergency-bar {
  background: var(--red); color: var(--white);
  text-align: center; padding: 0.6rem 20px;
  font-size: 0.875rem; font-weight: 600;
  position: relative; z-index: 1001;
}
.emergency-bar a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* ================================
   Site Header
================================ */
.site-header {
  background: var(--navy); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1rem;
}
.site-logo { display: flex; flex-direction: column; gap: 1px; text-decoration: none; flex-shrink: 0; }
.logo-main { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: var(--white); line-height: 1.1; }
.logo-sub  { font-family: var(--font-heading); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.main-nav  { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 0.1rem; }
.main-nav a  { color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500; padding: 0.4rem 0.75rem; border-radius: 4px; transition: all var(--transition); }
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.header-cta  { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-phone { display: none; color: rgba(255,255,255,0.65); font-size: 0.8rem; font-weight: 500; }

.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 999; padding: 100px 30px 40px; overflow-y: auto;
  flex-direction: column; gap: 0;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { color: var(--white); font-size: 1.05rem; font-weight: 500; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: block; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-phone { margin-top: 1.5rem; display: flex; justify-content: center; font-size: 1.1rem; border-bottom: none; }
.mobile-nav-section { font-family: var(--font-heading); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 1.25rem 0 0.25rem; display: block; }

/* ================================
   Dropdown Menus
================================ */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " ▾"; font-size: 0.7em; opacity: 0.7; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;           /* zero gap — dropdown is flush with the li bottom */
  left: 0;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  padding: 0.5rem 0;
  min-width: 200px;
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--gold);
}
.nav-dropdown-grid { display: flex; }
.nav-dropdown-col { display: flex; flex-direction: column; min-width: 170px; }
.nav-dropdown-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); padding: 0.75rem 1.25rem 0.3rem; display: block; }
.nav-dropdown a { display: block; color: var(--text); padding: 0.5rem 1.25rem; font-size: 0.875rem; font-weight: 400; transition: all var(--transition); white-space: nowrap; }
.nav-dropdown a:hover { background: var(--gray-50); color: var(--navy); }
.nav-dropdown--wide { left: 50%; transform: translateX(-50%); }

/* CSS hover — works because .nav-dropdown is a DOM child of .has-dropdown */
.has-dropdown:hover .nav-dropdown  { display: block; }
/* JS-controlled (added/removed by main.js for click/touch support) */
.has-dropdown.is-open .nav-dropdown { display: block; }
/* Keyboard navigation fallback */
.has-dropdown:focus-within .nav-dropdown { display: block; }

/* ================================
   Hero
================================ */
.hero {
  background: var(--navy-2); color: var(--white);
  padding: 64px 0 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; object-fit: cover;
  width: 100%; height: 100%; z-index: 0; opacity: 0.2;
}
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(200,146,42,0.15); border: 1px solid rgba(200,146,42,0.3);
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); }
.hero-text { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; }
.hero-stat { display: flex; flex-direction: column; gap: 0.1rem; }
.hero-stat-value { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

.hero-image-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy-3); display: flex; align-items: center;
  justify-content: center; min-height: 300px;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ================================
   Trust Bar
================================ */
.trust-bar { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; }
.trust-item .ti { color: var(--gold); }

/* ================================
   Service Cards
================================ */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 1.75rem 1.5rem;
  transition: all var(--transition); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column; gap: 0.65rem;
  text-decoration: none; color: var(--text);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.service-icon { width: 50px; height: 50px; background: rgba(200,146,42,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin: 0; }
.service-card p  { font-size: 0.875rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.service-card-link { font-size: 0.82rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 0.25rem; margin-top: auto; padding-top: 0.4rem; }

/* ================================
   Feature Grid
================================ */
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-icon { width: 48px; height: 48px; background: rgba(200,146,42,0.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.feature-body h3 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--navy); }
.feature-body p  { font-size: 0.875rem; color: var(--text-light); margin: 0; }

/* ================================
   Process Steps
================================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.step  { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-number { width: 48px; height: 48px; background: var(--gold); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.step-body h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.step-body p  { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ================================
   Neighborhood Grid
================================ */
.neighborhood-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.neighborhood-item {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.6rem 0.85rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-100);
  font-size: 0.84rem; font-weight: 500; text-decoration: none;
  color: var(--text); transition: all var(--transition);
}
.neighborhood-item:hover { border-color: var(--gold); color: var(--navy); background: rgba(200,146,42,0.05); }
.neighborhood-item::before { content: "📍"; font-size: 0.75rem; }

/* ================================
   Review Cards
================================ */
.review-aggregate { text-align: center; padding: 2rem; background: var(--navy-2); border-radius: var(--radius-lg); margin-bottom: 2rem; color: var(--white); }
.review-aggregate .rating-num { font-family: var(--font-heading); font-weight: 800; font-size: 3.5rem; color: var(--white); line-height: 1; margin-bottom: 0.25rem; }
.review-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; flex-wrap: wrap; gap: 0.25rem; }
.reviewer    { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.review-date { font-size: 0.78rem; color: var(--gray-500); }
.review-text { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ================================
   Direct Answer Box
================================ */
.direct-answer {
  background: var(--gray-50); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem; margin-bottom: 2rem;
  font-size: 1.02rem; line-height: 1.75; color: var(--text);
}
.direct-answer strong { color: var(--navy); }

/* ================================
   FAQ
================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.4rem; }
.faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; }
.faq-item.is-open { box-shadow: var(--shadow); border-color: var(--gray-200); }
.faq-question {
  width: 100%; text-align: left; padding: 1rem 1.25rem;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  color: var(--text); display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; cursor: pointer; background: none;
}
.faq-question:hover { color: var(--navy); }
.faq-question-text { flex: 1; }
.faq-icon { width: 24px; height: 24px; background: var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; color: var(--gold); font-weight: 700; transition: all var(--transition); }
.faq-item.is-open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.25rem; font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }
.faq-answer p { margin-bottom: 0.6rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-item.is-open .faq-answer { display: block; }

/* ================================
   CTA Section
================================ */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--white); text-align: center; padding: 80px 0; }
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px; margin: 0 auto 2rem; }
.cta-actions    { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.emergency-cta {
  background: var(--red); color: var(--white); padding: 1rem 2rem;
  border-radius: var(--radius); font-family: var(--font-heading);
  font-weight: 700; font-size: 1.05rem; display: inline-flex;
  align-items: center; gap: 0.5rem; transition: all var(--transition);
}
.emergency-cta:hover { background: #A51E1E; box-shadow: 0 4px 20px rgba(198,40,40,0.4); }

/* ================================
   Breadcrumb
================================ */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.82rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.25rem; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 0.25rem; color: var(--text-light); }
.breadcrumb li:not(:last-child)::after { content: "›"; color: var(--gray-300); }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ================================
   Cost Table
================================ */
.cost-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 2rem; }
.cost-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.cost-table th { background: var(--navy); color: var(--white); padding: 0.9rem 1.1rem; text-align: left; font-family: var(--font-heading); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.03em; }
.cost-table td { padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--gray-100); }
.cost-table tr:nth-child(even) td { background: var(--off-white); }
.cost-table tr:last-child td { border-bottom: none; }
.cost-hi { color: var(--red); font-weight: 600; }
.cost-md { color: #B45309; font-weight: 600; }
.cost-lo { color: var(--green); font-weight: 600; }

/* ================================
   Error Code Cards
================================ */
.error-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.error-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); padding: 1.25rem 1.5rem; display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1rem; align-items: start; }
.error-code  { background: var(--navy); color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem; padding: 0.3rem 0.65rem; border-radius: 4px; grid-row: span 2; align-self: center; white-space: nowrap; }
.error-name  { font-weight: 600; font-size: 0.925rem; color: var(--text); }
.error-desc  { font-size: 0.855rem; color: var(--text-light); margin: 0; }

/* ================================
   Page Hero (inner pages)
================================ */
.page-hero { background: var(--navy-2); color: var(--white); padding: 56px 0 64px; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .page-hero-text { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 620px; margin-bottom: 1.5rem; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; }

/* Emergency page hero */
.hero--emergency { background: #7B0000; }

/* ================================
   Content Layout
================================ */
.content-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 64px 0; }
.content-main h2 { margin-top: 2.5rem; margin-bottom: 0.9rem; font-size: 1.45rem; color: var(--navy); }
.content-main h3 { margin-top: 1.75rem; margin-bottom: 0.7rem; color: var(--navy); }
.content-main h2:first-child,.content-main h3:first-child { margin-top: 0; }
.content-main p  { color: var(--text-light); line-height: 1.8; margin-bottom: 1.2rem; }
.content-main ul,.content-main ol { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.content-main ul { list-style: disc; }
.content-main ol { list-style: decimal; }
.content-main li { color: var(--text-light); line-height: 1.7; margin-bottom: 0.4rem; }

.content-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.sidebar-widget h3 { font-size: 0.95rem; margin-bottom: 1rem; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 0.5rem; }
.sidebar-widget .btn { display: flex; width: 100%; margin-bottom: 0.5rem; text-align: center; justify-content: center; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.3rem; }
.sidebar-links a { font-size: 0.875rem; color: var(--gold); padding: 0.25rem 0; display: flex; align-items: center; gap: 0.3rem; }
.sidebar-links a:hover { text-decoration: underline; }

/* ================================
   Image Placeholders
================================ */
.img-ph {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
  border: 2px dashed var(--gray-300); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.5rem; padding: 2rem;
  text-align: center; min-height: 200px; color: var(--gray-500); font-size: 0.78rem;
}
.img-ph-label { font-weight: 700; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); background: rgba(200,146,42,0.1); padding: 0.2rem 0.6rem; border-radius: 100px; }

/* ================================
   Mobile Sticky CTA
================================ */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--gold); padding: 12px 20px; z-index: 500; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.mobile-cta-bar a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 1rem; }

/* ================================
   Footer
================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); }
.footer-main { padding: 60px 0 40px; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-brand .logo-main { font-size: 1.1rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin: 0.6rem 0 1.25rem; }
.footer-rating { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.footer-rating .stars { font-size: 0.9rem; }
.footer-rating-text { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--font-heading); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-nap address { font-style: normal; font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 2; }
.footer-nap a { color: rgba(255,255,255,0.55); }
.footer-nap a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ================================
   Utility
================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-lg { margin-top: 1.5rem; }
.mb-lg { margin-bottom: 1.5rem; }
.mt-xl { margin-top: 2rem; }
.mb-xl { margin-bottom: 2rem; }

/* ================================
   Responsive — 640px
================================ */
@media (min-width: 640px) {
  .neighborhood-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .error-grid  { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ================================
   Responsive — 768px
================================ */
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .steps  { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

/* ================================
   Responsive — 1024px (Desktop)
================================ */
@media (min-width: 1024px) {
  :root { --header-h: 80px; }
  .main-nav    { display: flex; }
  .menu-toggle { display: none; }
  .header-phone { display: block; }
  .hero-content { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .neighborhood-grid { grid-template-columns: repeat(4, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
  .content-layout { grid-template-columns: 1fr 300px; }
  .mobile-cta-bar { display: none !important; }
}

@media (max-width: 1023px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 52px; }
}
