.b-hero {
  position: relative;
  min-height: 640px;
  background: var(--color-navy-900);
  color: var(--color-text-on-dark);
  overflow: hidden;
}
.b-hero__slides { position: relative; }
.b-hero__slide {
  position: absolute; inset: 0;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: none;
}
.b-hero__slide.is-active { display: block; position: relative; }
.b-hero__overlay {
  position: absolute; inset: 0;
  background: rgba(15, 30, 61, 0.62);
}
.b-hero__content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 96px 24px 140px;
  max-width: 880px;
  margin: 0 auto;
}
.b-hero__title {
  color: var(--color-text-on-dark);
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 1.15;
  font-weight: 600;
  white-space: pre-line;
  margin-bottom: 8px;
}
.b-hero__subtitle {
  color: var(--color-text-on-dark);
  opacity: 0.85;
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 32px;
}
.b-hero__cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.b-hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  z-index: 2;
  color: var(--color-text-on-dark);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.b-hero__arrow:hover { background: rgba(255,255,255,0.1); }
.b-hero__arrow--prev { left: 24px; }
.b-hero__arrow--next { right: 24px; }
.b-hero__dots {
  position: absolute; bottom: 80px; left: 0; right: 0;
  display: flex; gap: 8px; justify-content: center;
  z-index: 2;
}
.b-hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: background var(--transition);
}
.b-hero__dot.is-active { background: var(--color-gold); }
.b-hero .ornament { color: var(--color-gold); }
.b-hero .ornament::before, .b-hero .ornament::after { background: var(--color-gold); }

@media (max-width: 768px) {
  .b-hero, .b-hero__slide { min-height: 520px; }
  .b-hero__title { font-size: 30px; }
  .b-hero__subtitle { font-size: 15px; }
  .b-hero__content { padding: 56px 16px 96px; }
  .b-hero__arrow { display: none; }
  .b-hero__dots { bottom: 48px; }
}
