
:root{
  --black:#080b0e;
  --charcoal:#11161b;
  --green:#49c24f;
  --green-dark:#2d9d37;
  --blue:#0f5c96;
  --orange:#ff8a00;
  --white:#ffffff;
  --muted:#69727c;
  --light:#f5f7f9;
  --border:#e3e7eb;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:#182029;
  background:#fff;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,92%);margin:0 auto}
.topbar{background:#050708;color:#fff;font-size:.86rem;padding:9px 0}
.topbar-inner{display:flex;justify-content:space-between;gap:20px;align-items:center}
.topbar-links{display:flex;gap:10px;flex-wrap:wrap}
.navbar{position:sticky;top:0;z-index:100;background:rgba(8,11,14,.97);border-bottom:1px solid rgba(255,255,255,.08)}
.nav-inner{min-height:92px;display:flex;align-items:center;justify-content:space-between}
.brand img{width:330px;height:86px;object-fit:contain;object-position:left center}
.nav-links{display:flex;align-items:center;gap:26px;color:#fff;font-weight:600}
.nav-links>a:not(.btn):hover{color:var(--green)}
.menu-toggle{display:none;background:none;border:0;color:white;font-size:1.7rem}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 22px;border-radius:10px;font-weight:800;
  transition:.2s ease;border:1px solid transparent;cursor:pointer
}
.btn-primary{background:linear-gradient(135deg,var(--green),var(--green-dark));color:white;box-shadow:0 10px 25px rgba(55,180,70,.22)}
.btn-primary:hover{transform:translateY(-2px)}
.btn-outline{border-color:rgba(255,255,255,.6);color:white;background:rgba(255,255,255,.03)}
.hero{
  position:relative;min-height:660px;color:white;display:flex;align-items:center;
  background:
    linear-gradient(90deg,rgba(5,9,12,.96) 0%,rgba(5,9,12,.88) 44%,rgba(5,9,12,.28) 75%,rgba(5,9,12,.18) 100%),
    radial-gradient(circle at 78% 35%, rgba(15,92,150,.45), transparent 28%),
    linear-gradient(135deg,#101820,#263844);
  overflow:hidden
}
.hero-content{position:relative;z-index:2}
.hero-grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr);gap:44px;align-items:center;padding:72px 0}
.hero-copy{max-width:650px;padding:20px 0}
.hero-visual{position:relative;border-radius:28px;overflow:hidden;border:1px solid rgba(255,255,255,.16);box-shadow:0 30px 80px rgba(0,0,0,.38);min-height:520px}
.hero-visual img{width:100%;height:100%;min-height:520px;object-fit:cover;display:block}
.hero-visual:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(0,0,0,.32));pointer-events:none}
.hero-visual-label{position:absolute;right:22px;bottom:22px;z-index:2;display:grid;gap:8px;padding:18px 20px;border-radius:16px;background:rgba(6,10,13,.82);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.14);font-weight:800}
.hero-visual-label span{display:block;padding-left:14px;border-left:3px solid var(--green)}
.eyebrow{text-transform:uppercase;letter-spacing:.18em;font-size:.8rem;font-weight:800;margin:0 0 14px}
.orange{color:var(--orange)}
.center{text-align:center}
.hero h1{
  font-family:'Montserrat',sans-serif;font-size:clamp(3.2rem,7vw,6.2rem);
  line-height:.95;margin:0 0 22px;letter-spacing:-.045em
}
.hero h1 span{color:var(--green)}
.hero-text{font-size:1.08rem;line-height:1.75;color:#e2e7eb;max-width:600px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.trust-row{display:flex;gap:38px;flex-wrap:wrap;margin-top:38px;padding-top:25px;border-top:1px solid rgba(255,255,255,.13)}
.trust-row div{display:flex;flex-direction:column}
.trust-row span{font-size:.84rem;color:#b9c1c7;margin-top:4px}
.section{padding:88px 0}
.section-title{text-align:center;font-size:clamp(2rem,4vw,3rem);margin:0 0 10px;letter-spacing:-.03em}
.section-subtitle{max-width:760px;margin:0 auto 42px;text-align:center;color:var(--muted);line-height:1.7}
.services{
  background:
    radial-gradient(circle at 88% 8%,rgba(73,194,79,.08),transparent 25%),
    linear-gradient(180deg,#fff 0%,#f7f9fa 100%)
}
.services-heading{
  display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:end;margin-bottom:44px
}
.services-heading h2{
  max-width:700px;font-size:clamp(2.25rem,4.3vw,3.7rem);line-height:1.04;letter-spacing:-.045em;margin:0
}
.services-heading>p{color:var(--muted);line-height:1.8;margin:0 0 5px;max-width:620px}
.service-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.service-card{
  position:relative;border:1px solid var(--border);border-radius:20px;padding:26px;background:rgba(255,255,255,.94);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;min-height:300px;
  display:flex;flex-direction:column;overflow:hidden
}
.service-card:before{
  content:"";position:absolute;left:0;right:0;top:0;height:4px;background:linear-gradient(90deg,var(--green),var(--orange));
  transform:scaleX(0);transform-origin:left;transition:transform .22s ease
}
.service-card:hover{transform:translateY(-5px);box-shadow:0 20px 50px rgba(14,25,35,.10);border-color:#cbd5da}
.service-card:hover:before{transform:scaleX(1)}
.featured-service{background:linear-gradient(145deg,#071017,#0c1820);border-color:#152934;color:#fff}
.featured-service p{color:#c6d0d5!important}
.featured-service .service-kicker{color:#85db8a}
.featured-service .service-link{color:#fff}
.service-icon{
  width:54px;height:54px;border-radius:15px;display:grid;place-items:center;margin-bottom:26px;
  background:rgba(73,194,79,.10);color:var(--green)
}
.featured-service .service-icon{background:rgba(73,194,79,.14)}
.service-icon svg{width:30px;height:30px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.service-kicker{text-transform:uppercase;letter-spacing:.12em;font-size:.67rem;font-weight:800;color:#71808a}
.service-card h3{margin:8px 0 12px;font-size:1.18rem;line-height:1.25}
.service-card p{color:var(--muted);line-height:1.65;font-size:.92rem;margin:0 0 20px}
.service-link{
  margin-top:auto;font-size:.84rem;font-weight:800;color:#102733;display:inline-flex;align-items:center;gap:8px
}
.service-link span{color:var(--green);font-size:1.1rem;transition:transform .2s ease}
.service-link:hover span{transform:translateX(4px)}
.service-wide{
  grid-column:span 4;min-height:auto;display:grid;grid-template-columns:auto 1fr auto;gap:22px;align-items:center;padding:28px 30px
}
.service-wide .service-icon{margin:0}
.service-wide h3{margin-bottom:7px}
.service-wide p{margin:0;max-width:760px}
.btn-dark{background:#0b151b;color:#fff;border:1px solid #0b151b}
.btn-dark:hover{background:#14242d}
.service-wide-cta{white-space:nowrap}
.services-cta{
  margin-top:22px;background:#fff;border:1px solid var(--border);border-radius:18px;padding:22px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:28px;box-shadow:0 12px 30px rgba(14,25,35,.04)
}
.services-cta>div{display:flex;flex-direction:column;gap:5px}
.services-cta strong{font-size:1rem}
.services-cta span{color:var(--muted);font-size:.88rem}
.about{background:var(--charcoal);color:white}
.split{display:grid;grid-template-columns:1.05fr .95fr;gap:54px;align-items:center}
.about h2{font-size:clamp(2.2rem,5vw,4rem);line-height:1.03;margin:0 0 24px;letter-spacing:-.04em}
.about p{color:#d0d7dc;line-height:1.8}
.about-badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:28px}
.about-badges span{padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.08);font-size:.85rem}
.about-panel{background:#0d1216;border:1px solid rgba(255,255,255,.08);border-radius:20px;overflow:hidden}
.placeholder-photo{
  min-height:360px;display:grid;place-items:center;color:#dce6ec;font-weight:700;
  background:
    linear-gradient(135deg,rgba(15,92,150,.6),rgba(73,194,79,.25)),
    linear-gradient(45deg,#1f2b34,#3f5967)
}
.about-panel-note{padding:24px}
.about-panel-note strong{font-size:1.3rem}
.work{background:var(--light)}
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.gallery-card{
  min-height:250px;border-radius:16px;padding:22px;display:flex;align-items:flex-end;
  color:white;font-weight:800;
  background:
   linear-gradient(180deg,transparent,rgba(0,0,0,.7)),
   linear-gradient(135deg,#34657d,#12212b);
}
.gallery-card:nth-child(2){background:linear-gradient(180deg,transparent,rgba(0,0,0,.7)),linear-gradient(135deg,#718c98,#23343b)}
.gallery-card:nth-child(3){background:linear-gradient(180deg,transparent,rgba(0,0,0,.7)),linear-gradient(135deg,#557d6e,#23362f)}
.gallery-card:nth-child(4){background:linear-gradient(180deg,transparent,rgba(0,0,0,.7)),linear-gradient(135deg,#8e6d43,#2b2219)}
.service-area{padding:55px 0;color:white;background:linear-gradient(100deg,#073c67,#0d5b92)}
.service-area-inner{display:flex;justify-content:space-between;gap:28px;align-items:center}
.service-area h2{font-size:2.5rem;margin:0 0 8px}
.service-area p{margin:0;color:#d9e7ef;max-width:700px}
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:50px;align-items:start}
.contact h2{font-size:clamp(2.2rem,5vw,4rem);margin:0 0 15px}
.contact-list{display:grid;gap:12px;margin-top:28px}
.contact-list a{padding:16px 18px;border:1px solid var(--border);border-radius:12px;display:flex;flex-direction:column}
.contact-list span{font-size:.82rem;color:var(--muted);margin-top:4px}
.estimate-form{background:var(--light);padding:28px;border-radius:18px;border:1px solid var(--border)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
label{display:grid;gap:8px;font-weight:700;font-size:.9rem;margin-bottom:15px}
input,select,textarea{width:100%;padding:13px 14px;border:1px solid #cfd6dc;border-radius:10px;font:inherit;background:white}
textarea{resize:vertical}
.full{width:100%}
.form-note{font-size:.78rem;color:var(--muted);line-height:1.5}
.footer{background:#050708;color:#d4dbe0;padding:55px 0 22px}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:45px}
.footer-logo{width:320px;height:105px;object-fit:contain;object-position:left center;margin-bottom:15px}
.footer h3{color:white}
.footer p{line-height:1.6}
.copyright{border-top:1px solid rgba(255,255,255,.09);padding-top:20px;margin-top:30px;font-size:.8rem;color:#88939c}

@media (max-width: 1100px){
  .services-heading{grid-template-columns:1fr;gap:18px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .service-wide{grid-column:span 2}
}
@media (max-width: 900px){
  .topbar{display:none}
  .menu-toggle{display:block}
  .nav-links{
    display:none;position:absolute;left:0;right:0;top:92px;background:#090d10;
    padding:22px 4%;flex-direction:column;align-items:stretch;border-top:1px solid rgba(255,255,255,.08)
  }
  .nav-links.open{display:flex}
  .nav-cta{width:100%}
  .hero{min-height:600px}
  .hero-grid{grid-template-columns:1fr;padding:58px 0}
  .hero-visual{min-height:420px}
  .hero-visual img{min-height:420px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .split,.contact-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .service-area-inner{align-items:flex-start;flex-direction:column}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 600px){
  .brand img{width:245px;height:66px}
  .hero-grid{padding:44px 0}
  .hero-copy{padding:15px 0}
  .hero h1{font-size:3.2rem}
  .hero-visual{min-height:330px;border-radius:20px}
  .hero-visual img{min-height:330px}
  .hero-visual-label{right:14px;bottom:14px;padding:14px 16px;font-size:.84rem}
  .trust-row{gap:22px}
  .service-grid,.gallery,.form-row,.footer-grid{grid-template-columns:1fr}
  .service-wide{grid-column:span 1;grid-template-columns:1fr;align-items:start}
  .service-wide .service-icon{margin-bottom:4px}
  .services-cta{align-items:flex-start;flex-direction:column}
  .section{padding:68px 0}
}


.hidden-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.contact-preference{border:1px solid #cfd6dc;border-radius:10px;padding:14px 16px;margin:0 0 18px;background:white}
.contact-preference legend{font-weight:700;font-size:.9rem;padding:0 6px}
.contact-preference .choice{display:inline-flex;align-items:center;gap:7px;margin:7px 20px 4px 0;font-weight:600}
.contact-preference input[type="radio"]{width:auto;margin:0}


/* Hero spacing refinement */
.hero-grid{grid-template-columns:minmax(0,1.02fr) minmax(520px,.98fr);gap:54px}
.hero-copy{min-width:0}
.hero-copy h1{max-width:760px;font-size:clamp(4.6rem,6.5vw,7rem);line-height:.92}
.hero-visual{min-width:0}

/* Our Work */
.work{background:#071017;color:#fff}
.work-heading{
  display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:end;margin-bottom:42px
}
.work-heading h2{
  margin:0;max-width:760px;font-size:clamp(2.4rem,4.5vw,3.9rem);line-height:1.03;letter-spacing:-.045em
}
.work-heading-copy p{color:#b8c4ca;line-height:1.8;margin:0 0 13px;max-width:610px}
.text-link{display:inline-flex;align-items:center;gap:8px;color:#fff;font-weight:800}
.text-link span{color:var(--green);font-size:1.1rem}
.work-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.work-card{
  background:#0c171e;border:1px solid #1b2a33;border-radius:22px;overflow:hidden;
  display:grid;grid-template-columns:42% 58%;min-height:260px
}
.work-card-large{grid-column:span 2;grid-template-columns:54% 46%;min-height:360px}
.work-placeholder{
  position:relative;min-height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;
  background:
    linear-gradient(135deg,rgba(73,194,79,.12),rgba(255,159,28,.08)),
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.08),transparent 24%),
    #101c23;
  border-right:1px solid #1f3039
}
.work-placeholder:after{
  content:"";position:absolute;inset:18px;border:1px dashed rgba(255,255,255,.12);border-radius:16px;pointer-events:none
}
.work-placeholder-icon{
  width:68px;height:68px;border-radius:20px;display:grid;place-items:center;background:rgba(255,255,255,.06);
  color:var(--green)
}
.work-placeholder-icon svg{
  width:34px;height:34px;fill:none;stroke:currentColor;stroke-width:2.1;stroke-linecap:round;stroke-linejoin:round
}
.work-number{
  position:absolute;top:28px;left:30px;font-size:.76rem;letter-spacing:.15em;font-weight:800;color:#75858f
}
.work-coming{
  position:relative;z-index:1;font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:#91a1aa;font-weight:800
}
.work-card-copy{display:flex;flex-direction:column;justify-content:center;padding:34px}
.work-tag{color:#7bd57f;text-transform:uppercase;letter-spacing:.12em;font-size:.68rem;font-weight:800}
.work-card h3{font-size:1.45rem;margin:10px 0 10px}
.work-card p{margin:0;color:#aebbc2;line-height:1.7;font-size:.92rem}
.work-note{
  margin-top:22px;border:1px solid #1b2a33;border-radius:18px;padding:22px 24px;background:#0b151b;
  display:flex;align-items:center;justify-content:space-between;gap:28px
}
.work-note-label{display:block;color:#fff;font-weight:800;margin-bottom:5px}
.work-note p{margin:0;color:#9eacb4;line-height:1.6;font-size:.9rem}

@media (max-width: 1280px){
  .hero-grid{grid-template-columns:minmax(0,.92fr) minmax(500px,1.08fr);gap:38px}
  .hero-copy h1{font-size:clamp(4rem,6vw,5.8rem)}
}
@media (max-width: 1080px){
  .hero-grid{grid-template-columns:1fr;gap:32px}
  .hero-copy{max-width:780px}
  .hero-copy h1{font-size:clamp(3.8rem,8vw,6.2rem);max-width:760px}
  .hero-visual{max-width:850px}
  .work-heading{grid-template-columns:1fr;gap:18px}
}
@media (max-width: 760px){
  .hero-copy h1{font-size:clamp(3rem,15vw,4.4rem)}
  .work-grid{grid-template-columns:1fr}
  .work-card,.work-card-large{grid-column:span 1;grid-template-columns:1fr;min-height:auto}
  .work-placeholder{min-height:230px;border-right:0;border-bottom:1px solid #1f3039}
  .work-card-copy{padding:28px}
  .work-note{flex-direction:column;align-items:flex-start}
}


/* VERSION 9 HERO FIX — prevent headline clipping/overlap */
.hero{
  overflow:hidden;
}
.hero-grid{
  grid-template-columns:minmax(0,1.18fr) minmax(460px,.82fr);
  gap:42px;
  align-items:center;
}
.hero-copy{
  min-width:0;
  position:relative;
  z-index:2;
}
.hero-copy h1{
  max-width:680px;
  font-size:clamp(4.2rem,5.6vw,6.1rem);
  line-height:.93;
  letter-spacing:-.055em;
  overflow:visible;
}
.hero-visual{
  min-width:0;
  position:relative;
  z-index:1;
}
@media (max-width: 1350px){
  .hero-grid{
    grid-template-columns:minmax(0,1.14fr) minmax(430px,.86fr);
    gap:32px;
  }
  .hero-copy h1{
    max-width:640px;
    font-size:clamp(3.9rem,5.2vw,5.4rem);
  }
}
@media (max-width: 1180px){
  .hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }
  .hero-copy{
    max-width:760px;
  }
  .hero-copy h1{
    max-width:760px;
    font-size:clamp(3.8rem,7.6vw,5.8rem);
  }
  .hero-visual{
    width:100%;
    max-width:900px;
  }
}
@media (max-width: 760px){
  .hero-copy h1{
    font-size:clamp(2.8rem,14vw,4.2rem);
    line-height:.95;
  }
}

/* VERSION 10 — About + trust */
.about{background:#fff}
.about-grid{display:grid;grid-template-columns:1.03fr .97fr;gap:72px;align-items:center}
.about-copy h2{font-size:clamp(2.6rem,4.7vw,4.2rem);line-height:1.02;letter-spacing:-.05em;margin:0 0 24px;max-width:700px}
.about-copy>p{color:var(--muted);line-height:1.8;max-width:720px}
.about-copy .about-lead{font-size:1.08rem;color:#273943}
.about-actions{display:flex;align-items:center;gap:22px;flex-wrap:wrap;margin-top:28px}
.about-phone{font-weight:800;color:#102733}
.trust-panel{background:linear-gradient(145deg,#071017,#0e1b23);border-radius:24px;padding:34px;color:#fff;box-shadow:0 24px 60px rgba(10,24,32,.14)}
.eyebrow.green{color:#76d77c}
.trust-list{display:grid;gap:0;margin-top:12px}
.trust-item{display:grid;grid-template-columns:48px 1fr;gap:17px;padding:21px 0;border-bottom:1px solid rgba(255,255,255,.10)}
.trust-item:last-child{border-bottom:0}
.trust-icon{width:42px;height:42px;border-radius:13px;background:rgba(73,194,79,.12);display:grid;place-items:center;color:#76d77c;font-weight:800;font-size:.76rem}
.trust-item strong{display:block;margin:1px 0 6px;font-size:1rem}
.trust-item p{margin:0;color:#b9c5cb;line-height:1.6;font-size:.88rem}
.trust-strip{display:grid;grid-template-columns:repeat(4,1fr);margin-top:54px;border:1px solid var(--border);border-radius:20px;overflow:hidden;background:#f8fafb}
.trust-strip>div{padding:23px 25px;border-right:1px solid var(--border)}
.trust-strip>div:last-child{border-right:0}
.trust-strip strong{display:block;font-size:1.05rem;color:#102733;margin-bottom:4px}
.trust-strip span{font-size:.82rem;color:var(--muted)}
.reviews-coming{margin-top:24px;padding:30px 32px;border:1px solid var(--border);border-radius:20px;display:flex;align-items:center;justify-content:space-between;gap:30px;background:#fff}
.reviews-coming h3{font-size:1.55rem;margin:3px 0 7px}
.reviews-coming p:not(.eyebrow){margin:0;color:var(--muted);line-height:1.6;max-width:720px}
.btn-outline-dark{border:1px solid #1d303a;color:#102733;background:#fff;white-space:nowrap}
.btn-outline-dark:hover{background:#f4f7f8}
@media (max-width: 980px){
  .about-grid{grid-template-columns:1fr;gap:38px}
  .trust-strip{grid-template-columns:repeat(2,1fr)}
  .trust-strip>div:nth-child(2){border-right:0}
  .trust-strip>div:nth-child(-n+2){border-bottom:1px solid var(--border)}
}
@media (max-width: 620px){
  .trust-panel{padding:25px}
  .trust-strip{grid-template-columns:1fr}
  .trust-strip>div{border-right:0;border-bottom:1px solid var(--border)!important}
  .trust-strip>div:last-child{border-bottom:0!important}
  .reviews-coming{align-items:flex-start;flex-direction:column;padding:25px}
}
