.franklin-hero {
  --franklin-green: #1f5a3b;
  --franklin-green-dark: #123a28;
  --franklin-gold: #d7a84a;
  position: relative;
  overflow: hidden;
  background: #14261d;
}

.franklin-hero .carousel-item {
  position: relative;
  height: clamp(520px, 48vw, 720px);
}

.franklin-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.franklin-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 30, 21, .88) 0%, rgba(15, 44, 30, .68) 42%, rgba(15, 44, 30, .12) 75%),
    linear-gradient(0deg, rgba(8, 24, 16, .32), rgba(8, 24, 16, 0));
}

.franklin-hero__caption {
  inset: 0;
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  text-align: left;
}

.franklin-hero__caption .container {
  width: 100%;
}

.franklin-hero__content {
  max-width: 720px;
}

.franklin-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  color: #f0d28d;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.franklin-hero__eyebrow::before {
  width: 36px;
  height: 2px;
  content: "";
  background: var(--franklin-gold);
}

.franklin-hero__title {
  max-width: 760px;
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .2);
}

.franklin-hero__description {
  max-width: 650px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.franklin-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.franklin-hero__primary,
.franklin-hero__secondary {
  min-width: 155px;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.franklin-hero__primary {
  border-color: var(--franklin-gold);
  background: var(--franklin-gold);
  color: #173322;
}

.franklin-hero__secondary {
  border-color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(8px);
}

.franklin-hero__primary:hover,
.franklin-hero__secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.franklin-hero__primary:hover {
  border-color: #e7bd69;
  background: #e7bd69;
  color: #173322;
}

.franklin-hero__secondary:hover {
  border-color: #fff;
  background: #fff;
  color: var(--franklin-green-dark);
}

.franklin-hero .carousel-control-prev,
.franklin-hero .carousel-control-next {
  width: 7%;
  opacity: .8;
}

.franklin-hero .carousel-indicators {
  bottom: 1.25rem;
  margin-bottom: 0;
}

.franklin-hero .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
}

@media (max-width: 991.98px) {
  .franklin-hero .carousel-item {
    height: 590px;
  }

  .franklin-hero__content {
    max-width: 620px;
  }
}

@media (max-width: 767.98px) {
  .franklin-hero .carousel-item {
    height: 660px;
  }

  .franklin-hero__image {
    object-position: center top;
  }

  .franklin-hero__overlay {
    background: linear-gradient(0deg, rgba(8, 28, 18, .94) 0%, rgba(8, 28, 18, .65) 50%, rgba(8, 28, 18, .12) 100%);
  }

  .franklin-hero__caption {
    align-items: flex-end;
    padding: 3rem 0 5.25rem;
  }

  .franklin-hero__title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .franklin-hero__actions {
    gap: .65rem;
  }

  .franklin-hero__primary,
  .franklin-hero__secondary {
    min-width: 0;
    padding: .78rem 1.15rem;
  }

  .franklin-hero .carousel-control-prev,
  .franklin-hero .carousel-control-next {
    display: none;
  }
}
