/* California Water & Fire — shared styles */
:root{
  --primary:hsl(345 75% 32%);--primary-dark:hsl(345 75% 26%);--primary-fg:#fff;
  --secondary:hsl(205 50% 36%);--secondary-dark:hsl(205 50% 30%);--secondary-fg:#fff;
  --fg:hsl(222 47% 11%);--muted:hsl(210 40% 96%);--muted-fg:hsl(215 16% 47%);
  --border:hsl(214 32% 91%);--destructive:hsl(0 84% 60%);
  --slate800:#1e293b;--slate900:#0f172a;--slate950:#020617;--radius:16px;
}
*{box-sizing:border-box;border-color:var(--border)}
html{scroll-behavior:smooth}
body{margin:0;font-family:"DM Sans",sans-serif;color:var(--fg);background:#fff;overflow-x:clip;line-height:1.5}
img{max-width:100%;display:block}
a{color:var(--secondary);text-decoration:none}
a:hover{color:var(--secondary-dark)}
h1,h2,h3,h4{text-wrap:balance;margin:0}
p{margin:0;line-height:1.625}
.container{max-width:80rem;margin-inline:auto;padding-inline:1rem}
@media(min-width:640px){.container{padding-inline:1.5rem}}
@media(min-width:1024px){.container{padding-inline:2rem}}
.ic{width:1.25rem;height:1.25rem;flex-shrink:0}
/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;font:inherit;font-weight:600;font-size:.95rem;border-radius:8px;border:1px solid transparent;padding:.65rem 1.5rem;cursor:pointer;transition:all .2s;text-decoration:none}
.btn:active{transform:scale(.98)}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-dark);color:#fff}
.btn-outline{background:transparent;color:var(--fg);border-color:var(--border)}
.btn-outline:hover{background:var(--muted);color:var(--fg)}
.btn-outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.3)}
.btn-outline-light:hover{background:rgba(255,255,255,.1);color:#fff}
.btn-white{background:#fff;color:var(--secondary)}
.btn-white:hover{background:rgba(255,255,255,.9);color:var(--secondary)}
.btn-orange{background:#ea580c;color:#fff;box-shadow:0 0 20px rgba(234,88,12,.3)}
.btn-orange:hover{background:#c2410c;color:#fff}
.btn-lg{font-size:1.125rem;height:3.5rem;padding:0 2rem}
.btn-block{width:100%}
.btn-pill{border-radius:999px}
/* Header */
.site-header{background:#fff;border-bottom:1px solid var(--border)}
.header-row{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.brand{display:flex;align-items:center;gap:.75rem}
.brand img{width:4rem;height:4rem;object-fit:contain;flex-shrink:0}
.brand h1,.brand .brand-name{font-size:1.25rem;font-weight:700;letter-spacing:-.01em;margin:0}
.brand small{font-size:.75rem;color:var(--muted-fg);font-weight:500;letter-spacing:.02em}
.header-contact{display:none;align-items:center;gap:1.5rem}
.header-contact .hc-hours{display:flex;align-items:center;gap:.5rem;color:var(--primary)}
.header-contact .hc-hours p{font-size:.875rem;font-weight:600;margin:0}
.header-contact .hc-hours small{font-size:.75rem;color:var(--muted-fg)}
.header-contact .divider{height:3rem;width:1px;background:var(--border)}
.call-btn{display:inline-flex;align-items:center;gap:.5rem;background:var(--primary);color:#fff;padding:.75rem 1.5rem;border-radius:8px;font-weight:600;transition:all .2s}
.call-btn:hover{background:var(--primary-dark);color:#fff}
.call-btn.mobile{padding:.5rem 1rem;font-size:.875rem}
.credbar{display:none;align-items:center;justify-content:center;gap:4rem;padding:.75rem 0;border-top:1px solid var(--border)}
.credbar span{display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:500;color:var(--muted-fg);padding:0 1rem}
.credbar .ic{width:1rem;height:1rem;color:var(--secondary)}
@media(min-width:768px){.credbar{display:flex}}
@media(min-width:1024px){.header-contact{display:flex}.call-btn.mobile{display:none}}
/* Nav */
.mainnav{background:var(--secondary);color:#fff;position:sticky;top:0;z-index:50;box-shadow:0 4px 6px -1px rgba(0,0,0,.1)}
.nav-inner{display:flex;align-items:center;height:3.5rem}
.nav-desktop{display:none;align-items:center;justify-content:center;gap:1.5rem;width:100%}
.nav-link{display:inline-flex;align-items:center;gap:.25rem;padding:.5rem 1.25rem;font-size:.875rem;font-weight:500;color:rgba(255,255,255,.9);border-radius:8px;background:none;border:none;font-family:inherit;cursor:pointer;transition:all .2s;text-decoration:none}
.nav-link:hover{background:rgba(255,255,255,.1);color:#fff}
.nav-link.active{background:rgba(255,255,255,.2);color:#fff}
.nav-link .ic{width:1rem;height:1rem}
.dd{position:relative}
.dd-menu{position:absolute;top:100%;left:0;min-width:14rem;max-height:80vh;overflow-y:auto;background:#fff;border:1px solid var(--border);border-radius:10px;box-shadow:0 10px 25px rgba(0,0,0,.12);padding:.35rem;display:none;z-index:60}
.dd.open .dd-menu{display:block}
.dd-menu a{display:block;padding:.5rem .75rem;font-size:.875rem;color:var(--fg);border-radius:6px}
.dd-menu a:hover{background:var(--muted);color:var(--fg)}
.nav-mobile{display:flex;align-items:center;justify-content:space-between;width:100%}
.nav-mobile span{font-size:.875rem;font-weight:600}
.nav-mobile button{background:none;border:none;color:#fff;padding:.5rem;border-radius:8px;cursor:pointer}
.nav-mobile button:hover{background:rgba(255,255,255,.1)}
@media(min-width:1024px){.nav-desktop{display:flex}.nav-mobile{display:none}}
/* Mobile sheet */
.sheet-overlay{position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:98;opacity:0;pointer-events:none;transition:opacity .2s}
.sheet{position:fixed;top:0;right:0;bottom:0;width:280px;background:#fff;z-index:99;overflow-y:auto;padding:3rem 1rem 2rem;transform:translateX(100%);transition:transform .25s ease;box-shadow:-8px 0 24px rgba(0,0,0,.15)}
body.sheet-open .sheet{transform:none}
body.sheet-open .sheet-overlay{opacity:1;pointer-events:auto}
.sheet-close{position:absolute;top:.75rem;right:.75rem;background:none;border:none;cursor:pointer;padding:.5rem;color:var(--fg)}
.sheet p.group{padding:.5rem 1rem;margin:0;font-size:.875rem;font-weight:600;color:var(--muted-fg);border-bottom:1px solid var(--border)}
.sheet a{display:block;padding:.5rem 1.5rem;font-size:.875rem;color:var(--fg);border-radius:8px}
.sheet a.top{padding-left:1rem;font-weight:500}
.sheet a:hover{background:var(--muted)}
.sheet a.active{background:var(--primary);color:#fff}
/* Sections */
.section{padding:5rem 0}.section-sm{padding:3rem 0}.section-xl{padding:6rem 0}
.bg-muted{background:var(--muted)}
.bg-dark{background:linear-gradient(to bottom right,var(--slate900),var(--slate800));color:#fff}
.bg-slate900{background:var(--slate900);color:#fff}
.bg-slate950{background:var(--slate950);color:#fff}
.bg-black{background:#0a0a0a;color:#fff}
.bg-primary-sec{background:var(--primary);color:#fff}
.section-head{text-align:center;margin-bottom:3rem}
.h1{font-size:2.5rem;font-weight:700;letter-spacing:-.02em;line-height:1.15;margin-bottom:1.5rem}
.h2{font-size:1.875rem;font-weight:700;letter-spacing:-.02em;margin-bottom:1rem}
.h3{font-size:1.25rem;font-weight:600;margin-bottom:.5rem}
.lead{font-size:1.25rem;color:var(--muted-fg);max-width:48rem;margin-inline:auto;line-height:1.625}
.lead-light{font-size:1.25rem;color:rgba(255,255,255,.9);max-width:48rem;margin-inline:auto;line-height:1.625}
.muted-fg{color:var(--muted-fg)}
@media(min-width:768px){.h1{font-size:3rem}.h2{font-size:2.25rem}}
@media(min-width:1024px){.h1{font-size:3.75rem}}
/* Grids */
.grid{display:grid;gap:2rem}
.grid-tight{gap:1.5rem}
@media(min-width:768px){.md-2{grid-template-columns:repeat(2,1fr)}.md-3{grid-template-columns:repeat(3,1fr)}.md-4{grid-template-columns:repeat(4,1fr)}}
@media(min-width:1024px){.lg-2{grid-template-columns:repeat(2,1fr)}.lg-3{grid-template-columns:repeat(3,1fr)}.lg-4{grid-template-columns:repeat(4,1fr)}}
/* Cards */
.card{background:#fff;border:1px solid var(--border);border-radius:12px;box-shadow:0 1px 3px rgba(0,0,0,.06);transition:box-shadow .3s,transform .3s}
.card.hoverable:hover{box-shadow:0 10px 25px rgba(0,0,0,.1);transform:translateY(-4px)}
.card.no-border{border:none;box-shadow:0 4px 12px rgba(0,0,0,.08)}
.card-pad{padding:1.5rem}
.card-pad-lg{padding:2rem}
.card-title{font-size:1.25rem;font-weight:600;letter-spacing:-.01em;margin-bottom:.5rem}
.card-desc{color:var(--muted-fg);line-height:1.625}
.icon-tile{width:3.5rem;height:3.5rem;background:color-mix(in srgb,var(--primary) 10%,transparent);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.icon-tile .ic{width:1.75rem;height:1.75rem;color:var(--primary)}
.icon-tile.sm{width:3rem;height:3rem}
.icon-tile.sm .ic{width:1.5rem;height:1.5rem}
.icon-tile.solid{background:var(--primary)}
.icon-tile.solid .ic{color:#fff}
.icon-tile.destructive{background:color-mix(in srgb,var(--destructive) 10%,transparent)}
.icon-tile.destructive .ic{color:var(--destructive)}
.feature-list{list-style:none;margin:0 0 1.5rem;padding:0;display:flex;flex-direction:column;gap:.5rem}
.feature-list li{display:flex;align-items:flex-start;gap:.5rem;font-size:.875rem;color:var(--muted-fg)}
.feature-list li::before{content:"";width:.375rem;height:.375rem;border-radius:99px;background:var(--primary);margin-top:.45rem;flex-shrink:0}
.check-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:1rem}
.check-list li{display:flex;align-items:center;gap:.75rem;font-weight:500}
.check-list .ic{width:1.5rem;height:1.5rem;color:var(--primary)}
.stat-num{font-size:3rem;font-weight:700;color:var(--primary);letter-spacing:-.02em;margin-bottom:.5rem}
.stat-label{color:var(--muted-fg);font-weight:500}
.img-band{width:100%;aspect-ratio:21/9;background:var(--muted);border:1px solid var(--border);border-radius:16px;overflow:hidden;box-shadow:0 1px 3px rgba(0,0,0,.06)}
.img-band img{width:100%;height:100%;object-fit:cover}
.rounded-img{border-radius:16px;box-shadow:0 10px 25px rgba(0,0,0,.12);width:100%;object-fit:cover}
.badge-pill{display:inline-flex;align-items:center;gap:.5rem;background:color-mix(in srgb,var(--primary) 20%,transparent);color:#fff;padding:.5rem 1rem;border-radius:999px;margin-bottom:1.5rem;font-size:.875rem;font-weight:600;letter-spacing:.02em;text-transform:uppercase}
.pulse-dot{position:relative;display:inline-flex;width:.75rem;height:.75rem}
.pulse-dot::before{content:"";position:absolute;inset:0;border-radius:99px;background:var(--primary);opacity:.75;animation:ping 1.2s cubic-bezier(0,0,.2,1) infinite}
.pulse-dot::after{content:"";position:relative;width:.75rem;height:.75rem;border-radius:99px;background:var(--primary)}
@keyframes ping{75%,100%{transform:scale(2);opacity:0}}
/* Steps */
.step{display:flex;align-items:flex-start;gap:1.5rem}
.step .num{font-size:3.75rem;font-weight:700;color:color-mix(in srgb,var(--primary) 10%,transparent);letter-spacing:-.05em;font-variant-numeric:tabular-nums;user-select:none;line-height:1}
.step h3{font-size:1.25rem;font-weight:700;margin:.5rem 0 .75rem}
/* Testimonials */
.masonry{columns:1;column-gap:1.5rem}
.masonry>*{break-inside:avoid;margin-bottom:1.5rem}
@media(min-width:768px){.masonry{columns:2}}
@media(min-width:1024px){.masonry{columns:3}}
.avatar{width:3rem;height:3rem;border-radius:12px;color:#fff;font-weight:600;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.stars{display:flex;gap:.25rem;margin-bottom:.75rem}
.stars .ic{width:1rem;height:1rem;color:#facc15;fill:#facc15}
/* Forms */
.field{margin-bottom:1rem}
.field label{display:block;font-size:.875rem;font-weight:500;margin-bottom:.25rem}
.field.white label{color:#fff}
.field input,.field textarea,.field select{width:100%;font:inherit;font-size:.9rem;padding:.55rem .75rem;border:1px solid var(--border);border-radius:8px;background:#fff;color:#111827}
.field input::placeholder,.field textarea::placeholder{color:#9ca3af}
.field input:focus,.field textarea:focus,.field select:focus{outline:2px solid var(--primary);outline-offset:1px;border-color:transparent}
/* CTA box */
.cta-box{max-width:42rem;margin-inline:auto;background:var(--secondary);color:#fff;border-radius:16px;padding:2rem;box-shadow:0 25px 50px -12px rgba(0,0,0,.35);text-align:center}
.cta-box h2{font-size:1.5rem;font-weight:700;margin-bottom:.5rem}
.cta-box p{color:rgba(255,255,255,.9);margin-bottom:1.5rem}
.cta-box a.tel{color:#fff;font-weight:600}
.cta-box a.tel:hover{text-decoration:underline}
/* Modal */
.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);display:none;align-items:center;justify-content:center;z-index:200;padding:1rem}
.modal-overlay.show{display:flex}
.modal{background:#fff;border-radius:12px;max-width:28rem;width:100%;padding:1.5rem;box-shadow:0 25px 50px -12px rgba(0,0,0,.4)}
.modal h3{font-size:1.25rem;font-weight:700;margin-bottom:.5rem}
.modal p{color:var(--muted-fg);margin-bottom:1.5rem}
.modal .actions{display:flex;justify-content:flex-end}
/* Footer */
.site-footer{background:var(--slate900);color:#f1f5f9}
.site-footer .cols{display:grid;gap:2rem;padding:3rem 0 0}
@media(min-width:768px){.site-footer .cols{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.site-footer .cols{grid-template-columns:repeat(4,1fr)}}
.site-footer h3{font-size:1rem;font-weight:600;color:#fff;margin-bottom:1rem}
.site-footer ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.6rem}
.site-footer a{color:#cbd5e1;font-size:.875rem}
.site-footer a:hover{color:#fff}
.site-footer .desc{font-size:.875rem;color:#cbd5e1;line-height:1.625}
.site-footer .contact-li{display:flex;align-items:flex-start;gap:.5rem}
.site-footer .contact-li .ic{width:1rem;height:1rem;margin-top:.15rem;color:var(--primary)}
.site-footer .contact-li small{display:block;font-size:.75rem;color:#94a3b8}
.social{display:flex;gap:.75rem}
.social a{width:2.25rem;height:2.25rem;background:var(--slate800);border-radius:8px;display:flex;align-items:center;justify-content:center;color:#cbd5e1;transition:all .2s}
.social a:hover{background:var(--primary);color:#fff}
.social .ic{width:1rem;height:1rem}
.footer-bottom{border-top:1px solid var(--slate800);margin-top:2rem;padding:1.5rem 0;display:flex;flex-direction:column;gap:1rem;align-items:center;justify-content:space-between}
.footer-bottom p,.footer-bottom a{font-size:.875rem;color:#94a3b8;margin:0}
@media(min-width:640px){.footer-bottom{flex-direction:row}}
/* Reveal */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .55s ease,transform .55s ease}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}}
