/* UmzugsMeister Berlin — hero.css (BEM) */

.hero {
  padding: 56px 0 72px;
  background: var(--color-cream);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero__text {
  max-width: 620px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 90, 58, 0.10);
  color: var(--color-terracotta);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-terracotta);
  border-radius: 50%;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.08;
  color: var(--color-navy);
  margin: 0 0 20px;
  letter-spacing: -0.015em;
}
.hero__title em {
  font-style: italic;
  color: var(--color-terracotta);
}
.hero__number {
  display: block;
  color: var(--color-terracotta);
  font-style: italic;
}

.hero__lead {
  font-size: 18px;
  color: var(--color-muted);
  margin: 0 0 32px;
  max-width: 560px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--color-muted);
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust-item::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--color-success);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}

.hero__media {
  position: relative;
}
.hero__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__accent {
  position: absolute;
  left: -16px;
  bottom: -28px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
}
.hero__accent-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 4px;
}
.hero__accent-label {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.75);
  letter-spacing: 0.04em;
}

@media (min-width: 900px) {
  .hero { padding: 80px 0 112px; }
  .hero__grid {
    grid-template-columns: 55% 40%;
    gap: 5%;
  }
  .hero__accent {
    left: -36px;
    bottom: -36px;
    padding: 24px 32px;
    min-width: 240px;
  }
  .hero__accent-value { font-size: 40px; }
}

/* Small hero for inner pages */
.page-hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 56px 0 64px;
}
.page-hero__title {
  color: var(--color-white);
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
}
.page-hero__lead {
  color: rgba(250, 247, 242, 0.8);
  font-size: 18px;
  margin: 0;
  max-width: 720px;
}
.page-hero .breadcrumb { color: rgba(250, 247, 242, 0.7); padding: 0 0 16px; }
.page-hero .breadcrumb a { color: rgba(250, 247, 242, 0.8); }
.page-hero .breadcrumb a:hover { color: var(--color-white); }
.page-hero .breadcrumb li + li::before { color: rgba(250, 247, 242, 0.4); }
