:root {
    --navy: #0D1B2E;
    --navy-2: #081223;
    --navy-3: #040A17;
    --clay: #5C6573;
    --clay-2: #2D3441;
    --clay-soft: #E4E6EA;
    --cream: #F1ECE0;
    --cream-2: #E5DECA;
    --paper: #FFFFFF;
    --ink: #1B1F27;
    --muted: #6B6B6B;
    --line: #E5E1D8;
    --line-dark: rgba(255,255,255,0.15);
    --maxw: 1280px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  *,*::before,*::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
  }
  h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: -0.02em; margin: 0; line-height: 1.1; }
  h1 { font-size: clamp(40px, 6.5vw, 80px); font-weight: 800; letter-spacing: -0.03em; }
  h2 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 700; letter-spacing: -0.025em; }
  h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 700; }
  h4 { font-size: 18px; font-weight: 600; }
  a { color: inherit; }
  img { max-width: 100%; display: block; }
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

  /* ===== Signature element: brush-stroke underline ===== */
  .brush {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 16' preserveAspectRatio='none'><path d='M6,9 C16,6 40,5 90,5 C160,4 240,5 320,5 C360,5 384,6 392,7 C397,8 397,10 392,11 C380,12 340,12 290,12 C220,13 140,12 80,12 C40,12 18,11 8,10 C4,10 4,9 6,9 Z' fill='%235C6573'/></svg>");
    background-repeat: no-repeat;
    background-position: left 100%;
    background-size: 100% 0.13em;
    padding-bottom: 0.12em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .brush-light { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 16' preserveAspectRatio='none'><path d='M6,9 C16,6 40,5 90,5 C160,4 240,5 320,5 C360,5 384,6 392,7 C397,8 397,10 392,11 C380,12 340,12 290,12 C220,13 140,12 80,12 C40,12 18,11 8,10 C4,10 4,9 6,9 Z' fill='%23FFFFFF' fill-opacity='0.55'/></svg>"); }

  /* ===== Signature: offset-block image frame ===== */
  .framed { position: relative; display: block; }
  .framed::before {
    content: "";
    position: absolute;
    inset: 16px -16px -16px 16px;
    background: var(--clay);
    z-index: 0;
    border-radius: 6px;
  }
  .framed img { position: relative; z-index: 1; border-radius: 6px; width: 100%; height: 100%; object-fit: cover; display: block; }
  .framed.nav-frame::before { background: var(--navy); }
  .framed.tight::before { inset: 10px -10px -10px 10px; }


  /* ===== Buttons — solid silver text on navy + sweeping highlight band ===== */
  @keyframes sweep {
    0% { transform: translateX(-150%) skewX(-18deg); }
    60%, 100% { transform: translateX(280%) skewX(-18deg); }
  }
  @keyframes textShine {
    0% { background-position: 200% 0; }
    100% { background-position: -100% 0; }
  }
  .btn {
    position: relative;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px;
    background: var(--navy);
    color: #D4D7DC;
    text-decoration: none; font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
    border: 1.5px solid #B8BCC4;
    border-radius: 6px;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .35s ease, border-color .3s ease, background .3s ease;
    font-family: inherit;
    overflow: hidden;
    isolation: isolate;
  }
  /* sweeping highlight band — the "shimmer" */
  .btn::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 50%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.38) 50%, rgba(255,255,255,0.18) 55%, transparent 100%);
    transform: translateX(-150%) skewX(-18deg);
    animation: sweep 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
  }
  /* paint-wipe hover — silver fills, text snaps to navy */
  .btn::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(110deg, #B8BCC4 0%, #D4D7DC 30%, #F0F2F5 50%, #D4D7DC 70%, #B8BCC4 100%);
    transform: translateX(-101%);
    transition: transform .45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
    border-radius: inherit;
  }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13,27,46,0.35);
    color: var(--navy);
    border-color: #B8BCC4;
  }
  .btn:hover::after { transform: translateX(0); }

  .btn-ghost { background: transparent; color: #E4E6EA; border-color: #B8BCC4; }
  .btn-ghost::after { background: rgba(228,230,234,0.95); }
  .btn-ghost:hover { color: var(--navy); }

  .btn-navy { background: var(--navy); color: #D4D7DC; border-color: var(--navy-3); }

  .btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
  .btn-outline-navy::after { background: var(--navy); }
  .btn-outline-navy::before { display: none; }
  .btn-outline-navy:hover { color: #E4E6EA; border-color: var(--navy); box-shadow: 0 12px 30px rgba(13,27,46,0.25); }

  .btn-lg { padding: 18px 32px; font-size: 16px; }

  /* ===== Shimmering silver — reserved for high-impact dark-bg moments only ===== */
  @keyframes silverSweep {
    0%   { background-position: 180% 0%, 0% 0%; }
    60%, 100% { background-position: -80% 0%, 0% 0%; }
  }
  .hero h1 span,
  .heroD h1 span.hero-accent,
  .heroE h1 span.hero-accent,
  .heroF h1 span.hero-accent,
  .promo-box h2 span,
  .contact h2 span,
  .reviews-score .big,
  .reviews h2 .brush,
  .contact h2 .brush,
  .promo-box h2 .brush {
    background-image:
      linear-gradient(110deg,
        transparent 0%,
        transparent 38%,
        rgba(255,255,255,0.55) 47%,
        rgba(255,255,255,0.95) 50%,
        rgba(255,255,255,0.55) 53%,
        transparent 62%,
        transparent 100%
      ),
      linear-gradient(
        180deg,
        #FAFBFD 0%,
        #E5E8EE 18%,
        #C7CCD5 38%,
        #979DA9 58%,
        #B8BDC8 78%,
        #DCE0E7 100%
      );
    background-size: 260% 100%, 100% 100%;
    background-position: -80% 0%, 0% 0%;
    background-repeat: no-repeat, no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: silverSweep 4s ease-in-out infinite;
    filter: drop-shadow(0 1px 0 rgba(255,255,255,0.12)) drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  }
  /* On dark bg sections, brighten the kicker labels */
  .reviews .kicker, .contact .kicker { color: #C4C8CF; }
  .reviews .kicker::before, .contact .kicker::before { background: #C4C8CF; }

  /* ===== Top utility bar ===== */
  .utility { background: var(--navy-3); color: rgba(255,255,255,0.85); font-size: 13px; padding: 10px 0; }
  .utility .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
  .utility-left, .utility-right { display: flex; gap: 22px; align-items: center; }
  .utility b { color: white; font-weight: 600; }
  .utility .dot { color: var(--clay); font-weight: 700; }
  .utility a { color: rgba(255,255,255,0.9); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
  .utility a:hover { color: var(--clay); }
  @media (max-width: 760px){ .utility .hide-sm { display: none; } }

  /* ===== Main nav ===== */
  .nav { position: sticky; top: 0; z-index: 60; background: white; border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
  .nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
  .nav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: clamp(16px, 2vw, 34px); }
  .brand-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
  .brand-mark { width: 44px; height: 44px; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-weight: 800; font-size: 22px; position: relative; overflow: hidden; }
  .brand-mark::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 8px; background: var(--clay); }
  .brand-name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
  .brand-sub { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }
  .nav-links { display: flex; align-items: center; gap: clamp(18px, 1.8vw, 30px); font-size: 16px; font-weight: 600; }
  .nav-links a { position: relative; text-decoration: none; color: var(--ink); white-space: nowrap; padding: 6px 0; transition: color .2s; }
  .nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px; background: var(--clay); transform: scaleX(0); transform-origin: left center; transition: transform .22s ease; }
  .nav-links a:hover { color: var(--clay); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta { display: flex; gap: clamp(12px, 1.4vw, 20px); align-items: center; flex-shrink: 0; }
  .nav-phone { color: var(--navy); font-weight: 700; text-decoration: none; display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
  .nav-phone .lbl { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
  .nav-phone .num { font-size: 17px; font-variant-numeric: tabular-nums; }
  .nav .btn { white-space: nowrap; padding: 13px 22px; font-size: 15px; line-height: 1; display: inline-flex; align-items: center; gap: 8px; }
  @media (max-width: 1200px){ .nav-links { gap: 18px; font-size: 15px; } .nav .btn { padding: 12px 18px; font-size: 14px; } }
  @media (max-width: 1080px){ .nav-links { display: none; } }
  @media (max-width: 860px){ .nav-phone { display: none; } }
  @media (max-width: 560px){ .brand-sub { display: none; } .brand-name { font-size: 17px; } .nav .btn { display: none; } }

  /* ===== Hero ===== */
  .hero {
    position: relative;
    color: white;
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
      linear-gradient(135deg, rgba(13,27,46,0.82) 0%, rgba(13,27,46,0.62) 45%, rgba(13,27,46,0.35) 100%),
      url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=2000&q=80&auto=format&fit=crop') center/cover no-repeat;
    padding: 80px 0 100px;
  }
  .hero::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: -1px; height: 80px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,70 480,10 720,30 C960,50 1200,20 1440,45 L1440,80 L0,80 Z' fill='%23F1ECE0'/></svg>") bottom/cover no-repeat;
    z-index: 1;
  }
  .hero-inner { position: relative; z-index: 2; max-width: 760px; margin-left: 0; }
  .hero > .container { max-width: 100%; padding-left: clamp(28px, 7vw, 120px); padding-right: 28px; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(92,101,115,0.18); border: 1px solid rgba(92,101,115,0.4); color: var(--clay-soft); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 28px; }
  .hero-eyebrow .dot { width: 8px; height: 8px; background: var(--clay); border-radius: 50%; display: inline-block; box-shadow: 0 0 0 4px rgba(92,101,115,0.3); }
  .hero h1 { margin-bottom: 20px; color: white; }
  .hero h1 span { color: var(--clay-soft); }
  .hero p.lede { font-size: 19px; color: rgba(255,255,255,0.85); max-width: 600px; margin-bottom: 36px; line-height: 1.55; font-weight: 300; }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
  .hero-badges { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
  .hero-badge { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; }
  .hero-badge svg { width: 22px; height: 22px; color: var(--clay); flex-shrink: 0; }
  .hero-badge strong { color: white; font-weight: 700; }

  /* ===== Section ===== */
  section { padding: 110px 0; position: relative; }
  .kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay); margin-bottom: 18px; }
  .kicker::before { content: ""; width: 28px; height: 2px; background: var(--clay); }
  .section-head { max-width: 760px; margin-bottom: 60px; }
  .section-head p { color: var(--muted); font-size: 17px; margin-top: 20px; line-height: 1.6; }

  /* ===== Why Choose Us ===== */
  .why { background: var(--paper); padding-top: 90px; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 48px; }
  @media (max-width: 900px){ .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
  @media (max-width: 560px){ .why-grid { grid-template-columns: 1fr; } }
  .why-item { display: flex; gap: 18px; align-items: flex-start; }
  .why-icon { flex-shrink: 0; width: 56px; height: 56px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #E4E6EA; transition: all .3s var(--ease); box-shadow: 0 4px 12px rgba(13,27,46,0.15); }
  .why-item:hover .why-icon { background: #E4E6EA; color: var(--navy); transform: scale(1.05); box-shadow: 0 6px 18px rgba(13,27,46,0.25); }
  .why-icon svg { width: 28px; height: 28px; stroke-width: 1.6; }
  .why-item h4 { font-size: 18px; margin-bottom: 6px; color: var(--navy); }
  .why-item p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.55; }

  /* ===== Services ===== */
  .services { background: var(--cream); }
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
  @media (max-width: 820px){ .services-grid { grid-template-columns: 1fr; } }
  .svc-card { background: var(--paper); border-radius: 12px; overflow: hidden; border: 1px solid var(--line); transition: all .3s var(--ease); position: relative; display: flex; flex-direction: column; }
  .svc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(13,27,46,0.12); border-color: var(--clay); }
  .svc-card .img-wrap { aspect-ratio: 16/10; overflow: hidden; }
  .svc-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
  .svc-card:hover .img-wrap img { transform: scale(1.05); }
  .svc-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
  .svc-card .num { font-size: 12px; letter-spacing: 0.22em; color: var(--clay); font-weight: 700; margin-bottom: 10px; }
  .svc-card h3 { color: var(--navy); margin-bottom: 12px; }
  .svc-card p { color: var(--muted); font-size: 15px; margin: 0 0 20px; flex: 1; }
  .svc-features { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
  .svc-features span { font-size: 13px; color: var(--navy); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
  .svc-features span::before { content: "✓"; color: var(--clay); font-weight: bold; }
  .svc-link { color: var(--navy); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; transition: gap .2s, color .2s; align-self: flex-start; }
  .svc-link:hover { color: var(--clay); gap: 12px; }

  /* ===== Recent Work ===== */
  .work { background: var(--paper); }
  .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 900px){ .work-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px){ .work-grid { grid-template-columns: 1fr; } }
  .work-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/5; background: var(--navy); cursor: pointer; }
  .work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
  .work-item:hover img { transform: scale(1.06); }
  .work-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,46,0.9) 0%, rgba(13,27,46,0.3) 45%, transparent 70%); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; color: white; }
  .work-item .tag { align-self: flex-start; background: var(--clay); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; padding: 5px 10px; border-radius: 4px; margin-bottom: 12px; text-transform: uppercase; }
  .work-item h4 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 4px; }
  .work-item .meta { font-size: 13px; color: rgba(255,255,255,0.8); }
  .work-cta-row { text-align: center; margin-top: 50px; }

  /* ===== Owner / Story ===== */
  .owner { background: var(--cream); }
  .owner-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
  @media (max-width: 900px){ .owner-grid { grid-template-columns: 1fr; gap: 50px; } }
  .owner-img-wrap { aspect-ratio: 4/5; max-width: 440px; }
  .owner-copy h2 { color: var(--navy); margin-bottom: 24px; }
  .owner-copy p { color: var(--muted); font-size: 17px; margin: 0 0 20px; line-height: 1.7; }
  .owner-copy p strong { color: var(--navy); font-weight: 700; }
  .owner-sig { margin-top: 32px; display: flex; gap: 20px; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); }
  .owner-sig-name { font-size: 20px; font-weight: 700; color: var(--navy); }
  .owner-sig-title { font-size: 13px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-top: 2px; }
  .owner-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
  .owner-stat { border-left: 3px solid var(--clay); padding-left: 16px; }
  .owner-stat .num { font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
  .owner-stat .lbl { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 6px; }

  /* ===== Testimonials ===== */
  .reviews { background: var(--navy); color: white; position: relative; overflow: hidden; }
  .reviews::before { content: ""; position: absolute; top: 0; right: 0; width: 400px; height: 400px; background: radial-gradient(circle, rgba(92,101,115,0.2), transparent 70%); filter: blur(60px); }
  .reviews .kicker { color: var(--clay-soft); }
  .reviews .kicker::before { background: var(--clay); }
  .reviews h2 { color: white; }
  .reviews-topline { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; margin-bottom: 60px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); position: relative; z-index: 2; }
  .reviews-score { display: flex; align-items: center; gap: 16px; }
  .reviews-score .big { font-size: 64px; font-weight: 800; color: white; line-height: 1; letter-spacing: -0.03em; }
  .reviews-score .stars { color: var(--clay); font-size: 20px; letter-spacing: 3px; margin-bottom: 6px; }
  .reviews-score .count { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; letter-spacing: 0.06em; }
  .reviews-topline .logos { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
  .review-logo { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; display: flex; align-items: center; gap: 8px; }
  .review-logo strong { color: white; font-weight: 700; font-size: 15px; }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
  @media (max-width: 900px){ .reviews-grid { grid-template-columns: 1fr; } }
  .review-card { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: 10px; padding: 28px; transition: all .3s var(--ease); }
  .review-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(92,101,115,0.5); }
  .review-stars { color: var(--clay); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
  .review-card blockquote { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.9); margin: 0 0 22px; font-weight: 400; }
  .review-who { padding-top: 16px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; align-items: center; }
  .review-who strong { color: white; font-size: 15px; font-weight: 600; display: block; }
  .review-who small { color: rgba(255,255,255,0.55); font-size: 12px; }
  .review-source { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }

  /* ===== Before / After ===== */
  .ba-sect { background: var(--cream); }
  .ba-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; align-items: center; }
  @media (max-width: 900px){ .ba-grid { grid-template-columns: 1fr; gap: 40px; } }
  .ba-copy h2 { color: var(--navy); margin-bottom: 24px; }
  .ba-copy p { color: var(--muted); font-size: 17px; margin-bottom: 28px; line-height: 1.65; }
  .ba-checks { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 12px; }
  .ba-checks li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink); }
  .ba-checks svg { width: 22px; height: 22px; color: var(--clay); flex-shrink: 0; margin-top: 1px; }
  .ba { position: relative; aspect-ratio: 4/3; overflow: hidden; user-select: none; border-radius: 10px; box-shadow: 0 30px 60px -20px rgba(13,27,46,0.25); }
  .ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
  .ba .before { filter: sepia(0.25) saturate(0.5) brightness(0.78) contrast(0.92); }
  .ba .after-wrap { position: absolute; inset: 0; overflow: hidden; width: 50%; }
  .ba .after-wrap img { width: calc(100% * 2); }
  .ba .handle { position: absolute; top: 0; bottom: 0; width: 3px; background: white; left: 50%; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 20px rgba(0,0,0,0.3); }
  .ba .handle::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.3); border: 3px solid var(--clay); }
  .ba .handle::before { content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 20px; color: var(--clay); z-index: 2; font-weight: bold; }
  .ba input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; z-index: 3; }
  .ba .tag { position: absolute; top: 20px; padding: 6px 14px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; border-radius: 4px; }
  .ba .tag-before { left: 20px; background: rgba(13,27,46,0.85); color: white; }
  .ba .tag-after { right: 20px; background: var(--clay); color: white; }

  /* ===== Process ===== */
  .process { background: var(--paper); }
  .process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 20px; position: relative; }
  @media (max-width: 900px){ .process-list { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px){ .process-list { grid-template-columns: 1fr; } }
  .process-step { padding: 40px 28px; background: var(--cream); border-right: 1px solid var(--line); transition: background .3s; position: relative; }
  .process-step:last-child { border-right: none; }
  .process-step:nth-child(even) { background: var(--cream-2); }
  .process-step:hover { background: var(--clay-soft); }
  .process-step .num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--navy); color: white; border-radius: 50%; font-weight: 800; font-size: 18px; margin-bottom: 20px; }
  .process-step:hover .num { background: var(--clay); }
  .process-step h4 { font-size: 20px; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
  .process-step p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.6; }

  /* ===== Promo callout ===== */
  .promo { padding: 0; }
  .promo-box { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: white; border-radius: 16px; padding: 60px 56px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
  @media (max-width: 800px){ .promo-box { grid-template-columns: 1fr; padding: 40px 32px; text-align: center; } }
  .promo-box::before { content: ""; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(92,101,115,0.3), transparent 70%); filter: blur(40px); }
  .promo-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--clay); color: white; padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
  .promo-box h2 { color: white; margin-bottom: 14px; font-size: clamp(30px, 3.6vw, 44px); }
  .promo-box h2 span { color: var(--clay-soft); }
  .promo-box p { color: rgba(255,255,255,0.8); font-size: 17px; margin: 0; max-width: 520px; }
  .promo-box .promo-cta { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 2; }
  @media (max-width: 800px){ .promo-box .promo-cta { align-items: center; } }
  .promo-fine { font-size: 12px; color: rgba(255,255,255,0.55); }

  /* ===== FAQ ===== */
  .faq { background: var(--cream); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
  @media (max-width: 900px){ .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
  .faq-side h2 { color: var(--navy); margin-bottom: 20px; }
  .faq-side p { color: var(--muted); font-size: 16px; margin-bottom: 28px; line-height: 1.6; }
  .faq-list { display: flex; flex-direction: column; gap: 12px; }
  .faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 22px 24px; cursor: pointer; transition: all .25s var(--ease); }
  .faq-item[open] { border-color: var(--clay); box-shadow: 0 6px 20px rgba(92,101,115,0.1); }
  .faq-item summary { font-size: 17px; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 20px; list-style: none; cursor: pointer; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: "+"; color: var(--clay); font-size: 24px; font-weight: 400; transition: transform .25s; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: var(--cream); border-radius: 50%; flex-shrink: 0; }
  .faq-item[open] summary::after { transform: rotate(45deg); background: var(--clay); color: white; }
  .faq-item .a { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.65; padding-top: 14px; border-top: 1px solid var(--line); }

  /* ===== Service Areas ===== */
  .areas { background: var(--paper); padding: 90px 0; }
  .areas-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
  @media (max-width: 820px){ .areas-inner { grid-template-columns: 1fr; } }
  .areas h3 { color: var(--navy); font-size: 24px; margin-bottom: 16px; }
  .areas p { color: var(--muted); font-size: 15px; }
  .areas-list { display: flex; flex-wrap: wrap; gap: 8px 10px; }
  .areas-list a { padding: 10px 18px; background: var(--cream); border: 1px solid var(--line); border-radius: 100px; font-size: 14px; color: var(--navy); text-decoration: none; font-weight: 500; transition: all .2s; }
  .areas-list a:hover { background: var(--clay); color: white; border-color: var(--clay); transform: translateY(-1px); }

  /* ===== Contact Block ===== */
  .contact { background: var(--navy); color: white; padding: 110px 0; position: relative; overflow: hidden; }
  .contact::before { content: ""; position: absolute; bottom: -100px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(92,101,115,0.15), transparent 70%); filter: blur(80px); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; position: relative; z-index: 2; }
  @media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }
  .contact .kicker { color: var(--clay-soft); }
  .contact h2 { color: white; margin-bottom: 24px; }
  .contact h2 span { color: var(--clay-soft); }
  .contact .lede { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; line-height: 1.6; }
  .contact-info { display: flex; flex-direction: column; gap: 22px; }
  .contact-row { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line-dark); }
  .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
  .contact-row .ico { width: 40px; height: 40px; background: rgba(92,101,115,0.15); border: 1px solid rgba(92,101,115,0.35); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--clay); flex-shrink: 0; }
  .contact-row .ico svg { width: 20px; height: 20px; }
  .contact-row .txt { flex: 1; }
  .contact-row .lbl { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 4px; }
  .contact-row .val { font-size: 17px; color: white; font-weight: 500; text-decoration: none; display: block; }
  .contact-row .val:hover { color: var(--clay); }

  .form-card { background: white; color: var(--ink); border-radius: 14px; padding: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.25); }
  .form-card h3 { color: var(--navy); margin-bottom: 6px; }
  .form-card p.sub { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
  .field { margin-bottom: 16px; }
  .field label { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 6px; background: var(--cream); font-family: inherit; font-size: 15px; color: var(--ink); transition: border-color .2s; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); background: white; }
  .field textarea { resize: vertical; min-height: 96px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  @media (max-width: 560px){ .form-row { grid-template-columns: 1fr; gap: 0; } }
  .form-card .btn { width: 100%; justify-content: center; padding: 16px; font-size: 15px; margin-top: 6px; }
  .form-fine { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }

  /* ===== Footer ===== */
  footer { background: var(--navy-3); color: rgba(255,255,255,0.7); padding: 70px 0 28px; }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }
  @media (max-width: 820px){ .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
  .foot-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
  .foot-brand .mark { width: 48px; height: 48px; background: var(--clay); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 22px; }
  .foot-brand .name { color: white; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
  .foot-blurb { max-width: 340px; font-size: 14.5px; line-height: 1.6; margin-bottom: 22px; }
  .foot-social { display: flex; gap: 10px; }
  .foot-social a { width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all .2s; }
  .foot-social a:hover { background: var(--clay); color: white; border-color: var(--clay); }
  .foot-col h5 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin: 0 0 18px; color: white; }
  .foot-col a { display: block; color: rgba(255,255,255,0.6); font-size: 14px; padding: 5px 0; text-decoration: none; transition: color .2s; }
  .foot-col a:hover { color: var(--clay); }
  .foot-bottom { padding-top: 24px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }
  .foot-bottom a { color: var(--clay); text-decoration: none; }

  /* ===== Scroll reveal ===== */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.on { opacity: 1; transform: none; }

  /* ===== Dark-bg accent overrides — silver brightens up on navy ===== */
  .utility .dot { color: #C4C8CF; }
  .utility a:hover { color: #C4C8CF; }

  .brand-mark::after { background: #C4C8CF; }

  .hero-eyebrow { background: rgba(196,200,207,0.13); border-color: rgba(196,200,207,0.4); color: #E4E6EA; }
  .hero-eyebrow .lightning { color: #C4C8CF; margin-right: 4px; font-size: 15px; line-height: 1; }
  .hero-eyebrow strong { color: white; font-weight: 700; margin-left: 4px; }
  .hero-badge svg { color: #C4C8CF; }
  .hero-badges { border-top-color: rgba(255,255,255,0.18); }

  .cred-icon { border-color: #C4C8CF; color: #C4C8CF; }

  .reviews-score .stars { color: #C4C8CF; }
  .review-stars { color: #C4C8CF; }
  .review-card:hover { border-color: rgba(196,200,207,0.5); }
  .reviews::before { background: radial-gradient(circle, rgba(196,200,207,0.18), transparent 70%); filter: blur(60px); }

  .promo-badge { background: #C4C8CF; color: var(--navy); }
  .promo-box::before { background: radial-gradient(circle, rgba(196,200,207,0.18), transparent 70%); filter: blur(40px); }

  .contact::before { background: radial-gradient(circle, rgba(196,200,207,0.14), transparent 70%); filter: blur(80px); }
  .contact-row .ico { background: rgba(196,200,207,0.12); border-color: rgba(196,200,207,0.35); color: #C4C8CF; }
  .contact-row .val:hover { color: #C4C8CF; }

  .foot-col h5 { color: #C4C8CF; }
  .foot-col a:hover { color: #C4C8CF; }
  .foot-social a:hover { background: #C4C8CF; color: var(--navy); border-color: #C4C8CF; }
  .foot-bottom a { color: #C4C8CF; }

  /* Process step hover — soft cool gray */
  .process-step:hover { background: #ECEEF1; }
  .process-step:hover .num { background: #2D3441; color: #E4E6EA; }

  /* Service-card .num accent — slate works on white, but reinforce */
  .svc-card .num { color: #5C6573; font-weight: 700; }
  .svc-card:hover { border-color: #B8BCC4; }
  .svc-card:hover .num { color: var(--navy); }

  /* FAQ open state — softer accent */
  .faq-item[open] { border-color: #B8BCC4; box-shadow: 0 6px 20px rgba(13,27,46,0.06); }
  .faq-item[open] summary::after { background: var(--navy); color: #E4E6EA; }

  /* Areas chips hover — silver with navy text */
  .areas-list a:hover { background: var(--navy); color: #E4E6EA; border-color: var(--navy); }

  /* Form field focus — softer slate ring */
  .field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid #B8BCC4; border-color: var(--navy); }

  /* svc-features check marks visible on white */
  .svc-features span { color: var(--navy); }
  .svc-features span::before { color: #5C6573; font-weight: 800; }

  /* svc-link arrow */
  .svc-link { color: var(--navy); }
  .svc-link:hover { color: #5C6573; }

  /* Owner stat divider color */
  .owner-stat { border-left-color: #B8BCC4; }
  .owner-stat .num { color: var(--navy); }

  /* Map pin color */
  .map-pin { background: var(--navy); border-color: white; }

  /* BA section check icons — readable slate */
  .ba-checks svg { color: #5C6573; }

  /* Promo box deeper navy gradient */
  .promo-box { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); }

  /* ===== Quote Modal ===== */
  .modal-overlay {
    position: fixed; inset: 0;
    background: rgba(8,18,35,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    overflow-y: auto;
  }
  .modal-overlay.open { opacity: 1; pointer-events: auto; }
  .modal-card {
    background: var(--paper);
    border-radius: 16px;
    padding: 0;
    max-width: 560px;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    transform: translateY(20px) scale(0.96);
    transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(196,200,207,0.3);
  }
  .modal-overlay.open .modal-card { transform: translateY(0) scale(1); }
  .modal-close {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.18); border: none; border-radius: 50%;
    font-size: 22px; cursor: pointer; color: white;
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    line-height: 1;
    transition: background .2s, transform .25s;
    font-family: inherit;
    font-weight: 300;
  }
  .modal-close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }
  .modal-incentive {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #E4E6EA;
    padding: 18px 56px 18px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }
  .modal-incentive::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 200px;
    background: radial-gradient(circle at center, rgba(196,200,207,0.18), transparent 70%);
    filter: blur(30px);
    pointer-events: none;
  }
  .modal-incentive .lightning { color: #C4C8CF; margin-right: 4px; font-size: 16px; }
  .modal-incentive strong { color: #C4C8CF; font-weight: 700; }
  .modal-body { padding: 28px 32px 32px; }
  .modal-body h3 {
    font-size: 26px;
    color: var(--navy);
    margin: 0 0 8px;
    line-height: 1.15;
  }
  .modal-body h3 span { color: #5C6573; }
  .modal-sub {
    color: var(--muted);
    font-size: 14.5px;
    margin: 0 0 22px;
    line-height: 1.5;
  }
  .modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .modal-form .field { margin-bottom: 14px; }
  .modal-form .field label {
    display: block; font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; font-weight: 700;
    color: var(--navy); margin-bottom: 6px;
  }
  .modal-form .field input,
  .modal-form .field select,
  .modal-form .field textarea {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--line); border-radius: 6px;
    background: var(--cream); font-family: inherit; font-size: 15px;
    color: var(--ink); transition: border-color .2s, background .2s;
  }
  .modal-form .field input:focus,
  .modal-form .field select:focus,
  .modal-form .field textarea:focus {
    outline: none; border-color: var(--navy); background: white;
  }
  .modal-form .field textarea { resize: vertical; min-height: 80px; }
  .modal-form .btn { width: 100%; justify-content: center; padding: 16px; font-size: 15px; margin-top: 6px; }
  .modal-fine {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin: 14px 0 0;
    line-height: 1.5;
  }
  .modal-fine a { color: var(--navy); font-weight: 600; text-decoration: none; }
  @media (max-width: 540px) {
    .modal-overlay { padding: 12px; align-items: flex-end; }
    .modal-card { max-height: calc(100vh - 24px); border-radius: 14px; }
    .modal-incentive { padding: 14px 50px 14px 20px; font-size: 13px; border-radius: 14px 14px 0 0; }
    .modal-body { padding: 24px 22px 24px; }
    .modal-body h3 { font-size: 22px; }
    .modal-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .modal-close { top: 10px; right: 10px; width: 34px; height: 34px; font-size: 20px; }
  }

  /* ===== Hamburger menu (mobile/tablet) ===== */
  .hamburger {
    display: none;
    width: 42px; height: 42px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background .2s, border-color .2s;
    z-index: 70;
    position: relative;
  }
  .hamburger:hover { background: var(--cream); border-color: var(--navy); }
  .hamburger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s 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-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    background: var(--paper);
    z-index: 55;
    padding: 84px 20px 32px;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
    box-sizing: border-box;
  }
  .mobile-menu.open { transform: translateY(0); visibility: visible; }
  .mobile-menu a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 2px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: color .2s, padding-left .2s;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .mobile-menu a::after {
    content: "→";
    color: #B8BCC4;
    font-size: 16px;
    transition: transform .2s, color .2s;
    flex-shrink: 0;
    margin-left: 12px;
  }
  .mobile-menu a:hover, .mobile-menu a:active { color: #5C6573; padding-left: 6px; }
  .mobile-menu a:hover::after, .mobile-menu a:active::after { color: var(--navy); transform: translateX(4px); }
  .mobile-menu .mm-call {
    margin-top: 20px;
    padding: 16px 18px;
    background: var(--cream-2);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    color: var(--navy);
    justify-content: center;
    gap: 10px;
  }
  .mobile-menu .mm-call::after { display: none; }
  .mobile-menu .mm-cta {
    margin-top: 10px;
    padding: 16px 18px;
    background: var(--navy);
    color: #E4E6EA;
    border-radius: 10px;
    border: 1.5px solid #C4C8CF;
    text-align: center;
    justify-content: center;
    font-size: 15px;
  }
  .mobile-menu .mm-cta::after { color: #C4C8CF; }
  .mobile-menu a { font-size: 19px; padding: 16px 2px; }
  .mobile-menu .mm-head { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding: 0 0 10px; border: 0; }
  .mobile-menu .mm-head::after { display: none; }
  .mobile-menu .mm-call, .mobile-menu .mm-cta { font-size: 16px; padding: 17px 18px; font-weight: 700; }
  .mobile-menu .mm-call { font-variant-numeric: tabular-nums; }
  @media (max-width: 1080px) {
    .hamburger { display: flex; }
  }

  /* ===== Mobile sticky CTA — floating pills ===== */
  .mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 14px calc(16px + env(safe-area-inset-bottom));
    gap: 10px;
    background: transparent;
    transform: translateY(160%);
    transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
  }
  .mobile-cta-bar.show { transform: translateY(0); }
  .mobile-cta {
    flex: 1 1 0;
    min-width: 0;
    pointer-events: auto;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 8px;
    font-weight: 700; font-size: 14.5px; letter-spacing: 0.005em;
    text-decoration: none;
    border-radius: 100px;
    transition: transform .15s ease, box-shadow .2s ease;
    font-family: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 14px 32px rgba(8,18,35,0.45), 0 4px 10px rgba(8,18,35,0.25);
  }
  .mobile-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
  .mobile-cta span { overflow: hidden; text-overflow: ellipsis; }
  .mobile-cta.call {
    background: #E4E6EA;
    color: var(--navy);
    border: 1.5px solid #FFFFFF;
  }
  .mobile-cta.quote {
    background: var(--navy);
    color: #E4E6EA;
    border: 1.5px solid #C4C8CF;
  }
  .mobile-cta:active { transform: scale(0.96); }

  /* ===== Mobile responsive overhaul ===== */
  @media (max-width: 768px) {
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 76px; }

    section { padding: 64px 0; }
    .container { padding: 0 20px; }

    /* Section heads — center, no kicker bar */
    .section-head { text-align: center; margin-left: auto; margin-right: auto; }
    .kicker { justify-content: center; }
    .kicker::before { display: none; }

    /* Nav — tighter, hide phone block (sticky bar handles it) */
    .nav .container { gap: 10px; padding-top: 12px; padding-bottom: 12px; }
    .nav-cta .btn { padding: 10px 14px; font-size: 13px; }

    /* Hero — center everything, full-width CTAs */
    .hero { padding: 60px 0 90px; min-height: auto; text-align: center; }
    .hero-inner { text-align: center; }
    .hero-eyebrow { font-size: 12px; padding: 7px 14px; flex-wrap: wrap; justify-content: center; }
    .hero-eyebrow .dot { flex-shrink: 0; }
    .hero h1 { font-size: clamp(34px, 9vw, 48px); }
    .hero p.lede { font-size: 16px; margin-left: auto; margin-right: auto; }
    .hero-cta { flex-direction: column; gap: 10px; align-items: stretch; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-badges { gap: 16px 24px; justify-content: center; padding-top: 26px; }
    .hero-badge { font-size: 13px; }

    /* Why — stack with centered items */
    .why-grid { gap: 28px; }
    .why-item { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
    .why-icon { width: 60px; height: 60px; }

    /* Services — single col, tighter */
    .svc-card .body { padding: 24px; text-align: center; }
    .svc-features { justify-content: center; }
    .svc-link { align-self: center; }

    /* Work — single col CTA centered */
    .work-cta-row .btn { width: 100%; max-width: 360px; justify-content: center; }

    /* About — stack, center, stats break to vertical */
    .owner-grid { text-align: center; gap: 36px; }
    .owner-img-wrap { margin: 0 auto; max-width: 340px; aspect-ratio: 4/5; }
    .framed::before { inset: 12px -12px -12px 12px; }
    .owner-copy h2 { margin-bottom: 20px; }
    .owner-copy p { font-size: 16px; }
    .owner-stats { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
    .owner-stat { border-left: none; border-top: 3px solid #B8BCC4; padding: 14px 0 0; text-align: center; }
    .owner-stat .num { font-size: 42px; }
    .owner-sig { flex-direction: column; gap: 16px; text-align: center; padding-top: 28px; }
    .owner-sig > div:first-child { text-align: center; }
    .owner-sig .btn { margin-left: 0 !important; width: 100%; justify-content: center; }

    /* Reviews — topline stacks centered */
    .reviews-topline { flex-direction: column; align-items: center; text-align: center; gap: 28px; padding-bottom: 32px; }
    .reviews-score { justify-content: center; }
    .reviews-topline .logos { justify-content: center; }
    .review-card { text-align: center; }
    .review-who { flex-direction: column; gap: 10px; align-items: center; text-align: center; }

    /* BA — stack, center checklist */
    .ba-copy { text-align: center; }
    .ba-checks { align-items: center; }
    .ba-checks li { text-align: left; }
    .ba-copy .btn { width: 100%; justify-content: center; }

    /* Process — center each step */
    .process-step { padding: 32px 22px; text-align: center; border-right: none; border-bottom: 1px solid var(--line); }
    .process-step:last-child { border-bottom: none; }
    .process-step .num { margin-left: auto; margin-right: auto; }

    /* Promo */
    .promo-box { padding: 36px 24px; text-align: center; }
    .promo-badge { margin-left: auto; margin-right: auto; }
    .promo-box .promo-cta { align-items: center; width: 100%; }
    .promo-box .btn { width: 100%; max-width: 320px; justify-content: center; }

    /* FAQ — stack & center side panel */
    .faq-side { text-align: center; }
    .faq-side .btn { width: 100%; justify-content: center; }
    .faq-item summary { font-size: 16px; }

    /* Areas — center title and chips */
    .areas-inner { text-align: center; }
    .areas-inner > div:first-child { text-align: center; }
    .areas .kicker { justify-content: center; }
    .areas-list { justify-content: center; }

    /* Contact — center info, form readable */
    .contact-grid { text-align: center; }
    .contact-info { align-items: center; }
    .contact-row { justify-content: center; max-width: 360px; margin: 0 auto; }
    .contact-row .txt { text-align: left; }
    .form-card { padding: 28px 22px; text-align: left; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* Footer — single-column stack, centered, divided */
    footer { padding: 56px 0 28px; }
    .foot-grid { grid-template-columns: 1fr; text-align: center; gap: 0; margin-bottom: 36px; }
    .foot-col, .foot-grid > div:first-child { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .foot-grid > div:first-child { padding-top: 0; }
    .foot-grid > div:last-child { border-bottom: none; padding-bottom: 0; }
    .foot-brand { justify-content: center; margin-bottom: 14px; }
    .foot-brand .name { font-size: 24px; }
    .foot-blurb { margin: 0 auto; max-width: 340px; }
    .foot-social { justify-content: center; margin-top: 18px; }
    .foot-col h5 { margin-bottom: 14px; }
    .foot-col a { word-break: break-word; padding: 6px 0; font-size: 15px; }
    .foot-bottom { flex-direction: column; text-align: center; gap: 8px; padding-top: 20px; }

    /* Utility bar — only show phone */
    .utility-left { display: none; }
    .utility .container { justify-content: center; }
  }

  @media (max-width: 480px) {
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    .container { padding: 0 16px; }
    section { padding: 56px 0; }
    .hero { padding: 48px 0 80px; }
    .hero-cta { gap: 8px; }
    .nav-cta .btn { display: none; }
    .brand-name { font-size: 18px; }
    .brand-mark { width: 40px; height: 40px; font-size: 19px; }
    .mobile-cta { font-size: 14px; padding: 13px 8px; }
    .mobile-cta span.lbl { display: none; }
  }

/* ============================================================
   ===== INNER PAGES — same TA design language, additive ======
   ============================================================ */

/* Page header band (navy, mirrors .reviews/.contact treatment) */
.page-head { background: var(--navy); color: #fff; padding: 96px 0 86px; position: relative; overflow: hidden; text-align: center; }
.page-head::before { content: ""; position: absolute; top: -120px; right: -80px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(196,200,207,0.16), transparent 70%); filter: blur(70px); }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 70px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,70 480,10 720,30 C960,50 1200,20 1440,45 L1440,80 L0,80 Z' fill='%23F1ECE0'/></svg>") bottom/cover no-repeat; z-index: 2; }
.page-head .container { position: relative; z-index: 3; }
.page-head .kicker { color: #C4C8CF; justify-content: center; }
.page-head .kicker::before { background: #C4C8CF; }
.page-head h1 { color: #fff; max-width: 900px; margin: 0 auto; font-size: clamp(38px, 5.5vw, 68px); }
.page-head .lede { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 650px; margin: 24px auto 0; line-height: 1.6; font-weight: 300; }
.page-head .crumbs { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 22px; }
.page-head .crumbs a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-head .crumbs a:hover { color: #C4C8CF; }

/* Intro split (image + copy) — reuses .framed */
.intro-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 900px){ .intro-split { grid-template-columns: 1fr; gap: 44px; } }
.intro-split .copy h2 { color: var(--navy); margin-bottom: 22px; }
.intro-split .copy p { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.intro-split .copy p strong { color: var(--navy); }
.intro-split .intro-img { aspect-ratio: 4/3; }

/* Service detail rows */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.svc-detail:last-child { border-bottom: none; }
@media (max-width: 900px){ .svc-detail { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; } }
.svc-detail:nth-child(even) .svc-detail-media { order: 2; }
@media (max-width: 900px){ .svc-detail:nth-child(even) .svc-detail-media { order: 0; } }
.svc-detail-media { aspect-ratio: 16/12; }
.svc-detail .num { font-size: 12px; letter-spacing: 0.22em; color: var(--clay); font-weight: 700; margin-bottom: 12px; text-transform: uppercase; }
.svc-detail h3 { color: var(--navy); font-size: clamp(26px, 3vw, 34px); margin-bottom: 16px; }
.svc-detail > div > p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 22px; }
.svc-detail .incl { list-style: none; padding: 0; margin: 0 0 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
@media (max-width: 560px){ .svc-detail .incl { grid-template-columns: 1fr; } }
.svc-detail .incl li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); font-weight: 500; }
.svc-detail .incl li::before { content: "✓"; color: var(--clay); font-weight: 800; flex-shrink: 0; }

/* Two-up cards (residential vs commercial, guarantee, etc.) */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 760px){ .duo { grid-template-columns: 1fr; } }
.duo-card { border-radius: 12px; padding: 40px 36px; position: relative; overflow: hidden; }
.duo-card.light { background: var(--paper); border: 1px solid var(--line); }
.duo-card.dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.duo-card .tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--clay); margin-bottom: 14px; }
.duo-card.dark .tag { color: #C4C8CF; }
.duo-card h3 { font-size: 24px; margin-bottom: 12px; }
.duo-card.light h3 { color: var(--navy); }
.duo-card.dark h3 { color: #fff; }
.duo-card p { font-size: 15.5px; line-height: 1.65; margin: 0 0 20px; }
.duo-card.light p { color: var(--muted); }
.duo-card.dark p { color: rgba(255,255,255,0.8); }
.duo-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.duo-card li { display: flex; gap: 10px; font-size: 14.5px; }
.duo-card li::before { content: "✓"; font-weight: 800; }
.duo-card.light li::before { color: var(--clay); }
.duo-card.dark li::before { color: #C4C8CF; }

/* Gallery (masonry + filters) */
.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.gal-filter { padding: 10px 20px; border: 1.5px solid var(--line); background: var(--paper); border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--navy); cursor: pointer; transition: all .2s; font-family: inherit; }
.gal-filter:hover { border-color: var(--clay); }
.gal-filter.active { background: var(--navy); color: #E4E6EA; border-color: var(--navy); }
.gal-masonry { columns: 3; column-gap: 22px; }
@media (max-width: 900px){ .gal-masonry { columns: 2; column-gap: 16px; } }
@media (max-width: 560px){ .gal-masonry { columns: 1; } }
.gal-cell { break-inside: avoid; margin-bottom: 22px; position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; background: var(--navy); }
.gal-cell img { width: 100%; display: block; transition: transform .6s var(--ease); }
.gal-cell:hover img { transform: scale(1.05); }
.gal-cell .ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,46,0.88) 0%, rgba(13,27,46,0.2) 45%, transparent 70%); opacity: 0; transition: opacity .3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.gal-cell:hover .ov { opacity: 1; }
.gal-cell .ov .tag { align-self: flex-start; background: var(--clay); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; padding: 4px 10px; border-radius: 4px; margin-bottom: 10px; text-transform: uppercase; }
.gal-cell .ov h4 { color: #fff; font-size: 18px; margin-bottom: 4px; }
.gal-cell .ov .meta { color: rgba(255,255,255,0.8); font-size: 13px; }
.gal-cell.hide { display: none; }

/* Spotlight / case study */
.spotlight { background: var(--navy); color: #fff; border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; }
@media (max-width: 820px){ .spotlight { grid-template-columns: 1fr; } }
.spotlight .sp-media { min-height: 320px; }
.spotlight .sp-media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight .sp-body { padding: 50px 48px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 560px){ .spotlight .sp-body { padding: 36px 26px; } }
.spotlight .sp-body .kicker { color: #C4C8CF; }
.spotlight .sp-body .kicker::before { background: #C4C8CF; }
.spotlight .sp-body h3 { color: #fff; font-size: 28px; margin-bottom: 16px; }
.spotlight .sp-body p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.65; margin: 0 0 24px; }
.spotlight .sp-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.spotlight .sp-stat .n { font-size: 32px; font-weight: 800; color: #fff; line-height: 1; }
.spotlight .sp-stat .l { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; margin-top: 6px; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px){ .team-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 460px){ .team-grid { grid-template-columns: 1fr; } }
.team-card .team-photo { aspect-ratio: 4/5; margin-bottom: 18px; }
.team-card h4 { color: var(--navy); font-size: 19px; margin-bottom: 2px; }
.team-card .role { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); font-weight: 600; margin-bottom: 10px; }
.team-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* Stat band */
.stat-band { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-band .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
@media (max-width: 760px){ .stat-band .grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.stat-band .n { font-size: clamp(40px, 5vw, 56px); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
.stat-band .l { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 10px; }

/* Areas: map + columns */
.areas-map-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px){ .areas-map-grid { grid-template-columns: 1fr; gap: 36px; } }
.areas-map { aspect-ratio: 4/3; border-radius: 12px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); position: relative; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(13,27,46,0.3); }
.areas-map::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(196,200,207,0.12) 1px, transparent 1px); background-size: 26px 26px; }
.areas-map .pin { position: absolute; width: 14px; height: 14px; background: var(--clay); border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 6px rgba(92,101,115,0.3); }
.areas-map .pin.lg { width: 20px; height: 20px; background: #C4C8CF; }
.areas-map .label { position: absolute; color: #fff; font-size: 12px; font-weight: 600; background: rgba(13,27,46,0.7); padding: 4px 10px; border-radius: 4px; border: 1px solid rgba(196,200,207,0.3); }
.area-cols { columns: 2; column-gap: 30px; }
@media (max-width: 560px){ .area-cols { columns: 1; } }
.area-cols .area-line { break-inside: avoid; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.area-cols .area-line::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); flex-shrink: 0; }
.area-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px){ .area-blocks { grid-template-columns: 1fr; } }
.area-block { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.area-block h4 { color: var(--navy); font-size: 19px; margin-bottom: 8px; }
.area-block p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* Generic CTA band (reuses navy look, for page ends) */
.cta-strip { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; text-align: center; border-radius: 16px; padding: 60px 40px; position: relative; overflow: hidden; }
.cta-strip::before { content: ""; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 400px; height: 300px; background: radial-gradient(circle, rgba(196,200,207,0.15), transparent 70%); filter: blur(50px); }
.cta-strip h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-strip p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 540px; margin: 0 auto 28px; position: relative; }
.cta-strip .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

@media (max-width: 768px){
  .page-head { padding: 64px 0 70px; }
  .intro-split .copy { text-align: center; }
  .svc-detail { text-align: center; }
  .svc-detail .incl { text-align: left; }
  .gal-filters { gap: 8px; }
  .spotlight .sp-stats { justify-content: center; }
  .cta-strip { padding: 44px 24px; }
}

  /* ===== Layout guards — long strings (emails/URLs) must never widen a grid track ===== */
  .contact-page-grid > *, .contact-grid > *, .owner-grid > *, .intro-split > *,
  .ba-grid > *, .faq-grid > *, .areas-map-grid > *, .heroD-grid > *, .duo > * { min-width: 0; }
  .cinfo-row .val, .contact-row .val, .foot-col a, .cinfo-row, .contact-row { overflow-wrap: anywhere; word-break: break-word; }
  .cinfo-row .val { max-width: 100%; }
  img, video, iframe { max-width: 100%; }
