@charset "UTF-8";

:root{
  --green:#064d36;
  --green2:#0a5d43;
  --orange:#f26a0a;
  --cream:#f7f4ec;
  --ink:#10271f;
  --white:#ffffff;
  --line:#dedbd2;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
}
a{color:inherit}
img{display:block;max-width:100%}

/* HEADER */
.top-header{
  background:#fff;
  border-bottom:1px solid #e9e6df;
}
.header-wrap{
  width:min(1180px,calc(100% - 34px));
  margin:0 auto;
  min-height:155px;
  display:grid;
  grid-template-columns:1fr auto 1fr 210px;
  align-items:center;
  gap:22px;
}
.brand{
  display:flex;
  justify-content:center;
  align-items:center;
}
.brand img{
  width:108px;
  height:auto;
}
.nav{
  display:flex;
  gap:34px;
  align-items:center;
}
.nav-left{justify-content:flex-end}
.nav-right{justify-content:flex-start}
.nav a{
  text-decoration:none;
  font-size:.87rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.nav a:hover{color:var(--orange)}
.header-contact{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
}
.mini-label{
  font-size:.75rem;
  color:#555;
}
.header-phone{
  font-size:1.06rem;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}
.header-estimate{
  margin-top:9px;
  width:160px;
  text-align:center;
  padding:13px 16px;
  color:#fff;
  background:var(--orange);
  border-radius:6px;
  text-decoration:none;
  font-size:.9rem;
  font-weight:900;
  text-transform:uppercase;
}

/* HERO */
.hero{
  position:relative;
  min-height:690px;
  overflow:hidden;
  background:
    url("../images/img_gallery_03.jpg") right center / cover no-repeat;
}
.hero-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.95) 31%,
      rgba(255,255,255,.76) 49%,
      rgba(255,255,255,.08) 74%,
      rgba(255,255,255,0) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  width:min(1180px,calc(100% - 34px));
  min-height:690px;
  margin:0 auto;
  display:flex;
  align-items:center;
}
.hero-copy{
  width:min(510px,100%);
  padding:55px 0;
}
.hero h1{
  color:var(--green);
  font-size:clamp(3rem,5.3vw,4.6rem);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.035em;
}
.script-line{
  margin-top:10px;
  color:var(--green);
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:clamp(3rem,5vw,4.6rem);
  line-height:1;
}
.orange-swoop{
  width:210px;
  height:4px;
  background:var(--orange);
  margin:14px 0 22px 58px;
  border-radius:50%;
  transform:rotate(-2deg);
}
.hero-text{
  max-width:470px;
  font-size:1.05rem;
  line-height:1.7;
  margin-bottom:28px;
}
.cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  width:380px;
  max-width:100%;
  text-decoration:none;
  border-radius:7px;
  font-size:1rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.cta-orange{
  background:var(--orange);
  color:#fff;
  margin-bottom:12px;
}
.cta-outline{
  background:#fff;
  border:2px solid var(--green);
  color:var(--green);
}
.hero-trust{
  margin-top:22px;
  font-size:.92rem;
  font-weight:800;
  text-transform:uppercase;
}

/* SERVICES */
.service-band{
  background:var(--cream);
  display:grid;
  grid-template-columns:repeat(5,1fr);
  padding:34px max(20px,calc((100vw - 1180px)/2));
}
.service-item{
  text-align:center;
  padding:10px 22px;
  border-right:1px solid #cfcac0;
}
.service-item:last-child{border-right:none}
.service-icon{
  font-size:2.4rem;
  color:var(--green);
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.service-item h3{
  color:var(--green);
  text-transform:uppercase;
  font-size:1.04rem;
  line-height:1.1;
  margin:6px 0 12px;
}
.service-item p{
  font-size:.83rem;
  line-height:1.5;
}

/* GALLERY */
.gallery-section{
  background:linear-gradient(180deg,#07523a,#034a34);
  color:#fff;
  padding:34px 24px 38px;
}
.gallery-title{
  width:min(1020px,100%);
  margin:0 auto 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}
.gallery-title span{
  width:70px;
  height:2px;
  background:var(--orange);
}
.gallery-title h2{
  text-transform:uppercase;
  font-size:1.18rem;
  letter-spacing:.02em;
}
.gallery-grid{
  width:min(1160px,100%);
  margin:0 auto 32px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:5px;
}
.gallery-grid img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.5);
}
.promo-card{
  width:min(1040px,100%);
  margin:0 auto;
  background:var(--cream);
  color:var(--ink);
  border-radius:18px;
  padding:28px 34px;
  display:grid;
  grid-template-columns:1fr 1px 1.25fr;
  align-items:center;
  gap:34px;
}
.discount{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:22px;
  align-items:center;
}
.discount-icon{
  width:104px;
  height:104px;
  border:3px solid var(--orange);
  color:var(--orange);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2.1rem;
  font-weight:900;
}
.discount-big{
  color:var(--green);
  font-size:2.8rem;
  font-weight:900;
  line-height:1;
}
.discount-title{
  margin-top:8px;
  text-transform:uppercase;
  font-weight:900;
  line-height:1.2;
}
.discount p{
  margin-top:12px;
  font-size:.9rem;
}
.divider{
  height:130px;
  background:#cbc7bd;
}
.choose-us h3{
  color:var(--green);
  text-transform:uppercase;
  font-size:1rem;
  margin-bottom:14px;
}
.choose-us ul{
  list-style:none;
  display:grid;
  gap:9px;
}
.choose-us li{
  font-size:.92rem;
}
.choose-us li::before{
  content:"✓";
  color:var(--green);
  font-weight:900;
  margin-right:12px;
}

/* ABOUT */
.about-strip{
  background:#fff;
  padding:50px 20px;
}
.about-card{
  width:min(850px,100%);
  margin:auto;
  text-align:center;
}
.about-card h2{
  color:var(--green);
  font-size:2rem;
  margin-bottom:12px;
}
.about-card p{
  line-height:1.7;
  color:#4a544f;
}

/* FOOTER */
.site-footer{
  background:#064b35;
  color:#fff;
  border-top:1px solid rgba(255,255,255,.25);
  padding:24px 22px 30px;
}
.footer-grid{
  width:min(1180px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr .8fr;
  gap:24px;
  align-items:start;
}
.footer-grid>div{
  padding-right:20px;
  border-right:1px solid rgba(255,255,255,.3);
}
.footer-grid>div:last-child{border-right:none}
.footer-grid h4{
  font-size:.9rem;
  text-transform:uppercase;
  margin-bottom:8px;
}
.footer-grid p{
  font-size:.82rem;
  line-height:1.5;
  color:rgba(255,255,255,.9);
}
.footer-grid a{
  color:#fff;
}

/* TABLET */
@media(max-width:1000px){
  .header-wrap{
    min-height:110px;
    grid-template-columns:auto 1fr auto;
  }
  .nav{display:none}
  .brand img{width:92px}
  .hero{min-height:630px}
  .hero-inner{min-height:630px}
  .service-band{grid-template-columns:repeat(3,1fr)}
  .service-item:nth-child(3){border-right:none}
  .service-item:nth-child(n+4){border-top:1px solid #cfcac0}
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
  .gallery-grid img:nth-child(n+4){display:none}
  .promo-card{grid-template-columns:1fr}
  .divider{display:none}
  .footer-grid{grid-template-columns:1fr 1fr}
}

/* MOBILE */
@media(max-width:650px){
  .header-wrap{
    min-height:96px;
    grid-template-columns:1fr auto;
  }
  .brand{justify-content:flex-start}
  .brand img{width:78px}
  .header-contact{align-items:flex-end}
  .mini-label{display:none}
  .header-phone{
    font-size:.83rem;
  }
  .header-estimate{
    width:150px;
    padding:12px 10px;
    font-size:.82rem;
  }

  .hero{
    min-height:690px;
    background-position:62% center;
  }
  .hero-shade{
    background:linear-gradient(180deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.95) 46%,
      rgba(255,255,255,.78) 68%,
      rgba(255,255,255,.22) 100%);
  }
  .hero-inner{
    min-height:690px;
    align-items:flex-start;
  }
  .hero-copy{
    padding:44px 0 30px;
    text-align:center;
    width:100%;
  }
  .hero h1{
    font-size:2.7rem;
  }
  .script-line{
    font-size:3rem;
  }
  .orange-swoop{
    margin:12px auto 20px;
    width:170px;
  }
  .hero-text{
    font-size:.98rem;
    margin-left:auto;
    margin-right:auto;
  }
  .cta{
    width:100%;
  }
  .hero-trust{
    font-size:.72rem;
  }

  .service-band{
    grid-template-columns:1fr 1fr;
    padding:24px 12px;
  }
  .service-item{
    border-right:none;
    border-bottom:1px solid #cfcac0;
    padding:18px 10px;
  }
  .service-item:last-child{
    grid-column:1/-1;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }
  .gallery-grid img:nth-child(n+3){display:none}

  .promo-card{
    padding:25px 20px;
  }
  .discount{
    grid-template-columns:82px 1fr;
  }
  .discount-icon{
    width:78px;height:78px;
  }
  .discount-big{
    font-size:2.2rem;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
  .footer-grid>div{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.25);
    padding:0 0 18px;
  }
  .footer-grid>div:last-child{border-bottom:none}
}
