:root {
  --ink: #0a2540;
  --ink-deep: #071b2d;
  --teal: #0fa3a3;
  --teal-dark: #087b7c;
  --slate: #1e4e5f;
  --paper: #f7f9f9;
  --mist: #e4e9ea;
  --charcoal: #2b2e33;
  --white: #ffffff;
  --line: rgba(10, 37, 64, 0.15);
  --line-light: rgba(255, 255, 255, 0.2);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 22px 60px rgba(7, 27, 45, 0.14);
  --radius-sm: 0.4rem;
  --radius: 0.85rem;
  --radius-lg: 1.5rem;
  --shell: min(100% - 3rem, 76rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-weight: 750;
}

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

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

.home .site-header {
  color: var(--white);
  background: var(--ink);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.025em;
}

.home .brand {
  color: var(--white);
}

.brand__glyph {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand__name {
  display: grid;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.brand__name small {
  margin-top: 0.22rem;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.home .site-nav a:not(.button) {
  color: var(--white);
}

.site-nav a:not(.button)::after {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 0.25rem;
  content: "";
  background: var(--teal);
  transition: width 180ms ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -0.38rem;
}

.nav-toggle__icon::after {
  top: 0.38rem;
}

.site-header.is-menu-open .nav-toggle__icon {
  background: transparent;
}

.site-header.is-menu-open .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-menu-open .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-scrim {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.7rem 1.1rem;
  color: var(--white) !important;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

.button--light {
  color: var(--ink) !important;
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  color: var(--white) !important;
  background: transparent;
  border-color: var(--white);
}

.button--outline {
  color: var(--ink) !important;
  background: transparent;
  border-color: rgba(10, 37, 64, 0.42);
}

.button--outline:hover {
  color: var(--white) !important;
  background: var(--ink);
  border-color: var(--ink);
}

.button__arrow,
.text-link__arrow {
  font-size: 1.15em;
  line-height: 1;
  transition: transform 180ms ease;
}

.button:hover .button__arrow,
.text-link:hover .text-link__arrow {
  transform: translateX(0.2rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.05rem;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.55rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: #91dfdc;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 1.45rem;
  font-size: clamp(3rem, 6vw, 5.55rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.13rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.lede {
  max-width: 41rem;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section--white {
  background: var(--white);
}

.section--ink {
  color: #dbe7e8;
  background: var(--ink);
}

.section--ink h2,
.section--ink h3 {
  color: var(--white);
}

.section--slate {
  color: #e7f0f1;
  background: var(--slate);
}

.section--slate h2,
.section--slate h3 {
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.25rem, 5vw, 4.25rem);
}

.section-heading__copy {
  max-width: 37rem;
  margin: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #dce8e9;
  background: var(--ink);
}

.hero::before {
  position: absolute;
  top: -18rem;
  right: -15rem;
  width: min(55vw, 46rem);
  aspect-ratio: 1;
  border: 1px solid rgba(145, 223, 220, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 4.5rem rgba(145, 223, 220, 0.05), 0 0 0 9rem rgba(145, 223, 220, 0.03);
  content: "";
}

.hero::after {
  position: absolute;
  right: 7%;
  bottom: 11%;
  width: 5.5rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  gap: clamp(2.5rem, 8vw, 8.5rem);
  align-items: end;
  min-height: clamp(35rem, 75vh, 48rem);
  padding-top: clamp(4rem, 9vw, 8rem);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.hero h1 {
  color: var(--white);
}

.hero .lede {
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__text-link {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.1rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero__panel {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(5px);
}

.hero__panel::before {
  position: absolute;
  top: 0;
  left: 2rem;
  width: 3.2rem;
  height: 3px;
  content: "";
  background: var(--teal);
}

.hero__panel-title {
  margin-bottom: 1.1rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.hero__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__list li {
  display: flex;
  gap: 0.85rem;
  padding: 0.78rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  font-weight: 650;
}

.hero__list li::before {
  color: #8ee0dc;
  content: "0" counter(list-item, decimal-leading-zero);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero__note {
  margin: 1.25rem 0 0;
  color: #b9cdcf;
  font-size: 0.78rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.45rem, 3vw, 2.2rem);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: #edf7f7;
  transform: translateY(-0.25rem);
}

.service-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  aspect-ratio: 1;
  margin-bottom: auto;
  color: var(--teal-dark);
  background: #daf1f0;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 850;
}

.service-card h3 {
  max-width: 17rem;
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 500;
}

.service-card p {
  max-width: 28rem;
  margin-bottom: 1rem;
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal-dark);
  font-size: 0.83rem;
  font-weight: 850;
  text-decoration: none;
}

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

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.principle-card {
  padding: clamp(1.55rem, 3vw, 2.4rem);
  background: rgba(7, 27, 45, 0.16);
}

.principle-card__number {
  display: block;
  margin-bottom: 2.5rem;
  color: #8ee0dc;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.principle-card p {
  margin: 0;
  font-size: 0.94rem;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-panel__lead {
  position: relative;
  padding: clamp(2rem, 5vw, 4.7rem);
  color: #dce8e9;
  background: var(--ink);
}

.about-panel__lead::after {
  position: absolute;
  right: -3.5rem;
  bottom: -4rem;
  width: 13rem;
  aspect-ratio: 1;
  border: 1px solid rgba(145, 223, 220, 0.42);
  border-radius: 50%;
  content: "";
}

.about-panel__lead h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.about-panel__lead p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 29rem;
}

.about-panel__detail {
  display: grid;
  gap: 1.8rem;
  align-content: center;
  padding: clamp(2rem, 5vw, 4.7rem);
  background: #dff2f1;
}

.about-panel__detail p {
  margin: 0;
}

.about-panel__detail strong {
  color: var(--ink);
}

.profile-preview {
  display: grid;
  grid-template-columns: minmax(13rem, 0.48fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.profile-preview__image {
  width: 100%;
  max-width: 20rem;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  border-radius: calc(var(--radius-lg) - 0.25rem);
}

.profile-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.profile-preview__copy {
  max-width: 38rem;
  padding-block: 1rem;
}

.profile-preview__copy h2 {
  margin-bottom: 0.75rem;
}

.profile-preview__copy p:not(.eyebrow) {
  max-width: 34rem;
}

.profile-hero {
  position: relative;
  overflow: hidden;
  color: #dce8e9;
  background: var(--ink);
}

.profile-hero::after {
  position: absolute;
  right: -7rem;
  bottom: -13rem;
  width: min(42vw, 35rem);
  aspect-ratio: 1;
  border: 1px solid rgba(145, 223, 220, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(145, 223, 220, 0.04);
  content: "";
}

.profile-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7.25rem);
}

.profile-hero__image {
  width: 100%;
  max-width: 27rem;
  aspect-ratio: 433 / 518;
  margin: 0;
  overflow: hidden;
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 1.5rem 1.5rem 0 rgba(15, 163, 163, 0.23);
}

.profile-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.profile-hero__copy {
  max-width: 43rem;
}

.profile-hero__copy h1 {
  color: var(--white);
}

.profile-hero__copy .eyebrow {
  color: #8ee0dc;
}

.profile-hero__copy .lede {
  margin-bottom: 0;
}

.profile-content {
  display: grid;
  grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.profile-content__intro {
  position: sticky;
  top: 2rem;
}

.profile-content__intro p:not(.eyebrow) {
  max-width: 22rem;
}

.qualification-list {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.qualification-list > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.55fr) minmax(0, 1.45fr);
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--white);
}

.qualification-list dt {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qualification-list dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.13rem;
}

.profile-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  max-width: 68rem;
}

.profile-story p {
  margin-bottom: 1.2rem;
}

.profile-story p:last-child {
  margin-bottom: 0;
}

.profile-approach {
  max-width: 52rem;
}

.profile-approach p {
  max-width: 47rem;
  color: #dce8e9;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 2rem;
}

.faq-intro p {
  max-width: 25rem;
}

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

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

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.faq-trigger:hover {
  color: var(--teal-dark);
}

.faq-trigger__icon {
  position: relative;
  display: block;
  width: 1.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.faq-trigger__icon::before,
.faq-trigger__icon::after {
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0.25rem;
  width: 0.58rem;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}

.faq-trigger__icon::after {
  transform: rotate(90deg);
}

.faq-trigger[aria-expanded="true"] .faq-trigger__icon::after {
  transform: rotate(0deg);
}

.faq-panel {
  max-width: 46rem;
  padding: 0 2.25rem 1.35rem 0;
}

.faq-panel p {
  margin: 0;
  color: #4e5860;
  font-size: 0.94rem;
}

.blog-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #dce8e9;
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.blog-callout h2 {
  max-width: 38rem;
  color: var(--white);
}

.blog-callout p:not(.eyebrow) {
  max-width: 37rem;
  margin-bottom: 0;
}

.contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--teal-dark);
  border-radius: var(--radius-lg);
}

.contact-banner h2 {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-banner p {
  max-width: 42rem;
  margin-bottom: 0;
  color: #dcffff;
}

.site-footer {
  color: #d8e3e5;
  background: var(--ink-deep);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(8rem, 0.55fr));
  gap: 2rem;
  padding-block: 4.5rem 3.2rem;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer__intro {
  max-width: 23rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 0.95rem;
  color: #8ee0dc;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--white);
  font-size: 0.9rem;
  text-decoration-color: rgba(255, 255, 255, 0.28);
}

.footer-links a:hover {
  color: #8ee0dc;
}

.footer-links span {
  color: #b9cdcf;
  font-size: 0.9rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #a7bec2;
  font-size: 0.76rem;
}

.site-footer__bottom p {
  margin: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 11vw, 9.25rem);
  background: var(--white);
}

.page-hero::after {
  position: absolute;
  top: -6rem;
  right: 6vw;
  width: min(30vw, 18rem);
  aspect-ratio: 1;
  border: 1px solid #b8e2e0;
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem #f0f9f8;
  content: "";
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 49rem;
}

.page-hero .lede {
  margin-bottom: 0;
}

.page-hero--ink {
  color: #dce8e9;
  background: var(--ink);
}

.page-hero--ink::after {
  border-color: rgba(145, 223, 220, 0.3);
  box-shadow: 0 0 0 3.5rem rgba(145, 223, 220, 0.05);
}

.page-hero--ink h1 {
  color: var(--white);
}

.page-hero--ink .eyebrow {
  color: #8ee0dc;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.approach-card {
  padding: 1.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.approach-card__label {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.approach-card p {
  margin: 0;
  font-size: 0.94rem;
}

.expertise-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.expertise-item {
  display: grid;
  grid-template-columns: 5rem minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 3.4rem);
  background: var(--white);
}

.expertise-item {
  scroll-margin-top: 2rem;
}

.expertise-item__number {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.expertise-item h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 500;
}

.expertise-item ul {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.expertise-item li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.94rem;
}

.expertise-item li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.note-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.3rem 1.45rem;
  background: #edf7f7;
  border-left: 3px solid var(--teal);
}

.note-panel__label {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-panel p {
  margin: 0;
  font-size: 0.9rem;
}

.insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.insights-aside {
  position: sticky;
  top: 2rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.7rem;
  margin-bottom: 1rem;
  color: var(--teal-dark);
  background: #dff2f1;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill::before {
  width: 0.46rem;
  aspect-ratio: 1;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.topic-list {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.topic-card {
  padding: 1.5rem;
  background: var(--white);
}

.topic-card__type {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topic-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.topic-card p {
  margin: 0;
  color: #546068;
  font-size: 0.92rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.contact-status {
  padding: 1.5rem;
  background: #dff2f1;
  border-radius: var(--radius);
}

.contact-status h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.contact-status p {
  margin: 0;
  font-size: 0.94rem;
}

.contact-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.contact-list > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.contact-list__pending {
  color: #66727b;
  font-weight: 500;
}

.contact-note {
  padding: 1.5rem;
  margin-top: 1.5rem;
  color: #4a5e66;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.contact-note strong {
  color: var(--ink);
}

.not-found {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding-block: 5rem;
  text-align: center;
}

.not-found__content {
  max-width: 40rem;
}

.not-found__code {
  margin-bottom: 1rem;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: clamp(5rem, 15vw, 10rem);
  line-height: 0.8;
}

@media (max-width: 62rem) {
  .hero__inner,
  .section-heading,
  .faq-layout,
  .insights-layout,
  .contact-layout,
  .profile-content {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    max-width: 45rem;
    min-height: auto;
  }

  .hero__panel {
    max-width: 34rem;
  }

  .faq-intro,
  .insights-aside,
  .profile-content__intro {
    position: static;
  }

  .profile-content__intro p:not(.eyebrow) {
    max-width: 40rem;
  }

  .section-heading {
    gap: 0.15rem;
  }

  .section-heading__copy {
    margin-bottom: 0;
  }

  .expertise-item {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .expertise-item ul {
    grid-column: 2;
  }

  .site-footer__main {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(8rem, 0.6fr));
  }
}

@media (max-width: 51.25rem) {
  :root {
    --shell: min(100% - 2rem, 76rem);
  }

  .site-header__inner {
    min-height: 4.6rem;
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
    padding-block: 0.7rem;
  }

  .site-nav {
    width: 100%;
    padding-bottom: 0.35rem;
  }

  .site-nav__links {
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
  }

  .site-nav .button {
    min-height: 2.45rem;
    padding: 0.55rem 0.85rem;
  }

  .js-enabled .nav-toggle {
    display: inline-flex;
  }

  .js-enabled .site-nav {
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    display: flex;
    width: min(23rem, 88vw);
    height: 100dvh;
    padding: 6.5rem 1.75rem 2rem;
    color: var(--ink);
    background: var(--paper);
    box-shadow: -1.3rem 0 3.5rem rgba(7, 27, 45, 0.25);
    transform: translateX(110%);
    transition: transform 220ms ease;
  }

  .js-enabled .site-header.is-menu-open .site-nav {
    transform: translateX(0);
  }

  .js-enabled .site-nav__links {
    display: grid;
    width: 100%;
    align-content: start;
    gap: 0;
  }

  .js-enabled .site-nav a:not(.button) {
    display: block;
    padding: 0.95rem 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .js-enabled .site-nav a:not(.button)::after {
    display: none;
  }

  .js-enabled .site-nav .button {
    justify-content: flex-start;
    margin-top: 1.5rem;
    padding-inline: 1rem;
  }

  .js-enabled .nav-scrim {
    position: fixed;
    z-index: 15;
    inset: 0;
    display: block;
    background: rgba(7, 27, 45, 0.56);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .js-enabled .site-header.is-menu-open + .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .service-grid,
  .principle-grid,
  .about-panel,
  .approach-grid,
  .profile-preview,
  .profile-story {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 14.5rem;
  }

  .principle-card__number,
  .approach-card__label {
    margin-bottom: 1.55rem;
  }

  .blog-callout,
  .contact-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .blog-callout .button,
  .contact-banner .button {
    justify-self: start;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .page-hero::after {
    right: -3rem;
    width: 12rem;
  }

  .profile-hero__inner {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 2rem;
  }

  .profile-hero__image {
    max-width: 20rem;
  }

  .expertise-item {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .expertise-item ul {
    grid-column: auto;
    margin-top: 0.4rem;
  }

  .contact-list > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .qualification-list > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 30rem) {
  .hero__actions,
  .hero__actions .button,
  .contact-banner .button {
    width: 100%;
  }

  .hero__text-link {
    justify-content: center;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

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

  .profile-hero__image {
    max-width: 17rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
