:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e2e8f0;
  --card:#ffffff;
  --shadow:0 12px 30px rgba(2,6,23,.08);
  --radius:18px;
  --brand:#16a34a;
  --brand2:#15803d;
  --chip:#f1f5f9;
  --max:1120px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--text);line-height:1.6}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.topbar{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.9);backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:10px;font-weight:800}
.logo{width:34px;height:34px;border-radius:10px;background:var(--brand)}
.navlinks{display:flex;gap:18px;align-items:center}
.navlinks a{font-weight:600;color:#334155}
.navlinks a.active{color:var(--brand)}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 14px;border-radius:999px;border:1px solid var(--line);background:#fff;font-weight:700}
.btn.primary{background:var(--brand);border-color:var(--brand);color:#fff}
.btn.primary:hover{background:var(--brand2);border-color:var(--brand2)}
.btn:hover{box-shadow:0 8px 18px rgba(2,6,23,.08)}
.hero{padding:48px 0 18px}
.kicker{display:inline-flex;gap:10px;align-items:center;background:var(--chip);border:1px solid var(--line);border-radius:999px;padding:8px 12px;color:#334155;font-weight:700;font-size:13px}
h1{margin:14px 0 8px;font-size:44px;line-height:1.1;letter-spacing:-.02em}
.lead{max-width:68ch;color:var(--muted);font-size:18px;margin:0}
.grid{display:grid;gap:16px}
.grid.cards{grid-template-columns:repeat(12,1fr);margin:24px 0 8px}
.card{grid-column:span 6;background:var(--card);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:18px}
.card h3{margin:0 0 6px;font-size:20px}
.card p{margin:0;color:var(--muted)}
.card .meta{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}
.pill{display:inline-flex;align-items:center;gap:8px;background:var(--chip);border:1px solid var(--line);border-radius:999px;padding:8px 12px;font-weight:700;font-size:13px;color:#334155}
.section{padding:10px 0 44px}
.section h2{margin:0 0 10px;font-size:28px}
.section p{margin:0;color:var(--muted)}
.split{display:grid;grid-template-columns:1.2fr .8fr;gap:16px;margin-top:18px}
.box{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:18px}
.list{margin:10px 0 0;padding-left:18px;color:#334155}
.list li{margin:6px 0}
.footer{margin-top:40px;border-top:1px solid var(--line);background:#fff}
.footer .inner{padding:26px 0;display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:18px}
.small{font-size:13px;color:var(--muted)}
.footer h4{margin:0 0 10px;font-size:14px;color:#0f172a}
.footer a{color:#334155;font-weight:600}
hr.sep{border:0;border-top:1px solid var(--line);margin:0}
.bottom{padding:14px 0;color:var(--muted);font-size:13px;display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.mobilebtn{display:none}
@media (max-width:900px){
  h1{font-size:34px}
  .card{grid-column:span 12}
  .split{grid-template-columns:1fr}
  .footer .inner{grid-template-columns:1fr}
}
@media (max-width:760px){
  .navlinks{display:none;position:absolute;left:18px;right:18px;top:64px;background:#fff;border:1px solid var(--line);border-radius:16px;padding:12px;box-shadow:var(--shadow);flex-direction:column;align-items:stretch}
  .navlinks a{padding:10px 12px;border-radius:12px}
  .navlinks a:hover{background:var(--chip)}
  .mobilebtn{display:inline-flex}
}
/* --- Star rating (Latest Reviews) --- */
.stars {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 6px 0 2px;
}

/* --- star ratings (Latest Reviews) --- */
.stars { display:inline-flex; gap:2px; font-size:14px; line-height:1; }
.stars .on { color:#f5b301; }
.stars .off { color:#cbd5e1; }

/* --- Latest Reviews cards polish --- */
#latest-reviews .card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#latest-reviews .card strong {
  font-size: 15px;
}

#latest-reviews .card p {
  line-height: 1.45;
}

/* clamp long reviews to 4 lines */
#latest-reviews .card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* subtle hover */
#latest-reviews .card:hover {
  transform: translateY(-1px);
  transition: transform 0.15s ease;
}

/* --- Home hero background image --- */
.hero { position: relative; overflow: hidden; }
.hero .hero-media { position:absolute; inset:0; z-index:0; }
.hero .hero-media img { width:100%; height:100%; object-fit:cover; filter: brightness(0.55); transform: scale(1.02); }
.hero .container { position:relative; z-index:1; }

/* --- Service cards with images --- */
.svc-img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:14px;
  display:block;
  margin:0 0 12px;
}

/* --- Home premium polish (hero + grids) --- */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(80% 60% at 20% 20%, rgba(0,0,0,.25), rgba(0,0,0,.60));
  z-index:0;
}
.hero-grid{ gap:22px; }

/* Make hero text more “big brand” */
.h1{ max-width: 22ch; }
.lead{ max-width: 60ch; }

/* Service cards hover / tap feel */
a.card.padded{ transition: transform .15s ease, box-shadow .15s ease; }
a.card.padded:hover{ transform: translateY(-2px); }

/* Responsive improvements */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr !important; }
  .hero .card.padded{ margin-top: 14px; }
  .svc-img{ height: 180px; }
}

@media (max-width: 520px){
  .h1{ font-size: 34px; line-height: 1.1; }
  .lead{ font-size: 16px; }
  .svc-img{ height: 160px; border-radius: 12px; }
}

/* --- Gallery (Before/After) --- */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .gallery-grid{ grid-template-columns: repeat(1, minmax(0, 1fr)); }
}
.g-item{
  border:1px solid #e5e7eb;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  padding:0;
  cursor:pointer;
  text-align:left;
  position:relative;
}
.g-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}
@media (max-width: 520px){
  .g-item img{ height:220px; }
}
.g-badge{
  position:absolute;
  left:10px;
  top:10px;
  background:rgba(17,24,39,0.82);
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}
.g-item:focus{
  outline:3px solid rgba(37,99,235,0.35);
  outline-offset:2px;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,0.82);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:18px;
}
.lightbox img{
  max-width:min(1100px, 92vw);
  max-height:78vh;
  border-radius:16px;
  background:#000;
}
.lb-cap{
  position:fixed;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  color:#fff;
  font-size:14px;
  opacity:0.9;
}
.lb-close{
  position:fixed;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.25);
  background:rgba(17,24,39,0.7);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
.lb-nav{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.25);
  background:rgba(17,24,39,0.7);
  color:#fff;
  font-size:30px;
  cursor:pointer;
}
.lb-prev{ left:14px; }
.lb-next{ right:14px; }

/* --- NAV + FOOTER injected by site.js --- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(15,23,42,.08); }
.nav { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px 0; }
.brand { display:flex; align-items:center; gap:10px; text-decoration:none; color: inherit; font-weight: 800; }
.logo { width:34px; height:34px; border-radius:10px; background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(59,130,246,.18)); border: 1px solid rgba(59,130,246,.25); display:inline-block; }
.navlinks { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.navlinks a { text-decoration:none; color: rgba(15,23,42,.82); font-weight: 600; padding:8px 10px; border-radius: 10px; }
.navlinks a:hover { background: rgba(59,130,246,.08); }
.navlinks a.active { background: rgba(59,130,246,.12); color: rgba(15,23,42,.95); }
.menu-btn { display:none; border:1px solid rgba(15,23,42,.14); background:#fff; border-radius:12px; padding:8px 10px; font-size:18px; line-height:1; }

@media (max-width: 760px){
  .menu-btn { display:inline-flex; align-items:center; justify-content:center; }
  .navlinks { width:100%; flex-direction:column; align-items:stretch; gap:8px; padding:10px; border:1px solid rgba(15,23,42,.10); border-radius:14px; background:#fff; box-shadow: 0 10px 30px rgba(2,6,23,.08); margin-top:10px; }
  .navlinks a { padding:10px 12px; }
}

/* Footer */
.site-footer { margin-top: 60px; padding: 34px 0; border-top: 1px solid rgba(15,23,42,.08); background: #fff; }
.footer-grid { display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 22px; }
.site-footer a { color: rgba(15,23,42,.82); text-decoration:none; }
.site-footer a:hover { text-decoration:underline; }

@media (max-width: 860px){
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================
   Homepage polish (2026-01)
   ========================== */

.hero.hero--photo{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(120deg, rgba(2,6,23,.78), rgba(2,6,23,.55)),
    url("/img/home/Hero.jpg") center/cover no-repeat;
}

.hero.hero--photo .lead { max-width: 58ch; }
.hero.hero--photo .badges { margin-top: 14px; }

.hero .hero-grid{
  gap: 22px;
  align-items: start;
}

@media (max-width: 860px){
  .hero.hero--photo{
    background:
      linear-gradient(120deg, rgba(2,6,23,.84), rgba(2,6,23,.62)),
      url("/img/home/Hero.jpg") center/cover no-repeat;
  }
}

.section.section--soft{
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.grid2{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
@media (max-width: 860px){
  .grid2{ grid-template-columns: 1fr; }
}

.trust-list{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 860px){
  .trust-list{ grid-template-columns: 1fr; }
}

.trust-item{
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 860px){
  .steps{ grid-template-columns: 1fr; }
}
.step{
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  background:#fff;
}
.step b{
  display:inline-flex;
  width: 28px; height: 28px;
  align-items:center; justify-content:center;
  border-radius: 999px;
  background:#0f172a;
  color:#fff;
  margin-right: 8px;
  font-size: 13px;
}

.cta-band{
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  background:
    linear-gradient(120deg, rgba(15,23,42,.9), rgba(15,23,42,.75)),
    url("/img/home/office-cleaning.jpg") center/cover no-repeat;
  color: #fff;
}
.cta-band .muted{ color: rgba(255,255,255,.85); }
.cta-band .btn{ border-color: rgba(255,255,255,.35); }
.cta-band .btn.primary{ border-color: transparent; }


/* ==========================
   Services card polish
   ========================== */

.grid3{
  gap: 14px;
}

.card.svc-card{
  padding: 0 !important;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card.svc-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,23,42,.10);
  border-color: #d1d5db;
}

.svc-media{
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0f172a;
}

.svc-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
}

.svc-body{
  padding: 14px 14px 16px;
}

.svc-body h3{
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
}

.svc-body .p{
  margin: 0 0 12px;
}

.svc-action{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  background: #fff;
}

.card.svc-card:hover .svc-action{
  border-color: #cbd5e1;
}

.svc-action:after{
  content: "→";
}

@media (max-width: 860px){
  .svc-media{ aspect-ratio: 16 / 11; }
}


/* ==========================
   Before/After preview
   ========================== */
.ba-card{
  padding: 14px !important;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}

.ba-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.ba-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ba-grid figure{
  margin:0;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid #e5e7eb;
  background:#fff;
}

.ba-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.ba-grid figcaption{
  padding:8px 10px;
  font-size: 13px;
  color:#334155;
  background:#f8fafc;
  border-top: 1px solid #e5e7eb;
  font-weight:600;
}

@media (max-width: 760px){
  .ba-grid{ grid-template-columns: 1fr; }
  .ba-grid img{ height: 240px; }
}


/* --- Before/After preview (homepage + gallery shared styles) --- */
.ba-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
@media (max-width: 960px){
  .ba-grid{ grid-template-columns: 1fr; }
}
.ba-card{
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.92);
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.ba-top{
  padding:14px 14px 10px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}
.ba-title{ font-weight:800; }
.ba-date{ font-size:13px; color: var(--muted); margin-top:2px; }

.ba-compare{
  position:relative;
  height:260px;
  background:#0b1220;
}
@media (max-width: 520px){
  .ba-compare{ height:220px; }
}
.ba-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.ba-after{
  clip-path: inset(0 50% 0 0);
}
.ba-range{
  position:absolute;
  left:10px;
  right:10px;
  bottom:10px;
  width:auto;
  z-index:5;
}
.ba-handle{
  position:absolute;
  top:0; bottom:0;
  width:2px;
  background: rgba(255,255,255,.9);
  left:50%;
  z-index:4;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}
.ba-label{
  position:absolute;
  top:10px;
  z-index:6;
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
  color:#fff;
  backdrop-filter: blur(6px);
}
.ba-label-before{ left:10px; }
.ba-label-after{ right:10px; }


/* --- Gallery polish (modal + cards) --- */
.ba-card{ padding:14px; cursor:pointer; }
.ba-card:focus{ outline: 2px solid rgba(37,99,235,.35); outline-offset: 3px; }
.ba-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px; }
.ba-title{ font-weight:800; }

.ba-modal{ position:fixed; inset:0; display:none; z-index:9999; }
.ba-modal[aria-hidden="false"]{ display:block; }
.ba-modal__backdrop{ position:absolute; inset:0; background:rgba(2,6,23,.72); }
.ba-modal__panel{
  position:relative;
  width:min(1050px, calc(100% - 24px));
  margin: 12px auto;
  background:#fff;
  border-radius:18px;
  box-shadow: 0 20px 60px rgba(2,6,23,.35);
  overflow:hidden;
}
.ba-modal__top{
  display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
  padding:14px 14px 10px;
  border-bottom:1px solid rgba(15,23,42,.10);
}
.ba-modal__title{ font-weight:900; font-size:18px; }
.ba-modal__body{ padding:14px; }
.ba-modal__cols{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.ba-modal__col{ background: rgba(2,6,23,.02); border:1px solid rgba(15,23,42,.10); border-radius:14px; padding:10px; }
.ba-modal__col img{ width:100%; height:auto; border-radius:12px; display:block; }

@media (max-width: 760px){
  .ba-modal__cols{ grid-template-columns: 1fr; }
}

/* --- About hero background --- */
.hero--about{
  background-image:
    linear-gradient(180deg, rgba(7,16,35,.62), rgba(7,16,35,.75)),
    url("/img/raw/about-optimized.jpg");
  background-size: cover;
  background-position: center;
}

/* --- Global spacing polish --- */
.section { padding: 44px 0; }
.section .h2 { margin-bottom: 10px; }
.p { line-height: 1.7; }
