
:root{
  --cream:#f5f2e9;
  --paper:#ffffff;
  --ink:#171a17;
  --muted:#5f655e;
  --forest:#173722;
  --forest-2:#102719;
  --gold:#e0ad49;
  --gold-dark:#c18d2f;
  --line:#ddd7ca;
  --shadow:0 18px 45px rgba(0,0,0,.12);
  --radius:20px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,Helvetica,sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,video{display:block;max-width:100%}
a{color:inherit}
.container{
  width:min(1180px,calc(100% - 40px));
  margin-inline:auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(0,0,0,.06);
  backdrop-filter:blur(12px);
}
.nav{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand img{
  width:155px;
  max-height:68px;
  object-fit:cover;
  object-position:center;
  border-radius:8px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:24px;
}
.nav-links a{
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  letter-spacing:.01em;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-size:15px;
  font-weight:800;
  letter-spacing:.005em;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.button:hover{transform:translateY(-1px)}
.button-dark{background:var(--forest-2);color:#fff}
.button-gold{
  background:var(--gold);
  color:#111;
  box-shadow:0 10px 24px rgba(0,0,0,.13);
}
.button-gold:hover{background:var(--gold-dark)}
.button-glass{
  color:#fff;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,255,255,.10);
}
.button-light{background:#fff;color:var(--forest-2)}
.full-button{width:100%}

.hero{
  min-height:760px;
  position:relative;
  display:flex;
  align-items:center;
  isolation:isolate;
  background:url("assets/hero.jpg") center 55%/cover no-repeat;
}
.hero-shade{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(90deg,rgba(6,15,9,.86) 0%,rgba(6,15,9,.70) 42%,rgba(6,15,9,.28) 100%),
    linear-gradient(0deg,rgba(6,15,9,.20),rgba(6,15,9,.05));
}
.hero-content{padding:100px 0}
.hero-card{
  width:min(735px,100%);
  color:#fff;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--forest);
  font-size:13px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.eyebrow.light{color:#f4d58d}
.hero h1{
  margin:0 0 20px;
  max-width:700px;
  font-size:clamp(46px,7vw,76px);
  line-height:1.00;
  letter-spacing:-.035em;
}
.hero-lead{
  margin:0;
  max-width:690px;
  font-size:20px;
  line-height:1.72;
  color:rgba(255,255,255,.94);
}
.hero-actions{
  margin-top:30px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.hero-proof{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-proof span{
  padding:9px 13px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(0,0,0,.16);
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}

.benefit-band{
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.benefit-grid>div{
  padding:25px 22px;
  border-right:1px solid var(--line);
}
.benefit-grid>div:last-child{border-right:0}
.benefit-grid strong{
  display:block;
  margin-bottom:3px;
  font-size:17px;
  line-height:1.25;
}
.benefit-grid span{
  color:var(--muted);
  font-size:14px;
}

.section{padding:92px 0}
.section-heading{
  max-width:780px;
  margin-bottom:38px;
}
.section-heading h2,
.dark-section h2,
.final-cta h2{
  margin:0 0 15px;
  font-size:clamp(34px,5vw,52px);
  line-height:1.08;
  letter-spacing:-.025em;
}
.section-heading>p:last-child{
  margin:0;
  font-size:18px;
  line-height:1.76;
  color:var(--muted);
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.service-card{
  padding:30px;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 6px 20px rgba(0,0,0,.04);
}
.card-number{
  display:block;
  margin-bottom:28px;
  color:var(--gold-dark);
  font-size:13px;
  font-weight:900;
  letter-spacing:.15em;
}
.service-card h3{
  margin:0 0 10px;
  font-size:25px;
  line-height:1.2;
}
.service-card p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.72;
}

.dark-section{
  background:var(--forest-2);
  color:#fff;
}
.difference-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:32px;
  align-items:center;
}
.large-copy{
  margin:0;
  font-size:18px;
  line-height:1.78;
  color:rgba(255,255,255,.88);
}
.dark-copy{color:var(--muted)}
.check-list{
  list-style:none;
  padding:0;
  margin:28px 0 32px;
  display:grid;
  gap:12px;
}
.check-list li{
  position:relative;
  padding-left:30px;
  color:rgba(255,255,255,.90);
  font-size:17px;
}
.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#f4d58d;
  font-weight:900;
}
.equipment-card{
  padding:34px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
}
.equipment-label{
  margin:0 0 8px;
  color:#f4d58d;
  font-size:12px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.16em;
}
.equipment-number{
  margin:0 0 14px;
  font-size:70px;
  font-weight:900;
  line-height:1;
}
.equipment-number span{
  margin-left:5px;
  font-size:24px;
}
.equipment-card h3{
  margin:0 0 10px;
  font-size:26px;
  line-height:1.25;
}
.equipment-card p:last-child{
  margin:0;
  color:rgba(255,255,255,.80);
  font-size:17px;
}

.process-section{background:#fff}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.process-grid article{
  padding:26px 22px;
  border-top:3px solid var(--gold);
  background:var(--cream);
}
.process-grid span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  margin-bottom:20px;
  border-radius:50%;
  background:var(--forest);
  color:#fff;
  font-weight:850;
}
.process-grid h3{
  margin:0 0 8px;
  font-size:21px;
}
.process-grid p{
  margin:0;
  color:var(--muted);
  font-size:15.5px;
}

.showcase{
  min-height:530px;
  position:relative;
  display:flex;
  align-items:flex-end;
  isolation:isolate;
  background:url("assets/hero.jpg") center 62%/cover no-repeat;
}
.showcase-shade{
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(0deg,rgba(6,15,9,.78),rgba(6,15,9,.08) 70%);
}
.showcase-inner{padding-bottom:52px}
.showcase-copy{
  max-width:690px;
  color:#fff;
}
.showcase-copy h2{
  margin:0 0 12px;
  font-size:clamp(34px,5vw,50px);
  line-height:1.08;
}
.showcase-copy p:last-child{
  margin:0;
  max-width:650px;
  font-size:18px;
  line-height:1.72;
  color:rgba(255,255,255,.91);
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:26px;
}
.project-card{
  margin:0;
  overflow:hidden;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--line);
}
.project-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.project-card figcaption{
  padding:12px 15px 14px;
  color:var(--muted);
  font-size:14px;
}
.video-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.video-card{
  overflow:hidden;
  border-radius:var(--radius);
  background:#111;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}
.video-card video{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}

.soft-section{background:#eee9de}
.area-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:34px;
  align-items:center;
}
.area-grid h2{
  margin:0 0 15px;
  font-size:clamp(34px,5vw,50px);
  line-height:1.08;
}
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:25px;
}
.tags span{
  padding:9px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-size:14px;
  font-weight:700;
}
.estimate-card{
  padding:32px;
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
}
.estimate-label{
  margin:0 0 8px;
  color:var(--forest);
  font-size:12px;
  font-weight:850;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.estimate-card h3{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.2;
}
.estimate-card p{
  margin:0 0 24px;
  color:var(--muted);
  font-size:17px;
}
.phone-link{
  display:block;
  margin-top:16px;
  text-align:center;
  font-size:22px;
  font-weight:850;
  text-decoration:none;
}

.google-section{background:#fff}
.online-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}
.online-grid h2{
  margin:0 0 12px;
  font-size:clamp(34px,5vw,48px);
}
.online-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:flex-end;
}

.faq-section{background:var(--cream)}
.faq-list{
  max-width:900px;
  display:grid;
  gap:12px;
}
.faq-list details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}
.faq-list summary{
  cursor:pointer;
  list-style:none;
  padding:20px 22px;
  font-size:17px;
  font-weight:800;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list p{
  margin:0;
  padding:0 22px 22px;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.final-cta{
  padding:70px 0;
  background:var(--forest);
  color:#fff;
}
.final-cta-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:center;
}
.final-cta h2{margin-bottom:8px}
.final-cta p:last-child{
  margin:0;
  color:rgba(255,255,255,.85);
  font-size:18px;
}
.final-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:14px;
}

.footer{
  padding:40px 0 100px;
  background:#0e1711;
  color:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:.6fr 1fr 1fr;
  gap:26px;
  align-items:start;
}
.footer-logo{
  width:145px;
  border-radius:8px;
}
.footer strong{
  display:block;
  margin-bottom:8px;
}
.footer p{
  margin:0 0 8px;
  color:rgba(255,255,255,.75);
}
.footer a{
  color:#f4d58d;
  text-decoration:none;
}

.mobile-actions{
  display:none;
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:120;
  grid-template-columns:1fr 1fr;
  box-shadow:0 -8px 24px rgba(0,0,0,.14);
}
.mobile-actions a{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  color:#111;
}
.mobile-actions a:first-child{background:var(--gold)}
.mobile-actions a:last-child{background:#fff}

@media(max-width:1020px){
  .nav-links{display:none}
  .benefit-grid{grid-template-columns:repeat(2,1fr)}
  .benefit-grid>div:nth-child(2){border-right:0}
  .benefit-grid>div:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .difference-grid,
  .area-grid,
  .online-grid,
  .final-cta-grid,
  .footer-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .online-actions,
  .final-actions{justify-content:flex-start}
}

@media(max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .nav{min-height:75px}
  .brand img{width:122px;max-height:56px}
  .header-button{display:none}

  .hero{min-height:690px;background-position:57% center}
  .hero-content{padding:78px 0}
  .hero h1{font-size:clamp(42px,13vw,62px)}
  .hero-lead{font-size:18px;line-height:1.66}
  .hero-actions{display:grid}
  .hero-actions .button{width:100%}

  .benefit-grid,
  .service-grid,
  .process-grid,
  .project-grid,
  .video-grid{grid-template-columns:1fr}
  .benefit-grid>div{
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .benefit-grid>div:last-child{border-bottom:0}

  .section{padding:72px 0}
  .showcase{min-height:470px;background-position:60% center}
  .equipment-number{font-size:60px}
  .mobile-actions{display:grid}
  .footer{padding-bottom:115px}
}
