:root {
  --paper: #ffffff;
  --mineral-50: #f5f7fa;
  --mineral-100: #e9edf3;
  --cobalt-50: #edf3ff;
  --sand-50: #fbf6ed;
  --midnight: #071b3d;
  --ink: #111a2c;
  --slate: #5b6475;
  --cobalt: #3157d5;
  --cobalt-dark: #2342a8;
  --warm: #c8876d;
  --focus: #ffbf47;
  --line: #d9dee7;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - clamp(40px, 7vw, 96px)));
  margin-inline: auto;
}

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-notice {
  color: #fff;
  background: var(--midnight);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-notice__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.service-notice__inner span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.service-notice__divider {
  width: 1px;
  height: 14px;
  background: rgb(255 255 255 / 35%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgb(7 27 61 / 10%);
}

.header-layout {
  min-height: 98px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  color: var(--midnight);
  text-decoration: none;
  line-height: 1;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.brand__descriptor {
  margin-top: 7px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand__logo {
  width: 188px;
  height: auto;
}

.header-accreditation {
  width: 138px;
  height: 64px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav a {
  position: relative;
  padding-block: 12px;
  color: #263249;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.office-menu {
  position: relative;
}

.office-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 4px;
  color: var(--slate);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  list-style: none;
}

.office-menu summary::-webkit-details-marker {
  display: none;
}

.office-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 250px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgb(7 27 61 / 14%);
}

.office-menu__panel a {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 0.8rem;
}

.office-menu__panel a:hover {
  background: var(--cobalt-50);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button--primary {
  color: #fff;
  background: var(--cobalt);
}

.button--primary:hover {
  background: var(--cobalt-dark);
}

.button--secondary {
  color: var(--midnight);
  background: transparent;
  border-color: #98a2b4;
}

.button--secondary:hover {
  color: #fff;
  background: var(--midnight);
  border-color: var(--midnight);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  background: transparent;
  border: 1px solid var(--line);
  font-size: 1.4rem;
}

.hero {
  background: var(--mineral-50);
}

.hero-layout {
  min-height: 632px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 5vw, 76px);
  padding-block: clamp(72px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cobalt);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.faq-heading h2,
.closing-cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--midnight);
  font-size: clamp(3.2rem, 5.5vw, 5.55rem);
  line-height: 0.98;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--slate);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-credential {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid #d1d7e1;
}

.hero-credential > i {
  color: var(--cobalt);
  font-size: 1.55rem;
}

.hero-credential p {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

.hero-credential span {
  color: var(--slate);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 42%;
  height: 42%;
  background: var(--warm);
}

.hero-media::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 22%;
  height: 22%;
  border-right: 1px solid var(--cobalt);
  border-bottom: 1px solid var(--cobalt);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.proof-band {
  color: #fff;
  background: var(--cobalt);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 134px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 26px clamp(20px, 2.4vw, 36px);
  border-left: 1px solid rgb(255 255 255 / 25%);
}

.proof-item:last-child {
  border-right: 1px solid rgb(255 255 255 / 25%);
}

.proof-item > i {
  font-size: 1.65rem;
}

.proof-item h2 {
  margin: 0 0 5px;
  font-size: 0.86rem;
}

.proof-item p {
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 0.72rem;
  line-height: 1.55;
}

.section {
  padding-block: clamp(78px, 8vw, 118px);
}

.section--sand {
  background: var(--sand-50);
}

.section--blue {
  background: var(--cobalt-50);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(44px, 5vw, 70px);
}

.section-heading--centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.faq-heading h2 {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 20px auto 0;
  color: var(--slate);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid #ded8cd;
}

.help-item {
  padding: 38px clamp(22px, 3vw, 40px);
  border-left: 1px solid #ded8cd;
}

.help-item:first-child {
  border-left: 0;
}

.help-item > i {
  color: var(--cobalt);
  font-size: 2rem;
}

.help-item h3 {
  margin: 22px 0 10px;
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.25;
}

.help-item p {
  margin: 0;
  color: var(--slate);
  font-size: 0.86rem;
}

.service-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 30px;
}

.service-summary p {
  max-width: 820px;
  margin: 0;
  color: var(--slate);
  font-size: 0.88rem;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cobalt);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--cobalt-dark);
}

.pricing-section {
  background: var(--paper);
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.pricing-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.78rem;
}

.pricing-table th,
.pricing-table td {
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.pricing-table th:first-child {
  width: 28%;
  text-align: left;
}

.pricing-table thead th {
  padding-block: 20px;
  color: var(--midnight);
  background: var(--mineral-50);
  font-size: 0.82rem;
}

.pricing-table thead th:not(:first-child) {
  color: #fff;
  background: var(--cobalt);
}

.pricing-table tr > *:last-child {
  border-right: 0;
}

.pricing-table tbody tr:last-child > * {
  border-bottom: 0;
}

.pricing-table tbody th {
  color: #3d485d;
  font-weight: 500;
}

.pricing-table .ph-check {
  color: var(--cobalt);
  font-size: 1.25rem;
  font-weight: 700;
}

.price-row td {
  padding-block: 25px;
}

.price-row td > * {
  display: block;
}

.price-row td strong {
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.price-row td span {
  color: var(--slate);
  font-size: 0.68rem;
}

.table-actions td {
  padding: 16px;
}

.button--table {
  width: 100%;
  min-height: 42px;
  color: var(--cobalt);
  background: var(--cobalt-50);
}

.button--table:hover {
  color: #fff;
  background: var(--cobalt);
}

.pricing-cards {
  display: none;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 0.75rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 78px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 42px clamp(20px, 3vw, 42px) 0;
  border-top: 1px solid #bdc8db;
  text-align: center;
}

.process-list__number {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cobalt);
  border: 5px solid var(--cobalt-50);
  border-radius: 50%;
  font-size: 0.66rem;
  transform: translateX(-50%);
}

.process-list li > i {
  color: var(--cobalt);
  font-size: 2rem;
}

.process-list h3 {
  margin: 20px 0 9px;
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.process-list p {
  margin: 0;
  color: var(--slate);
  font-size: 0.8rem;
}

.why-section {
  color: #fff;
  background: var(--midnight);
}

.section-heading--inverse h2 {
  color: #fff;
}

.section-heading--inverse .eyebrow {
  color: #94aefc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 17%);
  border-left: 1px solid rgb(255 255 255 / 17%);
}

.why-grid article {
  min-height: 178px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid rgb(255 255 255 / 17%);
  border-bottom: 1px solid rgb(255 255 255 / 17%);
}

.why-grid article > span {
  color: #7895ee;
  font-size: 0.68rem;
  font-weight: 700;
}

.why-grid h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.why-grid p {
  margin: 0;
  color: rgb(255 255 255 / 67%);
  font-size: 0.79rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 58px);
}

.team-profile {
  display: grid;
  grid-template-columns: minmax(170px, 0.84fr) minmax(0, 1.16fr);
  min-height: 330px;
  background: #fff;
  border: 1px solid #e0d9ce;
}

.team-profile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-profile__content {
  padding: clamp(25px, 3vw, 42px);
}

.team-profile h3 {
  margin: 0;
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 1.75rem;
}

.team-role {
  margin: 5px 0 20px;
  color: var(--cobalt);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.team-profile ul,
.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-profile li {
  position: relative;
  padding: 9px 0 9px 18px;
  color: var(--slate);
  border-top: 1px solid #e6e1d8;
  font-size: 0.77rem;
}

.team-profile li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--cobalt);
}

.associations-section {
  background: var(--mineral-100);
}

.association-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  border-block: 1px solid #cfd5df;
}

.association-grid figure {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 30px;
  border-left: 1px solid #cfd5df;
}

.association-grid figure:first-child {
  border-left: 0;
}

.association-grid img {
  width: 100%;
  max-width: 150px;
  max-height: 105px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.faq-section {
  background: var(--paper);
}

.faq-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 90px);
}

.faq-column {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: var(--midnight);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.faq-item button i {
  color: var(--cobalt);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 44px 22px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--slate);
  font-size: 0.83rem;
}

.closing-cta {
  padding-block: clamp(65px, 7vw, 92px);
  color: #fff;
  background: var(--cobalt);
}

.closing-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.closing-cta h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.35rem);
  line-height: 1;
}

.closing-cta p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 77%);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button--light {
  color: var(--cobalt);
  background: #fff;
}

.button--light:hover {
  color: var(--midnight);
  background: var(--sand-50);
}

.button--dark-outline {
  color: #fff;
  background: transparent;
  border-color: rgb(255 255 255 / 58%);
}

.button--dark-outline:hover {
  color: var(--cobalt);
  background: #fff;
}

.office-list {
  display: grid;
  min-width: 300px;
  margin: 0;
  font-style: normal;
}

.office-list a {
  min-height: 58px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 13px;
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / 26%);
  font-size: 0.76rem;
  text-decoration: none;
}

.office-list strong {
  font-size: 0.82rem;
}

.site-footer {
  padding-block: 72px 28px;
  color: #b4bfd2;
  background: var(--midnight);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.75fr) 1.25fr;
  gap: clamp(28px, 4vw, 58px);
}

.footer-brand img {
  width: 210px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 310px;
  margin: 24px 0 0;
  font-size: 0.77rem;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  min-width: 44px;
  min-height: 44px;
  display: block;
  width: fit-content;
  padding-block: 5px;
  color: #b4bfd2;
  font-size: 0.76rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.acknowledgement p {
  margin: 0;
  font-size: 0.76rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  min-width: 44px;
  padding: 0;
  font-size: inherit;
}

@media (max-width: 1160px) {
  .header-layout {
    grid-template-columns: auto 1fr auto;
  }

  .header-accreditation {
    display: none;
  }

  .primary-nav {
    justify-content: flex-end;
  }

  .header-quote {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 48px;
  }

  .team-profile {
    grid-template-columns: 1fr;
  }

  .team-profile > img {
    height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 0.8fr);
  }

  .acknowledgement {
    grid-column: 1 / -1;
    padding-top: 25px;
    border-top: 1px solid rgb(255 255 255 / 16%);
  }
}

@media (max-width: 900px) {
  .header-layout {
    min-height: 80px;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px clamp(20px, 5vw, 44px) 26px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgb(7 27 61 / 12%);
  }

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

  .primary-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 72px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-media {
    max-width: 680px;
  }

  .proof-grid,
  .help-grid,
  .process-list,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(3) {
    border-top: 1px solid rgb(255 255 255 / 25%);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid rgb(255 255 255 / 25%);
  }

  .help-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #ded8cd;
  }

  .help-item:nth-child(4) {
    border-top: 1px solid #ded8cd;
  }

  .team-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .team-profile {
    grid-template-columns: minmax(190px, 0.85fr) minmax(0, 1.15fr);
  }

  .team-profile > img {
    height: 100%;
  }

  .association-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .association-grid figure:nth-child(4) {
    border-left: 0;
    border-top: 1px solid #cfd5df;
  }

  .association-grid figure:nth-child(5) {
    border-top: 1px solid #cfd5df;
  }

  .closing-layout {
    grid-template-columns: 1fr;
  }

  .office-list {
    min-width: 0;
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .service-notice__inner {
    min-height: 48px;
    flex-wrap: wrap;
    gap: 4px 10px;
    padding-block: 6px;
    text-align: center;
    line-height: 1.35;
  }

  .service-notice__divider {
    display: none;
  }

  .service-notice__inner strong {
    flex-basis: 100%;
  }

  .brand__name {
    font-size: 1.4rem;
  }

  .brand__logo {
    width: 150px;
  }

  .brand__descriptor {
    font-size: 0.56rem;
  }

  .office-menu summary {
    width: 44px;
    justify-content: center;
  }

  .office-menu summary span {
    display: none;
  }

  .office-menu__panel {
    position: fixed;
    top: 132px;
    right: 20px;
  }

  .hero-layout {
    padding-block: 58px 68px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .hero h1 br {
    display: none;
  }

  .hero-lead {
    margin-top: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-credential {
    margin-top: 30px;
  }

  .hero-media::before {
    top: -12px;
    right: -12px;
  }

  .hero-media::after {
    right: -12px;
    bottom: -12px;
  }

  .proof-grid,
  .help-grid,
  .process-list,
  .why-grid,
  .association-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 112px;
    padding-inline: 18px;
    border-top: 1px solid rgb(255 255 255 / 25%);
    border-right: 1px solid rgb(255 255 255 / 25%);
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .faq-heading h2 {
    font-size: 2.55rem;
  }

  .help-item,
  .help-item:nth-child(4) {
    padding: 30px 0;
    border-top: 1px solid #ded8cd;
    border-left: 0;
  }

  .help-item:first-child {
    border-top: 0;
  }

  .service-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .pricing-table-wrap {
    display: none;
  }

  .pricing-cards {
    display: grid;
    gap: 16px;
  }

  .pricing-card {
    padding: 28px;
    border: 1px solid var(--line);
  }

  .pricing-card h3 {
    margin: 0;
    color: var(--midnight);
    font-family: var(--serif);
    font-size: 1.35rem;
  }

  .pricing-card__price {
    margin: 12px 0 22px;
    color: var(--midnight);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
  }

  .pricing-card__price span {
    display: block;
    color: var(--slate);
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
  }

  .pricing-card li {
    padding: 9px 0;
    color: var(--slate);
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
  }

  .pricing-card .button {
    width: 100%;
    margin-top: 22px;
  }

  .process-list {
    margin-top: 40px;
  }

  .process-list li {
    min-height: 0;
    padding: 28px 0 32px 54px;
    border-top: 0;
    border-left: 1px solid #bdc8db;
    text-align: left;
  }

  .process-list__number {
    top: 30px;
    left: -1px;
  }

  .why-grid {
    border-left: 0;
  }

  .why-grid article {
    min-height: 0;
    padding-inline: 0;
    border-right: 0;
  }

  .team-profile {
    grid-template-columns: 1fr;
  }

  .team-profile > img {
    height: 290px;
  }

  .association-grid figure,
  .association-grid figure:nth-child(5) {
    min-height: 155px;
    border-top: 1px solid #cfd5df;
    border-left: 0;
  }

  .association-grid figure:first-child {
    border-top: 0;
  }

  .faq-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .faq-item button {
    min-height: 68px;
  }

  .closing-layout {
    gap: 44px;
  }

  .closing-cta h2 {
    font-size: 2.9rem;
  }

  .closing-actions {
    flex-direction: column;
  }

  .closing-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .acknowledgement {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer a {
    display: flex;
    align-items: center;
  }
}

@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;
  }
}

/* ---------- Inner pages ---------- */
.primary-nav a.is-current::after {
  transform: scaleX(1);
}

.inner-hero {
  background: var(--mineral-50);
}

.inner-hero__layout {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 5vw, 76px);
  padding-block: clamp(72px, 8vw, 108px);
}

.inner-hero__copy h1,
.contact-hero h1 {
  margin: 0;
  color: var(--midnight);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.inner-hero__lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--slate);
  font-size: 1.05rem;
}

.inner-hero__media {
  position: relative;
  margin: 0;
}

.inner-hero__media::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 35%;
  height: 35%;
  background: var(--warm);
}

.inner-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-hero {
  background: var(--sand-50);
}

.about-hero__media {
  overflow: hidden;
  background: #e9edf3;
}

.about-hero__media img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  object-position: right center;
}

.service-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #ded8cd;
}

.service-package {
  padding: clamp(30px, 3.5vw, 48px);
  border-left: 1px solid #ded8cd;
}

.service-package:first-child {
  border-left: 0;
}

.service-package__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  border: 1px solid #b9c7ef;
  font-size: 1.75rem;
}

.service-package__label {
  margin: 26px 0 8px;
  color: var(--cobalt);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-package h3,
.split-heading h2,
.super-layout h2,
.story-intro h2,
.contact-form-panel h2,
.contact-sidebar h2,
.contact-note h2 {
  margin: 0;
  color: var(--midnight);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.service-package h3 {
  font-size: 1.55rem;
  line-height: 1.15;
}

.service-package > p:not(.service-package__label, .service-package__price) {
  min-height: 78px;
  margin: 15px 0 24px;
  color: var(--slate);
  font-size: 0.82rem;
}

.service-package ul {
  min-height: 165px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-package li {
  position: relative;
  padding: 9px 0 9px 19px;
  color: var(--slate);
  border-top: 1px solid #e1dbd1;
  font-size: 0.75rem;
}

.service-package li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--cobalt);
}

.service-package__price {
  margin: 28px 0 14px;
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}

.service-package__price span,
.service-package__price small {
  display: block;
  color: var(--slate);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
  margin-bottom: 58px;
}

.split-heading h2,
.super-layout h2,
.story-intro h2 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.06;
}

.split-heading > p {
  margin: 0;
  color: var(--slate);
}

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.inclusion-grid article {
  min-height: 230px;
  position: relative;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inclusion-grid article > span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #9aa5b8;
  font-size: 0.64rem;
}

.inclusion-grid article > i {
  color: var(--cobalt);
  font-size: 1.75rem;
}

.inclusion-grid h3 {
  margin: 22px 0 8px;
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.inclusion-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 0.76rem;
}

.service-fit {
  color: #fff;
  background: var(--midnight);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgb(255 255 255 / 17%);
}

.fit-grid article {
  padding: clamp(34px, 5vw, 64px);
}

.fit-grid article + article {
  border-left: 1px solid rgb(255 255 255 / 17%);
}

.fit-grid__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.fit-grid__label i {
  color: #94aefc;
}

.fit-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  padding: 15px 0;
  color: rgb(255 255 255 / 72%);
  border-top: 1px solid rgb(255 255 255 / 14%);
  font-size: 0.84rem;
}

.super-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  gap: clamp(60px, 9vw, 130px);
}

.super-layout > div > p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--slate);
}

.super-layout ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.super-layout li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid #ded8cd;
}

.super-layout li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cobalt);
  border-radius: 50%;
  font-size: 0.68rem;
}

.super-layout h3 {
  margin: 0 0 6px;
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 1.13rem;
}

.super-layout li p {
  margin: 0;
  color: var(--slate);
  font-size: 0.78rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  gap: clamp(60px, 9vw, 135px);
}

.story-copy {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.story-copy p {
  margin: 0 0 22px;
  color: var(--slate);
  font-size: 0.95rem;
}

.story-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-block: 1px solid var(--line);
}

.story-stat-grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 34px;
  border-left: 1px solid var(--line);
}

.story-stat-grid article:first-child {
  border-left: 0;
}

.story-stat-grid strong {
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 2.3rem;
}

.story-stat-grid span {
  color: var(--slate);
  font-size: 0.73rem;
}

.office-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.office-card-grid article {
  padding: clamp(30px, 4vw, 52px);
  border-left: 1px solid var(--line);
}

.office-card-grid article:first-child {
  border-left: 0;
}

.office-card-grid i {
  color: var(--cobalt);
  font-size: 1.8rem;
}

.office-card-grid h3 {
  margin: 20px 0 12px;
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.office-card-grid address {
  margin-bottom: 18px;
  color: var(--slate);
  font-size: 0.78rem;
  font-style: normal;
}

.office-card-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cobalt);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

/* ---------- Contact ---------- */
.contact-hero {
  padding-block: clamp(68px, 8vw, 108px);
  color: #fff;
  background: var(--midnight);
}

.contact-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
}

.contact-hero h1 {
  max-width: 850px;
  color: #fff;
}

.contact-hero .eyebrow {
  color: #94aefc;
}

.contact-hero__layout > div:first-child > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 72%);
}

.contact-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: clamp(48px, 8vw, 110px);
}

.contact-form-panel h2,
.contact-sidebar h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
}

.contact-form-panel__intro {
  max-width: 620px;
  margin: 18px 0 38px;
  color: var(--slate);
  font-size: 0.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--midnight);
  font-size: 0.75rem;
  font-weight: 700;
}

.form-field label span {
  color: var(--cobalt);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bdc5d1;
  border-radius: 0;
  font: inherit;
  font-size: 0.88rem;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cobalt);
  outline: 3px solid rgb(49 87 213 / 16%);
}

.form-field [aria-invalid="true"] {
  border-color: #a72f2f;
}

.field-error {
  min-height: 18px;
  color: #8f2525;
  font-size: 0.68rem;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
}

.form-consent input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
}

.form-consent label {
  color: var(--slate);
  font-weight: 500;
}

.form-submit {
  margin-top: 26px;
}

.form-status {
  min-height: 25px;
  margin: 15px 0 0;
  color: var(--cobalt-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.contact-sidebar {
  padding: 42px;
  background: var(--sand-50);
  border: 1px solid #e0d9ce;
}

.direct-contact-list {
  margin-top: 30px;
  border-top: 1px solid #ded8cd;
}

.direct-contact-list article,
.office-hours {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid #ded8cd;
}

.direct-contact-list i,
.office-hours > i {
  color: var(--cobalt);
  font-size: 1.3rem;
}

.direct-contact-list h3,
.office-hours h3 {
  margin: 0 0 6px;
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.direct-contact-list address,
.office-hours p {
  margin: 0 0 7px;
  color: var(--slate);
  font-size: 0.72rem;
  font-style: normal;
}

.direct-contact-list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cobalt);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #ded8cd;
}

.contact-path-grid article {
  padding: clamp(30px, 4vw, 48px);
  border-left: 1px solid #ded8cd;
}

.contact-path-grid article:first-child {
  border-left: 0;
}

.contact-path-grid > article > i {
  color: var(--cobalt);
  font-size: 1.8rem;
}

.contact-path-grid h3 {
  margin: 20px 0 10px;
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.contact-path-grid p {
  min-height: 80px;
  margin: 0 0 16px;
  color: var(--slate);
  font-size: 0.78rem;
}

.contact-note {
  padding-block: 54px;
  background: var(--cobalt-50);
}

.contact-note__layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.contact-note__layout > i {
  color: var(--cobalt);
  font-size: 2rem;
}

.contact-note h2 {
  font-size: 1.4rem;
}

.contact-note p {
  max-width: 800px;
  margin: 7px 0 0;
  color: var(--slate);
  font-size: 0.78rem;
}

@media (max-width: 1160px) {
  .inner-hero__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 48px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .inner-hero__layout,
  .story-layout,
  .super-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .inner-hero__media {
    max-width: 700px;
  }

  .service-package-grid,
  .contact-path-grid {
    grid-template-columns: 1fr;
  }

  .service-package,
  .contact-path-grid article {
    border-top: 1px solid #ded8cd;
    border-left: 0;
  }

  .service-package:first-child,
  .contact-path-grid article:first-child {
    border-top: 0;
  }

  .service-package > p:not(.service-package__label, .service-package__price),
  .service-package ul,
  .contact-path-grid p {
    min-height: 0;
  }

  .inclusion-grid,
  .story-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

  .contact-hero__layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-hero__actions {
    min-width: 0;
    flex-direction: row;
  }

  .contact-sidebar {
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  .inner-hero__layout {
    min-height: 0;
    padding-block: 58px 70px;
  }

  .inner-hero__copy h1,
  .contact-hero h1 {
    font-size: 3rem;
  }

  .inner-hero__media::before {
    top: -10px;
    right: -10px;
  }

  .service-package {
    padding-inline: 0;
  }

  .inclusion-grid,
  .fit-grid,
  .story-stat-grid,
  .office-card-grid,
  .contact-path-grid {
    grid-template-columns: 1fr;
  }

  .inclusion-grid {
    border-left: 0;
  }

  .inclusion-grid article {
    min-height: 0;
    padding-inline: 0;
    border-right: 0;
  }

  .fit-grid article + article {
    border-top: 1px solid rgb(255 255 255 / 17%);
    border-left: 0;
  }

  .story-stat-grid article,
  .office-card-grid article {
    min-height: 120px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .story-stat-grid article:first-child,
  .office-card-grid article:first-child {
    border-top: 0;
  }

  .contact-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .contact-hero__actions .button {
    width: 100%;
  }

  .contact-form-panel h2,
  .contact-sidebar h2 {
    font-size: 2.4rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .contact-sidebar {
    padding: 28px 22px;
  }

  .contact-note__layout {
    grid-template-columns: auto 1fr;
  }

  .contact-note__layout .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}
