  :root {
    --bg:        #0E1512;
    --bg-elev:   #17211C;
    --bg-elev-2: #1E2A24;
    --ink:       #ECF2ED;
    --ink-muted: #9CB0A6;
    --mint:      #7ED9B4;
    --mint-deep: #4FB98C;
    --water:     #8AC7DD;
    --line:      rgba(236,242,237,0.09);
    --line-2:    rgba(236,242,237,0.14);
    --shadow:    0 24px 60px -20px rgba(0,0,0,0.6);
    --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
    --body: "Figtree", system-ui, -apple-system, sans-serif;
    --maxw: 1140px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ambient background glow */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
      radial-gradient(70% 55% at 12% -5%, rgba(126,217,180,0.10), transparent 60%),
      radial-gradient(55% 45% at 100% 10%, rgba(138,199,221,0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

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

  a { color: inherit; text-decoration: none; }

  .eyebrow {
    font-size: 12.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mint);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }
  .eyebrow::before {
    content: "";
    width: 22px; height: 1px;
    background: var(--mint);
    opacity: 0.7;
  }

  h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.06; letter-spacing: -0.015em; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--body); font-weight: 600; font-size: 15.5px;
    padding: 13px 22px; border-radius: 999px; cursor: pointer;
    border: 1px solid transparent; transition: transform .18s ease, background .18s ease, border-color .18s ease;
    white-space: nowrap;
  }
  .btn-primary { background: var(--mint); color: #072016; }
  .btn-primary:hover { transform: translateY(-2px); background: #93e3c2; }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
  .btn-ghost:hover { border-color: var(--mint); color: var(--mint); transform: translateY(-2px); }
  .btn svg { width: 16px; height: 16px; }

  /* ---------- Nav ---------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(14,21,18,0.72);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
  .brand-mark {
    width: 30px; height: 30px; border-radius: 9px;
    display: grid; place-items: center;
    background: linear-gradient(150deg, var(--mint), var(--mint-deep));
    color: #072016;
  }
  .brand-mark svg { width: 18px; height: 18px; }
  .nav-links { display: flex; align-items: center; gap: 30px; }
  .nav-links a { color: var(--ink-muted); font-size: 15px; font-weight: 500; transition: color .16s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { display: flex; align-items: center; gap: 14px; }
  .nav-phone { color: var(--ink-muted); font-size: 15px; font-weight: 500; }
  .nav-phone:hover { color: var(--mint); }
  .menu-btn { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; }

  /* ---------- Hero ---------- */
  .hero { position: relative; z-index: 1; padding: 72px 0 40px; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
  .hero h1 { font-size: clamp(40px, 6vw, 66px); }
  .hero h1 .accent { color: var(--mint); }
  .hero-sub { color: var(--ink-muted); font-size: 18.5px; margin-top: 22px; max-width: 30ch; }
  .hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
  .hero-trust { display: flex; gap: 22px; margin-top: 40px; flex-wrap: wrap; color: var(--ink-muted); font-size: 14px; }
  .hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
  .hero-trust svg { width: 15px; height: 15px; color: var(--mint); flex: none; }

  /* Signature: the "wipe clean" panel */
  .clean-panel {
    position: relative; aspect-ratio: 4 / 4.4; border-radius: 22px; overflow: hidden;
    border: 1px solid var(--line-2); box-shadow: var(--shadow);
    background:
      radial-gradient(120% 90% at 20% 15%, rgba(138,199,221,0.22), transparent 55%),
      radial-gradient(120% 100% at 90% 90%, rgba(126,217,180,0.22), transparent 55%),
      linear-gradient(160deg, #1b2721, #0f1713);
  }
  .clean-panel .scene { position: absolute; inset: 0; display: grid; place-items: center; padding: 30px; text-align: center; }
  .scene-inner { position: relative; z-index: 2; }
  .droplet {
    width: 92px; height: 92px; margin: 0 auto 22px; border-radius: 50% 50% 50% 8px;
    transform: rotate(45deg);
    background: linear-gradient(150deg, var(--mint), var(--water));
    box-shadow: 0 12px 40px -8px rgba(126,217,180,0.5), inset 0 0 0 1px rgba(255,255,255,0.2);
    position: relative;
  }
  .droplet::after {
    content: ""; position: absolute; top: 20px; left: 20px; width: 20px; height: 26px;
    border-radius: 50%; background: rgba(255,255,255,0.55); filter: blur(1px);
  }
  .scene h3 { font-size: 24px; }
  .scene p { color: var(--ink-muted); font-size: 15px; margin-top: 6px; }
  .scene-stats { display: flex; gap: 26px; justify-content: center; margin-top: 26px; }
  .scene-stat b { font-family: var(--display); font-size: 26px; color: var(--mint); display: block; }
  .scene-stat span { font-size: 12px; color: var(--ink-muted); letter-spacing: 0.05em; }

  /* the grime overlay that gets wiped */
  .grime {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
    background:
      radial-gradient(circle at 18% 30%, rgba(120,110,90,0.5) 0 3px, transparent 4px),
      radial-gradient(circle at 62% 18%, rgba(120,110,90,0.4) 0 5px, transparent 6px),
      radial-gradient(circle at 80% 55%, rgba(120,110,90,0.45) 0 4px, transparent 5px),
      radial-gradient(circle at 35% 72%, rgba(120,110,90,0.4) 0 6px, transparent 7px),
      radial-gradient(circle at 88% 85%, rgba(120,110,90,0.4) 0 3px, transparent 4px),
      radial-gradient(circle at 50% 45%, rgba(120,110,90,0.35) 0 5px, transparent 6px),
      linear-gradient(135deg, rgba(30,26,20,0.62), rgba(30,26,20,0.42));
    backdrop-filter: blur(3px) saturate(0.6);
    -webkit-mask-image: linear-gradient(115deg, #000 45%, transparent 55%);
    mask-image: linear-gradient(115deg, #000 45%, transparent 55%);
    -webkit-mask-size: 260% 100%; mask-size: 260% 100%;
    -webkit-mask-position: 0% 0; mask-position: 0% 0;
    animation: wipe 2.1s cubic-bezier(.7,0,.2,1) 0.35s forwards;
  }
  /* the squeegee highlight */
  .squeegee {
    position: absolute; top: -10%; left: -30%; width: 30%; height: 120%; z-index: 4; pointer-events: none;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.14) 40%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.14) 60%, transparent);
    transform: skewX(-12deg);
    animation: squeegee 2.1s cubic-bezier(.7,0,.2,1) 0.35s forwards;
  }
  @keyframes wipe { to { -webkit-mask-position: 100% 0; mask-position: 100% 0; } }
  @keyframes squeegee { to { left: 130%; } }

  /* ---------- Section base ---------- */
  section { position: relative; z-index: 1; }
  .section-head { max-width: 60ch; margin-bottom: 46px; }
  .section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-top: 16px; }
  .section-head p { color: var(--ink-muted); margin-top: 16px; font-size: 18px; }
  .pad { padding: 88px 0; }
  .divider { border: 0; border-top: 1px solid var(--line); margin: 0; }

  /* ---------- Services ---------- */
  .svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .svc {
    background: var(--bg-elev); border: 1px solid var(--line); border-radius: 18px; padding: 28px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
  }
  .svc:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--bg-elev-2); }
  .svc-icon {
    width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px;
    background: rgba(126,217,180,0.12); color: var(--mint);
  }
  .svc-icon svg { width: 23px; height: 23px; }
  .svc h3 { font-size: 21px; }
  .svc p { color: var(--ink-muted); font-size: 15.5px; margin-top: 10px; }
  .svc .tag { display: inline-block; margin-top: 16px; font-size: 12.5px; color: var(--mint); font-weight: 600; letter-spacing: 0.03em; }

  /* ---------- Process ---------- */
  .proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
  .step { padding-top: 26px; border-top: 2px solid var(--line-2); position: relative; }
  .step-num { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--mint); letter-spacing: 0.1em; }
  .step h3 { font-size: 22px; margin-top: 14px; }
  .step p { color: var(--ink-muted); font-size: 15.5px; margin-top: 10px; }

  /* ---------- Included ---------- */
  .inc-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
  .inc-card { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 20px; padding: 30px; }
  .inc-card h3 { font-size: 17px; color: var(--mint); margin-bottom: 16px; letter-spacing: 0.02em; }
  .inc-list { list-style: none; display: grid; gap: 11px; }
  .inc-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink-muted); }
  .inc-list svg { width: 18px; height: 18px; color: var(--mint); flex: none; margin-top: 2px; }
  .inc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

  /* ---------- Testimonials ---------- */
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .quote { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
  .stars { display: flex; gap: 3px; color: var(--mint); margin-bottom: 14px; }
  .stars svg { width: 16px; height: 16px; }
  .quote p { font-size: 15.5px; }
  .quote .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
  .avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(150deg, var(--mint-deep), var(--water)); display: grid; place-items: center; color: #072016; font-weight: 700; font-family: var(--display); font-size: 15px; }
  .who b { font-size: 14.5px; display: block; }
  .who span { font-size: 13px; color: var(--ink-muted); }

  /* ---------- Quote CTA ---------- */
  .cta-band {
    background: linear-gradient(155deg, #17241e, #101a15);
    border: 1px solid var(--line-2); border-radius: 26px; padding: 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
    box-shadow: var(--shadow);
  }
  .cta-band h2 { font-size: clamp(28px, 3.5vw, 38px); }
  .cta-band .eyebrow { margin-bottom: 14px; }
  .cta-band p { color: var(--ink-muted); margin-top: 14px; font-size: 17px; }
  .cta-list { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
  .cta-list li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--ink); }
  .cta-list svg { width: 17px; height: 17px; color: var(--mint); }

  .qform { display: grid; gap: 13px; }
  .qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
  .field { display: grid; gap: 6px; }
  .field label { font-size: 13px; color: var(--ink-muted); font-weight: 500; letter-spacing: 0.02em; }
  .field input, .field select {
    background: var(--bg); border: 1px solid var(--line-2); color: var(--ink);
    border-radius: 11px; padding: 12px 14px; font-family: var(--body); font-size: 15px; width: 100%;
    transition: border-color .16s;
  }
  .field input:focus, .field select:focus { outline: none; border-color: var(--mint); }
  .field input::placeholder { color: #5f7168; }
  .qform .btn-primary { justify-content: center; margin-top: 4px; }
  .form-note { font-size: 12.5px; color: var(--ink-muted); text-align: center; }
  .form-success {
    display: none; text-align: center; padding: 30px 20px;
  }
  .form-success .check { width: 54px; height: 54px; border-radius: 50%; background: rgba(126,217,180,0.15); color: var(--mint); display: grid; place-items: center; margin: 0 auto 16px; }
  .form-success .check svg { width: 28px; height: 28px; }
  .form-success h3 { font-size: 22px; }
  .form-success p { color: var(--ink-muted); margin-top: 8px; font-size: 15px; }

  /* ---------- Footer ---------- */
  footer { border-top: 1px solid var(--line); padding: 48px 0 40px; position: relative; z-index: 1; }
  .foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
  .foot-brand p { color: var(--ink-muted); font-size: 14.5px; margin-top: 14px; max-width: 34ch; }
  .foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
  .foot-col h4 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 14px; }
  .foot-col a { display: block; color: var(--ink); font-size: 14.5px; margin-bottom: 9px; transition: color .16s; }
  .foot-col a:hover { color: var(--mint); }
  .foot-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--ink-muted); font-size: 13.5px; }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .hero-grid, .inc-wrap, .cta-band { grid-template-columns: 1fr; }
    .clean-panel { aspect-ratio: 5 / 4; order: -1; }
    .svc-grid, .proc-grid, .quotes { grid-template-columns: 1fr; }
    .nav-links, .nav-phone { display: none; }
    .cta-band { padding: 32px; }
  }
  @media (max-width: 560px) {
    body { font-size: 16px; }
    .pad { padding: 64px 0; }
    .qrow, .inc-cols { grid-template-columns: 1fr; }
    .hero-actions .btn { flex: 1; justify-content: center; }
    .scene-stats { gap: 18px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .grime, .squeegee { animation: none; }
    .grime { opacity: 0; }
    * { transition: none !important; }
  }

  /* focus visibility */
  a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 6px;
  }