:root {
  --navy: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --light: #f8fafc;
  --line: #e2e8f0;
  --gold: #b38b59;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 18px 0;
  border-bottom: 3px solid var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--gold);
  opacity: 1;
}

.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #334155 100%);
  color: var(--white);
  padding: 92px 0;
}

.hero .eyebrow,
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 900px;
}

.hero p {
  max-width: 760px;
  color: #dbeafe;
  font-size: 20px;
  margin: 0 0 34px;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 4px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.42);
  color: var(--white);
}

.section {
  padding: 72px 0;
}

.section-light {
  background: var(--light);
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin: 0 0 16px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.card p,
.card li {
  color: var(--slate);
}

.card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.callout {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.callout h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.callout p {
  margin: 0;
  color: #cbd5e1;
}

.page-header {
  background: var(--light);
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  margin: 0 0 14px;
}

.page-header p {
  max-width: 820px;
  color: var(--muted);
  font-size: 19px;
  margin: 0;
}

.leadership {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.portrait-placeholder {
  background: linear-gradient(135deg, #1e293b, #475569);
  color: var(--white);
  border-radius: 12px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-box {
  background: var(--navy);
  color: var(--white);
  padding: 34px;
  border-radius: 12px;
}

.contact-box p {
  color: #cbd5e1;
}

.footer {
  background: #020617;
  color: #cbd5e1;
  padding: 34px 0;
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer strong {
  color: var(--white);
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .grid-3,
  .grid-2,
  .leadership {
    grid-template-columns: 1fr;
  }

  .callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 70px 0;
  }
}
