* { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --deep-blue: #0a1628; --mid-blue: #1a3a6b; --blue: #1e5fac;
    --light-blue: #4da6ff; --white: #ffffff; --off-white: #f0f6ff;
    --black: #0a0a0a; --gray: #6b7280; --light-gray: #e8f0fb;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

  /* Scoped to the site header by id. A bare `nav` selector here also caught
     in-content navigation (such as the blog table of contents), turning it
     into a second fixed, full-width overlay on top of the page. */
  #mainNav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,22,40,0.97); backdrop-filter: blur(10px);
    padding: 10px 24px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 2px solid var(--blue); box-shadow: 0 2px 30px rgba(30,95,172,0.3); transition: padding 0.3s;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { height: 58px; width: 58px; object-fit: contain; }
  .nav-brand .brand-big { font-size: 1.05rem; font-weight: 900; color: white; }
  .nav-brand .brand-sub { font-size: 0.62rem; color: var(--light-blue); letter-spacing: 2px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 22px; }
  .nav-links a { color: #ccd6f0; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: color 0.2s; }
  .nav-links a:hover { color: var(--light-blue); }
  .nav-cta { background: var(--blue) !important; color: white !important; padding: 9px 18px; border-radius: 6px; font-weight: 700 !important; }
  .nav-cta:hover { background: var(--light-blue) !important; color: var(--deep-blue) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(30,95,172,0.3); border: 1px solid rgba(77,166,255,0.4); color: var(--light-blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 18px; }
  .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--blue), var(--light-blue)); color: white; padding: 15px 28px; border-radius: 8px; font-weight: 800; font-size: 1rem; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 20px rgba(30,95,172,0.5); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(77,166,255,0.5); }
  .btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: white; padding: 15px 24px; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid rgba(255,255,255,0.4); transition: all 0.25s; }
  .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }
  .btn-quote { display: inline-flex; align-items: center; gap: 8px; background: rgba(77,166,255,0.08); color: var(--light-blue); padding: 15px 24px; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid var(--light-blue); transition: all 0.25s; }
  .btn-quote:hover { background: var(--light-blue); color: var(--deep-blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(77,166,255,0.25); }
  .btn-secondary:focus-visible, .btn-quote:focus-visible { outline: 3px solid white; outline-offset: 3px; }

  section { padding: 80px 24px; }
  .section-label { display: inline-block; color: var(--blue); font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
  h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: var(--deep-blue); line-height: 1.15; margin-bottom: 14px; }

  /* ===== SERVICES — real photos ===== */

  /* Photo-based header */
  /* House washing card still uses gradient + icon since no photo provided */

  /* ===== BEFORE / AFTER ===== */

  /* ===== WHY — NO emoji icons ===== */
  /* No .why-icon styles needed — removed */

  /* ===== REVIEWS ===== */

  /* ===== QUOTE ===== */
  .quote-form { background: white; border-radius: 20px; padding: 36px; max-width: 680px; box-shadow: 0 20px 60px rgba(10,22,40,0.3); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
  .form-group label { font-size: 0.8rem; font-weight: 700; color: var(--deep-blue); }
  .form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 0.93rem; color: var(--black); font-family: inherit; transition: border-color 0.2s; outline: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--blue), var(--light-blue)); color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 800; cursor: pointer; transition: all 0.25s; margin-top: 4px; }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,95,172,0.4); }
  .form-submit:disabled { opacity: 0.65; cursor: default; transform: none; box-shadow: none; }
  .form-group .consent-opt { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--black); cursor: pointer; }
  .form-group .consent-opt input[type="checkbox"] { width: 17px; height: 17px; padding: 0; border: none; border-radius: 0; flex-shrink: 0; accent-color: var(--blue); cursor: pointer; }
  .form-group.consent-group { margin-bottom: 18px; }
  .form-group .consent-opt { align-items: flex-start; line-height: 1.55; }
  .form-group .consent-opt input[type="checkbox"] { margin-top: 2px; }

  /* ===== CONTACT ===== */
  .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; margin-top: 38px; }
  .contact-card { background: var(--off-white); border: 2px solid rgba(30,95,172,0.12); border-radius: 16px; padding: 30px 22px; text-align: center; transition: all 0.3s; }
  .contact-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(30,95,172,0.15); }
  .contact-card h3 { font-size: 0.75rem; font-weight: 800; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
  .c-val { display: block; color: var(--deep-blue); font-weight: 700; font-size: 0.95rem; text-decoration: none; margin-bottom: 6px; word-break: break-all; }
  .c-val:hover { color: var(--blue); }
  .cbtn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 8px; font-size: 0.82rem; font-weight: 700; text-decoration: none; transition: all 0.2s; margin-top: 8px; }
  .cbtn-blue { background: var(--blue); color: white; }
  .cbtn-blue:hover { background: var(--deep-blue); color: white; }

  /* ===== FOOTER ===== */
  footer { background: var(--deep-blue); color: #8aa8d0; padding: 50px 24px 28px; border-top: 3px solid var(--blue); }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 32px; margin-bottom: 38px; }
  .footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .footer-logo-wrap img { height: 56px; width: 56px; object-fit: contain; }
  .f-brand-name { color: white; font-weight: 900; font-size: 1rem; }
  .f-brand-tag { color: var(--light-blue); font-size: 0.66rem; letter-spacing: 1.5px; text-transform: uppercase; }
  .footer-desc { font-size: 0.86rem; line-height: 1.7; margin-bottom: 18px; }
  .footer-socials { display: flex; gap: 8px; }
  .footer-socials a { width: 34px; height: 34px; border-radius: 7px; border: 1px solid rgba(77,166,255,0.22); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; text-decoration: none; color: #8aa8d0; transition: all 0.2s; }
  .footer-socials a:hover { background: var(--blue); border-color: var(--blue); color: white; }
  .footer-col h4 { color: white; font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 9px; }
  .footer-col ul li a { color: #8aa8d0; text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--light-blue); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; text-align: center; font-size: 0.78rem; max-width: 1200px; margin: 0 auto; }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: rgba(10,22,40,0.98); padding: 18px 24px; gap: 14px; border-bottom: 2px solid var(--blue); z-index: 999; }
    .hamburger { display: flex; }

    /* Hero */

    /* Buttons: full width, stacked */
    .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .btn-primary, .btn-secondary, .btn-quote { width: 100%; max-width: 300px; justify-content: center; }

    /* Contact strip: clean 2-col grid, no pipe separators */

    /* Trust bar: clean 2-column grid */

    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  }
  @media (min-width: 769px) and (max-width: 1050px) {
    .footer-inner { grid-template-columns: repeat(3, 1fr); }
    .footer-inner > div:first-child { grid-column: 1 / -1; }
  }


  main > div, body > footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  }


  .page-hero { min-height: 58vh; background: linear-gradient(135deg, var(--deep-blue) 0%, var(--mid-blue) 60%, #0d2444 100%); display:flex; align-items:center; position:relative; overflow:hidden; padding:130px 24px 70px; }
  .page-hero::before { content:""; position:absolute; width:420px; height:420px; border-radius:50%; border:1px solid rgba(77,166,255,.22); right:-120px; top:40px; box-shadow:0 0 0 70px rgba(77,166,255,.04),0 0 0 140px rgba(77,166,255,.025); }
  .page-hero-inner { width:100%; max-width:1200px; margin:0 auto; position:relative; z-index:1; }
  .page-hero h1 { color:white; font-size:clamp(2rem,5vw,3.6rem); line-height:1.08; max-width:850px; margin:12px 0 18px; font-weight:900; }
  .page-hero p { color:#a8c4e8; font-size:1.08rem; line-height:1.75; max-width:790px; }
  .page-hero .hero-subhead { color:#cfe1f8; font-size:clamp(1.02rem,2.1vw,1.32rem); font-weight:800; line-height:1.45; max-width:820px; margin:0 0 16px; }
  .breadcrumbs { color:#a8c4e8; font-size:.82rem; margin-bottom:18px; }
  .breadcrumbs a { color:var(--light-blue); text-decoration:none; }
  .content-section { padding:80px 24px; }
  .content-section.alt { background:var(--off-white); }
  .content-inner { max-width:1200px; margin:0 auto; }
  .content-grid { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr); gap:48px; align-items:start; }
  .prose h2,.content-inner>h2 { color:var(--deep-blue); font-size:clamp(1.65rem,3vw,2.25rem); margin-bottom:18px; }
  .prose h3 { color:var(--deep-blue); font-size:1.15rem; margin:24px 0 8px; }
  .prose p,.prose li,.page-copy { color:var(--gray); line-height:1.8; font-size:1rem; }
  .prose p+p { margin-top:16px; }
  .feature-grid,.related-grid,.gallery-page-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:22px; margin-top:32px; }
  .feature-card,.related-card,.info-card,.gallery-card { background:white; border:1px solid rgba(30,95,172,.12); border-radius:16px; padding:26px; box-shadow:0 4px 20px rgba(10,22,40,.07); }
  .feature-card h3,.related-card h3,.info-card h3,.gallery-card h3 { color:var(--deep-blue); margin-bottom:9px; font-size:1.05rem; }
  .feature-card p,.related-card p,.info-card p,.gallery-card p { color:var(--gray); line-height:1.65; font-size:.9rem; }
  .number { width:38px; height:38px; display:grid; place-items:center; background:var(--blue); color:white; border-radius:50%; font-weight:900; margin-bottom:14px; }
  .check-list { list-style:none; display:grid; gap:13px; margin-top:24px; }
  .check-list li { position:relative; padding-left:30px; color:var(--gray); line-height:1.7; }
  .check-list li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--blue); font-weight:900; }
  .sticky-cta { position:sticky; top:105px; background:var(--deep-blue); color:white; border-radius:18px; padding:28px; box-shadow:0 16px 44px rgba(10,22,40,.2); }
  .sticky-cta h2 { color:white; font-size:1.4rem; margin-bottom:10px; }
  .sticky-cta p { color:#a8c4e8; line-height:1.65; margin-bottom:20px; }
  .sticky-cta .btn-primary,.sticky-cta .btn-secondary { width:100%; justify-content:center; margin-top:10px; }
  .photo-frame { background:white; border-radius:18px; overflow:hidden; box-shadow:0 8px 30px rgba(10,22,40,.12); border:1px solid rgba(30,95,172,.12); }
  .photo-frame img { display:block; width:100%; aspect-ratio:12/7; object-fit:cover; }
  .photo-caption { padding:16px 20px; color:var(--gray); font-size:.86rem; }
  .faq-list { display:grid; gap:14px; margin-top:30px; }
  details.faq-item { background:white; border:1px solid rgba(30,95,172,.14); border-radius:12px; padding:0 20px; }
  details.faq-item summary { cursor:pointer; color:var(--deep-blue); font-weight:800; padding:18px 30px 18px 0; position:relative; }
  details.faq-item summary::after { content:"+"; position:absolute; right:0; color:var(--blue); font-size:1.35rem; }
  details.faq-item[open] summary::after { content:"–"; }
  details.faq-item p { color:var(--gray); line-height:1.7; padding:0 0 18px; }
  .cta-band { background:linear-gradient(135deg,var(--deep-blue),var(--mid-blue)); padding:55px 24px; text-align:center; }
  .cta-band h2 { color:white; font-size:clamp(1.7rem,3vw,2.4rem); margin-bottom:12px; }
  .cta-band p { color:#a8c4e8; max-width:700px; margin:0 auto 24px; line-height:1.7; }
  .cta-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
  .text-link { display:inline-block; color:var(--blue); font-weight:800; text-decoration:none; margin-top:14px; }
  .text-link:hover { color:var(--light-blue); }
  .service-nav { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
  .service-nav a { color:var(--blue); background:var(--light-gray); padding:8px 12px; border-radius:100px; font-size:.78rem; font-weight:800; text-decoration:none; }
  .form-card { max-width:850px; margin:32px auto 0; background:white; border-radius:16px; padding:32px; box-shadow:0 8px 30px rgba(10,22,40,.1); }
  .status-message { display:none; margin-top:16px; padding:14px; border-radius:8px; background:var(--off-white); color:var(--deep-blue); font-weight:700; }
  .hours-list { list-style:none; display:grid; gap:9px; margin-top:12px; color:var(--gray); }
  .gallery-card { padding:0; overflow:hidden; }
  .gallery-card img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
  .gallery-card div { padding:20px; }
  .faq-category { margin-top:50px; }
  .faq-category:first-child { margin-top:0; }
  .trust-note { background:var(--off-white); border-left:4px solid var(--blue); padding:20px; border-radius:0 12px 12px 0; color:var(--gray); line-height:1.7; margin-top:24px; }
  .footer-inner { grid-template-columns:1.35fr repeat(4,1fr); }
  @media(max-width:1050px){.footer-inner{grid-template-columns:repeat(3,1fr)}.footer-inner>div:first-child{grid-column:1/-1}}
  @media(max-width:900px){.content-grid{grid-template-columns:1fr}.sticky-cta{position:static}.nav-links{gap:14px}.nav-links a{font-size:.78rem}}
  @media(max-width:768px){.content-section{padding:60px 18px}.page-hero{padding:120px 18px 60px}.form-card{padding:22px}.footer-inner{grid-template-columns:1fr}.footer-inner>div:first-child{grid-column:auto}}

