/* ===== HERO SECTIONS ===== */
.hero {
  position: relative;
  padding: var(--space-10) 0;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 46, 46, 0.9), rgba(160, 184, 180, 0.7));
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 700px;
}

.hero__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--fs-4xl);
  }

  .hero__subtitle {
    font-size: var(--fs-lg);
  }
}

/* ===== PAGE HERO (shorter, for interior pages) ===== */
.page-hero {
  padding: var(--space-8) 0 var(--space-7);
  background: linear-gradient(135deg, var(--color-bg-dark), rgba(160, 184, 180, 0.85));
  color: var(--color-white);
  text-align: center;
}

.page-hero__title {
  font-size: var(--fs-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.page-hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-inline: auto;
}

.page-hero .breadcrumb {
  margin-bottom: var(--space-4);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-white);
}

.breadcrumb__separator {
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .page-hero__title {
    font-size: var(--fs-3xl);
  }
}
