@font-face {
  font-family: 'Usual';
  src: url('usual-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Usual';
  src: url('usual-italic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Usual';
  src: url('usual-medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Usual';
  src: url('usual-mediumitalic-webfont.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Usual';
  src: url('usual-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Usual';
  src: url('usual-bolditalic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Usual';
  src: url('usual-extrabold-webfont.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Usual';
  src: url('usual-extrabolditalic-webfont.woff') format('woff');
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: 'Usual';
  src: url('usual-light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Usual';
  src: url('usual-lightitalic-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}

:root {
  --plum: #8a5f8a;
  --blue: #5b80bb;
  --teal: #0f7f8c;
  --ink: #161616;
  --muted: #5f5f5f;
  --paper: #edf6f6;
  --panel: #f7fbfb;
  --max: 1180px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Usual', Arial, sans-serif;
  color: var(--ink);
  background: #f4fafa;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--plum);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.site-header.has-brand .nav-wrap {
  min-height: auto;
}

.nav-brand {
  display: inline-flex;
  justify-content: center;
}

.nav-brand img {
  width: clamp(170px, 22vw, 250px);
  height: auto;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 54px);
  flex-wrap: wrap;
}

.site-header.has-brand .nav {
  justify-content: center;
}

.page-brand {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 26px 0 8px;
}

.page-brand img {
  width: clamp(170px, 22vw, 250px);
  height: auto;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.25rem 0.1rem;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.page-shell {
  min-height: calc(100vh - 86px);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 80px) 28px clamp(56px, 8vw, 92px);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) clamp(125px, 12vw, 165px) minmax(360px, 1.2fr);
  align-items: center;
  gap: clamp(30px, 4vw, 72px);
}

.hero-logo {
  width: min(100%, 470px);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.06));
}

.headshot-frame {
  width: clamp(125px, 12vw, 165px);
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e4ecec;
}

.headshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy p {
  margin: 0;
  font-size: clamp(1.1rem, 1.9vw, 1.7rem);
  line-height: 1.28;
  font-weight: 400;
  max-width: 27ch;
}

.hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 2.9vw, 3rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.content-space {
  min-height: 53vh;
}

.feature-panel,
.content-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 84px;
}

.content-block {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(91,128,187,0.14);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.kicker {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.lead {
  font-size: clamp(1.15rem, 1.85vw, 1.4rem);
  line-height: 1.5;
  color: #202020;
}

.stat-list {
  display: grid;
  gap: 14px;
}

.stat {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(84,121,185,0.08);
  border: 1px solid rgba(84,121,185,0.12);
}

.stat strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.page-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 28px 26px;
}

.page-intro h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-intro p {
  margin: 0;
  max-width: 48rem;
  color: #333;
  font-size: 1.15rem;
  line-height: 1.6;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 28px;
}

.card {
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(91,128,187,0.14);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.sidebar-photo {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 22px;
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  border-radius: 20px;
  background: #e4ecec;
  box-shadow: var(--shadow);
}

.sidebar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h2 {
  margin: 0 0 14px;
  font-size: 1.55rem;
  font-weight: 700;
}

.card p,
.card li {
  font-size: 1.04rem;
  line-height: 1.65;
  color: #252525;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.full-width-card {
  margin-top: 28px;
}

.two-column-list {
  columns: 2;
  column-gap: 32px;
}

.two-column-list li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(91,128,187,0.14);
  overflow: hidden;
}

.logo-tile img {
  width: calc(100% * var(--logo-scale, 1));
  height: calc(100% * var(--logo-scale, 1));
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.logo-tile--tight {
  --logo-scale: 1.18;
}

.client-groups {
  display: grid;
  gap: 18px;
}

.client-group h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.client-group ul {
  margin: 0;
  padding-left: 1rem;
}

.client-group li {
  font-size: 0.92rem;
  line-height: 1.5;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(138,95,138,0.12);
  color: #4b3150;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-footer {
  background: var(--blue);
  color: white;
  margin-top: 70px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 28px 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-contact {
  font-size: 0.98rem;
  line-height: 1.45;
}

.footer-contact strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.footer-contact a {
  color: white;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.footer-tagline {
  font-size: clamp(1.2rem, 1.9vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: right;
}

.footer-tagline em {
  font-style: italic;
  font-weight: 700;
}

@media (max-width: 920px) {
  .hero-card {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 24px;
  }
  .headshot-frame {
    width: 140px;
  }
  .hero-copy p {
    max-width: 20ch;
  }
  .content-grid,
  .two-col,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .site-header.has-brand .nav-wrap {
    min-height: auto;
  }
  .footer-tagline {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .nav {
    gap: 12px 20px;
    padding: 16px 0;
    min-height: auto;
  }
  .nav a {
    font-size: 0.98rem;
  }
  .site-header.has-brand .nav-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-header.has-brand .nav {
    justify-content: center;
  }
  .page-brand img {
    width: min(220px, 62vw);
  }
  .nav-brand img {
    width: min(220px, 62vw);
  }
  .hero {
    padding-top: 32px;
  }
  .hero-logo {
    max-width: 310px;
  }
  .content-block,
  .card {
    border-radius: 20px;
    padding: 22px;
  }
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-column-list {
    columns: 1;
  }
}
