  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #5a1a1a; --navy-mid: #7a2a2a; --gold: #29a8c4; --gold-light: #5cc8e0;
    --cream: #f8f5f0; --off-white: #fdfcfb; --charcoal: #1c1c1c; --mid-gray: #6b6b68;
    --light-gray: #e8e5e0; --white: #ffffff; --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font); color: var(--charcoal); background: var(--off-white); line-height: 1.6; overflow-x: hidden; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  nav { background: var(--white); position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--navy); box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
  .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { color: #444; font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--navy); }
  .nav-cta { background: var(--gold); color: var(--white) !important; padding: 10px 20px; border-radius: 6px; font-weight: 600 !important; font-size: 14px !important; }
  .nav-cta:hover { background: var(--navy) !important; }
  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: 1.5px solid var(--light-gray); border-radius: 8px; cursor: pointer; padding: 8px; flex-shrink: 0; }
  .hamburger span { display: block; width: 100%; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav-drawer { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--navy); box-shadow: 0 6px 20px rgba(0,0,0,0.12); z-index: 98; padding: 8px 0 16px; flex-direction: column; }
  .mobile-nav-drawer.open { display: flex; }
  .mobile-nav-drawer a { display: block; color: #444; font-size: 15px; font-weight: 500; padding: 13px 24px; border-bottom: 1px solid var(--light-gray); }
  .mobile-nav-drawer a:hover { background: var(--cream); color: var(--navy); }
  .mobile-nav-drawer .drawer-cta { margin: 12px 24px 0; background: var(--navy); color: var(--white) !important; border-radius: 8px; text-align: center; font-weight: 700 !important; border-bottom: none !important; }
  .mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); border-top: 2px solid var(--gold); padding: 14px 20px; z-index: 200; gap: 12px; }
  .mobile-cta-bar a { flex: 1; text-align: center; padding: 12px; border-radius: 8px; font-weight: 700; font-size: 15px; }
  .mobile-btn-call { background: var(--navy); color: var(--white); }
  .mobile-btn-quote { background: rgba(255,255,255,0.1); color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
  .faq-item { border-bottom: 1px solid var(--light-gray); }
  .faq-q { width: 100%; background: none; border: none; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--navy); text-align: left; }
  .faq-chevron { width: 22px; height: 22px; flex-shrink: 0; transition: transform 0.25s; fill: var(--mid-gray); }
  .faq-a { font-size: 15px; color: var(--mid-gray); line-height: 1.7; padding-bottom: 22px; display: none; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .area-pill { background: var(--cream); border: 1px solid var(--light-gray); border-radius: 8px; padding: 10px 16px; font-size: 14px; color: var(--charcoal); display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, border-color 0.2s; font-weight: 500; }
  .area-pill:hover { background: #e8f8fb; border-color: var(--gold); }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
  @media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr !important; }
    .three-col { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; }
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 80px; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr !important; }
  }
