/* Home HP 2 (scoped) */
.homehp2 {
  --hp2-max: 1320px;
  --hp2-gap: 80px;
  --hp2-pad: 80px;
  background: transparent;
  padding-top: var(--hp2-pad);
  padding-bottom: var(--hp2-pad);
}

.homehp2__wrap {
  max-width: var(--hp2-max);
  margin: 0 auto;
  padding: 0;
}

.homehp2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hp2-gap);
  align-items: start;
}

/* Desktop order (default: image on right) */
.is-right .homehp2__col--text {
  order: 1;
}

.is-right .homehp2__col--image {
  order: 2;
}

/* Option: image on left */
.is-left .homehp2__col--text {
  order: 2;
}

.is-left .homehp2__col--image {
  order: 1;
}

/* Typography */
/* Eyebrow styles moved to main.css for consistency */
}

.homehp2__title {
  margin: 0 0 12px 0;
  color: var(--Off-Black, #131412);
  font-family: var(--font-family-heading, Montserrat, sans-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.homehp2__lead {
  color: var(--Off-Black, #131412);
  font-family: var(--font-family-base, Montserrat, sans-serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}

/* CTA Button */
.homehp2__cta {
  margin-top: 24px;
}

.homehp2__btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--Blue-Twilight, #437382);
  color: #fff;
  border-radius: 3.2px;
  font-size: 0.875rem;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-family-base, Montserrat, sans-serif);
  transition: background-color 0.3s ease;
}

.homehp2__btn:hover {
  background: var(--Blue-Twilight-Dark, #35606d);
  color: #fff;
  text-decoration: none;
}

/* Media */
.homehp2__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Mobile */
@media (max-width: 767px) {
  .homehp2__grid {
    grid-template-columns: 1fr;
  }

  /* default mobile order: text then image */
  .homehp2__col--text {
    order: 1;
  }

  .homehp2__col--image {
    order: 2;
  }

  .homehp2__wrap {
    max-width: var(--hp2-max);
    margin: 0 auto;
    padding: 1rem;
  }
  
  .homehp2__title {
    font-size: 2.5rem;
  }
}