:root {
  --charcoal: #2f3338;
  --blue: #2f67a3;
  --grey: #858d98;
  --pale: #f5f7f9;
  --white: #ffffff;
  --border: #dfe4e9;
  --font: "Avenir Next", Avenir, Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--white);
  font-family: var(--font);
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: relative;
  z-index: 20;
  height: 100px;
  border-bottom: 1px solid #edf0f2;
  background: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: block;
  width: 250px;
}

.brand img {
  width: 298px;
  max-width: none;
  height: auto;
  transform: translateX(-7.71%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.site-nav a,
.footer-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a {
  padding-block: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.footer-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: clamp(620px, 74vh, 740px);
  min-height: clamp(620px, 74svh, 740px);
  overflow: hidden;
  background: var(--pale);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1040px, 88%);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 1040px;
  margin-bottom: 28px;
  font-size: clamp(58px, 5.6vw, 82px);
  font-weight: 550;
}

.hero-copy > p {
  max-width: 730px;
  margin-bottom: 36px;
  color: #59616b;
  font-size: 21px;
  line-height: 1.7;
}

.hero-mark {
  position: absolute;
  top: 50%;
  right: 2%;
  width: 20px;
  height: 525px;
  background: var(--blue);
  opacity: 0.18;
  transform: translateY(-50%) rotate(-40deg);
  transform-origin: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 62px;
  padding: 16px 48px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.015em;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: #2a5f97;
}

.button-light {
  color: var(--charcoal);
  background: var(--white);
}

.button-light:hover {
  color: var(--charcoal);
  border-color: #eef1f4;
  background: #eef1f4;
}

.button-mark,
.small-mark,
.eyebrow > span {
  display: inline-block;
  width: 3px;
  background: var(--blue);
  transform: rotate(-40deg);
}

.button-mark {
  width: 2px;
  height: 18px;
  background: currentColor;
  opacity: 0.8;
}

.section {
  padding-block: 128px;
}

.section-intro {
  max-width: 790px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  height: 0.82em;
}

.what-we-do .eyebrow,
.approach .eyebrow,
.about .eyebrow {
  gap: 14px;
}

.section h2,
.contact h2,
.page-main h1 {
  margin-bottom: 28px;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 550;
}

.section-intro > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #5e6670;
  font-size: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 86px;
}

.service {
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.service h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  font-size: 26px;
  font-weight: 650;
}

.small-mark {
  flex: 0 0 auto;
  height: 24px;
  margin-top: 1px;
}

.service p {
  margin-bottom: 0;
  color: #5e6670;
}

.approach {
  background: var(--pale);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  grid-template-rows: auto auto;
  column-gap: 92px;
  row-gap: 0;
  align-items: start;
}

.approach-grid > *,
.about-grid > *,
.contact-grid > * {
  min-width: 0;
}

.approach h2 {
  margin-bottom: 0;
}

.approach-heading {
  display: grid;
  grid-row: 1 / span 2;
  grid-template-rows: subgrid;
}

.approach-copy {
  grid-column: 2;
  grid-row: 2;
  color: #525a64;
  font-size: 20px;
}

.approach-copy p:last-child {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 110px;
  align-items: start;
}

.portrait-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5.1;
  overflow: hidden;
  background: var(--pale);
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}

.about-copy {
  padding-top: 0;
}

.about-copy > p:not(.eyebrow) {
  color: #5e6670;
  font-size: 19px;
}

.about-copy > p:not(.eyebrow):last-of-type {
  margin-bottom: 0;
}

.signature {
  width: 170px;
  height: auto;
  margin-top: 28px;
}

.contact {
  padding-block: 118px;
  color: var(--white);
  background: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 120px;
  align-items: end;
}

.contact h2 {
  font-size: clamp(42px, 4.6vw, 62px);
}

.contact-copy > p {
  max-width: 680px;
  color: #c9cdd2;
}

.contact-copy > p:nth-of-type(2) {
  margin-bottom: 34px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 34px;
  border-left: 2px solid var(--blue);
  font-style: normal;
  line-height: 1.9;
}

.contact-details strong {
  margin-bottom: 4px;
  font-size: 20px;
}

.contact-role {
  margin-bottom: 22px;
  color: #aeb4bb;
  font-size: 15px;
  line-height: 1.5;
}

.contact-address {
  margin-bottom: 24px;
  color: #c9cdd2;
  font-size: 17px;
  line-height: 1.55;
}

.contact-company {
  display: block;
  margin-bottom: 2px;
  color: #d9dde1;
  font-weight: 600;
}

.contact-details a {
  color: var(--white);
  text-underline-offset: 4px;
  text-decoration-color: #6f7780;
}

.contact-details a:hover {
  text-decoration-color: var(--white);
}

@media (min-width: 761px) {
  .contact-details a {
    font-weight: 550;
    letter-spacing: 0.005em;
    line-height: 2;
  }
}

.site-footer {
  padding-block: 30px;
  color: #b9bec4;
  border-top: 1px solid #484d53;
  background: var(--charcoal);
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
}

.footer-company {
  color: var(--white);
  font-weight: 650;
}

.footer-nav {
  display: flex;
  gap: 26px;
}

.footer-nav a {
  padding-block: 3px;
}

.page-main {
  min-height: calc(100vh - 88px - 88px);
  min-height: calc(100svh - 88px - 88px);
  padding-block: 112px 128px;
  background: var(--pale);
}

.narrow-page {
  max-width: 820px;
}

.page-main h1 {
  margin-bottom: 42px;
  font-size: clamp(48px, 5vw, 66px);
}

.legal-brand-title {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
  white-space: nowrap;
}

.legal-title-logo {
  flex: 0 0 auto;
  width: 260px;
  height: auto;
}

.legal-title-suffix {
  font-size: 56px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.legal-details,
.privacy-copy {
  max-width: 670px;
  color: #515963;
}

.legal-details > p {
  margin-bottom: 42px;
  color: var(--charcoal);
  font-size: 21px;
}

.legal-details dl {
  margin: 0;
}

.legal-details dl > div {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  padding-block: 18px;
  border-top: 1px solid var(--border);
}

.legal-details dl > div:last-child {
  border-bottom: 1px solid var(--border);
}

.legal-details dt {
  color: var(--grey);
  font-size: 14px;
  font-weight: 650;
}

.legal-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 20px;
}

.legal-details a,
.privacy-copy a {
  text-decoration-color: #a8afb8;
  text-underline-offset: 4px;
}

.draft-note {
  max-width: 670px;
  margin-bottom: 44px;
  padding: 18px 20px;
  color: var(--charcoal);
  border-left: 3px solid var(--blue);
  background: var(--white);
  font-weight: 600;
}

.privacy-copy {
  font-size: 18px;
}

.privacy-page h1 {
  margin-bottom: 18px;
}

.privacy-updated {
  margin-bottom: 58px;
  color: var(--grey);
  font-size: 15px;
  font-weight: 650;
}

.privacy-copy section + section {
  margin-top: 56px;
}

.privacy-copy h2 {
  margin-bottom: 20px;
  color: var(--charcoal);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.privacy-copy p,
.privacy-copy ul {
  margin-bottom: 20px;
}

.privacy-copy ul {
  padding-left: 1.35em;
}

.privacy-copy li + li {
  margin-top: 7px;
}

.privacy-copy strong {
  color: var(--charcoal);
  font-weight: 650;
}

.privacy-copy a {
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.service-grid .reveal:nth-child(3) {
  transition-delay: 160ms;
}

@media (max-width: 900px) {
  .hero-copy {
    width: 82%;
  }

  .service-grid {
    gap: 36px;
  }

  .about-grid {
    gap: 60px;
  }

  .approach-grid {
    column-gap: 60px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .approach-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  }

  .portrait-wrap {
    aspect-ratio: 4 / 5;
  }

  .contact-grid {
    gap: 70px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

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

  .site-header {
    height: 76px;
  }

  .brand {
    width: 181px;
  }

  .brand img {
    width: 216px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 10px 10px;
    border: 0;
    color: var(--charcoal);
    background: transparent;
    font: 650 14px/1 var(--font);
    cursor: pointer;
  }

  .menu-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 14px;
  }

  .menu-icon i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-icon i:first-child {
    top: 2px;
  }

  .menu-icon i:last-child {
    top: 10px;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
    top: 6px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
    top: 6px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    border-top: 1px solid #edf0f2;
    border-bottom: 1px solid var(--border);
    background: var(--white);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
    padding-block: 52px 58px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    margin-bottom: 26px;
    font-size: clamp(40px, 11.7vw, 46px);
  }

  .hero h1 br,
  .contact h2 br {
    display: none;
  }

  .hero-copy > p {
    margin-bottom: 32px;
    font-size: 17px;
  }

  .hero-mark {
    top: -5%;
    right: -24%;
    width: 11px;
    height: 225px;
    opacity: 0.14;
    transform: rotate(-40deg);
  }

  .button {
    width: 100%;
    max-width: 420px;
  }

  .section {
    padding-block: 84px;
  }

  .section h2,
  .contact h2 {
    font-size: 39px;
  }

  .section-intro > p:last-child,
  .approach-copy {
    font-size: 17px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 58px;
  }

  .eyebrow {
    font-size: 15.5px;
  }

  .service {
    padding-top: 24px;
  }

  .service h3 {
    gap: 14px;
  }

  .service h3 .small-mark {
    width: 2px;
    height: 21px;
  }

  .service-grid .reveal:nth-child(n) {
    transition-delay: 0ms;
  }

  .approach-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    gap: 38px;
  }

  .approach-heading {
    display: block;
    grid-row: auto;
  }

  .approach-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .approach h2 br,
  .about h2 br {
    display: none;
  }

  .about-grid {
    gap: 54px;
  }

  .portrait-wrap {
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 4 / 5;
    justify-self: center;
  }

  .portrait-wrap img {
    object-position: 50% 35%;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: inherit;
  }

  .signature {
    width: 132px;
    margin-top: 26px;
  }

  .contact {
    padding-block: 84px;
  }

  .contact-grid {
    gap: 64px;
  }

  .contact-details {
    padding-left: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 8px;
  }

  .page-main {
    min-height: calc(100svh - 76px);
    padding-block: 76px 92px;
  }

  .page-main h1 {
    font-size: 46px;
  }

  .legal-brand-title {
    gap: 18px;
  }

  .legal-title-logo {
    width: 214px;
  }

  .legal-title-suffix {
    font-size: 45px;
  }

  .legal-details dd {
    font-size: 17px;
  }

  .legal-details dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .privacy-copy {
    font-size: 17px;
  }

  .privacy-updated {
    margin-bottom: 46px;
  }

  .privacy-copy section + section {
    margin-top: 46px;
  }

  .privacy-copy h2 {
    font-size: 19px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .contact-details a {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
