/**
 * Elite BioDental — Service Hero Standard
 * Layout: 45/55 text + visual, ~80–85% viewport desktop, un paragraf + CTA + micro-trust.
 * Usage: <section class="service-hero service-hero--{slug}" style="--service-hero-bg: url('...');">
 * Mobile: service-hero__mobile-media + service-hero__overlay / __panel
 */

.service-hero {
  position: relative;
  min-height: clamp(680px, 82vh, 800px);
  display: flex;
  align-items: flex-start;
  padding: clamp(32px, 4vw, 48px) 0 clamp(14px, 2vw, 22px);
  background-color: #0a0528;
  background-size: cover;
  background-position: var(--service-hero-bg-pos, 60% bottom);
  background-repeat: no-repeat;
  background-image: var(--service-hero-bg, none);
  overflow: hidden;
}

.service-hero > * {
  position: relative;
  z-index: 2;
}

.service-hero .page-hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 48px;
  align-items: flex-start;
  text-align: left;
}

.service-hero .page-hero-content {
  max-width: min(100%, 35rem);
  padding-left: 24px;
}

.service-hero .page-hero-label {
  display: inline-block;
  color: var(--gold-light, #e8c97a);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-hero h1 {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(2.5rem, 3.5vw, 3.65rem);
  line-height: 1.08;
  max-width: 16ch;
  color: #fff;
  font-weight: 600;
  margin: 0 0 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.service-hero .hero-subtitle {
  display: block;
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  font-weight: 500;
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.service-hero .hero-intro {
  max-width: none;
  font-size: clamp(0.97rem, 1.02vw, 1.05rem);
  line-height: 1.58;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.service-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.service-hero .hero-actions a {
  height: 56px;
  min-height: 56px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
  margin: 0;
  border-radius: 10px;
  text-decoration: none;
}

.service-hero .hero-actions .btn-primary {
  background: #fff;
  color: #1a1464;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.service-hero .hero-actions .btn-primary:hover {
  background: #f6f7fa;
}

.service-hero .hero-actions .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  font-weight: 500;
  font-size: 0.875rem;
}

.service-hero .hero-actions .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.service-hero .hero-actions .hero-phone-label-mo {
  display: none;
}

.service-hero__micro-trust {
  margin: 0;
  max-width: 38ch;
  font-size: 0.76rem;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
}

.service-hero__overlay,
.service-hero__panel {
  display: contents;
}

.service-hero__mobile-media {
  display: none;
}

.service-hero--radiology {
  background-image: url("../images/hero-radiologie.webp");
  background-position: 60% bottom;
}

@media (min-width: 1536px) {
  .service-hero--radiology {
    background-position: 68% bottom;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .service-hero {
    min-height: clamp(660px, 80vh, 760px);
    padding-bottom: clamp(12px, 2vw, 20px);
  }
  .service-hero--radiology {
    background-position: 62% bottom;
  }
  .service-hero .page-hero-inner {
    grid-template-columns: 45fr 55fr;
  }
}

@media (min-width: 769px) {
  .service-hero .hero-subtitle-br {
    display: none;
  }
}
