:root {
  --navy: #0a1c33;
  --navy-dark: #050e1c;
  --navy-light: #12294a;
  --red: #9e1b1b;
  --red-bright: #c0272c;
  --black: #14141a;
  --off-white: #f5f5f3;
  --gray: #6b7280;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--black);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header / Nav ---------- */
header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link img {
  height: 46px;
  width: auto;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav.main-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

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

.nav-address {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: #fff;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(135deg, rgba(158,27,27,0.18), rgba(158,27,27,0) 60%);
  transform: skewX(-12deg);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 30%, var(--black) 30%, var(--black) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 90px 32px 110px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red-bright);
}

.hero h1 {
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 720px;
  margin-bottom: 26px;
}

.hero h1 span { color: var(--red-bright); }

.hero p {
  max-width: 560px;
  font-size: 17px;
  color: #cbd5e1;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
}

.btn.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn.btn-dark {
  background: var(--navy);
  border-color: var(--navy);
}
.btn.btn-dark:hover {
  background: transparent;
  color: var(--navy);
}

/* ---------- Section basics ---------- */
section { padding: 88px 0; }
.section-tight { padding: 64px 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

h2.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  max-width: 640px;
}

.lede {
  font-size: 17px;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 8px;
}

.bg-navy { background: var(--navy); color: #fff; }
.bg-off { background: var(--off-white); }

/* ---------- Grids / cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid var(--red);
  padding: 34px 28px;
}

.card .num {
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.card p {
  font-size: 15px;
  color: var(--gray);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 56px 0;
}

.stat-strip .stat { text-align: center; }

.stat .stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--red-bright);
  margin-bottom: 6px;
}

.stat .stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cbd5e1;
}

/* ---------- Process / services list ---------- */
.process-list {
  margin-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid #e5e5e5;
}

.process-item .p-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  opacity: 0.85;
}

.process-item h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.process-item p { color: var(--gray); font-size: 15px; max-width: 640px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--black);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cta-band p {
  color: #a8adb5;
  margin-bottom: 30px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-dark);
  color: #cbd5e1;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid img {
  height: 40px;
  margin-bottom: 16px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 3px;
}

.footer-grid p { font-size: 14px; color: #9aa4b2; max-width: 320px; }

.footer-col h4 {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: #9aa4b2;
  margin-bottom: 10px;
}

.footer-col a:hover { color: var(--red-bright); }

.footer-bottom {
  padding-top: 24px;
  font-size: 12px;
  color: #6b7688;
  text-align: center;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: #fff;
  padding: 70px 0 56px;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 30%, var(--black) 30%, var(--black) 100%);
}
.page-hero .section-label { color: var(--red-bright); }
.page-hero h1 {
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.page-hero p { color: #cbd5e1; max-width: 560px; margin-top: 14px; font-size: 16px; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid var(--navy);
  padding: 32px 26px;
  text-align: left;
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 2px solid var(--red);
}

.team-card h3 {
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.team-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.team-links {
  border-top: 1px solid #eee;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-links a {
  font-size: 14px;
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.team-links a:hover { color: var(--red); }

.team-links svg { flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 38px; }
  nav.main-nav { display: none; }
  .team-grid { grid-template-columns: 1fr; }
}
