 .button-row{
  display:flex;
  gap:.9rem;
  flex-wrap:wrap;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:.85rem 1.25rem;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  cursor:pointer;
}
.button:hover{ transform:translateY(-1px); }

.button--accent{
  background:var(--accent);
  color:#fff;
}
.button--accent:hover{ background:var(--accent-strong); }

.button--ghost{
  background:rgba(15,59,39,.04);
  color:var(--primary);
  border-color:rgba(15,59,39,.12);
}
.button--light{
  background:#fff;
  color:var(--primary);
}
.button--ghost-light{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.24);
}
.button--small{
  min-height:42px;
  padding:.7rem 1rem;
}

.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.5rem;
  box-shadow:var(--shadow);
}
.card--highlight{
  background:linear-gradient(180deg, #ffffff 0%, #f1f6f2 100%);
}
.card--note{
  background:#fff9f4;
  border-color:rgba(238, 123, 45, .2);
}

.list li + li{ margin-top:.55rem; }

.hero--background{
  position:relative;
  min-height:680px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero {
    position: relative;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay,
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(8, 24, 17, 0.72) 0%, rgba(8, 24, 17, 0.58) 34%, rgba(8, 24, 17, 0.28) 60%, rgba(8, 24, 17, 0.18) 100%);
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
}

.hero-copy--background{
  max-width:640px;
  padding:5.5rem 0;
  padding-left:3rem;
}

.hero-kicker{
  display:inline-block;
  margin-bottom:1rem;
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#ffd2b0;
}

.hero-copy--background h1{
  font-size:clamp(2.2rem, 4vw, 4rem);
  line-height:1.08;
  letter-spacing:-0.04em;
  color:#fff;
  margin-bottom:1.2rem;
  max-width:12ch;
}

.hero-copy--background p{
  font-size:1.08rem;
  line-height:1.75;
  color:rgba(255,255,255,.88);
  max-width:58ch;
  margin-bottom:1.8rem;
}

.hero-actions{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .hero--background{
    min-height:580px;
    background-position:center center;
  }

  .hero-copy--background{
    max-width:100%;
    padding:4.5rem 0;
    padding-left:1rem;
  }

  .hero-copy--background h1{
    max-width:none;
  }
}

@media (max-width: 640px){
  .hero--background{
    min-height:520px;
    background-position:center center;
  }

  .hero-overlay{
    background:
      linear-gradient(180deg, rgba(8, 24, 17, 0.72) 0%, rgba(8, 24, 17, 0.55) 45%, rgba(8, 24, 17, 0.42) 100%);
  }

  .hero-copy--background{
    padding:3.5rem 0 3rem;
    padding-left:.5rem;
  }

  .hero-copy--background h1{
    font-size:clamp(1.9rem, 8vw, 2.8rem);
    line-height:1.12;
  }

  .hero-copy--background p{
    font-size:1rem;
    line-height:1.65;
  }
}

.feature-list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:1rem;
}
.feature-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:1.2rem;
}
.reference-placeholder__box{
  min-height:260px;
  background:linear-gradient(135deg, rgba(15,59,39,.07), rgba(238,123,45,.1));
  border:2px dashed rgba(15,59,39,.18);
  border-radius:24px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:2rem;
  color:var(--text-soft);
}

.nav-cta{
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

.contact-grid > .card{
  height:100%;
}

.error-box{
  margin-bottom:1rem;
  padding:1rem;
  border-radius:14px;
  background:#fff4f4;
  color:#8a1f1f;
  border:1px solid rgba(138,31,31,.15);
}

.reference-gallery{
  display:grid;
  gap:1rem;
}

.reference-gallery--two{
  grid-template-columns:1fr 1fr;
}

.reference-gallery img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#fff;
}

.reference-text{
  margin-top:1rem;
}

.reference-slider{
  width:100%;
}

.reference-slider__top{
  display:flex;
  justify-content:flex-end;
  gap:.75rem;
  margin-bottom:1rem;
}

.reference-slider__button{
  width:48px;
  height:48px;
  border:none;
  border-radius:999px;
  background:var(--primary);
  color:#fff;
  font-size:1.5rem;
  font-weight:700;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow);
  transition:transform .18s ease, background .18s ease, opacity .18s ease;
}

.reference-slider__button:hover{
  transform:translateY(-1px);
  background:#145234;
}

.reference-slider__track{
  display:flex;
  gap:0;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  border-radius:24px;
  -ms-overflow-style:none;
  scrollbar-width:none;
}

.reference-slider__track::-webkit-scrollbar{
  display:none;
}

.reference-slide{
  flex:0 0 100%;
  min-width:100%;
  scroll-snap-align:start;
}

.reference-compare{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  overflow:hidden;
  border-radius:24px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  background:#fff;
}

.reference-compare img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}

.reference-compare img:first-child{
  border-right:1px solid rgba(255,255,255,.35);
}

@media (max-width: 768px){
  .reference-slider__top{
    display:none;
  }

  .reference-compare img{
    height:260px;
  }
}

@media (max-width: 560px){
  .reference-compare img{
    height:220px;
  }
}

.reference-slider__dots{
  display:flex;
  justify-content:center;
  gap:.6rem;
  margin-top:1rem;
}

.reference-slider__dot{
  width:10px;
  height:10px;
  border:none;
  border-radius:999px;
  background:rgba(15,59,39,.2);
  cursor:pointer;
  padding:0;
  transition:transform .18s ease, background .18s ease;
}

.reference-slider__dot:hover{
  transform:scale(1.08);
  background:rgba(15,59,39,.4);
}

.reference-slider__dot.is-active{
  background:var(--accent);
}

@media (max-width: 640px){
  .reference-gallery--two{
    grid-template-columns:1fr;
  }

  .reference-gallery img{
    height:220px;
  }
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.cta-box h2,
.cta-box p{ color:#fff; }

.page-hero{
  padding:3.25rem 0 2rem;
  background:linear-gradient(180deg, #f5f7f3 0%, #eef4ef 100%);
}
.service-block{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:1.4rem;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:1.6rem;
  box-shadow:var(--shadow);
}
.service-block__list{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:1rem;
}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
input, select, textarea{
  width:100%;
  border:1px solid rgba(15,59,39,.16);
  border-radius:14px;
  padding:.9rem 1rem;
  font:inherit;
  color:var(--text);
  background:#fff;
}
label{
  display:block;
  margin-bottom:.45rem;
  font-weight:600;
}
.form-check{
  display:flex;
  align-items:flex-start;
  gap:.7rem;
}
.form-check input{
  width:auto;
  margin-top:.25rem;
}
.success-box{
  margin-bottom:1rem;
  padding:1rem;
  border-radius:14px;
  background:#eef8f1;
  color:#1c5a38;
  border:1px solid rgba(28,90,56,.15);
}
.honeypot{
  position:absolute !important;
  left:-9999px !important;
}

.cookie-banner{
  position:fixed;
  inset:auto 1rem 1rem 1rem;
  z-index:999;
}
.cookie-banner__content{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:1.2rem;
  box-shadow:var(--shadow);
}
.cookie-banner__actions{
  display:flex;
  gap:.7rem;
  flex-wrap:wrap;
}
.consent-modal__backdrop{
  position:fixed;
  inset:0;
  background:rgba(10, 16, 12, .45);
}
.consent-modal__dialog{
  position:fixed;
  inset:50% auto auto 50%;
  transform:translate(-50%, -50%);
  width:min(560px, calc(100% - 2rem));
  background:#fff;
  border-radius:24px;
  padding:1.5rem;
  z-index:1001;
  box-shadow:var(--shadow);
}
.consent-option{
  display:flex;
  gap:.8rem;
  align-items:center;
  margin:1rem 0 1.25rem;
}

@media (max-width: 980px){
  .service-block{ grid-template-columns:1fr; }
}
@media (max-width: 640px){
  .feature-list,
  .form-grid,
  .cta-box{
    grid-template-columns:1fr;
    flex-direction:column;
    align-items:flex-start;
  }
  .cookie-banner__content{
    flex-direction:column;
    align-items:flex-start;
  }
}
