/* Only the homepage hero: preserve the existing site's shared styles. */
.home-hero {
  display: grid;
  place-items: center;
  height: auto;
  min-height: clamp(620px, 84vh, 820px);
  padding: 48px 24px;
}

.home-hero .slideshow::after {
  background: linear-gradient(rgba(15, 23, 42, 0.60), rgba(15, 23, 42, 0.78));
}

.home-hero .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 820px;
  color: white;
  text-align: center;
}

.home-hero .hero-logo {
  position: static;
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px;
  transform: none;
}

.home-hero h1 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.18;
  font-weight: 600;
  margin: 0 0 18px;
  color: white;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.home-hero .hero-content > p {
  max-width: 570px;
  margin: 0 auto;
  color: #f1f5f9;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 156px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.hero-button:hover {
  background: #e3c568;
  border-color: #e3c568;
}

.hero-button-outline {
  background: rgba(15, 23, 42, 0.40);
  border-color: rgba(255, 255, 255, 0.85);
  color: white;
}

.hero-button-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.hero-button:focus-visible {
  outline: 3px solid white;
  outline-offset: 5px;
}

@media (max-width: 600px) {
  .home-hero {
    min-height: 600px;
    padding: 38px 20px;
  }

  .home-hero .hero-logo {
    width: 170px;
    margin-bottom: 22px;
  }

  .home-hero .hero-content > p {
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-button {
    min-width: 132px;
    padding-inline: 18px;
  }
}

/* Complete the existing leadership section without changing other sections. */
.management-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 56px;
  scroll-margin-top: 110px;
}

.management-profile {
  min-width: 0;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
}

.management-profile h3 {
  font-size: 30px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px;
}

.management-profile p {
  color: var(--muted);
  margin-bottom: 18px;
}

.management-profile p:last-child {
  margin-bottom: 0;
}

.management-profile .management-role {
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 24px;
}

.management-compliance {
  max-width: 1000px;
  margin-top: 32px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .management-profiles {
    grid-template-columns: 1fr;
  }

  .management-profile {
    padding: 24px;
    border-radius: 20px;
  }
}
