:root {
  --navy: #0F1F3D;
  --slate: #2C4870;
  --gold: #C9A227;
  --charcoal: #1B1B1B;
  --off-white: #F7F8FA;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  border-bottom: 1px solid #E7E9EE;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark img { height: 42px; width: auto; }

.logo-mark span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}

.btn:hover { background: var(--slate); }

.btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
}

.btn-outline:hover { background: var(--navy); color: var(--white) !important; }

/* Hero */
.hero {
  padding: 100px 24px 90px;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.hero-img {
  position: relative;
  padding: 130px 24px 110px;
  text-align: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,31,61,0.88) 0%, rgba(15,31,61,0.78) 60%, rgba(15,31,61,0.92) 100%);
  z-index: -1;
}

.hero-img h1, .hero-img p.sub { color: var(--white); }
.hero-img .tagline { color: var(--gold); }
.hero-img p.sub { color: #D8DEEA; }

.hero h1 {
  font-size: 46px;
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero p.sub {
  font-size: 19px;
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 36px;
}

/* Stat bar */
.stat-bar {
  background: var(--navy);
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 20px;
  text-align: center;
}
.stat-bar .stat h3 { color: var(--gold); font-size: 34px; margin-bottom: 4px; }
.stat-bar .stat p { color: #C6CEDB; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* Image-paired split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(15,31,61,0.15);
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.tagline {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Sections */
section { padding: 80px 24px; }
section.alt { background: var(--off-white); }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 { font-size: 32px; margin-bottom: 12px; }
.section-title p { color: var(--slate); font-size: 17px; max-width: 600px; margin: 0 auto; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border: 1px solid #E7E9EE;
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(15,31,61,0.08); }

.card .icon-bar {
  width: 40px; height: 4px; background: var(--gold); margin-bottom: 18px; border-radius: 2px;
}

.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { color: #444; font-size: 15px; }

/* Team */
.team-role {
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  background: var(--white);
  border-radius: 0 6px 6px 0;
}
.team-role h3 { font-size: 17px; margin-bottom: 6px; }
.team-role p { color: var(--slate); font-size: 14px; }

/* Values list */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; margin-top: 10px; }
.values-grid div { padding: 20px; border-top: 3px solid var(--navy); }
.values-grid h4 { font-size: 16px; margin-bottom: 8px; color: var(--navy); }
.values-grid p { font-size: 14px; color: #444; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

form.contact-form { display: flex; flex-direction: column; gap: 16px; }
form.contact-form input, form.contact-form select, form.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #D6DAE2;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
}
form.contact-form textarea { min-height: 120px; resize: vertical; }
form.contact-form button {
  border: none; cursor: pointer; align-self: flex-start;
}

.contact-info h3 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 10px; font-size: 16px; }
.contact-info .gold { color: var(--gold); font-weight: 600; }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #C6CEDB;
  padding: 50px 24px 30px;
  text-align: center;
}
footer.site-footer .logo-mark span,
footer.site-footer .logo-mark { color: var(--white); justify-content: center; margin-bottom: 14px; }
footer.site-footer .foot-tagline { color: var(--gold); font-style: italic; font-size: 14px; margin-bottom: 20px; }
footer.site-footer .foot-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
footer.site-footer .foot-links a { font-size: 14px; color: #C6CEDB; }
footer.site-footer .foot-links a:hover { color: var(--gold); }
footer.site-footer .copyright { font-size: 13px; color: #8E9AB3; }

@media (max-width: 700px) {
  nav.main-nav { display: none; }
  .hero h1 { font-size: 32px; }
  .contact-grid { gap: 30px; }
}
