@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* ── TOKENS ─────────────────────────────── */
:root{
  --bg:#111;--s1:#1a1a1a;--s2:#222;--s3:#2a2a2a;
  --bd:rgba(255,255,255,.08);--tx:#f2f2f2;--mu:#9a9a9a;
  --r:#cc2200;--rh:#e02800;--rg:rgba(204,34,0,.15);
  --w:#fff;
  --fh:'Oswald',sans-serif;--fb:'Open Sans',sans-serif;
}

/* ── RESET ──────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{background:var(--bg);color:var(--tx);font-family:var(--fb);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--fh);line-height:1.1;text-transform:uppercase;letter-spacing:.02em}
ul{list-style:none}
button{cursor:pointer}

/* ── TOP BAR ─────────────────────────────── */
.topbar{
  background:var(--r);
  padding:.4rem 1.5rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-family:var(--fh);
  font-size:.78rem;
  letter-spacing:.05em;
  gap:1rem;
}
.topbar-left{color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.topbar-right{display:flex;gap:1.5rem;flex-shrink:0}
.topbar-right a{
  color:#fff;
  display:flex;
  align-items:center;
  gap:.35rem;
  transition:opacity .2s;
  white-space:nowrap;
}
.topbar-right a:hover{opacity:.8}

/* ── NAV ─────────────────────────────────── */
#nav{
  position:sticky;
  top:0;
  z-index:800;
  background:var(--s1);
  border-bottom:3px solid var(--r);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 1.5rem;
  height:65px;
  gap:1rem;
}
.nav-logo{
  font-family:var(--fh);
  font-size:1.5rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--w);
  white-space:nowrap;
  flex-shrink:0;
}
.nav-logo strong{color:var(--r)}
.nav-phone{
  font-family:var(--fh);
  font-size:1rem;
  font-weight:600;
  color:var(--r);
  display:flex;
  align-items:center;
  gap:.4rem;
  letter-spacing:.03em;
  white-space:nowrap;
  transition:color .2s;
}
.nav-phone:hover{color:var(--rh)}
.hbg{
  background:none;
  border:none;
  padding:6px;
  display:flex;
  flex-direction:column;
  gap:5px;
  flex-shrink:0;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.hbg span{
  display:block;width:24px;height:2px;
  background:var(--tx);transition:.28s;transform-origin:center;
}
.hbg.open span:first-child{transform:translateY(7px) rotate(45deg)}
.hbg.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hbg.open span:last-child{transform:translateY(-7px) rotate(-45deg)}

/* ── MOBILE NAV OVERLAY ──────────────────── */
.nav-ov{
  position:fixed;
  inset:0;
  background:var(--s1);
  z-index:900;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:2rem 1.5rem;
  gap:0;
  transform:translateX(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y:auto;
}
.nav-ov.open{transform:none}
.nav-ov a{
  font-family:var(--fh);
  font-size:clamp(1.8rem,6vw,2.6rem);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--tx);
  border-bottom:1px solid var(--bd);
  padding:.6rem 0;
  transition:color .2s,padding-left .2s;
  -webkit-tap-highlight-color:transparent;
}
.nav-ov a:last-of-type{border-bottom:none}
.nav-ov a:hover,.nav-ov a.active,.nav-ov a:active{color:var(--r);padding-left:.4rem}
.nav-ov-phone{
  margin-top:2rem;
  font-family:var(--fh);
  font-size:1.3rem;
  color:var(--r) !important;
  display:flex;
  align-items:center;
  gap:.5rem;
  border-bottom:none !important;
  padding-left:0 !important;
}

/* ── BUTTONS ─────────────────────────────── */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  font-family:var(--fh);
  font-size:.9rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.75rem 1.6rem;
  border:2px solid transparent;
  transition:background .2s,color .2s,transform .15s,box-shadow .2s;
  white-space:nowrap;
  -webkit-tap-highlight-color:transparent;
  cursor:pointer;
}
.btn-red{background:var(--r);color:#fff;border-color:var(--r)}
.btn-red:hover{background:var(--rh);border-color:var(--rh);box-shadow:0 4px 16px rgba(204,34,0,.4)}
.btn-wht{background:#fff;color:var(--r);border-color:#fff}
.btn-wht:hover{background:#f0f0f0;border-color:#f0f0f0}
.btn-out{background:transparent;color:#fff;border-color:#fff}
.btn-out:hover{background:#fff;color:var(--r)}

/* ── HERO ─────────────────────────────────── */
.hero{
  position:relative;
  /* height calculated to fill viewport minus topbar(~33px) + nav(65px) = 98px */
  height:calc(100vh - 98px);
  min-height:480px;
  max-height:800px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.hero-img{position:absolute;inset:0}
.hero-img img{
  width:100%;height:100%;
  object-fit:cover;
  will-change:transform;
  transform:scale(1.04);
}
/* gradient overlays as separate elements for better control */
.hero-fade-top{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(0,0,0,.38) 55%,rgba(0,0,0,.12) 100%);
}
.hero-fade-left{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(90deg,rgba(0,0,0,.65) 0%,transparent 60%);
}
.hero-body{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:1.5rem 1.5rem 7rem; /* bottom padding leaves room for hero-strip */
}
.hero-label{
  display:inline-block;
  background:var(--r);
  color:#fff;
  font-family:var(--fh);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding:.3rem .85rem;
  margin-bottom:1rem;
}
.hero h1{
  font-size:clamp(2.2rem,6vw,5rem);
  color:#fff;
  margin-bottom:.7rem;
  text-shadow:0 2px 20px rgba(0,0,0,.5);
  font-weight:700;
  max-width:700px;
}
.hero h1 span{color:var(--r)}
.hero-sub{
  font-size:clamp(.88rem,1.8vw,1.05rem);
  color:rgba(255,255,255,.8);
  margin-bottom:1.8rem;
  max-width:480px;
  font-weight:300;
  line-height:1.65;
}
.hero-btns{display:flex;gap:.8rem;flex-wrap:wrap}

/* hero service strip - sits at bottom of hero */
.hero-strip{
  position:absolute;
  bottom:0;left:0;right:0;
  z-index:2;
  background:rgba(10,10,10,.82);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-top:3px solid var(--r);
  display:flex;
  overflow:hidden;
}
.hero-strip-item{
  flex:1;
  min-width:0;
  padding:.9rem 1rem;
  border-right:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  gap:.7rem;
}
.hero-strip-item:last-child{border-right:none}
.hsi-icon{font-size:1.3rem;flex-shrink:0;line-height:1}
.hsi-text{min-width:0}
.hsi-text strong{
  display:block;
  font-family:var(--fh);
  font-size:.85rem;
  font-weight:600;
  color:#fff;
  letter-spacing:.04em;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.hsi-text span{
  display:block;
  font-size:.7rem;
  color:rgba(255,255,255,.5);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* ── SECTION UTILITIES ──────────────────── */
.section{padding:4rem 1.5rem}
.wrap{max-width:1100px;margin:0 auto}
.wide{max-width:1280px;margin:0 auto}

.section-tag{
  display:inline-block;
  background:var(--r);
  color:#fff;
  font-family:var(--fh);
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding:.25rem .7rem;
  margin-bottom:.8rem;
}
.section-h{
  font-family:var(--fh);
  font-size:clamp(1.6rem,4vw,2.8rem);
  color:var(--tx);
  margin-bottom:.4rem;
  font-weight:700;
}
.section-sub{font-size:.93rem;color:var(--mu);max-width:560px;line-height:1.7}
.divider{width:44px;height:3px;background:var(--r);margin:.8rem 0 1.3rem}

/* ── SERVICE TILES ──────────────────────── */
.svc-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:3px;
  margin-top:2rem;
}
.svc-tile{
  position:relative;
  overflow:hidden;
  /* fixed height rather than aspect-ratio so mobile is predictable */
  height:320px;
  cursor:pointer;
  background:var(--s2);
}
.svc-tile img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s;
}
.svc-tile::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.9) 0%,rgba(0,0,0,.25) 60%,transparent 100%);
  transition:background .3s;
}
.svc-tile:hover img,.svc-tile:focus-within img{transform:scale(1.07)}
.svc-tile:hover::after,.svc-tile:focus-within::after{
  background:linear-gradient(to top,rgba(180,20,0,.92) 0%,rgba(0,0,0,.45) 70%,transparent 100%);
}
.svc-tile-body{
  position:absolute;bottom:0;left:0;right:0;
  padding:1.2rem;
  z-index:1;
}
.svc-tile-num{
  font-family:var(--fh);
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.18em;
  color:rgba(255,100,80,.9);
  margin-bottom:.3rem;
}
.svc-tile h3{
  font-family:var(--fh);
  font-size:1.3rem;
  font-weight:700;
  color:#fff;
  margin-bottom:.35rem;
}
/* description always visible on mobile, reveal on hover on desktop */
.svc-tile p{
  font-size:.8rem;
  color:rgba(255,255,255,.75);
  line-height:1.5;
  margin-bottom:.6rem;
}
.svc-tile-arrow{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-family:var(--fh);
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.6);
  transition:color .25s,gap .2s;
}
.svc-tile:hover .svc-tile-arrow,.svc-tile:focus-within .svc-tile-arrow{color:#fff;gap:.55rem}

/* ── PROJECT PHOTO STRIP ────────────────── */
.project-strip{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:3px;
}
.ps-cell{
  overflow:hidden;
  aspect-ratio:1/1;
  position:relative;
  background:var(--s2);
  cursor:pointer;
}
.ps-cell img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s;
  display:block;
}
.ps-cell:hover img{transform:scale(1.08)}
/* label shown on hover desktop, always visible on touch via :focus */
.ps-label{
  position:absolute;inset:0;
  background:rgba(204,34,0,.85);
  color:#fff;
  font-family:var(--fh);
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity .3s;
}
.ps-cell:hover .ps-label,.ps-cell:focus .ps-label{opacity:1}

/* ── ABOUT / WHY GRID ───────────────────── */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
}
.about-photo{
  position:relative;
  min-height:420px;
  overflow:hidden;
}
.about-photo img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
}
.about-stat-box{
  position:absolute;
  bottom:1.5rem;
  right:0; /* flush to edge — no negative value that bleeds */
  background:var(--r);
  padding:1.2rem 1.6rem;
  z-index:2;
}
.about-stat-box strong{
  display:block;
  font-family:var(--fh);
  font-size:2.5rem;
  font-weight:700;
  color:#fff;
  line-height:1;
}
.about-stat-box span{
  display:block;
  font-family:var(--fh);
  font-size:.7rem;
  color:rgba(255,255,255,.75);
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-top:.15rem;
}
.about-body{
  background:var(--s1);
  padding:3rem 2rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.why-list{display:flex;flex-direction:column;gap:.5rem;margin-top:1.5rem}
.why-item{
  display:flex;
  gap:.9rem;
  align-items:flex-start;
  padding:.9rem 1rem;
  border-left:3px solid transparent;
  background:var(--s2);
  transition:border-color .2s,background .2s;
}
.why-item:hover{border-color:var(--r);background:var(--s3)}
.wi-icon{font-size:1.1rem;flex-shrink:0;margin-top:.1rem;line-height:1}
.wi-body h4{
  font-family:var(--fh);
  font-size:.95rem;
  font-weight:600;
  color:var(--tx);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:.1rem;
}
.wi-body p{font-size:.82rem;color:var(--mu);line-height:1.55}

/* ── CTA BAND ───────────────────────────── */
.cta-band{background:var(--r);padding:3rem 1.5rem}
.cta-band-inner{
  max-width:1100px;margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  flex-wrap:wrap;
}
.cta-band h2{
  font-family:var(--fh);
  font-size:clamp(1.4rem,3.5vw,2.4rem);
  color:#fff;
  font-weight:700;
}
.cta-band p{color:rgba(255,255,255,.75);margin-top:.3rem;font-size:.9rem}
.cta-btns{display:flex;gap:.7rem;flex-wrap:wrap}

/* ── SERVICE DETAIL ROWS ────────────────── */
.svc-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-bottom:1px solid var(--bd);
}
.svc-rows-wrap .svc-row:first-child{border-top:1px solid var(--bd)}
.svc-photo{
  position:relative;
  min-height:380px;
  overflow:hidden;
  background:var(--s2);
}
.svc-photo img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s;
}
.svc-photo:hover img{transform:scale(1.03)}
.svc-copy{
  padding:2.5rem;
  background:var(--s1);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.svc-copy h2{font-size:clamp(1.6rem,3vw,2.4rem);margin-bottom:.7rem}
.svc-copy > p{font-size:.9rem;color:var(--mu);line-height:1.7;margin-bottom:1.2rem}
.svc-copy ul{display:flex;flex-direction:column;gap:.45rem;margin-bottom:1.8rem}
.svc-copy ul li{
  font-size:.88rem;color:var(--mu);
  display:flex;align-items:center;gap:.65rem;
}
.svc-copy ul li::before{
  content:'';
  width:7px;height:7px;
  background:var(--r);
  flex-shrink:0;
}
.thumb-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:3px;
  margin-bottom:1.8rem;
}
.thumb{overflow:hidden;aspect-ratio:4/3;background:var(--s2)}
.thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s;display:block}
.thumb:hover img{transform:scale(1.08)}

/* ── PLANT HIRE ─────────────────────────── */
.driver-banner{
  background:var(--r);
  padding:2rem;
  display:flex;
  align-items:flex-start;
  gap:1.5rem;
  margin-bottom:2.5rem;
}
.driver-banner-icon{font-size:2.8rem;flex-shrink:0;line-height:1;padding-top:.1rem}
.driver-banner h3{
  font-family:var(--fh);
  font-size:clamp(1.3rem,3vw,1.8rem);
  font-weight:700;
  color:#fff;
  margin-bottom:.3rem;
}
.driver-banner p{font-size:.88rem;color:rgba(255,255,255,.85);line-height:1.6}

.plant-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:3px;
}
.plant-card{background:var(--s1);overflow:hidden;transition:background .2s}
.plant-card:hover{background:var(--s2)}
.plant-thumb{height:200px;overflow:hidden}
.plant-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s;display:block}
.plant-card:hover .plant-thumb img{transform:scale(1.05)}
.plant-body{padding:1.5rem}
.plant-body h3{font-family:var(--fh);font-size:1.5rem;font-weight:700;color:var(--tx);margin-bottom:.4rem}
.plant-body p{font-size:.86rem;color:var(--mu);margin-bottom:.9rem;line-height:1.6}
.plant-tag{
  display:inline-block;
  background:var(--r);color:#fff;
  font-family:var(--fh);font-size:.63rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;
  padding:.2rem .65rem;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:3px;
  margin-top:2rem;
}
.step{
  background:var(--s1);
  padding:2rem 1.5rem;
  position:relative;
  overflow:hidden;
  transition:background .2s;
}
.step:hover{background:var(--s2)}
.step::before{
  content:'';
  position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--r);
  transform:scaleX(0);transform-origin:left;
  transition:transform .38s;
}
.step:hover::before{transform:scaleX(1)}
.step-n{
  font-family:var(--fh);font-size:3.5rem;font-weight:700;
  color:rgba(204,34,0,.18);line-height:1;margin-bottom:.5rem;
}
.step h4{
  font-family:var(--fh);font-size:1rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.05em;
  color:var(--tx);margin-bottom:.35rem;
}
.step p{font-size:.84rem;color:var(--mu);line-height:1.55}

/* ── PAGE HERO ──────────────────────────── */
.page-hero{
  position:relative;
  padding:5rem 1.5rem 3rem;
  overflow:hidden;
  background:var(--s1);
  border-bottom:3px solid var(--r);
}
.page-hero::before{
  content:'';
  position:absolute;top:0;right:0;bottom:0;width:45%;
  background:repeating-linear-gradient(
    -45deg,transparent,transparent 10px,
    rgba(204,34,0,.04) 10px,rgba(204,34,0,.04) 11px
  );
  pointer-events:none;
}
.page-hero-inner{max-width:1100px;margin:0 auto;position:relative;z-index:1}
.page-hero h1{
  font-size:clamp(2.4rem,7vw,5.5rem);
  font-weight:700;
  color:var(--tx);
  margin-top:.5rem;
}
.page-hero h1 span{color:var(--r)}
.page-hero p{font-size:.92rem;color:var(--mu);margin-top:.8rem;max-width:500px;line-height:1.65}

/* ── CONTACT ─────────────────────────────── */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.5fr;
  border:1px solid var(--bd);
  margin-top:2.5rem;
}
.contact-left{
  padding:2.5rem;
  background:var(--s1);
  border-right:1px solid var(--bd);
}
.contact-right{padding:2.5rem}
.c-item{
  display:flex;gap:.9rem;align-items:flex-start;
  padding:1rem 0;border-bottom:1px solid var(--bd);
}
.c-item:last-of-type{border-bottom:none;margin-bottom:1.2rem}
.c-icon{
  width:38px;height:38px;flex-shrink:0;
  background:var(--rg);border:1px solid rgba(204,34,0,.25);
  display:flex;align-items:center;justify-content:center;
  font-size:.95rem;
}
.c-label{
  font-family:var(--fh);font-size:.68rem;
  letter-spacing:.16em;text-transform:uppercase;
  color:var(--mu);margin-bottom:.15rem;font-weight:600;
}
.c-val{font-size:.95rem;color:var(--tx)}
.c-val a:hover{color:var(--r)}
.cta-box-dark{background:var(--r);padding:1.8rem;margin-top:1.5rem}
.cta-box-dark h3{
  font-family:var(--fh);font-size:1.5rem;font-weight:700;
  color:#fff;margin-bottom:.35rem;text-transform:uppercase;
}
.cta-box-dark p{font-size:.86rem;color:rgba(255,255,255,.82);margin-bottom:1.1rem}

.form{display:flex;flex-direction:column;gap:.85rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.85rem}
.fg{display:flex;flex-direction:column;gap:.3rem}
.fg label{
  font-family:var(--fh);font-size:.68rem;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--mu);font-weight:600;
}
.fg input,.fg select,.fg textarea{
  background:var(--s2);border:1px solid var(--bd);
  color:var(--tx);font-family:var(--fb);font-size:.9rem;
  padding:.7rem .95rem;outline:none;
  transition:border-color .2s;width:100%;
  -webkit-appearance:none;appearance:none;
  border-radius:0;
}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--r)}
.fg select{cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9a9a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .9rem center;padding-right:2.5rem}
.fg textarea{resize:vertical;min-height:108px}
.fg input::placeholder,.fg textarea::placeholder{color:var(--mu)}

/* ── LIGHTBOX ───────────────────────────── */
.lightbox{
  position:fixed;inset:0;
  background:rgba(0,0,0,.96);
  z-index:9100;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity .28s;
  padding:1rem;
}
.lightbox.open{opacity:1;pointer-events:all}
.lightbox img{max-width:90vw;max-height:78vh;object-fit:contain}
.lb-close{
  position:absolute;top:1rem;right:1rem;
  background:rgba(255,255,255,.1);border:none;
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:#fff;transition:background .2s;
  -webkit-tap-highlight-color:transparent;
}
.lb-close:hover{background:rgba(255,255,255,.2)}
.lb-close svg{width:22px;height:22px;stroke:currentColor;stroke-width:2;fill:none}
.lb-cap{
  font-family:var(--fh);font-size:.78rem;letter-spacing:.16em;
  text-transform:uppercase;color:rgba(255,255,255,.5);margin-top:.9rem;
}

/* ── SUCCESS OVERLAY ────────────────────── */
.success-ov{
  display:none;position:fixed;inset:0;
  background:rgba(0,0,0,.96);z-index:5000;
  flex-direction:column;align-items:center;justify-content:center;
  gap:1rem;text-align:center;padding:2rem;
}
.success-ov.show{display:flex}
.success-ov h2{font-family:var(--fh);font-size:2.5rem;color:var(--r)}
.success-ov p{color:var(--mu)}

/* ── FOOTER ─────────────────────────────── */
footer{background:var(--s1);border-top:3px solid var(--r)}
.foot-top{
  background:var(--r);
  padding:1rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.foot-top p{
  font-family:var(--fh);font-size:.9rem;font-weight:600;
  color:#fff;letter-spacing:.04em;text-transform:uppercase;
}
.foot-grid{
  max-width:1100px;margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:2rem;
  padding:3rem 1.5rem 2rem;
  border-bottom:1px solid var(--bd);
}
.foot-logo{
  font-family:var(--fh);font-size:1.6rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.06em;
  color:var(--w);margin-bottom:.6rem;
}
.foot-logo strong{color:var(--r)}
.foot-tag{font-size:.84rem;color:var(--mu);line-height:1.65;max-width:220px}
.foot-h{
  font-family:var(--fh);font-size:.7rem;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;color:var(--r);
  margin-bottom:.9rem;padding-bottom:.5rem;border-bottom:1px solid var(--bd);
}
.foot-links{display:flex;flex-direction:column;gap:.45rem}
.foot-links a{font-size:.84rem;color:var(--mu);transition:color .2s,padding-left .2s}
.foot-links a:hover{color:var(--r);padding-left:.25rem}
.foot-bottom{
  max-width:1100px;margin:0 auto;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:.4rem;
  padding:1rem 1.5rem;
  font-size:.76rem;color:var(--mu);
}

/* ── BACK TO TOP ─────────────────────────── */
.back-top{
  position:fixed;bottom:1.5rem;right:1.5rem;
  width:42px;height:42px;
  background:var(--r);border:none;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity .3s,transform .2s;z-index:500;
  -webkit-tap-highlight-color:transparent;
}
.back-top.on{opacity:1;pointer-events:all}
.back-top:hover{transform:translateY(-3px);background:var(--rh)}
.back-top svg{width:16px;height:16px;fill:#fff}

/* ── COOKIE ──────────────────────────────── */
.cookie{
  position:fixed;bottom:-120px;left:0;right:0;
  background:var(--s1);border-top:3px solid var(--r);
  padding:1rem 1.5rem;z-index:8000;
  transition:bottom .38s;
  display:flex;gap:1rem;align-items:center;flex-wrap:wrap;justify-content:center;
}
.cookie.show{bottom:0}
.cookie p{font-size:.8rem;color:var(--mu);flex:1;min-width:180px;max-width:580px}
.cookie-btns{display:flex;gap:.5rem;flex-shrink:0}
.ck-btn{
  font-family:var(--fh);font-size:.7rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  padding:.38rem .95rem;border:none;
  -webkit-tap-highlight-color:transparent;
}
.ck-yes{background:var(--r);color:#fff}
.ck-yes:hover{background:var(--rh)}
.ck-no{background:transparent;color:var(--mu);border:1px solid var(--bd)}
.ck-no:hover{color:var(--tx)}

/* ── SCROLL REVEAL ───────────────────────── */
.sr{opacity:0;transform:translateY(18px);transition:opacity .55s,transform .55s}
.sr.in{opacity:1;transform:none}
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.26s}

/* ── MEDIA QUERIES ───────────────────────── */

/* tablet */
@media(max-width:960px){
  .topbar-right{display:none}
  .hero{height:75vmax;min-height:420px;max-height:680px}
  .hero-strip{display:none}
  .hero-body{padding:1.5rem 1.5rem 3rem}
  .svc-grid{grid-template-columns:1fr 1fr;gap:3px}
  .svc-tile{height:260px}
  .project-strip{grid-template-columns:repeat(3,1fr)}
  .about-grid{grid-template-columns:1fr}
  .about-photo{min-height:300px}
  .about-stat-box{bottom:1rem;right:1rem}
  .svc-row{grid-template-columns:1fr}
  .svc-row.flip{direction:ltr}
  .svc-row .svc-photo{min-height:280px}
  .svc-copy{padding:2rem}
  .thumb-strip{grid-template-columns:repeat(4,1fr)}
  .plant-grid{grid-template-columns:1fr 1fr;gap:3px}
  .steps{grid-template-columns:1fr;gap:3px}
  .contact-grid{grid-template-columns:1fr}
  .contact-left{border-right:none;border-bottom:1px solid var(--bd)}
  .foot-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
  .cta-band-inner{flex-direction:column;align-items:flex-start;gap:1.2rem}
}

/* mobile */
@media(max-width:600px){
  .topbar{padding:.35rem 1rem;font-size:.72rem}
  #nav{height:58px;padding:0 1rem}
  .nav-logo{font-size:1.3rem}
  .nav-phone{font-size:.85rem}
  .hero{height:80svh;min-height:380px;max-height:600px}
  .hero h1{font-size:clamp(1.9rem,8vw,3rem)}
  .hero-body{padding:1rem 1rem 2.5rem}
  .hero-btns{gap:.6rem}
  .hero-btns .btn{padding:.65rem 1.2rem;font-size:.82rem}
  .svc-grid{grid-template-columns:1fr;gap:3px}
  .svc-tile{height:220px}
  .project-strip{grid-template-columns:1fr 1fr;gap:3px}
  .ps-label{opacity:.7} /* show labels on mobile always */
  .section{padding:3rem 1rem}
  .about-body{padding:2rem 1rem}
  .plant-grid{grid-template-columns:1fr;gap:3px}
  .thumb-strip{grid-template-columns:1fr 1fr}
  .form-row{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr;gap:1.5rem;padding:2rem 1rem 1.5rem}
  .foot-bottom{flex-direction:column;text-align:center;padding:.8rem 1rem}
  .foot-top{padding:.8rem 1rem}
  .foot-top p{font-size:.8rem}
  .cta-band{padding:2rem 1rem}
  .page-hero{padding:4rem 1rem 2.5rem}
  .contact-left,.contact-right{padding:1.5rem 1rem}
  .driver-banner{flex-direction:column;gap:1rem;padding:1.5rem}
  .driver-banner-icon{font-size:2.2rem}
  .back-top{bottom:1rem;right:1rem;width:38px;height:38px}
  .cta-btns{width:100%}
  .cta-btns .btn{flex:1;text-align:center}
}

/* very small screens */
@media(max-width:360px){
  .nav-phone{display:none} /* logo + hamburger only on tiny phones */
  .nav-logo{font-size:1.2rem}
}
