:root {
  --ink: #17231f;
  --muted: #64736d;
  --forest: #5f9ac3;
  --forest-deep: #315f80;
  --sage: #d7eaf6;
  --cream: #f5f3ed;
  --paper: #fffefa;
  --line: #dfe4df;
  --sand: #e9dfc9;
  --blue: #d9e6e4;
  --shadow: 0 24px 70px rgba(28, 49, 42, .09);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.site-header { position: relative; z-index: 10; background: var(--cream); }
.nav-wrap { min-height: 96px; display: flex; align-items: center; justify-content: space-between; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  text-decoration: none;
  font-family: Manrope, sans-serif;
  letter-spacing: .06em;
  line-height: .92;
}

.brand span:last-child { display: grid; gap: 4px; }
.brand strong { font-size: 10px; font-weight: 600; letter-spacing: .28em; }
.brand b { font-size: 18px; font-weight: 800; }

.header-logo {
  display: block;
  width: 148px;
  height: auto;
}

.brand-sign {
  width: 37px;
  height: 39px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 5px;
  border: 2px solid var(--forest);
  border-radius: 4px 4px 10px 4px;
}

.brand-sign i { display: block; width: 7px; background: var(--forest); border-radius: 1px; }
.brand-sign i:nth-child(1) { height: 13px; }
.brand-sign i:nth-child(2) { height: 23px; }
.brand-sign i:nth-child(3) { height: 17px; }

nav { display: flex; align-items: center; gap: 36px; }
nav a { color: #3c5049; text-decoration: none; font-size: 14px; font-weight: 600; }
nav a:not(.nav-cta):hover { color: var(--forest); }

.nav-cta {
  padding: 13px 19px;
  background: var(--forest);
  color: white;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover { background: var(--forest-deep); transform: translateY(-1px); }

.hero {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 66px 74px;
  background: var(--forest);
  color: white;
  border-radius: 4px 4px 28px 4px;
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  transform: rotate(36deg);
}

.hero::before { width: 280px; height: 430px; right: 118px; top: -70px; }
.hero::after { width: 210px; height: 330px; right: 10px; top: -35px; }

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -300px;
  border-radius: 50%;
  background: rgba(168, 200, 177, .17);
}

.hero-copy { position: relative; z-index: 2; max-width: 670px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--sage); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow-dark { color: #5c86a3; }
h1, h2, h3 { font-family: Manrope, sans-serif; }

h1 {
  max-width: none;
  margin: 20px 0 18px;
  font-size: clamp(44px, 5.7vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 700;
  white-space: nowrap;
}

.hero-copy p { max-width: 580px; margin: 0; color: rgba(255, 255, 255, .72); font-size: 18px; line-height: 1.65; }

.hero-mark {
  position: relative;
  z-index: 2;
  width: 174px;
  height: 174px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-left: 60px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
}

.hero-mark::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.hero-mark span { font: 700 39px Manrope, sans-serif; letter-spacing: -.08em; }
.hero-mark small { position: absolute; width: 180px; bottom: -38px; text-align: center; color: rgba(255,255,255,.58); font-size: 10px; line-height: 1.5; text-transform: uppercase; letter-spacing: .13em; }

.contact-section { padding: 86px 0 74px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 38px; }
.section-heading h2 { margin: 13px 0 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p { max-width: 310px; margin: 0 0 5px; color: var(--muted); line-height: 1.6; }

.contact-grid { display: grid; grid-template-columns: 1.08fr 1fr 1fr; gap: 18px; }

.contact-card {
  min-width: 0;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(31, 58, 49, .08);
  border-radius: 3px 3px 20px 3px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-card:hover { transform: translateY(-4px); box-shadow: 0 28px 75px rgba(28, 49, 42, .13); }
.contact-card-featured { background: #edf5fa; border-color: #d5e5ef; }
.card-topline { min-height: 28px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.card-icon { color: #81928b; font: 600 11px Manrope, sans-serif; letter-spacing: .12em; }
.card-kicker { color: #7c8984; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.availability { display: flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 99px; background: #dcebf5; color: #396d91; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.availability i { width: 6px; height: 6px; border-radius: 50%; background: #5f9ac3; box-shadow: 0 0 0 3px rgba(95,154,195,.14); }
.person, .leader { display: flex; align-items: center; gap: 15px; }

.avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
  border-radius: 50% 50% 50% 9px;
  font: 700 14px Manrope, sans-serif;
  letter-spacing: .04em;
}

.avatar-sand { background: var(--sand); color: #655d4d; }
.avatar-blue { background: #527f9f; }
.avatar-blue-light { background: var(--blue); color: #456d88; }
.role { margin: 0 0 3px; color: #708079; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.contact-card h3 { margin: 0; font-size: 21px; letter-spacing: -.035em; }
.card-description { min-height: 72px; margin: 29px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.contact-actions { margin-top: auto; }

.phone-line { display: flex; align-items: center; min-height: 56px; margin-bottom: 10px; padding: 6px 14px; background: rgba(255,255,255,.62); border: 1px solid #d4e3ed; border-radius: 3px 3px 12px 3px; }
.contact-label { margin-right: 18px; color: #788a82; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.phone-image { display: block; max-width: calc(100% - 48px); height: 44px; }

.mail-link { min-width: 0; display: flex; align-items: center; gap: 10px; overflow-wrap: anywhere; color: #426d89; font-size: 12px; font-weight: 600; line-height: 1.35; text-decoration: none; }
.mail-link:hover { color: #244e6a; text-decoration: underline; text-underline-offset: 3px; }
.mail-symbol { width: 27px; height: 27px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid #cad6d0; border-radius: 50%; font-size: 10px; }

.invoice-box { margin-top: 18px; padding: 15px 16px; background: #f3f0e8; border-radius: 3px 3px 12px 3px; }
.invoice-box span { display: block; margin-bottom: 5px; color: #807968; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.invoice-box a { color: #544f43; font-size: 12px; font-weight: 700; overflow-wrap: anywhere; text-decoration: none; }
.invoice-box a:hover { text-decoration: underline; }

.leadership-list { display: grid; gap: 0; margin-top: 3px; }
.leader { align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.leader:first-child { padding-top: 0; }
.leader:last-child { border-bottom: 0; }
.leader .avatar { width: 48px; height: 48px; }
.leader h3 { margin-bottom: 11px; }
.mail-link.compact { font-size: 11px; }

.service-note { min-height: 116px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px; margin-bottom: 86px; padding: 24px 34px; border-top: 1px solid #cbd3ce; border-bottom: 1px solid #cbd3ce; }
.service-note-mark { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: white; font: 700 18px Manrope, sans-serif; }
.service-note p { margin: 0; color: var(--muted); }
.service-note p strong { color: var(--ink); }
.service-note > a { color: var(--forest); font-size: 13px; font-weight: 700; text-decoration: none; }
.service-note > a span { margin-left: 7px; }

.site-footer { background: var(--forest-deep); color: rgba(255,255,255,.64); }
.footer-inner { min-height: 142px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand-footer { color: white; }
.brand-footer .brand-sign { border-color: white; }
.brand-footer .brand-sign i { background: white; }
.site-footer p, .site-footer a { font-size: 12px; }
.site-footer a { color: rgba(255,255,255,.75); text-decoration: none; }

@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-card:last-child { grid-column: 1 / -1; min-height: auto; }
  .contact-card:last-child .leadership-list { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-card:last-child .leader { border-bottom: 0; padding: 10px 0; }
  .hero-mark { margin-left: 30px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 78px; }
  nav > a:first-child { display: none; }
  .nav-cta { padding: 11px 15px; font-size: 12px; }
  .hero { min-height: 410px; padding: 46px 29px 62px; align-items: flex-start; }
  .hero-mark { position: absolute; width: 110px; height: 110px; right: 28px; bottom: 38px; opacity: .72; }
  .hero-mark span { font-size: 28px; }
  .hero-mark small { display: none; }
  h1 { font-size: clamp(30px, 9.2vw, 40px); }
  .hero-copy p { padding-right: 8px; font-size: 16px; }
  .contact-section { padding: 64px 0 54px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 15px; margin-bottom: 28px; }
  .section-heading > p { max-width: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: auto; padding: 26px; }
  .contact-card:last-child { grid-column: auto; }
  .contact-card:last-child .leadership-list { grid-template-columns: 1fr; gap: 0; }
  .contact-card:last-child .leader { padding: 22px 0; border-bottom: 1px solid var(--line); }
  .contact-card:last-child .leader:last-child { border-bottom: 0; }
  .service-note { grid-template-columns: auto 1fr; padding: 24px 8px; }
  .service-note > a { grid-column: 2; }
  .footer-inner { padding: 38px 0; flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
