
  :root {
    --navy: #06448d;
    --navy-deep: #113870;
    --navy-dark: #082c5a;
    --charcoal: #2d2d2b;
    --charcoal-light: #3d3d3a;
    --ink: #1a1a1a;
    --ink-muted: #5a5a5a;
    --paper: #ffffff;
    --cream: #f7f6f3;
    --tint: #e8ecf2;
    --border: #e2e5eb;
    --shadow-sm: 0 1px 3px rgba(13, 36, 71, 0.08);
    --shadow-md: 0 8px 24px rgba(13, 36, 71, 0.12);
    --shadow-lg: 0 20px 50px rgba(13, 36, 71, 0.18);
    --max: 1200px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--ink);
  }

  a { color: inherit; text-decoration: none; }
  img, svg { max-width: 100%; display: block; }

  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===================== HEADER ===================== */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: var(--max);
    margin: 0 auto;
    gap: 24px;
  }
  .logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .logo-link img { height: 56px; width: auto; }
  .nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    transition: color 0.2s;
  }
  .nav a:hover { color: var(--navy); }
  .nav .phone {
    color: var(--navy);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
  }
  .nav .phone::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(46,204,113,0.2);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(46,204,113,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(46,204,113,0.05); }
  }
  @media (max-width: 820px) {
    .nav-item, .nav > a.nav-link { display: none; }
    .logo-link img { height: 48px; }
  }

  /* ===================== NAV DROPDOWNS ===================== */
  .nav-item { position: relative; display: flex; align-items: center; }
  .nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    transition: color 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-link:hover,
  .nav-item:hover > .nav-link,
  .nav-item:focus-within > .nav-link { color: var(--navy); }
  .nav-link .chev { width: 14px; height: 14px; transition: transform 0.25s ease; }
  .nav-item:hover .chev,
  .nav-item:focus-within .chev { transform: rotate(180deg); }
  /* invisible hover bridge so the menu doesn't close in the gap */
  .nav-item::after {
    content: '';
    position: absolute;
    top: 100%; left: 0; right: 0;
    height: 20px;
  }
  .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 14px;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 10px;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 120;
  }
  .nav-item:hover > .dropdown,
  .nav-item:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown a {
    display: block;
    padding: 9px 14px;
    border-radius: 5px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 15px;
    color: var(--ink);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }
  .dropdown a:hover { background: var(--tint); color: var(--navy); }
  /* Wide multi-column menu for the long service-areas list */
  .dropdown-mega {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(6px);
    min-width: 600px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px 8px;
  }
  .nav-item:hover > .dropdown-mega,
  .nav-item:focus-within > .dropdown-mega {
    transform: translateX(0) translateY(0);
  }
  .dropdown-mega a { font-size: 14px; padding: 8px 12px; }
  .dropdown-all {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
  }
  .dropdown-all a {
    background: var(--navy);
    color: #fff;
    text-align: center;
  }
  .dropdown-all a:hover { background: var(--navy-dark); color: #fff; }

  /* ===================== BUTTONS ===================== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 17px;
    padding: 16px 30px;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--navy);
    color: #fff;
  }
  .btn-primary:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(6, 68, 141, 0.35);
  }
  .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
  }
  .btn-secondary:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
  }
  .btn-dark {
    background: var(--charcoal);
    color: #fff;
  }
  .btn-dark:hover { background: #000; transform: translateY(-2px); }
  .btn-full { width: 100%; }
  .btn-lg { padding: 20px 36px; font-size: 19px; }

  /* ===================== HERO ===================== */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background:
      linear-gradient(135deg, rgba(8,44,90,0.92) 0%, rgba(45,45,43,0.88) 100%),
      linear-gradient(135deg, #06448d 0%, #113870 50%, #2d2d2b 100%);
    background-blend-mode: multiply;
    color: #fff;
    overflow: hidden;
    padding: 60px 0;
  }
  .hero::before {
    /* Shingle/roofline pattern overlay */
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.025) 35px, rgba(255,255,255,0.025) 36px),
      repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,0.025) 35px, rgba(255,255,255,0.025) 36px);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(6,68,141,0.4) 0%, transparent 60%);
    pointer-events: none;
  }

  /* Background image - sits behind gradient overlays */
  .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.35;        /* translucent so headline & CTAs stay readable */
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 14px;
    color: #8eb3e0;
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(142, 179, 224, 0.3);
    border-radius: 2px;
    background: rgba(6, 68, 141, 0.2);
  }
  .hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: #8eb3e0;
  }
  .hero h1 {
    font-size: clamp(42px, 6vw, 84px);
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.005em;
    margin-bottom: 28px;
  }
  .hero h1 .accent {
    color: #8eb3e0;
    display: inline-block;
  }
  .hero-sub {
    font-size: clamp(18px, 1.8vw, 22px);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
  }
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
  }
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
  }
  .hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-meta-item svg {
    width: 18px;
    height: 18px;
    color: #8eb3e0;
  }

  /* ===================== TRUST BAR ===================== */
  .trust-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .trust-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trust-icon svg { width: 22px; height: 22px; }
  .trust-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--ink);
  }
  .trust-text small {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--ink-muted);
    letter-spacing: 0.08em;
    margin-top: 2px;
  }
  @media (max-width: 900px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
  }

  /* ===================== SECTION COMMON ===================== */
  section { padding: 90px 0; }
  .section-head {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--navy);
  }
  .section-title {
    font-size: clamp(34px, 4.5vw, 56px);
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 18px;
    color: var(--ink-muted);
  }

  /* ===================== SERVICES ===================== */
  .services { background: var(--paper); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .service-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 36px 28px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .service-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 56px;
    height: 56px;
    background: var(--tint);
    color: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.25s ease;
  }
  .service-card:hover .service-icon {
    background: var(--navy);
    color: #fff;
  }
  .service-icon svg { width: 28px; height: 28px; }
  .service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .service-card p {
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.55;
  }
  /* Clickable service cards (services hub) */
  a.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  a.service-card h3 { color: var(--ink); }
  .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
  }
  .service-card-link svg {
    width: 17px;
    height: 17px;
    transition: transform 0.25s ease;
  }
  a.service-card:hover .service-card-link svg { transform: translateX(4px); }
  @media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
  }

  /* ===================== WHY US ===================== */
  .why {
    background: var(--cream);
    position: relative;
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .why-content .section-eyebrow,
  .why-content .section-title {
    text-align: left;
  }
  .why-content .section-eyebrow { margin-left: 0; }
  .why-content .section-eyebrow::before { display: none; }
  .why-content .section-eyebrow { padding-left: 0; }
  .why-content > .section-eyebrow::after { display: none; }
  .why-list {
    list-style: none;
    margin-top: 32px;
  }
  .why-list li {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .why-list li:last-child { border-bottom: none; }
  .why-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
  }
  .why-text h4 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .why-text p {
    color: var(--ink-muted);
    font-size: 15px;
  }
  .why-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    border-radius: 8px;
    padding: 48px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .why-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 31px);
    pointer-events: none;
  }
  .why-visual-content { position: relative; z-index: 1; }
  .why-stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 96px;
    line-height: 0.9;
    color: #8eb3e0;
    margin-bottom: 12px;
  }
  .why-stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 18px;
    margin-bottom: 28px;
  }
  .why-quote {
    font-size: 17px;
    line-height: 1.5;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    border-left: 3px solid #8eb3e0;
    padding-left: 18px;
    margin-top: auto;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ===================== REVIEWS ===================== */
  .reviews { background: var(--paper); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .review-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 32px 28px;
    position: relative;
  }
  .review-stars {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  .review-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
  }
  .review-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.02em;
  }
  .review-meta {
    font-size: 13px;
    color: var(--ink-muted);
  }
  @media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
  }

  /* ===== REVIEW RATING SUMMARY + GOOGLE CTA ===== */
  .rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 28px;
    margin-bottom: 24px;
  }
  .rating-summary-google {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .rating-summary-text {
    text-align: left;
    line-height: 1.2;
  }
  .rating-summary-score {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--ink);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .rating-summary-score .stars-inline {
    color: #f5a623;
    font-size: 22px;
    letter-spacing: 2px;
  }
  .rating-summary-meta {
    font-size: 13px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-top: 4px;
  }
  .review-card .review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }
  .review-card .review-source svg {
    width: 14px;
    height: 14px;
  }
  .reviews-cta-wrap {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
  .btn-review-platform {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--ink);
    border: 2px solid var(--border);
    padding: 14px 26px;
    border-radius: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 16px;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
  }
  .btn-review-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 36, 71, 0.12);
  }
  .btn-review-platform.google:hover { border-color: #1976D2; }
  .btn-review-platform.thumbtack:hover { border-color: #009FD9; }
  .btn-review-platform svg.platform-logo { width: 22px; height: 22px; flex-shrink: 0; }
  .btn-review-platform svg.arrow { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.6; }
  .btn-review-platform .platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #009FD9;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    letter-spacing: 0.04em;
    margin-left: 4px;
  }
  @media (max-width: 480px) {
    .rating-summary { gap: 14px; padding: 14px 20px; }
    .rating-summary-score { font-size: 26px; }
    .rating-summary-score .stars-inline { font-size: 18px; }
    .btn-review-platform { width: 100%; justify-content: center; }
  }

  /* ===================== CONTACT ===================== */
  .contact {
    background: var(--charcoal);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
    pointer-events: none;
  }
  .contact .section-eyebrow {
    color: #8eb3e0;
  }
  .contact .section-eyebrow::before, .contact .section-eyebrow::after {
    background: #8eb3e0;
  }
  .contact .section-title { color: #fff; }
  .contact .section-sub { color: rgba(255,255,255,0.7); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    position: relative;
    z-index: 1;
  }
  .contact-form {
    background: #fff;
    color: var(--ink);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
  }
  .contact-form h3 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .contact-form p {
    color: var(--ink-muted);
    margin-bottom: 28px;
    font-size: 15px;
  }
  .form-row {
    margin-bottom: 18px;
  }
  .form-row label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    margin-bottom: 6px;
  }
  .form-row input,
  .form-row select,
  .form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    background: #fff;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-row input:focus,
  .form-row select:focus,
  .form-row textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(6,68,141,0.12);
  }
  .form-row textarea {
    resize: vertical;
    min-height: 110px;
  }
  .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-hidden { display: none; }
  .form-note {
    font-size: 13px;
    color: var(--ink-muted);
    margin-top: 14px;
    text-align: center;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
  }
  .contact-info h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 8px;
  }
  .contact-info > p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 8px;
  }
  .contact-block {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    transition: all 0.2s;
  }
  .contact-block:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(142,179,224,0.3);
  }
  .contact-block-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-block-icon svg { width: 22px; height: 22px; }
  .contact-block h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
  }
  .contact-block p, .contact-block a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.5;
  }
  .contact-block a:hover { color: #8eb3e0; }
  .service-areas {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 22px;
  }
  .service-areas h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
  }
  .service-areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .service-area-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    background: rgba(142,179,224,0.12);
    color: #b8d0ec;
    border-radius: 3px;
    border: 1px solid rgba(142,179,224,0.2);
  }
  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form { padding: 28px; }
  }
  @media (max-width: 480px) {
    .form-grid-2 { grid-template-columns: 1fr; }
  }

  /* ===================== FOOTER ===================== */
  footer {
    background: #0f1011;
    color: rgba(255,255,255,0.6);
    padding: 40px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  .footer-logo {
    background: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
  }
  .footer-logo img {
    height: 36px;
    width: auto;
    display: block;
  }
  .footer-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-meta a:hover { color: #fff; }

  /* Light reveal animation on page load */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.7s ease forwards;
  }
  .reveal-1 { animation-delay: 0.05s; }
  .reveal-2 { animation-delay: 0.15s; }
  .reveal-3 { animation-delay: 0.25s; }
  .reveal-4 { animation-delay: 0.35s; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===================== AI CHAT WIDGET ===================== */
  .chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    font-family: 'Barlow', sans-serif;
  }
  .chat-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(6, 68, 141, 0.4);
    transition: all 0.25s ease;
    position: relative;
  }
  .chat-toggle:hover {
    transform: scale(1.08);
    background: var(--navy-dark);
  }
  .chat-toggle.is-hidden { display: none; }
  .chat-toggle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--navy);
    animation: chat-pulse 2.5s infinite;
    pointer-events: none;
  }
  @keyframes chat-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
  }
  .chat-toggle svg { width: 28px; height: 28px; }
  .chat-toggle-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #f5a623;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    font-family: 'Barlow', sans-serif;
  }

  .chat-panel {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 380px;
    height: 580px;
    max-height: calc(100vh - 48px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(13, 36, 71, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .chat-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .chat-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
  }
  .chat-header-info { display: flex; align-items: center; gap: 12px; min-width: 0; }
  .chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
  }
  .chat-header h4 {
    color: #fff;
    font-size: 17px;
    margin: 0;
    line-height: 1.1;
  }
  .chat-online {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
  }
  .chat-online::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 6px #2ecc71;
  }
  .chat-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .chat-close:hover { background: rgba(255,255,255,0.2); }

  .chat-cta-bar {
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }
  .chat-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--navy);
    transition: all 0.2s;
  }
  .chat-cta-bar a:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }

  .chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
  }
  .chat-msg {
    max-width: 86%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14.5px;
    line-height: 1.5;
    word-wrap: break-word;
    animation: msg-in 0.25s ease;
  }
  @keyframes msg-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .chat-msg.bot {
    background: #f0f2f5;
    color: var(--ink);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
  }
  .chat-msg.user {
    background: var(--navy);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
  }
  .chat-msg.bot .chat-link {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    align-self: flex-start;
    max-width: 100%;
  }
  .chat-quick-reply {
    background: #fff;
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: all 0.15s;
  }
  .chat-quick-reply:hover {
    background: var(--navy);
    color: #fff;
  }

  .chat-typing {
    align-self: flex-start;
    background: #f0f2f5;
    padding: 12px 16px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 4px;
  }
  .chat-typing span {
    width: 7px; height: 7px;
    background: var(--ink-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite;
  }
  .chat-typing span:nth-child(2) { animation-delay: 0.2s; }
  .chat-typing span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
  }

  .chat-form {
    border-top: 1px solid var(--border);
    padding: 12px 14px;
    display: flex;
    gap: 8px;
    align-items: flex-end;
    background: #fff;
    flex-shrink: 0;
  }
  .chat-input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 10px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14.5px;
    resize: none;
    max-height: 100px;
    line-height: 1.4;
    transition: border-color 0.2s;
  }
  .chat-input:focus {
    outline: none;
    border-color: var(--navy);
  }
  .chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .chat-send:hover { background: var(--navy-dark); }
  .chat-send:disabled { background: var(--ink-muted); cursor: not-allowed; }

  .chat-footer-note {
    text-align: center;
    font-size: 11px;
    color: var(--ink-muted);
    padding: 6px;
    background: #fff;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
  }

  @media (max-width: 480px) {
    .chat-widget { bottom: 16px; right: 16px; }
    .chat-panel {
      width: calc(100vw - 32px);
      height: calc(100vh - 32px);
      max-height: calc(100vh - 32px);
    }
    .chat-toggle { width: 58px; height: 58px; }
  }


  /* ===================== SERVICE-AREA PAGE ADDITIONS ===================== */
  .breadcrumb {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    font-family: 'Barlow Condensed', sans-serif;
  }
  .breadcrumb-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 12px 24px;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .breadcrumb-inner a { color: var(--navy); font-weight: 600; }
  .breadcrumb-inner a:hover { text-decoration: underline; }
  .breadcrumb-sep { opacity: 0.5; }
  .breadcrumb-current { color: var(--ink); font-weight: 700; }

  /* Local intro */
  .local { background: var(--paper); }
  .local-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .local-body .section-eyebrow,
  .local-body .section-title { text-align: left; }
  .local-body .section-eyebrow { margin-left: 0; }
  .local-body .section-eyebrow::before { display: none; }
  .local-body p { color: var(--ink-muted); font-size: 17px; margin-bottom: 18px; }
  .local-body p strong { color: var(--ink); }
  .local-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    position: sticky;
    top: 96px;
  }
  .local-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .local-facts { list-style: none; }
  .local-facts li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .local-facts li:last-child { border-bottom: none; }
  .local-facts svg { width: 20px; height: 20px; color: var(--navy); flex-shrink: 0; margin-top: 2px; }
  .local-facts strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 13px;
    color: var(--ink-muted);
  }
  .local-card .btn { margin-top: 22px; }
  @media (max-width: 900px) {
    .local-grid { grid-template-columns: 1fr; gap: 36px; }
    .local-card { position: static; }
  }

  /* FAQ */
  .faq { background: var(--cream); }
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 14px;
    padding: 24px 28px;
  }
  .faq-item h3 { font-size: 20px; margin-bottom: 8px; }
  .faq-item p { color: var(--ink-muted); font-size: 15px; }

  /* Nearby areas */
  .nearby { background: var(--paper); }
  .nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .nearby-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 18px;
    color: var(--ink);
    transition: all 0.2s ease;
  }
  .nearby-card svg { width: 18px; height: 18px; color: var(--navy); opacity: 0.6; transition: transform 0.2s; }
  .nearby-card:hover {
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
  }
  .nearby-card:hover svg { transform: translateX(3px); }
  @media (max-width: 900px) { .nearby-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .nearby-grid { grid-template-columns: 1fr; } }

  /* Areas index directory */
  .areas-directory { background: var(--paper); }
  .areas-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  @media (max-width: 900px) { .areas-directory-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .areas-directory-grid { grid-template-columns: 1fr; } }

  /* Mid-page CTA band */
  .cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.025) 35px, rgba(255,255,255,0.025) 36px);
    pointer-events: none;
  }
  .cta-band .container { position: relative; z-index: 1; }
  .cta-band h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
  .cta-band p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 30px; max-width: 620px; margin-left: auto; margin-right: auto; }
  .cta-band-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
