:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --soft:#f8fafc;
  --brand:#0f172a;
  --radius:16px;
  --shadow:0 10px 25px rgba(2,6,23,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.wrap{max-width:1040px;margin:0 auto;padding:0 18px}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--brand);
  background:var(--brand);
  color:#fff;
  font-weight:650;
  line-height:1.2;
}
.btn.secondary{background:transparent;color:var(--brand)}

/* Typography helpers */
.kicker{margin:0 0 10px;color:var(--muted);font-size:14px}
.small{font-size:13px;color:var(--muted)}
h1{margin:0 0 10px;font-size:40px;line-height:1.1}
h2{margin:0 0 10px;font-size:26px;line-height:1.2}
p{margin:0 0 14px;color:var(--muted)}
hr{border:none;border-top:1px solid var(--line);margin:18px 0}

/* Layout grids */
.grid{display:grid;gap:14px}
.grid.two{grid-template-columns:1.15fr .85fr}
.grid.three{grid-template-columns:repeat(3,1fr)}
.grid.four{grid-template-columns:repeat(4,1fr)}

@media (max-width:900px){
  .grid.two,.grid.three,.grid.four{grid-template-columns:1fr}
  h1{font-size:34px}
}

/* Cards / sections */
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
  padding:16px;
}
.section{padding:34px 0}
.soft{
  background:var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.bullets{margin:0;padding-left:18px;color:var(--muted)}

/* =========================
   Header (two-row)
   ========================= */
.topbar{
  border-bottom:1px solid var(--line);
  background:#fff;
  position:sticky;
  top:0;
  z-index:50;
}

/* Row 1 */
.navTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  gap:16px;
}

/* Logo */
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.siteLogo{
  height:38px;
  width:auto;
}
.brandTitle{
  font-weight:800;
  font-size:16px;
  letter-spacing:-0.3px;
  line-height:1.1;
}
.logoText{line-height:1.1}

/* Actions */
.topActions{
  display:flex;
  align-items:center;
  gap:12px;
}

.actionBtns{
  display:flex;
  gap:12px;
}
.phoneLink{
  font-weight:650;
  color:var(--text);
  white-space:nowrap;
}

/* Row 2 menu */
.navMenu{
  display:flex;
  justify-content:center;
  gap:32px;
  padding:12px 0 16px;
  border-top:1px solid var(--line);
}
.navMenu a{
  font-size:14px;
  color:var(--muted);
  padding:6px 14px;
  border-radius:8px;
  transition:background .2s ease,color .2s ease;
}
.navMenu a:hover{
  color:var(--text);
  background:#f1f5f9;
}

/* Hide menu row on smaller screens */
@media (max-width:900px){
  .navMenu{display:none}
}

/* Mobile header simplification:
   - keep only logo + phone + Book Appointment
   - hide Get a Quote
   - add breathing room
*/

@media (max-width:720px){

  /* Stack header vertically */
  .navTop{
    flex-direction:column;
    align-items:center;     /* CENTER everything */
    text-align:center;      /* Center text */
    gap:12px;
    padding:16px 0 12px;
  }

  /* Center logo block */
  .logo{
    flex-direction:column;
    align-items:center;
    gap:6px;
  }

  /* Center button container */
  .topActions{
    width:100%;
    display:flex;
    justify-content:center;
  }

  .actionBtns{
    display:flex;
    gap:10px;
    justify-content:center;
  }

  /* Optional: show only Get a Quote on mobile */
  .actionBtns a.btn.secondary{
    display:none;
  }

  /* Keep Quote visible */
  .actionBtns a.btn{
    display:inline-flex;
  }
}
/* =========================
   Hero
   ========================= */
.hero{padding:34px 0 22px}
.heroCard{
  border:1px solid var(--line);
  border-radius:calc(var(--radius) + 6px);
  box-shadow:var(--shadow);
  padding:22px;
  background:
    radial-gradient(1200px 420px at 15% 0%, rgba(15,23,42,.08), transparent),
    radial-gradient(900px 350px at 85% 25%, rgba(2,132,199,.10), transparent),
    #fff;
}

/* Hero image panel */
.heroMedia{
  border:1px solid var(--line);
  border-radius:calc(var(--radius) + 6px);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
}
.heroMedia img{
  width:100%;
  height:280px;
  object-fit:cover;
}
@media (max-width:900px){
  .heroMedia img{height:220px}
}
.heroMediaCaption{
  padding:12px 14px;
  font-size:13px;
  color:var(--muted);
  border-top:1px solid var(--line);
  background:rgba(248,250,252,.85);
}

/* =========================
   Service image cards
   ========================= */
.serviceCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow:none;
  display:block;
}
.serviceCard img{
  width:100%;
  height:220px; /* your preferred height */
  object-fit:cover;
}
.serviceCard .pad{padding:12px 14px}
.serviceCard .title{font-weight:750}
.serviceCard .desc{font-size:13px;color:var(--muted);margin-top:2px}

/* =========================
   Gallery strip
   ========================= */
.galleryStrip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.galleryStrip img{
  border-radius:14px;
  border:1px solid var(--line);
  height:120px;
  object-fit:cover;
  width:100%;
}
@media (max-width:900px){
  .galleryStrip{grid-template-columns:repeat(2,1fr)}
  .galleryStrip img{height:110px}
}

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid var(--line);
  font-size:13px;
  color:var(--muted);
}