:root {
  --shadow-soft: 0 16px 42px rgba(7, 21, 34, 0.08);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(181, 151, 94, 0.09), transparent 25rem),
    radial-gradient(circle at 94% 18rem, rgba(23, 74, 115, 0.08), transparent 30rem),
    linear-gradient(180deg, #fff 0, #fff 420px, var(--cream) 100%);
}

.topbar {
  background:
    linear-gradient(90deg, rgba(181, 151, 94, 0.16), transparent 44%),
    linear-gradient(90deg, #071522, #0f2d4a);
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(222, 216, 207, 0.9);
  box-shadow: 0 16px 46px rgba(7, 21, 34, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 151, 94, 0.72), transparent);
}

.nav {
  min-height: 88px;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  width: min(238px, 42vw);
  max-width: 238px;
  height: auto;
  max-height: 76px;
  filter: drop-shadow(0 8px 14px rgba(7, 21, 34, 0.08));
}

.nav-links a:not(.button) {
  padding: 9px 0;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.card,
.contact-panel,
.trust-panel {
  box-shadow: var(--shadow-soft);
}

.card:hover {
  box-shadow: 0 26px 68px rgba(15, 32, 56, 0.14);
}

.footer {
  position: relative;
  padding-top: 76px;
  background:
    radial-gradient(circle at 12% 0%, rgba(181, 151, 94, 0.16), transparent 26rem),
    radial-gradient(circle at 90% 80%, rgba(23, 74, 115, 0.22), transparent 28rem),
    linear-gradient(90deg, rgba(181, 151, 94, 0.08), transparent 36%),
    #071522;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: min(292px, 100%);
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.footer-logo {
  width: 258px;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
}

.institutional-hero-copy h1 {
  letter-spacing: 0;
}

.leadership-card-section {
  padding-top: 42px;
  padding-bottom: 72px;
}

.leadership-executive-card {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  gap: 42px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(222, 216, 207, 0.78);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.leadership-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  background: #fff;
  min-height: 520px;
}

.leadership-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leadership-bio {
  align-self: center;
}

.leadership-bio h2 {
  margin-bottom: 8px;
}

.leadership-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.leadership-highlights li {
  padding: 8px 12px;
  border: 1px solid rgba(181, 151, 94, 0.42);
  border-radius: 999px;
  background: rgba(181, 151, 94, 0.08);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 820px) {
  .leadership-executive-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .leadership-photo-card {
    max-width: 360px;
    min-height: 0;
  }

  .leadership-photo {
    height: auto;
    object-fit: initial;
  }
}

@media (max-width: 900px) {
  .nav {
    gap: 16px;
    padding: 14px 0 16px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: min(205px, 66vw);
    max-width: 205px;
    height: auto;
  }
}
