/* ── Hero carousel (Swiper) ── */
.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
}

.hero-swiper .swiper-slide {
  height: auto;
}

.hero__slide.hero__slide--banner {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: 0;
  line-height: 0;
  gap: 0;
}

.hero__slide.hero__slide--banner img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 1774 / 887;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 80px 56px;
  min-height: 420px;
}

.hero__visual {
  position: relative;
  flex: 0 0 48%;
  max-width: 520px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__diamond {
  position: relative;
  z-index: 2;
  width: 72%;
  aspect-ratio: 1;
  transform: rotate(45deg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(12, 31, 63, 0.12);
}

.hero__diamond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-45deg) scale(1.42);
}

.hero__triangle {
  position: absolute;
  z-index: 1;
}

.hero__triangle--navy {
  bottom: 8%;
  left: 2%;
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 120px solid var(--color-navy);
}

.hero__triangle--light {
  top: 6%;
  left: 38%;
  width: 0;
  height: 0;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-bottom: 62px solid #7ec8e8;
}

.hero__triangle--coral {
  bottom: 4%;
  left: 28%;
  width: 0;
  height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-bottom: 150px solid #9d3b16;
  z-index: 3;
}

.hero__content {
  flex: 1;
  padding: 20px 0;
}

.hero__title {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero__title-main {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.5px;
}

.hero__title-accent {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: #9d3b16;
  margin-left: 60px;
  margin-top: -4px;
}

.hero__cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-navy);
  transition: color 0.2s;
}

.hero__cta:hover {
  color: #9d3b16;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(200, 210, 220, 0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.hero__arrow svg {
  width: 22px;
  height: 22px;
}

.hero__arrow:hover {
  background: rgba(160, 175, 190, 0.65);
}

.hero__arrow--prev { left: 16px; }
.hero__arrow--next { right: 16px; }

.hero__pagination {
  bottom: 20px !important;
}

.hero__pagination .swiper-pagination-bullet {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: #d0d5dc;
  opacity: 1;
  margin: 0 3px !important;
}

.hero__pagination .swiper-pagination-bullet-active {
  background: #4caf50;
}

/* ── Static hero banner (mid-page) ── */
.hero-banner {
  background: #fff;
  overflow: hidden;
  margin-bottom: 56px;
}

.hero-banner .hero__slide--banner img {
  aspect-ratio: auto;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.hero-banner .hero__slide:not(.hero__slide--banner) {
  min-height: 380px;
  padding: 32px 80px 40px;
}

@media (max-width: 900px) {
  .hero__slide:not(.hero__slide--banner) {
    flex-direction: column;
    padding: 32px 60px 52px;
    gap: 24px;
    text-align: center;
  }

  .hero__visual {
    flex: none;
    width: 100%;
    max-width: 360px;
  }

  .hero__title-accent {
    margin-left: 40px;
  }

  .hero__content {
    padding: 0;
  }

  .hero-banner .hero__slide:not(.hero__slide--banner) {
    padding: 32px 60px 40px;
  }
}

@media (max-width: 600px) {
  .hero__slide:not(.hero__slide--banner) {
    padding: 24px 48px 48px;
    min-height: 380px;
  }

  .hero-banner .hero__slide:not(.hero__slide--banner) {
    min-height: 340px;
    padding: 24px 48px 36px;
  }

  .hero__visual {
    max-width: 280px;
  }

  .hero__triangle--navy {
    border-left-width: 50px;
    border-right-width: 50px;
    border-bottom-width: 86px;
  }

  .hero__triangle--coral {
    border-left-width: 64px;
    border-right-width: 64px;
    border-bottom-width: 108px;
  }

  .hero__arrow {
    width: 36px;
    height: 36px;
  }

  .hero__arrow--prev { left: 8px; }
  .hero__arrow--next { right: 8px; }

  .hero__title-accent {
    margin-left: 24px;
  }
}

/* ── Promo scroll bar (below hero) ── */
.promo-scroll-bar {
  background: var(--color-navy-dark);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.promo-scroll-bar__inner {
  overflow: hidden;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 18px 0;
}

.promo-scroll-bar__inner .promo-marquee {
  width: 100%;
}

.promo-scroll-bar__inner .promo-marquee__group {
  font-size: 18px;
  line-height: 1.5;
  padding-right: 4rem;
}

.promo-scroll-bar__cta {
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.promo-scroll-bar__cta:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .promo-scroll-bar {
    font-size: 15px;
  }

  .promo-scroll-bar__inner {
    min-height: 52px;
    padding: 14px 0;
  }

  .promo-scroll-bar__inner .promo-marquee__group,
  .promo-scroll-bar__cta {
    font-size: 15px;
  }
}
