:root{
  --header-h: 64px;
}

.pt-header{ padding-top: calc(var(--header-h) + 16px); }

.navbar .nav-link{
  font-size: .95rem;
  font-weight: 500;
}

.hero-slider{
  position: relative;
  height: clamp(360px, 62vh, 620px);
  overflow: hidden;
}
.hero-track{ height: 100%; }
.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .9s ease;
}
.hero-slide.is-active{ opacity: 1; transform: scale(1); }
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.25));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-title{
  color:white;
 
  display:inline-block;
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700;
}
.hero-subtitle{
  margin-top: .75rem;
  color: rgba(255,255,255,.9);
}
.hero-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:42px;
  height:42px;
  border-radius: 999px;
  border:0;
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  font-size: 28px;
  line-height: 42px;
}
.hero-prev{ left: 12px; }
.hero-next{ right: 12px; }

.section-title{
  font-weight: 700;
  letter-spacing: -0.2px;
}

.about-image-wrap.img-missing{
  background: #f3f4f6;
  min-height: 240px;
  border-radius: 1rem;
}

.product-hero{
  position: relative;
  background: #f5f6f8;
  overflow: hidden;
}
.product-bg-text{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(72px, 18vw, 220px);
  font-weight: 800;
  color: rgba(0,0,0,.06);
  white-space: nowrap;
  pointer-events:none;
}

.cta-tile{
  position: relative;
  min-height: 320px;
  border-radius: 1.25rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.cta-overlay{
  position:absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55));
  padding: 28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.cta-title{ color:#fff; font-weight:800; margin:0; }
.cta-subtitle{ color: rgba(255,255,255,.85); margin-top:.35rem; }

.map-section{ background:#fff; }
.map-wrap{
 
  border-radius: 1.25rem;
  padding: 22px;
}

.service-banner .service-bg{
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.service-overlay{
  min-height: 625px;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15));
  display:flex;
  align-items:center;
}
.service-content{ max-width: 520px; }

.media-thumb{
  width: 100%;
  padding-top: 75%;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}

.content-prose p{ color:#374151; line-height: 1.8; }

.footer-link{ color: rgba(255,255,255,.75); text-decoration: none; }
.footer-link:hover{ color: #fff; }
