:root {
  --navy: #0b1f3a;
  --navy-2: #142f52;
  --red: #c62035;
  --cream: #f6f1e7;
  --white: #ffffff;
  --ink: #142033;
  --muted: #5f6876;
  --line: #d8dee7;
}

* { 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; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 82px;
  padding: 0 6vw;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(20,32,51,.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  letter-spacing: .02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}
.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand strong { display: block; font-size: .98rem; }
.brand small { display: block; color: var(--muted); font-size: .72rem; }

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  font-size: .9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-button {
  padding: .65rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 7vw 10rem;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 22%, rgba(198,32,53,.45), transparent 33%),
    linear-gradient(135deg, #061426 0%, #0b1f3a 55%, #1a3b62 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow { color: #ffd7dc; }

h1, h2, h3 { margin-top: 0; line-height: 1.08; }

h1 {
  max-width: 950px;
  margin-bottom: 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7vw, 6.7rem);
  font-weight: 700;
  letter-spacing: -.045em;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary { color: var(--white); background: var(--red); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.button-light { color: var(--navy); background: var(--white); }

.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 280px;
  opacity: .38;
}

.skyline svg { width: 100%; height: 100%; }
.skyline path { fill: #020a14; }
.skyline .bridge { fill: none; stroke: rgba(255,255,255,.38); stroke-width: 7; }

.welcome,
.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  padding: 7rem 7vw;
}

h2 {
  margin-bottom: 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  letter-spacing: -.035em;
}

.welcome p,
.contact a {
  font-size: 1.08rem;
}

.signature {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.priorities {
  padding: 7rem 7vw;
  background: var(--cream);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.card {
  min-height: 290px;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(11,31,58,.09);
}

.card-number {
  color: var(--red);
  font-weight: 850;
}

.card h3 {
  margin: 3.5rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.card p { color: var(--muted); }

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 6rem 7vw;
  color: var(--white);
  background: var(--red);
}

.cta h2 { max-width: 780px; }
.cta p { max-width: 720px; color: rgba(255,255,255,.86); }
.section-label.light { color: rgba(255,255,255,.78); }

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.contact-links a {
  text-underline-offset: .25rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 7vw;
  color: rgba(255,255,255,.72);
  background: #061426;
  font-size: .86rem;
}

@media (max-width: 820px) {
  .site-header { min-height: 72px; padding: 0 1.2rem; }
  nav a:not(.nav-button) { display: none; }
  .brand small { display: none; }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 680px;
    padding: 6rem 1.3rem 9rem;
  }

  ...
}
  }

  h1 { font-size: clamp(3rem, 14vw, 5rem); }

  .welcome,
  .contact {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem 1.3rem;
  }

  .priorities { padding: 5rem 1.3rem; }
  .card-grid { grid-template-columns: 1fr; }

  .cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 5rem 1.3rem;
  }

  footer {
    flex-direction: column;
    padding: 2rem 1.3rem;
  }
}
