:root{
  --green:#245f35;
  --green-dark:#1f512e;
  --lime:#c9e56d;
  --lime-soft:#d4eb7e;
  --text:#343434;
  --soft:#f1f2f2;
  --white:#ffffff;
  --shadow:0 10px 24px rgba(0,0,0,.14);
  --radius:22px;
  --max:1280px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

[hidden]{
  display:none !important;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Montserrat",Arial,sans-serif;
  color:var(--text);
  background:var(--white);
  overflow-x:hidden;
}

img{
  max-width:100%;
}

button,
input,
textarea{
  font:inherit;
}

button,
a{
  -webkit-tap-highlight-color:transparent;
}

a{
  color:inherit;
}

.wrap{
  width:min(calc(100% - 48px),var(--max));
  margin-inline:auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header{
  height:124px;
  background:var(--white);
}

.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  flex-shrink:0;
}

.brand img{
  display:block;
  width:185px;
  max-height:96px;
  object-fit:contain;
}

.brand-placeholder{
  color:var(--green);
  font-size:22px;
  line-height:1.05;
  font-style:italic;
}

.brand-placeholder small,
.footer-brand small{
  display:block;
  margin-top:2px;
  font-size:9px;
  text-align:right;
  letter-spacing:.08em;
}

.price-lockup{
  margin-left:auto;
  text-align:right;
  color:var(--green);
  line-height:1;
}

.price-top{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  font-size:34px;
  font-weight:500;
}

.price-top strong{
  display:inline-grid;
  place-items:center;
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--green);
  color:var(--white);
  font-size:26px;
  font-weight:700;
}

.price-bottom{
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  gap:9px;
  margin-top:4px;
  font-size:42px;
  font-weight:800;
}

.price-bottom span{
  padding-bottom:3px;
  font-size:17px;
  font-weight:500;
}

/* =========================================================
   HERO
========================================================= */

.hero{
  position:relative;
  height:650px;
  overflow:hidden;
}

.hero > img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

.hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(16,31,31,.48) 0%,
    rgba(16,31,31,.24) 36%,
    rgba(16,31,31,.08) 58%,
    rgba(16,31,31,0) 78%
  );
  pointer-events:none;
}

.hero-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  padding-top:62px;
  color:var(--white);
}

.hero h1{
  margin:0 0 20px;
  font-size:42px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.025em;
}

.hero p{
  max-width:660px;
  margin:0 0 18px;
  font-size:15px;
  line-height:1.46;
  font-weight:400;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  min-height:42px;
  padding:11px 28px;
  border:0;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn:focus-visible{
  outline:3px solid rgba(36,95,53,.24);
  outline-offset:3px;
}

.btn-lime{
  background:var(--lime);
  color:var(--white);
}

.btn-lime:hover{
  background:#bdd958;
  box-shadow:0 8px 16px rgba(0,0,0,.12);
}

.btn-green{
  background:var(--green);
  color:var(--white);
}

.btn-green:hover{
  background:var(--green-dark);
  box-shadow:0 8px 16px rgba(0,0,0,.12);
}

/* =========================================================
   BENEFITS
========================================================= */

.benefits-wrap{
  position:relative;
  z-index:3;
  margin-top:-74px;
}

.benefits{
  max-width:930px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:46px;
}

.benefit{
  min-height:190px;
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:24px 22px;
  border-radius:8px;
  background:var(--white);
  box-shadow:var(--shadow);
}

.benefit .icon{
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:grid;
  place-items:center;
  border:3px solid var(--green);
  border-radius:50%;
  color:var(--green);
  font-size:18px;
  font-weight:800;
  line-height:1;
}

.benefit h2{
  margin:5px 0 8px;
  color:var(--green);
  font-size:14px;
  line-height:1.2;
  font-weight:800;
}

.benefit p{
  margin:0;
  font-size:11px;
  line-height:1.55;
}

/* =========================================================
   SECTIONS
========================================================= */

.section{
  padding:86px 0;
}

.feature-section{
  padding-top:92px;
}

.feature-grid{
  display:grid;
  grid-template-columns:44% 1fr;
  align-items:center;
  gap:42px;
}

.rounded{
  border-radius:10px;
}

.feature-image{
  width:100%;
  height:285px;
  display:block;
  object-fit:cover;
  object-position:center 63%;
}

.feature-copy{
  position:relative;
}

.feature-copy h2,
.panel h2,
.contact-section h2{
  margin:0 0 20px;
  color:var(--green);
  font-size:36px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.025em;
}

.feature-copy p,
.panel p,
.intro-text p{
  margin:0;
  font-size:14px;
  line-height:1.5;
}

.energy{
  position:absolute;
  top:-28px;
  right:0;
  padding:8px 10px;
  background:#2fb45d;
  color:var(--white);
  font-size:20px;
  font-weight:800;
  line-height:1;
  clip-path:polygon(18% 0,100% 0,100% 100%,0 100%,0 30%);
}

.energy sup{
  font-size:.55em;
  vertical-align:top;
}

/* =========================================================
   GALLERY
========================================================= */

.gallery-section{
  padding-top:10px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.gallery button,
.plans button{
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:none;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery button:focus-visible,
.plans button:focus-visible{
  outline:3px solid rgba(36,95,53,.3);
  outline-offset:4px;
}

.gallery img{
  width:100%;
  height:245px;
  display:block;
  object-fit:cover;
  transition:transform .3s ease;
}

.gallery button:hover img,
.plans button:hover img{
  transform:scale(1.015);
}

.intro-text{
  padding-top:10px;
  padding-bottom:56px;
}

/* =========================================================
   PANELS
========================================================= */

.panel{
  padding:36px 50px;
  border-radius:24px;
  box-shadow:0 12px 20px rgba(0,0,0,.16);
}

.panel-dark{
  background:var(--green);
  color:var(--white);
}

.panel-dark h2{
  color:var(--white);
}

.plans{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:28px;
}

.plans button{
  display:block;
  width:100%;
  padding:0;
  overflow:hidden;
  border:0;
  border-radius:7px;
  background:#fff;
  cursor:zoom-in;
}

.plans img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1.75 / 1;
  object-fit:contain;
  object-position:center;
  background:#fff;
}

.panel-lime{
  background:var(--lime);
}

.location-gallery{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:45px;
  margin:30px 55px 0;
}

.location-gallery img{
  width:100%;
  height:190px;
  display:block;
  object-fit:cover;
  border-radius:20px;
}

.center{
  margin-top:28px;
  text-align:center;
}

/* =========================================================
   CONTACTS
========================================================= */

.contact-section{
  padding:110px 0 70px;
}

.contact-grid{
  display:grid;
  grid-template-columns:58% 1fr;
  gap:52px;
  align-items:start;
}

.contact-section form{
  min-width:0;
}

.contact-section form > label{
  display:block;
  margin:25px 0 0;
  font-size:16px;
  font-weight:800;
  line-height:1.2;
}

.contact-section input,
.contact-section textarea{
  width:100%;
  display:block;
  margin-top:8px;
  border:1px solid transparent;
  border-radius:28px;
  background:var(--soft);
  color:#333;
  padding:17px 24px;
  font-size:16px;
  line-height:1.4;
  outline:none;
  transition:
    border-color .2s ease,
    background-color .2s ease,
    box-shadow .2s ease;
}

.contact-section input:focus,
.contact-section textarea:focus{
  border-color:rgba(36,95,53,.35);
  background:#fff;
  box-shadow:0 0 0 4px rgba(36,95,53,.08);
}

.contact-section textarea{
  height:220px;
  min-height:160px;
  resize:vertical;
}

.contact-section .consent{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-top:16px;
  font-size:11px;
  font-weight:500;
  line-height:1.45;
}

.contact-section .consent input{
  width:auto;
  flex:0 0 auto;
  margin:2px 0 0;
}

.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.contact-section button{
  margin-top:24px;
}

.form-status{
  min-height:20px;
  margin-top:16px;
  font-size:13px;
  line-height:1.45;
}

.form-status.is-success{
  color:var(--green);
}

.form-status.is-error{
  color:#a52a2a;
}

.contact-visual{
  padding-top:60px;
  text-align:center;
}

.contact-visual p{
  margin:0 0 28px;
  font-size:17px;
  line-height:1.25;
}

.contact-visual img{
  width:100%;
  height:500px;
  display:block;
  object-fit:cover;
  border-radius:30px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{
  background:var(--white);
}

.footer-inner{
  min-height:130px;
  display:grid;
  grid-template-columns:32% 43% 25%;
  align-items:end;
}

.footer-brand{
  align-self:stretch;
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 36px;
  border-radius:0 58px 0 0;
  background:var(--green);
  color:var(--white);
}

.footer-brand img{
  width:auto;
  max-width:170px;
  max-height:76px;
  object-fit:contain;
}

.footer-brand span{
  line-height:1.05;
}

.partners{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  padding:20px;
}

.partners div{
  text-align:center;
  font-size:8px;
  line-height:1.2;
}

.partners small{
  display:block;
  min-height:20px;
}

.partners img{
  display:block;
  width:auto;
  max-width:75px;
  max-height:42px;
  margin:7px auto 0;
  object-fit:contain;
}

.footer-contact{
  padding:20px 0;
  text-align:right;
  font-size:12px;
  line-height:1.5;
}

.footer-contact strong{
  display:block;
  margin-bottom:3px;
}

.footer-contact p{
  margin:0;
}

.footer-contact a{
  text-decoration:none;
}

.footer-contact a:hover{
  text-decoration:underline;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  padding:40px;
  background:rgba(0,0,0,.9);
}

.lightbox img{
  display:block;
  max-width:92vw;
  max-height:88vh;
  object-fit:contain;
}

.lightbox-close{
  position:absolute;
  top:12px;
  right:22px;
  padding:0;
  border:0;
  background:none;
  color:var(--white);
  font-size:46px;
  line-height:1;
  cursor:pointer;
}

.lightbox-close:focus-visible{
  outline:2px solid var(--white);
  outline-offset:3px;
}

body.lightbox-open{
  overflow:hidden;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:900px){

  .site-header{
    height:105px;
  }

  .brand img{
    width:155px;
  }

  .price-top{
    font-size:24px;
  }

  .price-top strong{
    width:42px;
    height:42px;
    font-size:21px;
  }

  .price-bottom{
    font-size:30px;
  }

  .price-bottom span{
    font-size:14px;
  }

  .hero{
    height:580px;
  }

  .hero-content{
    padding-top:48px;
  }

  .hero h1{
    font-size:36px;
  }

  .benefits{
    gap:18px;
  }

  .benefit{
    padding:20px 16px;
  }

  .feature-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .feature-grid{
    gap:30px;
  }

  .gallery img{
    height:190px;
  }

  .location-gallery{
    gap:18px;
    margin-inline:0;
  }

  .contact-visual{
    padding-top:0;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }

  .footer-brand{
    min-height:120px;
    border-radius:0 45px 0 0;
  }

  .partners{
    order:2;
  }

  .footer-contact{
    order:3;
    padding-inline:24px;
    text-align:center;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:640px){

  .wrap{
    width:min(calc(100% - 28px),var(--max));
  }

  .site-header{
    height:92px;
  }

  .header-inner{
    gap:12px;
  }

  .brand img{
    width:120px;
    max-height:72px;
  }

  .price-top{
    gap:5px;
    font-size:16px;
  }

  .price-top strong{
    width:32px;
    height:32px;
    font-size:16px;
  }

  .price-bottom{
    gap:5px;
    font-size:22px;
  }

  .price-bottom span{
    padding-bottom:2px;
    font-size:11px;
  }

  .hero{
    height:570px;
  }

  .hero > img{
    object-position:60% center;
  }

  .hero-shade{
    background:linear-gradient(
      90deg,
      rgba(20,37,36,.64) 0%,
      rgba(20,37,36,.38) 54%,
      rgba(20,37,36,.1) 100%
    );
  }

  .hero-content{
    padding-top:38px;
  }

  .hero h1{
    margin-bottom:16px;
    font-size:31px;
  }

  .hero p{
    max-width:92%;
    font-size:13px;
    line-height:1.45;
  }

  .benefits-wrap{
    margin-top:-36px;
  }

  .benefits{
    grid-template-columns:1fr;
    gap:14px;
  }

  .benefit{
    min-height:auto;
  }

  .section{
    padding:58px 0;
  }

  .feature-section{
    padding-top:64px;
  }

  .feature-grid{
    gap:25px;
  }

  .feature-image{
    height:230px;
  }

  .feature-copy h2,
  .panel h2,
  .contact-section h2{
    font-size:30px;
  }

  .energy{
    top:-18px;
    font-size:17px;
  }

  .gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }

  .gallery img{
    height:150px;
  }

  .panel{
    padding:28px 22px;
    border-radius:18px;
  }

  .plans{
    grid-template-columns:1fr;
  }

  .plans img{
    height:auto;
  }

  .location-gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .location-gallery img{
    height:150px;
    border-radius:14px;
  }

  .contact-section{
    padding-top:55px;
  }

  .contact-visual p{
    font-size:15px;
  }

  .contact-visual img{
    height:360px;
  }

  .partners{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .footer-brand{
    justify-content:center;
    text-align:center;
  }

  .footer-contact{
    padding-inline:15px;
  }

  .lightbox{
    padding:22px;
  }

  .lightbox-close{
    top:8px;
    right:14px;
    font-size:40px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}
