.hero-section {
  display: flex;
  min-height: 620px;
  background: var(--mac-white);
}

.hero-left {
  width: 48%;
  background: var(--mac-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--mac-navy) 0%,
    #223a6a 95%,   /* lighter tone */
    #223a6a 100%   /* hold color flat at edge */
  );
}

.hero-right {
  width: 52%;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-left-inner {
  max-width: 760px;
  width: 100%;
  padding: 72px 56px;
  margin: 0 auto;
  text-align: left;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--mac-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 22px;
  color: var(--mac-white);
  font-family: var(--mac-font-heading);
  font-size: 3.6rem;
  line-height: 0.96;
  font-weight: 700;
  max-width: 620px;
}

.hero-text {
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--mac-white);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.hero-btn {
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero-btn-primary {
  background: var(--mac-white);
  color: var(--mac-navy) !important;
  border: 1px solid var(--mac-white);
}

.hero-btn-primary:hover {
  background: var(--mac-light-gray);
  color: var(--mac-navy) !important;
}

.hero-btn-secondary {
  background: transparent;
  color: var(--mac-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--mac-white) !important;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-arrow {
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  width: auto;
  height: 100%;
  object-fit: fill;
  z-index: 3;
  pointer-events: none;
}

/* tablet */
@media (max-width: 991.98px) {
  .hero-section {
    flex-direction: column-reverse;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-bg-arrow {
    display: none;
  }

  .hero-right .hero-image {
    display: none;
  }

  .hero-left-inner {
    padding: 56px 24px;
  }

  .hero-title {
    font-size: 2.9rem;
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1.05rem;
  }
}

/* small tablet / mobile */
@media (max-width: 767.98px) {
  .hero-right {
    aspect-ratio: 4 / 3;
    min-height: auto;
    max-height: none;
  }
}

/* mobile */
@media (max-width: 575.98px) {
  .hero-left-inner {
    padding: 44px 20px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-right {
    aspect-ratio: 4 / 3;
    min-height: auto;
    max-height: none;
  }
}
