:root {
  --navy: #0b1f3a;
  --navy-2: #173a63;
  --blue: #2667a5;
  --gold: #d9a441;
  --gold-soft: #f4e2b8;
  --ink: #172132;
  --muted: #5f6b7d;
  --line: #dde5ee;
  --surface: #f5f7fb;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 22px 55px rgba(11,31,58,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--navy);
}
.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221,229,238,.85);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}
.brand strong, .brand small { display: block; line-height: 1.04; }
.brand strong { font-size: 20px; letter-spacing: .02em; }
.brand small {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.primary-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.primary-nav a:hover { color: var(--blue); }
.primary-nav .nav-cta {
  padding: 11px 17px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}
.primary-nav .nav-cta:hover { background: var(--blue); color: var(--white); }

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(217,164,65,.20), transparent 24%),
    linear-gradient(135deg, var(--navy) 0%, #102c51 58%, #194d79 100%);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -150px -240px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.02);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr);
  gap: 74px;
  align-items: center;
  padding-block: 88px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1,
.section h2,
.statement h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.07;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(52px, 6vw, 84px); }
.hero-text {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
}
.button-primary { background: var(--gold); color: var(--navy); }
.button-primary:hover { background: #e6b95f; }
.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.34);
}
.button-secondary:hover { background: rgba(255,255,255,.08); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 36px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}
.hero-trust span::before {
  content: "•";
  color: var(--gold);
  margin-right: 8px;
}
.hero-visual {
  display: grid;
  gap: 18px;
}
.hero-main-image {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.hero-mini-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.hero-mini-card strong {
  display: block;
  margin-bottom: 6px;
}
.hero-mini-card p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

.statement { border-bottom: 1px solid var(--line); }
.statement-grid {
  display: grid;
  grid-template-columns: .55fr 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  padding-block: 64px;
}
.statement h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
}
.statement p:last-child { margin: 5px 0 0; color: var(--muted); }

.section { padding: 100px 0; }
.section-heading {
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading h2,
.about-section h2,
.contact-section h2,
.profile-card h2,
.highlight-copy h2 {
  font-size: clamp(36px, 4.8vw, 56px);
  color: var(--navy);
}
.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

.image-strip-section { padding-top: 52px; padding-bottom: 20px; }
.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.image-strip figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.image-strip figcaption {
  padding: 14px 18px 18px;
  color: var(--navy);
  font-weight: 750;
  font-size: 15px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.capability-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.card-image {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 22px;
}
.card-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 28px;
}
.capability-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.2;
}
.capability-card p { color: var(--muted); }
.capability-card ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.capability-card li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.capability-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}
.section-heading.light h2 { color: var(--white); }
.section-heading.light > p { color: rgba(255,255,255,.70); }
.delivery-layout {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: 28px;
  align-items: stretch;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.process-grid article {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.process-grid span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 24px;
}
.process-grid h3 {
  margin: 22px 0 8px;
  font-size: 22px;
}
.process-grid p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.delivery-image-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.highlight-section { background: var(--white); }
.highlight-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 54px;
  align-items: center;
}
.highlight-image img,
.about-image {
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.highlight-copy p { color: var(--muted); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--line);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 11px;
  color: var(--gold);
  font-weight: 800;
}

.about-section { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: .86fr 1.1fr;
  gap: 78px;
  align-items: start;
}
.about-copy .lead {
  margin-top: 0;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.42;
}
.about-copy > p:not(.lead) { color: var(--muted); }
.about-image { margin-top: 28px; }
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}
.principles div {
  padding: 22px;
  background: var(--white);
}
.principles strong, .principles span { display: block; }
.principles strong { color: var(--navy); }
.principles span { margin-top: 6px; color: var(--muted); font-size: 13px; }

.profile-section { padding-top: 0; background: var(--surface); }
.profile-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  padding: 46px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.profile-card dl { margin: 0; }
.profile-card dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.profile-card dl div:first-child { border-top: 0; }
.profile-card dt { color: var(--muted); font-size: 13px; }
.profile-card dd { margin: 0; color: var(--navy); font-weight: 750; }

.contact-section {
  background:
    linear-gradient(rgba(11,31,58,.95), rgba(11,31,58,.95)),
    radial-gradient(circle at 18% 18%, rgba(217,164,65,.24), transparent 33%);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 70px;
  align-items: center;
}
.contact-section h2 { color: var(--white); }
.contact-section p { color: rgba(255,255,255,.74); }
.contact-card {
  padding: 34px;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 24px;
}
.contact-card a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--blue);
  text-decoration: none;
  font-weight: 750;
  overflow-wrap: anywhere;
}
.contact-card a:first-of-type { border-top: 0; }
.contact-note {
  margin: 18px 0 0;
  color: var(--muted) !important;
  font-size: 13px;
}

.site-footer {
  padding: 34px 0;
  background: #071526;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 30px;
  align-items: center;
}
.footer-brand strong { color: var(--white); }
.footer-brand small { color: rgba(255,255,255,.55); }
.footer-brand .brand-mark { background: rgba(255,255,255,.09); }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav .nav-cta { text-align: center; }

  .hero-grid,
  .statement-grid,
  .section-heading,
  .delivery-layout,
  .highlight-grid,
  .about-grid,
  .profile-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 42px;
    padding-block: 74px;
  }

  .image-strip,
  .capability-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .hero h1 { font-size: 46px; }
  .hero-main-image,
  .hero-mini-card,
  .capability-card,
  .delivery-image-card,
  .profile-card,
  .contact-card { padding: 20px; }
  .hero-mini-card { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .profile-card dl div { grid-template-columns: 1fr; gap: 6px; }
}
