:root{
  --bg:#ffffff;
  --card:#ffffff;
  --text:#0b0f0d;
  --muted:#2f3a34;
  --line:rgba(11,15,13,.12);
  --brand:#00c853;      /* deep bright green */
  --brand2:#00a94a;     /* darker green */
  --shadow: 0 14px 34px rgba(11,15,13,.10);
  --radius: 14px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  background:
    radial-gradient(1100px 520px at 18% -20%, rgba(0,200,83,.12), transparent 55%),
    radial-gradient(900px 480px at 92% 0%, rgba(0,169,74,.10), transparent 58%),
    var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:56px 0}
.small{font-size:.92rem}
.muted{color:var(--muted)}
.hr{height:1px; background:var(--line); margin:24px 0}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.90);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:12px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.brand img{height:40px; width:auto}

.menu{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.menu a{
  padding:8px 10px; border-radius:12px;
  color:rgba(15,23,42,.70);
}
.menu a.active, .menu a:hover{
  color:var(--text);
  background: rgba(11,15,13,.05);
}

.actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.7);
  cursor:pointer;
}
.btn.primary{border:0; background: var(--brand); color:#02150a; font-weight:950}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}

.social{
  display:flex; gap:8px; align-items:center;
  padding:8px 10px; border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.7);
}
.social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:12px;
  background: rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.12);
}
.social a:hover{background: rgba(15,23,42,.07)}
.social img{width:18px; height:18px; opacity:.92}

.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:16px}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}

.hero{padding:46px 0 10px}
.hero h1{
  font-size: clamp(32px, 4vw, 46px);
  line-height:1.12;
  margin:0 0 10px;
  letter-spacing:-.02em;
}
.hero p{margin:0 0 18px; color:var(--muted); max-width:62ch}
.hero .cta{display:flex; gap:10px; flex-wrap:wrap}

.kpi{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.kpi .pill{
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.65);
  color:rgba(15,23,42,.72);
}

.col-7{grid-column: span 7}
.col-5{grid-column: span 5}
.col-6{grid-column: span 6}
.col-4{grid-column: span 4}
.col-3{grid-column: span 3}
.col-12{grid-column: span 12}

.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.65);
  color:rgba(15,23,42,.75);
}

.notice{border-left: 4px solid rgba(0,200,83,.95); padding:12px 12px; background: rgba(0,200,83,.08); color: rgba(11,15,13,.82); border-radius: 14px}

.gallery{display:grid; grid-template-columns: repeat(12, 1fr); gap:16px}
.work{
  grid-column: span 4;
  overflow:hidden;
  padding:0;
}
.work img{width:100%; height:220px; object-fit:cover}
.work .meta{padding:14px 16px}
.work .meta h3{margin:0 0 6px}
.work .meta p{margin:0; color:var(--muted); font-size:.95rem}

.team{display:grid; grid-template-columns: repeat(12, 1fr); gap:16px}
.member{
  grid-column: span 3;
  padding:0;
  overflow:hidden;
}
.member img{width:100%; height:220px; object-fit:cover}
.member .meta{padding:14px 16px}
.member .meta h4{margin:0 0 4px}
.member .meta p{margin:0; color:var(--muted); font-size:.95rem}

.form{display:grid; gap:12px}
.input{display:grid; gap:6px}
.input label{font-size:.92rem; color:rgba(15,23,42,.70)}
.input input, .input textarea, .input select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.75);
  color: var(--text);
  outline:none;
}
.input textarea{min-height:120px; resize:vertical}

.footer{
  padding:26px 0 40px;
  border-top:1px solid var(--line);
  color:rgba(15,23,42,.70);
}
.footer a{color:var(--text)}
.footer .cols{display:grid; grid-template-columns: 2fr 1fr 1fr; gap:16px}
.footer .cols .title{color:var(--text); font-weight:900; margin-bottom:10px}
.footer .cols a{display:block; padding:6px 0; color:rgba(15,23,42,.70)}
.footer .cols a:hover{color:var(--text)}

.mobile-only{display:none}
@media (max-width: 980px){
  .col-7,.col-5,.col-6,.col-4,.col-3{grid-column: span 12}
  .work{grid-column: span 12}
  .member{grid-column: span 12}
  .footer .cols{grid-template-columns: 1fr}
  .menu{display:none}
  .menu.open{display:flex; flex-direction:column; align-items:flex-start; gap:6px; padding:8px 0 14px}
  .mobile-only{display:inline-flex}
}


/* Top contact bar */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0 8px;
}
.topbar-left,.topbar-right{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.topbar-item{color: rgba(15,23,42,.72); font-size:.92rem}
.topbar-item:hover{color: var(--text)}
.topbar-link{color: rgba(15,23,42,.72); font-weight:700; font-size:.92rem; padding:6px 10px; border-radius:12px}
.topbar-link:hover{background: rgba(11,15,13,.05); color: var(--text)}
.topbar-btn{
  border:0;
  cursor:pointer;
  padding:8px 12px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(14,165,233,.98), rgba(34,197,94,.92));
  color:#05211b;
  font-weight:900;
}
@media (max-width: 980px){
  .topbar{padding-top:6px}
}

/* Floating Free Estimate button */
.fab{position: fixed; right: 16px; bottom: 16px; z-index: 60; border:0; cursor:pointer; padding:12px 14px; border-radius: 16px; background: var(--brand); color:#02150a; font-weight:950; box-shadow: 0 18px 40px rgba(11,15,13,.18)}
.fab:hover{transform: translateY(-1px)}
.fab:active{transform: translateY(0)}

/* Modal */
.modal{position:fixed; inset:0; z-index:80; display:none}
.modal.open{display:block}
.modal-backdrop{position:absolute; inset:0; background: rgba(11,15,13,.55)}
.modal-card{
  position: relative;
  max-width: 860px;
  margin: 7vh auto;
  background: var(--card);
  border:1px solid rgba(15,23,42,.12);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(2,6,23,.28);
  padding: 18px;
}
.modal-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.modal-title{font-weight:950; font-size: 1.2rem}
.modal-sub{color: var(--muted); font-size:.95rem; margin-top:2px}
.modal-x{
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.75);
  border-radius: 14px;
  padding: 8px 10px;
  cursor:pointer;
}
.form{margin-top:14px}
.form label{display:block; font-weight:750; color: rgba(15,23,42,.78)}
.form input,.form select,.form textarea{
  width:100%;
  margin-top:6px;
  padding: 11px 12px;
  border-radius: 14px;
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.8);
  font: inherit;
}
.form textarea{resize: vertical}
.form-row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.form-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
@media (max-width: 980px){
  .modal-card{margin: 9vh 16px; }
  .form-row{grid-template-columns: 1fr}
}

/* Branded social icons */
.social--brands .icon{width:34px; height:34px; border-radius:12px; display:grid; place-items:center; background: rgba(11,15,13,.04); border:1px solid rgba(11,15,13,.10); font-weight:950; color:rgba(11,15,13,.78)}
.social--brands .icon{width:34px; height:34px; border-radius:12px; display:grid; place-items:center; background: rgba(11,15,13,.04); border:1px solid rgba(11,15,13,.10); font-weight:950; color:rgba(11,15,13,.78)}
.social--brands .icon img{filter: none}
.social--brands .icon:hover img{filter: brightness(0) invert(1)}
.brand-yelp:hover{background:#D32323; border-color:#D32323}
.brand-google:hover{background:#4285F4; border-color:#4285F4}
.brand-facebook:hover{background:#1877F2; border-color:#1877F2}
.brand-youtube:hover{background:#FF0000; border-color:#FF0000}
.brand-houzz:hover{background:#4DBC15; border-color:#4DBC15}
.brand-nextdoor:hover{background:#8ED500; border-color:#8ED500}
.brand-angi:hover{background:#FF5A4F; border-color:#FF5A4F}
.brand-homeadvisor:hover{background:#376177; border-color:#376177}

/* Footer social column */
.footer-social .title{color: var(--text); font-weight:800; margin-bottom:10px}


/* === v8 polish (Light Pro) === */
:root{
  --shadow-soft: 0 18px 42px rgba(11,15,13,.10);
  --shadow-hover: 0 22px 54px rgba(11,15,13,.14);
  --brand: #00c853;
  --brand2:#00a94a;
  --bg-soft: rgba(0,200,83,.06);
}

body{
  background:
    radial-gradient(1100px 520px at 18% -20%, rgba(0,200,83,.12), transparent 55%),
    radial-gradient(900px 480px at 92% 0%, rgba(0,169,74,.10), transparent 58%),
    var(--bg);
}

.card{
  box-shadow: var(--shadow-soft);
}

.card:hover{
  box-shadow: var(--shadow-hover);
}

.section.alt{
  background: linear-gradient(180deg, rgba(0,200,83,.06), rgba(0,200,83,0));
  border-top: 1px solid rgba(11,15,13,.08);
  border-bottom: 1px solid rgba(11,15,13,.08);
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-card{
  padding:0;
  overflow:hidden;
  border:1px solid rgba(11,15,13,.12);
  background: rgba(255,255,255,.92);
}

.price-top{
  padding:16px 16px 12px;
  border-bottom: 1px solid rgba(11,15,13,.10);
  background:
    radial-gradient(520px 220px at 10% 0%, rgba(0,200,83,.22), transparent 60%),
    rgba(255,255,255,.92);
}

.price-name{ font-weight: 950; margin:0 0 6px; }
.price-amt{ font-weight: 1000; font-size: 28px; letter-spacing:-.02em; margin:0; }
.price-sub{ color: rgba(11,15,13,.70); margin:6px 0 0; font-size:.95rem; }

.price-body{ padding:14px 16px 16px; }
.price-list{ margin:0; padding-left: 18px; color: rgba(11,15,13,.70); }
.price-list li{ margin:6px 0; }

.chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(11,15,13,.12);
  background: rgba(255,255,255,.78);
  color: rgba(11,15,13,.76);
  font-weight: 850;
  font-size:.92rem;
}

.team-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.team-card{
  padding:0;
  overflow:hidden;
  border:1px solid rgba(11,15,13,.12);
  background: rgba(255,255,255,.92);
}

.team-card img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

.team-meta{
  padding: 12px 14px 14px;
}

.team-meta .name{ margin:0 0 2px; font-weight: 950; }
.team-meta .role{ margin:0; color: rgba(11,15,13,.70); font-size:.95rem; }

.footer .cols .title{
  letter-spacing:-.01em;
}

@media (max-width: 980px){
  .pricing{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
}

/* === v10 no-topbar adjustment === */
.header .nav{ padding-top: 10px; }

/* === v11 timeline / expectations === */
.timeline-grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.step{
  padding:0;
  overflow:hidden;
  border:1px solid rgba(11,15,13,.12);
  background: rgba(255,255,255,.92);
}
.step img{
  width:100%;
  height: 140px;
  object-fit: cover;
  display:block;
}
.step .meta{
  padding: 10px 12px 12px;
}
.step .meta .t{
  margin:0 0 6px;
  font-weight: 950;
  font-size: .95rem;
}
.step .meta .m{
  margin:0;
  color: rgba(11,15,13,.70);
  font-size: .9rem;
}
.meter{
  display:flex;
  gap:6px;
  align-items:center;
  flex-wrap:wrap;
  margin-top: 10px;
}
.meter .pill{
  font-weight: 900;
}
.pill.low{ background: rgba(0,200,83,.10); border-color: rgba(0,200,83,.25); color: rgba(11,15,13,.78); }
.pill.med{ background: rgba(255,193,7,.12); border-color: rgba(255,193,7,.28); color: rgba(11,15,13,.78); }
.pill.high{ background: rgba(255,0,0,.08); border-color: rgba(255,0,0,.18); color: rgba(11,15,13,.78); }

@media (max-width: 980px){
  .timeline-grid{ grid-template-columns: 1fr; }
  .step img{ height: 190px; }
}

/* === v13 dropdown navigation === */
.menu{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.dd{ position: relative; }
.dd-btn{ display:inline-flex; align-items:center; gap:8px; }
.dd-btn::after{
  content:"▾";
  font-size: .85em;
  opacity:.7;
}
.dd-menu{
  position:absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: 14px;
  border:1px solid rgba(11,15,13,.12);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 42px rgba(11,15,13,.12);
  display:none;
  z-index: 80;
}
.dd-menu a{
  display:block;
  padding:10px 10px;
  border-radius: 12px;
  color: rgba(11,15,13,.78);
}
.dd-menu a:hover{
  background: rgba(11,15,13,.06);
  color: rgba(11,15,13,.92);
}
.dd:hover .dd-menu{ display:block; }

body.theme-alt .dd-menu{
  background: rgba(255,255,255,.96);
  border-color: rgba(11,15,13,.14);
}

@media (max-width: 980px){
  .dd:hover .dd-menu{ display:none; }
  .dd.open .dd-menu{ display:block; position: static; min-width: 0; box-shadow:none; margin-top:6px; }
  .dd-menu{ padding: 6px; border-radius: 14px; }
  .dd-btn::after{ content:""; }
}

/* === v14 header rewrite: ensure dropdowns work with clean header === */
.dd{ position: relative; }
.dd-btn{ display:inline-flex; align-items:center; gap:8px; }
.dd-btn::after{ content:"▾"; font-size:.85em; opacity:.7; }
.dd-menu{
  position:absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  padding: 8px;
  border-radius: 14px;
  border:1px solid rgba(11,15,13,.12);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 42px rgba(11,15,13,.12);
  display:none;
  z-index: 90;
}
.dd-menu a{ display:block; padding:10px 10px; border-radius:12px; }
.dd-menu a:hover{ background: rgba(11,15,13,.06); }
.dd:hover .dd-menu{ display:block; }

@media (max-width: 980px){
  .dd:hover .dd-menu{ display:none; }
  .dd.open .dd-menu{ display:block; position: static; min-width: 0; box-shadow:none; margin-top:6px; }
  .dd-btn::after{ content:""; }
}

/* === v16 polish (Find Us, logo spin, mobile) === */
.brand .brand-text{ display:inline-block; }
@media (max-width:980px){
  .brand .brand-text{ display:none; } /* keep logo only on mobile */
}

/* Click/hover spin on logo */
.logo.spin, .logo:hover{ animation: eeSpin .8s ease-in-out; }
@keyframes eeSpin{ from{ transform: rotate(0deg);} to{ transform: rotate(360deg);} }

/* Find Us section */
.findus{
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(11,15,13,.10);
  background:
    radial-gradient(520px 220px at 10% 0%, rgba(0,200,83,.16), transparent 60%),
    radial-gradient(520px 220px at 95% 30%, rgba(0,169,74,.10), transparent 60%),
    rgba(255,255,255,.92);
}
.findus .title{ font-weight: 950; margin:0 0 10px; }
.findus .icons{ display:flex; flex-wrap:wrap; gap:10px; }
.findus .icons a{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid; place-items:center;
  border:1px solid rgba(11,15,13,.10);
  background: rgba(255,255,255,.90);
  box-shadow: 0 14px 28px rgba(11,15,13,.10);
  transition: transform .12s ease;
}
.findus .icons a:hover{ transform: translateY(-1px); }
.findus svg{ width:22px; height:22px; display:block; }
.findus img{ width:22px; height:22px; display:block; filter: brightness(0) invert(1); }

/* Colored brand icons (always colored) */
.icon svg{ width:18px; height:18px; }
.icon.brand-yelp{ background:#D32323; border-color:#D32323; color:#fff; }
.icon.brand-google{ background:#4285F4; border-color:#4285F4; color:#fff; }
.icon.brand-facebook{ background:#1877F2; border-color:#1877F2; color:#fff; }
.icon.brand-youtube{ background:#FF0000; border-color:#FF0000; color:#fff; }

/* Mobile header: tighten */
@media (max-width:980px){
  .actions{ gap:8px; }
  .social{ padding:6px 8px; }
  .icon{ width:32px; height:32px; border-radius:12px; }
  .btn{ padding:9px 12px; }
}

/* Move project plan to top spacing helper */
.plan-top{ margin-top: 18px; }

/* FindUs brand colors */
.findus .brand-yelp{ background:#D32323; border-color:#D32323; }
.findus .brand-google{ background:#4285F4; border-color:#4285F4; }
.findus .brand-facebook{ background:#1877F2; border-color:#1877F2; }
.findus .brand-youtube{ background:#FF0000; border-color:#FF0000; }
.findus .brand-nextdoor{ background:#8ED500; border-color:#8ED500; }
.findus .brand-angi{ background:#FF5A4F; border-color:#FF5A4F; }
.findus .brand-houzz{ background:#4DBC15; border-color:#4DBC15; }
.findus .icons a{ color:#fff; }
.findus .icons a:not(.brand-yelp):not(.brand-google):not(.brand-facebook):not(.brand-youtube):not(.brand-nextdoor):not(.brand-angi):not(.brand-houzz){ background: rgba(11,15,13,.84); border-color: rgba(11,15,13,.84); }

/* === v17 footer-fix + mobile plan slider === */

/* Header social icons always colored */
.icon.brand-yelp{ background:#D32323 !important; border-color:#D32323 !important; color:#fff !important; }
.icon.brand-google{ background:#4285F4 !important; border-color:#4285F4 !important; color:#fff !important; }
.icon.brand-facebook{ background:#1877F2 !important; border-color:#1877F2 !important; color:#fff !important; }
.icon.brand-youtube{ background:#FF0000 !important; border-color:#FF0000 !important; color:#fff !important; }

/* Footer Find Us */
.footer .social--brands{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.footer .social--brands a{
  width: 42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  transition: transform .12s ease;
}
.footer .social--brands a:hover{ transform: translateY(-1px); }
.footer .social--brands img, .footer .social--brands svg{ width:20px; height:20px; display:block; filter: brightness(0) invert(1); }

.footer .social--brands a.brand-yelp{ background:#D32323; border-color:#D32323; }
.footer .social--brands a.brand-google{ background:#4285F4; border-color:#4285F4; }
.footer .social--brands a.brand-facebook{ background:#1877F2; border-color:#1877F2; }
.footer .social--brands a.brand-youtube{ background:#FF0000; border-color:#FF0000; }
.footer .social--brands a.brand-nextdoor{ background:#8ED500; border-color:#8ED500; }
.footer .social--brands a.brand-angi{ background:#FF5A4F; border-color:#FF5A4F; }
.footer .social--brands a.brand-houzz{ background:#4DBC15; border-color:#4DBC15; }

/* Mobile: make plan photos bigger via horizontal scroll */
@media (max-width: 980px){
  .timeline-grid{
    display:grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }
  .timeline-grid::-webkit-scrollbar{ height: 8px; }
  .step{ scroll-snap-align: start; }
  .step img{ height: 220px; }
}


/* === v19 rabbit-style refresh === */
.cols-4{grid-template-columns:1.35fr 1fr 1fr 1.1fr !important}
.hero-wrap{padding-top:40px}
.hero-grid{align-items:start}
.eyebrow{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;border:1px solid rgba(11,15,13,.12);background:rgba(255,255,255,.78);font-size:.84rem;font-weight:900;letter-spacing:.02em;text-transform:uppercase;color:rgba(11,15,13,.72);margin-bottom:14px}
.hero-title{font-size:clamp(34px,4.6vw,58px);line-height:1.06;margin:0 0 14px;letter-spacing:-.03em;max-width:12ch}
.hero-copy{font-size:1.05rem;max-width:64ch;color:var(--muted);margin:0}
.cta-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.hero-panel{padding:0;overflow:hidden}
.hero-panel img{width:100%;height:320px;object-fit:cover}
.hero-panel-body{padding:18px}
.hero-panel h3{margin:0 0 8px}
.mini-list{display:grid;gap:8px;margin-top:14px}
.mini-list span{display:block;padding:10px 12px;border-radius:12px;background:rgba(11,15,13,.04);border:1px solid rgba(11,15,13,.08);font-weight:700;color:rgba(11,15,13,.72)}
.stat-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:18px}
.stat-card{padding:18px}
.stat-card strong{display:block;font-size:1rem;margin-bottom:6px}
.stat-card span{display:block;color:var(--muted)}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:18px;margin-bottom:18px}
.section-head h2{margin:6px 0 0;font-size:clamp(26px,3vw,38px);line-height:1.12;letter-spacing:-.02em;max-width:16ch}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.service-card,.work-card{padding:0;overflow:hidden;height:100%}
.service-card img,.work-card img{width:100%;height:220px;object-fit:cover}
.service-meta{padding:16px}
.service-meta h3{margin:0 0 8px;line-height:1.15}
.service-meta p{margin:0;color:var(--muted)}
.split-card{display:grid;grid-template-columns:1.35fr .95fr;gap:18px;align-items:start}
.split-card h2{font-size:clamp(26px,3vw,38px);line-height:1.12;letter-spacing:-.02em;margin:0 0 12px}
.inset-note{background:linear-gradient(180deg,rgba(0,200,83,.08),rgba(255,255,255,.96))}
.inset-note h3{margin-top:0}
.page-intro h1{margin:.2rem 0 .7rem;font-size:clamp(30px,3.4vw,46px);line-height:1.08;letter-spacing:-.02em}
.page-intro p{max-width:72ch}
.area-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.area-card h3{margin:0 0 8px;font-size:1.05rem}
.area-card p{margin:0;color:var(--muted)}
.related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.mini-related{display:grid;gap:8px;padding:16px;background:rgba(255,255,255,.94)}
.mini-related strong{line-height:1.2}
.mini-related span{color:var(--muted);font-size:.94rem}
.note-card h3{margin-top:0}
.faq-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.faq-card h3{margin:0 0 8px;line-height:1.25}
.faq-card p{margin:0}
.cta-band{display:flex;justify-content:space-between;align-items:center;gap:16px;background:linear-gradient(135deg,rgba(0,200,83,.10),rgba(255,255,255,.98));padding:22px}
.cta-band h2{margin:6px 0 0;max-width:18ch;font-size:clamp(26px,3vw,40px);line-height:1.08;letter-spacing:-.02em}
.compact-team .team-card img{height:150px}
@media (max-width:980px){
  .cols-4,.service-grid,.stat-strip,.area-grid,.related-grid,.faq-grid,.split-card{grid-template-columns:1fr !important}
  .cta-band,.section-head{display:block}
  .hero-title{max-width:none}
  .hero-panel img{height:240px}
}

/* === v20 header/nav repair === */
.header{overflow:visible}
.nav{gap:16px;flex-wrap:nowrap}
.brand{flex:0 0 auto}
.menu{
  display:flex;
  align-items:center;
  gap:4px;
  flex:1 1 auto;
  min-width:0;
  justify-content:center;
  flex-wrap:nowrap;
}
.menu a,
.dd-btn{
  padding:10px 12px;
  border-radius:12px;
  color:rgba(15,23,42,.74);
  background:transparent;
  border:0;
  font:inherit;
  cursor:pointer;
  white-space:nowrap;
}
.menu a.active,
.menu a:hover,
.dd-btn.active,
.dd-btn:hover,
.dd.open > .dd-btn,
.dd-btn[aria-expanded="true"]{
  color:var(--text);
  background:rgba(11,15,13,.05);
}
.actions{
  flex:0 0 auto;
  margin-left:auto;
  gap:8px;
}
.social{display:none !important}
.btn-call{
  min-height:44px;
  padding:10px 14px;
  font-weight:800;
}
.btn-call-label{display:none}
.menu-toggle{font-weight:800}
.fab{display:none !important}

.dd{position:relative}
.dd::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:14px;
}
.dd-btn::after{
  content:"▾";
  font-size:.82em;
  opacity:.72;
  margin-left:8px;
}
.dd-menu{
  top:calc(100% + 10px);
  left:0;
  min-width:280px;
  max-height:min(70vh, 560px);
  overflow:auto;
  padding:8px;
  border-radius:16px;
  border:1px solid rgba(11,15,13,.10);
  background:rgba(255,255,255,.98);
  box-shadow:0 24px 60px rgba(11,15,13,.16);
}
.dd-menu a{
  display:block;
  white-space:normal;
  line-height:1.3;
}
.dd.open .dd-menu,
.dd:focus-within .dd-menu,
.dd:hover .dd-menu{
  display:block;
}

@media (min-width: 981px){
  .mobile-only{display:none !important}
}

@media (max-width: 980px){
  .header{overflow:visible}
  .nav{
    flex-wrap:wrap;
    align-items:center;
    row-gap:10px;
  }
  .brand img{height:36px}
  .actions{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:8px;
  }
  .btn-call{
    padding:9px 12px;
    font-size:.95rem;
  }
  .btn-call [data-phone-text]{display:none}
  .btn-call-label{display:inline}
  .menu{
    display:none;
    order:3;
    width:100%;
    padding:12px;
    margin-top:2px;
    border:1px solid rgba(11,15,13,.10);
    border-radius:18px;
    background:rgba(255,255,255,.98);
    box-shadow:0 18px 44px rgba(11,15,13,.12);
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:4px;
  }
  .menu.open{display:flex}
  .menu a,
  .dd-btn{
    width:100%;
    text-align:left;
    justify-content:space-between;
    padding:12px 14px;
  }
  .dd{width:100%}
  .dd::after{display:none}
  .dd-btn::after{content:"＋"; margin-left:auto; font-size:1rem}
  .dd.open > .dd-btn::after{content:"−"}
  .dd-menu{
    position:static;
    min-width:0;
    max-height:none;
    margin-top:6px;
    box-shadow:none;
    border-radius:14px;
    background:rgba(11,15,13,.03);
  }
  .dd:hover .dd-menu{display:none}
  .dd.open .dd-menu{display:block}
}


/* Footer logo */
.footer-logo{ height:48px; width:auto; margin:0 0 10px; display:block; }
