:root {
  --navy: #082a56;
  --navy-dark: #041a36;
  --teal: #0f7891;
  --gold: #d8a62f;
  --soft: #f6f8fb;
  --white: #ffffff;
  --ink: #172033;
  --muted: #687386;
  --border: rgba(8, 42, 86, 0.12);
  --shadow: 0 22px 60px rgba(4, 26, 54, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 156px; height: auto; }
.brand-text { display: none; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--navy);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -9px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white !important;
  box-shadow: 0 12px 28px rgba(8,42,86,.2);
}
.nav-cta::after { display: none; }
.hamburger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  padding: 11px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: .25s ease;
}
.hamburger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  position: relative;
  color: white;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,26,54,.84), rgba(8,42,86,.56), rgba(8,42,86,.18));
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 760px; padding: 90px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 38px; height: 2px; background: var(--gold); }
h1, h2, h3 { line-height: 1.08; margin: 0; color: var(--navy-dark); }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  color: #fff;
  letter-spacing: -0.06em;
  max-width: 880px;
}
.hero p {
  max-width: 650px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  margin: 24px 0 32px;
  color: rgba(255,255,255,.9);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  letter-spacing: .02em;
  transition: .25s ease;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(216,166,47,.3); }
.btn-light { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.34); }
.btn-light:hover { background: white; color: var(--navy); }

/* Sections */
.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-head {
  max-width: 760px;
  margin-bottom: 46px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 12px;
}
.section h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.045em; }
.section p { color: var(--muted); margin: 18px 0 0; }
.lead { font-size: 1.12rem; color: #4f5a6d !important; }

.intro-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.intro-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.stat {
  border-left: 3px solid var(--gold);
  background: var(--soft);
  padding: 16px;
  border-radius: 16px;
}
.stat strong { display: block; color: var(--navy); font-size: 1.3rem; line-height: 1; }
.stat span { color: var(--muted); font-size: .86rem; }
.round-img {
  border-radius: var(--radius);
  min-height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.impact-card, .service-card, .contact-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 46px rgba(4,26,54,.08);
  transition: .25s ease;
}
.impact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.impact-card img { width: 100%; height: 230px; object-fit: cover; }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card-body p { margin: 0; }

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  margin: 54px 0;
}
.split-row.reverse .split-image { order: -1; }
.split-copy {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 18px 46px rgba(4,26,54,.07);
}
.split-copy h2, .split-copy h3 { margin-bottom: 16px; }
.split-copy p + p { margin-top: 16px; }
.split-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
  border-radius: 30px;
  padding: clamp(36px, 6vw, 70px);
  position: relative;
  overflow: hidden;
}
.quote-section::after {
  content: '';
  position: absolute;
  right: -90px; top: -90px;
  width: 230px; height: 230px;
  border-radius: 50%;
  border: 34px solid rgba(216,166,47,.18);
}
.quote-section h2 { color: white; max-width: 850px; }
.quote-section p { color: rgba(255,255,255,.82); max-width: 880px; }

.service-list { display: grid; gap: 30px; }
.service-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(4,26,54,.07);
}
.service-row:nth-child(even) { grid-template-columns: 1.1fr .9fr; }
.service-row:nth-child(even) .service-photo { order: 2; }
.service-photo img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.service-copy { padding: clamp(28px, 5vw, 54px); }
.service-copy h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); }

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.contact-card { padding: 34px; }
.info-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: 0; }
.info-item strong { display: block; color: var(--navy); margin-bottom: 4px; }
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field.full { grid-column: 1 / -1; }
label { display: block; font-weight: 800; color: var(--navy); margin-bottom: 8px; font-size: .92rem; }
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  min-height: 52px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  background: #fbfcfe;
  transition: .2s ease;
}
textarea { min-height: 160px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(15,120,145,.1); background: white; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.82);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo { width: 150px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.site-footer h3 { color: white; font-size: 1.15rem; margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,.86); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  font-size: .9rem;
  color: rgba(255,255,255,.62);
}

@media (max-width: 980px) {
  .hamburger { display: block; }
  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 96px;
    display: grid;
    gap: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 12px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 16px; border-radius: 14px; }
  .nav-menu a:hover { background: var(--soft); }
  .nav-menu a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .intro-panel, .split-row, .service-row, .service-row:nth-child(even), .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .split-row.reverse .split-image, .service-row:nth-child(even) .service-photo { order: 0; }
  .card-grid { grid-template-columns: 1fr; }
  .round-img, .split-image img { min-height: 320px; height: 420px; }
  .service-photo img { min-height: 300px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { height: 76px; }
  .brand img { width: 132px; }
  .nav-menu { top: 86px; left: 14px; right: 14px; }
  .hero { min-height: 610px; }
  .hero-content { padding: 70px 0; }
  .section { padding: 70px 0; }
  .stat-strip, .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .btn { width: 100%; }
}


/* Our People */
.founder-feature {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 36px;
  align-items: stretch;
}
.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.founder-copy {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}
.person-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 900;
}
.person-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.motto-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8,42,86,.05), rgba(15,120,145,.08));
  border: 1px solid rgba(8,42,86,.1);
}
.motto-card strong,
.mini-motto strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}
.motto-card p { margin: 10px 0 0; }
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.premium-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(4,26,54,.08);
}
.person-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}
.person-content {
  padding: 30px;
}
.person-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.profile-meta {
  color: var(--teal) !important;
  font-weight: 700;
  margin-top: 0 !important;
}
.mini-motto {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mini-motto span,
.mini-motto em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.people-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
  box-shadow: var(--shadow);
}
.people-banner h2,
.people-banner p { color: white; }
.people-banner p { color: rgba(255,255,255,.82); }

@media (max-width: 980px) {
  .founder-feature, .people-grid { grid-template-columns: 1fr; }
  .founder-photo-wrap img { min-height: 420px; }
  .people-banner { flex-direction: column; align-items: flex-start; }
}
