:root{
    --ink:#0A2A43;
    --navy:#0A2540;
    --brand:#0E9FC4;
    --brand-deep:#0B7C99;
    --action:#FB6A3C;
    --action-deep:#E5551F;
    --go:#1FA06B;
    --star:#F5B301;
    --ground:#EEF5F8;
    --surface:#FFFFFF;
    --surface-2:#F6FBFD;
    --line:#D5E4EB;
    --body:#43555F;
    --muted:#6C7E88;
    --shadow:0 18px 40px -22px rgba(10,42,67,.45);
    --shadow-sm:0 8px 22px -16px rgba(10,42,67,.5);
    --shadow-lg:0 30px 60px -30px rgba(10,42,67,.55);
    --radius:16px;
    --radius-sm:11px;
    --maxw:1440px;
    --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  }
  *{box-sizing:border-box}
  html,body{margin:0;padding:0}
  .site{
    font-family:var(--font);
    color:var(--body);
    background:var(--surface);
    line-height:1.65;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    min-height:100vh;
  }
  .site img{max-width:100%;display:block}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 clamp(1.25rem,4vw,2.5rem)}
  h1,h2,h3{color:var(--ink);margin:0;text-wrap:balance;letter-spacing:-.02em;line-height:1.08}
  h1{font-size:clamp(2.4rem,4.8vw,4rem);font-weight:800}
  h2{font-size:clamp(1.8rem,3.2vw,2.7rem);font-weight:800}
  h3{font-size:1.075rem;font-weight:750;letter-spacing:-.01em}
  p{margin:0}
  a{color:var(--brand-deep);text-decoration:none}
  .eyebrow{
    font-size:.78rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;
    color:var(--brand-deep);
  }
  .tbd{
    color:inherit;border-bottom:1.5px dotted var(--action);
    padding-bottom:1px;cursor:help;white-space:nowrap;
  }
  .btn{
    display:inline-flex;align-items:center;gap:.5rem;justify-content:center;
    font:inherit;font-weight:700;font-size:1rem;letter-spacing:-.01em;
    padding:.85rem 1.35rem;border-radius:999px;border:1.5px solid transparent;
    cursor:pointer;transition:transform .15s ease,box-shadow .2s ease,background .2s ease,color .2s ease;
    text-decoration:none;line-height:1;
  }
  .btn svg{width:1.05em;height:1.05em}
  .btn-action{background:var(--action);color:#fff;box-shadow:var(--shadow-sm)}
  .btn-action:hover{background:var(--action-deep);transform:translateY(-1px)}
  .btn-outline{background:transparent;color:var(--ink);border-color:var(--line)}
  .btn-outline:hover{border-color:var(--brand);color:var(--brand-deep)}
  .btn-ghost-light{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.32)}
  .btn-ghost-light:hover{background:rgba(255,255,255,.2)}
  .btn-lg{padding:1rem 1.6rem;font-size:1.05rem}
  a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible{
    outline:3px solid var(--brand);outline-offset:2px;border-radius:8px;
  }

  /* ribbon */
  .ribbon{
    background:var(--navy);color:#cfe6ef;font-size:.8rem;letter-spacing:.01em;
    text-align:center;padding:.5rem 1rem;
  }
  .ribbon b{color:#fff;font-weight:700}

  /* header */
  .header{
    position:sticky;top:0;z-index:50;background:rgba(255,255,255,.9);
    backdrop-filter:saturate(1.4) blur(10px);border-bottom:1px solid var(--line);
  }
  .header .wrap{display:flex;align-items:center;gap:1.2rem;height:72px}
  .brandmark{display:flex;align-items:center;gap:.6rem;margin-right:auto}
  .drop{width:34px;height:34px;flex:none}
  .wordmark{display:flex;flex-direction:column;line-height:1}
  .wordmark .wm-top{font-weight:850;font-size:1.02rem;letter-spacing:.02em;color:var(--ink)}
  .wordmark .wm-sub{font-size:.62rem;font-weight:700;letter-spacing:.28em;color:var(--brand-deep);text-transform:uppercase;margin-top:3px}
  .nav-list{display:flex;align-items:center;gap:1.5rem;list-style:none;margin:0;padding:0}
  .nav-list a{color:var(--ink);font-weight:600;font-size:.95rem}
  .nav-list a:hover{color:var(--brand-deep)}
  .header-cta{display:flex;align-items:center;gap:.85rem}
  .phone-link{display:flex;align-items:center;gap:.45rem;color:var(--ink);font-weight:750;white-space:nowrap}
  .phone-link small{display:block;font-size:.66rem;font-weight:600;color:var(--muted);letter-spacing:.02em}
  .phone-link svg{width:20px;height:20px;color:var(--brand-deep)}
  .nav-toggle{display:none;background:none;border:1.5px solid var(--line);border-radius:10px;padding:.45rem;cursor:pointer;color:var(--ink)}
  .nav-toggle svg{width:22px;height:22px;display:block}

  /* hero */
  .hero{position:relative;isolation:isolate;background:#0a1f30}
  .hero::before{content:"";position:absolute;inset:0;z-index:-1;
    background:linear-gradient(100deg,rgba(7,20,33,.93) 0%,rgba(7,20,33,.80) 30%,rgba(7,20,33,.46) 52%,rgba(7,20,33,.16) 72%,rgba(7,20,33,.06) 100%),
      url('images/web/hero-house.jpg') center/cover no-repeat}
  .hero .wrap{display:grid;grid-template-columns:1fr minmax(360px,440px);gap:clamp(2rem,4vw,4rem);
    align-items:start;padding-top:clamp(2.8rem,5vw,4.6rem);padding-bottom:clamp(3rem,5vw,4.8rem)}
  .hero-copy .eyebrow{margin-bottom:1rem;display:block}
  .hero-copy h1{margin-bottom:1.05rem}
  .hero-lead{font-size:clamp(1.1rem,1.5vw,1.3rem);color:var(--body);max-width:40ch;margin-bottom:1.4rem}
  .hero-points{list-style:none;padding:0;margin:0 0 1.4rem;display:flex;flex-direction:column;gap:.55rem}
  .hero-points li{position:relative;padding-left:1.75rem;font-weight:600;color:var(--ink);font-size:1rem}
  .hero-points li::before{content:"\2713";position:absolute;left:0;top:0;color:var(--go);font-weight:800}
  .hero-callrow{display:flex;align-items:center;flex-wrap:wrap;gap:.55rem;margin-bottom:1.3rem;font-size:.98rem;color:var(--muted)}
  .hero-phone{display:inline-flex;align-items:center;gap:.45rem;color:var(--ink);font-weight:800}
  .hero-phone svg{width:19px;height:19px;color:var(--brand-deep)}
  .hero-trust{display:flex;flex-wrap:wrap;align-items:center;gap:.7rem 1.3rem;font-size:.9rem;color:var(--muted);font-weight:600}
  .hero-trust .ht{display:flex;align-items:center;gap:.4rem}
  .hero-trust svg{width:17px;height:17px;color:var(--go)}
  .stars{color:var(--star);letter-spacing:1px;font-size:.95rem}
  /* hero copy sits over the photo -- light on dark */
  .hero-copy .eyebrow{color:#8fe0f5}
  .hero-copy h1{color:#fff}
  .hero-lead{color:rgba(255,255,255,.92)}
  .hero-points li{color:#f2f7fa}
  .hero-points li::before{color:#46e08c}
  .hero-callrow{color:rgba(255,255,255,.84)}
  .hero-phone{color:#fff}
  .hero-phone svg{color:#8fe0f5}
  .hero-trust{color:rgba(255,255,255,.84)}
  .hero-trust svg{color:#46e08c}

  /* form card */
  .quote-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
    box-shadow:var(--shadow-lg);padding:clamp(1.4rem,2.5vw,1.8rem)}
  .hero-visual .quote-card{position:relative}
  .qc-head{margin-bottom:1.05rem;padding-bottom:.95rem;border-bottom:1px solid var(--line)}
  .qc-head h3{font-size:1.3rem;font-weight:800}
  .qc-head p{font-size:.88rem;color:var(--muted);margin-top:.25rem}
  .field{display:flex;flex-direction:column;gap:.35rem;margin-bottom:.8rem}
  .field label{font-size:.8rem;font-weight:700;color:var(--ink)}
  .field input,.field select{font:inherit;font-size:.98rem;padding:.7rem .8rem;border:1.5px solid var(--line);
    border-radius:10px;background:var(--surface-2);color:var(--ink);width:100%}
  .field input:focus,.field select:focus{border-color:var(--brand);background:#fff}
  .field-row{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
  .quote-card .btn-action{width:100%;margin-top:.4rem}
  .qc-trust{margin-top:.85rem;text-align:center;font-size:.83rem;color:var(--muted);font-weight:600}
  .qc-trust .stars{margin-right:.35rem}
  .form-fine{margin-top:.7rem;font-size:.72rem;color:var(--muted);text-align:center}
  .form-done{display:none;text-align:center;padding:2rem .5rem}
  .form-done svg{width:46px;height:46px;color:var(--go);margin-bottom:.6rem}
  .form-done h3{margin-bottom:.4rem;font-size:1.2rem}
  .form-done p{font-size:.92rem;color:var(--body)}
  .is-sent .quote-form{display:none}
  .is-sent .form-done{display:block}

  /* before/after */
  .gal-feature{margin:0 0 1.8rem}
  .ba{position:relative;height:clamp(380px,60vh,700px);border-radius:var(--radius);overflow:hidden;
    box-shadow:var(--shadow);border:1px solid rgba(10,42,67,.14);--pos:52%;isolation:isolate}
  .ba-after,.ba-before{position:absolute;inset:0}
  .ba-after{background:#e9ece7 url('images/web/ba-clean.jpg') center/cover no-repeat}
  .ba-before{background:#3f3a33 url('images/web/ba-dirty.jpg') center/cover no-repeat}
  .ba-canvas{position:absolute;inset:0;z-index:2;touch-action:pan-y}
  @media (hover:hover){
    .ba{cursor:crosshair}
    .ba-before{display:none}
  }
  @media (hover:none){
    .ba-canvas{display:none}
    .ba-before{clip-path:inset(0 50% 0 0)}
  }
  .ba-divider,.ba-range,.ba-tag{display:none}
  .ba-overlay{position:absolute;inset:0;z-index:3;pointer-events:none;color:#fff;display:flex;flex-direction:column;justify-content:space-between;padding:clamp(1.4rem,3.5vw,2.8rem);background:linear-gradient(180deg,rgba(10,37,64,.62),transparent 32%,transparent 64%,rgba(10,37,64,.68))}
  .ba-overlay .eyebrow{display:block;color:#bfe9f5}
  .ba-overlay h2{color:#fff;font-size:clamp(2rem,4.4vw,3.4rem);margin-top:.45rem;text-shadow:0 2px 16px rgba(0,0,0,.4)}
  .ba-overlay .hint{align-self:flex-start;font-size:.95rem;font-weight:600;color:rgba(255,255,255,.94);text-shadow:0 1px 10px rgba(0,0,0,.5)}
  .ba-tag{position:absolute;top:14px;font-size:.68rem;font-weight:800;letter-spacing:.14em;
    padding:.32rem .6rem;border-radius:7px;color:#fff}
  .ba-tag-before{left:14px;background:rgba(20,28,20,.72)}
  .ba-tag-after{right:14px;background:var(--brand)}
  .ba-divider{position:absolute;top:0;bottom:0;left:var(--pos);width:3px;background:#fff;
    transform:translateX(-1.5px);box-shadow:0 0 0 1px rgba(10,42,67,.15)}
  .ba-handle{position:absolute;top:50%;left:50%;width:42px;height:42px;transform:translate(-50%,-50%);
    background:#fff;border-radius:999px;box-shadow:var(--shadow-sm);display:grid;place-items:center;color:var(--brand-deep)}
  .ba-handle::after{content:"‹\2009›";font-size:1rem;font-weight:900;color:var(--brand-deep)}
  .ba-range{position:absolute;inset:0;width:100%;height:100%;margin:0;opacity:0;cursor:ew-resize}
  .ba-cap{margin-top:.7rem;font-size:.82rem;color:var(--muted);text-align:center}

  /* sections */
  .section{padding:clamp(3.2rem,6.5vw,5.6rem) 0}
  .section-tint{background:var(--ground)}
  .sec-head{max-width:60ch;margin-bottom:2.2rem}
  .sec-head.center{margin-left:auto;margin-right:auto;text-align:center}
  .sec-head .eyebrow{display:block;margin-bottom:.7rem}
  .sec-head p{margin-top:.7rem;font-size:1.05rem}

  /* services */
  .svc-group{margin-top:2rem}
  .svc-group:first-of-type{margin-top:0}
  .svc-group-label{display:flex;align-items:center;gap:.8rem;font-size:.8rem;font-weight:800;
    letter-spacing:.14em;text-transform:uppercase;color:var(--brand-deep);margin-bottom:1.1rem}
  .svc-group-label::after{content:"";height:1px;flex:1;background:var(--line)}
  .svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
  @media (max-width:840px){.svc-grid{grid-template-columns:repeat(2,1fr)}}
  @media (max-width:520px){.svc-grid{grid-template-columns:1fr}}
  .svc-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);
    padding:1.35rem;display:flex;flex-direction:column;gap:.55rem;transition:transform .16s ease,box-shadow .2s ease,border-color .2s ease}
  .svc-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:#bcd7e2}
  .svc-ic{width:44px;height:44px;border-radius:11px;display:grid;place-items:center;
    background:linear-gradient(135deg,rgba(14,159,196,.15),rgba(14,159,196,.06));color:var(--brand-deep);margin-bottom:.35rem}
  .svc-ic svg{width:24px;height:24px}
  .svc-card h3{display:flex;align-items:baseline;justify-content:space-between;gap:.6rem}
  .price{flex:none;font-size:.82rem;font-weight:800;color:var(--go);background:rgba(31,160,107,.1);
    padding:.24rem .55rem;border-radius:7px;font-variant-numeric:tabular-nums;letter-spacing:0}
  .svc-card p{font-size:.93rem;color:var(--body)}
  .svc-link{margin-top:auto;padding-top:.3rem;font-weight:700;font-size:.9rem;color:var(--brand-deep);
    display:inline-flex;align-items:center;gap:.3rem}
  .svc-link svg{width:15px;height:15px;transition:transform .15s ease}
  .svc-card:hover .svc-link svg{transform:translateX(3px)}
  .price-note{margin-top:1.5rem;font-size:.85rem;color:var(--muted);display:flex;gap:.5rem;align-items:flex-start}
  .price-note svg{width:16px;height:16px;flex:none;margin-top:2px;color:var(--brand-deep)}

  /* gallery tiles */
  .gal-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem}
  .gal-item{aspect-ratio:4/3;border-radius:var(--radius-sm);position:relative;overflow:hidden;border:1px solid var(--line);background:#e6ede9;margin:0}
  .gal-item img{width:100%;height:100%;object-fit:cover;display:block}
  .gal-item figcaption{position:absolute;left:0;right:0;bottom:0;padding:.7rem .85rem;color:#fff;font-size:.85rem;font-weight:700;letter-spacing:.01em;background:linear-gradient(transparent,rgba(10,37,64,.82))}
  .proof{max-width:560px;margin:0 auto 2rem;text-align:center}
  .proof img{width:100%;border-radius:var(--radius);box-shadow:var(--shadow);display:block;border:1px solid rgba(10,42,67,.14)}
  .proof figcaption{margin-top:.7rem;font-size:.85rem;color:var(--muted)}
  .logo-img{height:50px;width:auto;display:block}

  /* feature / why */
  .feat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.1rem}
  .feat{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);padding:1.5rem}
  .feat-ic{width:46px;height:46px;border-radius:12px;display:grid;place-items:center;color:#fff;
    background:linear-gradient(135deg,var(--brand),var(--brand-deep));margin-bottom:.9rem}
  .feat-ic svg{width:24px;height:24px}
  .feat h3{margin-bottom:.4rem}
  .feat p{font-size:.94rem}

  /* steps */
  .steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1.2rem;counter-reset:step}
  .step{position:relative;padding:1.6rem 1.4rem;background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm)}
  .step-n{counter-increment:step;width:38px;height:38px;border-radius:999px;background:var(--navy);color:#fff;
    font-weight:800;display:grid;place-items:center;margin-bottom:.9rem;font-variant-numeric:tabular-nums}
  .step-n::before{content:counter(step)}
  .step h3{margin-bottom:.35rem}
  .step p{font-size:.94rem}

  /* reviews */
  .rev-top{display:flex;flex-wrap:wrap;align-items:center;gap:1.4rem;justify-content:center;text-align:center;margin-bottom:1.8rem}
  .rev-score{font-size:2.6rem;font-weight:850;color:var(--ink);line-height:1;font-variant-numeric:tabular-nums}
  .rev-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1rem}
  .rev-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);padding:1.4rem;position:relative}
  .rev-card .stars{font-size:1.05rem;margin-bottom:.6rem;display:block}
  .rev-quote{color:var(--body);font-size:.96rem}
  .rev-by{margin-top:1rem;font-size:.82rem;color:var(--muted);font-weight:600;display:flex;align-items:center;gap:.45rem}
  .rev-by svg{width:15px;height:15px;color:var(--brand-deep)}
  .pill-preview{position:absolute;top:12px;right:12px;font-size:.58rem;font-weight:800;letter-spacing:.1em;
    color:var(--action-deep);background:rgba(251,106,60,.12);padding:.24rem .5rem;border-radius:6px}

  /* service area */
  .area-flex{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.4rem,3vw,2.6rem);align-items:center}
  .chip-row{display:flex;flex-wrap:wrap;gap:.55rem;margin-top:1.3rem}
  .chip{border:1px solid #cbdde5;color:var(--ink);font-weight:600;font-size:.9rem;padding:.45rem .9rem;border-radius:999px;background:var(--surface)}
  .area-map{aspect-ratio:4/3;border-radius:var(--radius);border:1px solid var(--line);overflow:hidden;position:relative;
    background:
      radial-gradient(60% 60% at 50% 45%,rgba(14,159,196,.14),transparent 70%),
      linear-gradient(160deg,#e9f3f6,#d8e8ee)}
  .area-map::before{content:"";position:absolute;inset:0;
    background-image:linear-gradient(rgba(11,124,153,.14) 1px,transparent 1px),linear-gradient(90deg,rgba(11,124,153,.14) 1px,transparent 1px);
    background-size:34px 34px;mask:radial-gradient(70% 70% at 50% 50%,#000,transparent)}
  .area-pin{position:absolute;width:20px;height:20px;transform:translate(-50%,-50%)}
  .area-pin::before{content:"";position:absolute;inset:0;border-radius:999px;background:var(--action);box-shadow:0 0 0 5px rgba(251,106,60,.22)}

  /* cta band */
  .cta-band{background:
      radial-gradient(900px 380px at 85% 10%,rgba(14,159,196,.35),transparent 60%),
      linear-gradient(135deg,var(--navy),#0a3350)}
  .cta-band .wrap{text-align:center;padding:clamp(3rem,6vw,5rem) 0}
  .cta-band h2{color:#fff;margin-bottom:.7rem}
  .cta-band p{color:#c8e2ec;font-size:1.1rem;max-width:44ch;margin:0 auto 1.7rem}
  .cta-actions{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:center}

  /* footer */
  .footer{background:var(--navy);color:#a9c4d0}
  .footer .wrap{padding:clamp(2.6rem,5vw,3.6rem) 0 2rem}
  .foot-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:2rem}
  .footer h4{color:#fff;font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;margin:0 0 1rem;font-weight:800}
  .footer ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.55rem}
  .footer a{color:#a9c4d0;font-size:.92rem}
  .footer a:hover{color:#fff}
  .foot-about{font-size:.92rem;line-height:1.7;max-width:32ch}
  .foot-about .drop{margin-bottom:.7rem}
  .foot-llc{margin-top:.9rem;font-size:.8rem;color:#7f9dab}
  .foot-contact li{font-size:.92rem;display:flex;gap:.5rem;align-items:flex-start}
  .foot-contact svg{width:16px;height:16px;flex:none;margin-top:3px;color:var(--brand)}
  .foot-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:2.4rem;padding-top:1.4rem;
    display:flex;flex-wrap:wrap;gap:.6rem 1.2rem;justify-content:space-between;font-size:.8rem;color:#7f9dab}
  .foot-bottom a{color:#7f9dab}

  /* reveal */
  .reveal{opacity:0;transform:translateY(16px);transition:opacity .6s ease,transform .6s ease}
  .reveal.in{opacity:1;transform:none}

  @media (max-width:900px){
    .nav-list{display:none;position:absolute;top:72px;left:0;right:0;background:#fff;border-bottom:1px solid var(--line);
      flex-direction:column;align-items:stretch;gap:0;padding:.5rem 0;box-shadow:var(--shadow)}
    .nav-list.open{display:flex}
    .nav-list li{padding:0 clamp(1.1rem,4vw,2rem)}
    .nav-list a{display:block;padding:.7rem 0;border-bottom:1px solid var(--line)}
    .nav-toggle{display:block}
    .header .wrap{position:relative}
    .hero .wrap{grid-template-columns:1fr}
    .hero::before{background:linear-gradient(179deg,rgba(7,20,33,.82) 0%,rgba(7,20,33,.62) 50%,rgba(7,20,33,.82) 100%),url('images/web/hero-house.jpg') center/cover no-repeat}
    .area-flex{grid-template-columns:1fr}
    .foot-grid{grid-template-columns:1fr 1fr}
  }
  @media (max-width:560px){
    .phone-link small{display:none}
    .field-row{grid-template-columns:1fr}
    .foot-grid{grid-template-columns:1fr}
  }
  @media (min-width:1550px){:root{--maxw:1560px}}
  @media (min-width:1900px){:root{--maxw:1720px}}
  @media (prefers-reduced-motion:reduce){
    .reveal{opacity:1;transform:none;transition:none}
    .btn,.svc-card{transition:none}
  }


/* ============ service page components ============ */
.crumbs{font-size:.85rem;color:var(--muted);display:flex;gap:.45rem;flex-wrap:wrap;align-items:center;margin-bottom:1rem}
.crumbs a{color:var(--brand-deep)}
.crumbs a:hover{text-decoration:underline}
.crumbs .sep{color:var(--line)}
.crumbs [aria-current]{color:var(--ink);font-weight:600}
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.6rem,3.5vw,3rem);align-items:start}
.split.narrow{grid-template-columns:1.1fr .9fr}
@media (max-width:820px){.split,.split.narrow{grid-template-columns:1fr}}
.checklist{list-style:none;padding:0;margin:1.2rem 0 0;display:grid;grid-template-columns:1fr 1fr;gap:.7rem 1.4rem}
@media (max-width:520px){.checklist{grid-template-columns:1fr}}
.checklist li{position:relative;padding-left:1.8rem;font-weight:600;color:var(--ink);font-size:.97rem}
.checklist li::before{content:"\2713";position:absolute;left:0;top:1px;color:var(--go);font-weight:800}
.prose p{color:var(--body);font-size:1.05rem;margin-top:1rem;max-width:60ch}
.prose p:first-child{margin-top:0}
.price-box{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:clamp(1.4rem,2.5vw,1.9rem);box-shadow:var(--shadow-sm);max-width:520px}
.price-box .amount{font-size:2.5rem;font-weight:850;color:var(--ink);line-height:1;font-variant-numeric:tabular-nums}
.price-box .amount small{font-size:.95rem;font-weight:600;color:var(--muted);letter-spacing:0;margin-left:.35rem}
.price-box p{margin-top:.7rem;color:var(--body);font-size:.96rem}
.price-box .btn{margin-top:1.2rem}
.faq{max-width:820px;margin:0 auto}
.faq details{border:1px solid var(--line);border-radius:var(--radius-sm);background:var(--surface);margin-bottom:.7rem;overflow:hidden}
.faq summary{cursor:pointer;list-style:none;padding:1.05rem 1.2rem;font-weight:700;color:var(--ink);display:flex;justify-content:space-between;align-items:center;gap:1rem;font-size:1.02rem}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-size:1.4rem;color:var(--brand-deep);font-weight:400;line-height:1;flex:none}
.faq details[open] summary::after{content:"\2013"}
.faq details[open] summary{border-bottom:1px solid var(--line)}
.faq .faq-body{padding:1.05rem 1.2rem;color:var(--body);font-size:.97rem;line-height:1.7}
.svc-cta{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:1.5rem;align-items:center}

/* ============ photo-needed placeholder ============ */
.need-photo{max-width:640px;margin:0 auto;border:2px dashed #b9cdd6;border-radius:var(--radius);background:var(--surface-2);padding:2.4rem 1.5rem;text-align:center}
.need-photo svg{width:38px;height:38px;color:var(--brand-deep);margin:.4rem 0 .2rem}
.need-photo .tag{display:inline-block;font-size:.62rem;font-weight:800;letter-spacing:.12em;color:var(--action-deep);background:rgba(251,106,60,.12);padding:.28rem .6rem;border-radius:6px}
.need-photo p{color:var(--ink);font-weight:700;font-size:1.02rem;margin:.55rem auto 0;max-width:46ch}
.need-photo .sub{color:var(--muted);font-weight:500;font-size:.9rem;margin-top:.4rem}
a.chip{transition:border-color .15s ease,color .15s ease}
a.chip:hover{border-color:var(--brand);color:var(--brand-deep)}
