:root {
  --navy: #102656;
  --grey: #61676C;
  --white: #FFFFFF;
  --black: #000000;
  --soft: #F5F7FA;
  --line: #DCE1E7;
  --text: #1E2732;
  --max: 1180px;
  --serif: "Butler Medium", "Butler", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", Arial, sans-serif;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: white;
  padding: 10px 14px; z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(10px);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 285px; }
.site-nav { display: flex; gap: 30px; align-items: center; }
.site-nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--navy); }
.site-nav a:hover { color: var(--grey); }
.menu-toggle { display: none; }

.hero {
  background:
    radial-gradient(circle at 85% 35%, rgba(97,103,108,.10), transparent 29%),
    linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
  overflow: hidden;
}
.hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 70px; }
.eyebrow {
  margin: 0 0 12px; color: var(--navy); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
}
.hero h1, .section h2, .intro-band h2, .contact-section h2 {
  font-family: var(--serif); color: var(--navy); font-weight: 500; line-height: 1.04;
}
.hero h1 { font-size: clamp(46px, 6vw, 78px); max-width: 820px; margin: 0 0 26px; }
.hero-lead { font-size: 19px; max-width: 760px; color: #46515c; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 0 22px; border-radius: 2px; font-weight: 700; text-decoration: none;
  font-size: 14px; transition: .2s ease;
}
.button-primary { background: var(--navy); color: white; border: 1px solid var(--navy); }
.button-primary:hover { background: #0a1b40; }
.button-secondary { border: 1px solid var(--navy); color: var(--navy); background: white; }
.button-secondary:hover { background: var(--soft); }
.hero-mark { display: flex; justify-content: center; align-items: center; }
.hero-mark img { width: min(390px, 85%); opacity: .97; }

.intro-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-grid { padding: 72px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.section-number { font-size: 12px; color: var(--grey); letter-spacing: .18em; font-weight: 700; }
.intro-band h2 { font-size: clamp(32px, 4vw, 48px); margin: 10px 0 0; }
.intro-band p { margin: 5px 0 0; color: #4e5964; font-size: 17px; }

.section { padding: 105px 0; }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.compact { margin-bottom: 35px; }
.section-heading h2 { font-size: clamp(34px, 4.2vw, 54px); margin: 0 0 14px; }
.section-heading > p:last-child { color: #56616d; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  border: 1px solid var(--line); padding: 30px; min-height: 275px; background: white;
  position: relative;
}
.service-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--navy);
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-index { font-size: 11px; letter-spacing: .15em; font-weight: 700; color: var(--grey); }
.service-card h3 { color: var(--navy); font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.1; margin: 18px 0 14px; }
.service-card p { color: #56616d; font-size: 15px; }

.section-navy { background: var(--navy); color: white; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.about-logo { background: white; padding: 30px; }
.about-logo img { width: 100%; }
.eyebrow-light { color: #d9dee7; }
.about-copy h2 { color: white; font-family: var(--serif); font-size: clamp(36px, 4vw, 55px); font-weight: 500; margin: 0 0 22px; }
.about-copy p { color: #e7eaf0; font-size: 16px; }

.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.approach-grid article { border-top: 3px solid var(--navy); padding: 24px 5px 0 0; }
.approach-grid h3 { color: var(--navy); font-family: var(--serif); font-size: 25px; font-weight: 500; margin: 0 0 10px; }
.approach-grid p { color: #56616d; font-size: 15px; }

.contact-section { background: var(--soft); border-top: 1px solid var(--line); padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.contact-section h2 { font-size: clamp(36px, 4.5vw, 58px); margin: 0 0 20px; }
.contact-section p { color: #56616d; max-width: 680px; }
.contact-card { background: white; border: 1px solid var(--line); padding: 34px; display: flex; flex-direction: column; align-items: flex-start; }
.contact-card img { width: 72px; margin-bottom: 18px; }
.contact-name { font-family: var(--serif); font-size: 28px; color: var(--navy) !important; margin: 0 !important; }
.contact-title { margin: 0 0 18px !important; font-weight: 600; color: var(--grey) !important; }
.contact-card a:not(.button) { color: var(--navy); text-decoration: none; margin: 3px 0; font-size: 14px; word-break: break-word; }
.contact-card .button { margin-top: 24px; }
.full { width: 100%; }

.site-footer { border-top: 1px solid var(--line); }
.footer-wrap { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-wrap img { width: 245px; }
.footer-wrap p { color: var(--grey); font-size: 12px; }

@media (max-width: 900px) {
  .brand img { width: 225px; }
  .menu-toggle {
    display: inline-flex; border: 1px solid var(--line); background: white; color: var(--navy);
    padding: 10px 14px; font: 600 14px var(--sans);
  }
  .site-nav {
    position: absolute; top: 88px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--line);
    padding: 18px 20px 24px; display: none; flex-direction: column; align-items: flex-start; gap: 16px;
  }
  .site-nav.open { display: flex; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 90px 0 75px; }
  .hero-mark { display: none; }
  .intro-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}

@media (max-width: 600px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-wrap { min-height: 76px; }
  .site-nav { top: 76px; }
  .brand img { width: 190px; }
  .hero-grid { padding: 70px 0 60px; }
  .hero h1 { font-size: 46px; }
  .hero-lead { font-size: 17px; }
  .intro-grid { padding: 55px 0; }
  .section { padding: 78px 0; }
  .service-grid, .approach-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .contact-section { padding: 78px 0; }
  .footer-wrap { flex-direction: column; align-items: flex-start; padding: 26px 0; }
}

/* V2.2 supporting statement beneath the hero headline */
.hero-support {
  margin: 1rem 0 0.6rem;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 600;
}
