* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #020617;
  color: #ffffff;
}

.navbar {
  height: 88px;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(2, 6, 23, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand span {
  font-size: 48px;
  color: #f97316;
  letter-spacing: -4px;
}

.brand small {
  font-size: 13px;
  line-height: 1;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
}

nav a:hover,
nav a.active {
  color: #f97316;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 5% 70px;
  background: url("./assets/leader.jpeg") right center / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,6,23,.98) 0%, rgba(2,6,23,.78) 42%, rgba(2,6,23,.12) 100%);
}

.hero-content {
  position: relative;
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: .95;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: #f97316;
}

.hero h2 {
  margin-top: 22px;
  font-size: clamp(28px, 4vw, 42px);
}

.hero h3 {
  margin-top: 10px;
  color: #f97316;
  font-style: italic;
  font-size: 23px;
}

.motto {
  margin: 24px 0 14px;
  font-size: 25px;
  font-weight: 800;
}

.motto b {
  color: #f97316;
  padding: 0 8px;
}

.hero p {
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.65;
}

.buttons {
  margin-top: 28px;
}

.buttons a {
  display: inline-block;
  background: #f97316;
  color: #ffffff;
  padding: 16px 34px;
  margin-right: 16px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
}

.buttons .outline {
  background: transparent;
  border: 2px solid #f97316;
}

.about {
  background: #ffffff;
  color: #111827;
  padding: 70px 12%;
  text-align: center;
}

.about h2,
.vision h2,
.contact h2 {
  text-transform: uppercase;
  color: #f97316;
  font-size: 32px;
  margin-bottom: 24px;
}

.about p {
  margin: 14px auto;
  max-width: 950px;
  font-size: 17px;
  line-height: 1.75;
  text-align: left;
}

.vision {
  padding: 70px 5%;
  text-align: center;
  background: #020617;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.mission-card {
  padding: 26px 18px;
  border-right: 1px solid rgba(255,255,255,.2);
}

.mission-card:last-child {
  border-right: 0;
}

.icon {
  font-size: 42px;
  margin-bottom: 16px;
}

.mission-card h3 {
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 12px;
}

.mission-card p {
  color: #cbd5e1;
  line-height: 1.55;
}

.leadership {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 46px;
  align-items: center;
  padding: 70px 9%;
  background: #ffffff;
  color: #111827;
}

.leadership img {
  width: 100%;
  border-radius: 12px;
}

.label {
  color: #f97316;
  text-transform: uppercase;
  font-weight: 900;
}

.leadership h2 {
  font-size: 38px;
  margin: 8px 0 18px;
}

.leadership p {
  line-height: 1.75;
  font-size: 17px;
}

blockquote {
  margin-top: 18px;
  color: #f97316;
  font-weight: 900;
  font-size: 21px;
}

.contact {
  padding: 60px 6%;
  text-align: center;
  background: #020617;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 28px;
}

.contact h3 {
  color: #f97316;
  margin-bottom: 8px;
}

footer {
  text-align: center;
  padding: 22px;
  background: #01040a;
  color: #94a3b8;
}

@media (max-width: 900px) {
  .navbar {
    height: auto;
    display: block;
    text-align: center;
    padding: 14px 5%;
  }

  .brand {
    justify-content: center;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }

  .hero {
    align-items: flex-end;
    background-position: center top;
    padding-top: 180px;
  }

  .overlay {
    background: linear-gradient(0deg, rgba(2,6,23,.97), rgba(2,6,23,.45));
  }

  .mission-grid,
  .leadership,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
}
