:root {
  --ivory: #f7fafb;
  --white: #ffffff;
  --ink: #24343c;
  --muted: #566b78;
  --petrol: #5f8da8;
  --petrol-deep: #3b687f;
  --petrol-soft: #dceaf2;
  --eucalyptus: #95b7cc;
  --eucalyptus-soft: #e5f0f5;
  --clay: #d7a9b4;
  --clay-dark: #c58f9c;
  --clay-soft: #e3cbd1;
  --gold: #95b7cc;
  --gold-soft: #e3cbd1;
  --blue: #6f91a6;
  --line: rgba(36, 52, 60, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 18px 48px rgba(41, 75, 94, 0.13);
  --shadow-soft: 0 10px 28px rgba(41, 75, 94, 0.09);
  --shell: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body::selection {
  background: var(--gold-soft);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
}

p {
  max-width: 68ch;
}

address {
  font-style: normal;
}

svg {
  flex: 0 0 auto;
  width: 1.1em;
  height: 1.1em;
  stroke-width: 1.8;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border: 2px solid var(--white);
  border-radius: 4px;
  background: var(--petrol-deep);
  color: var(--white);
  font-weight: 800;
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--petrol);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--white);
}

main:focus {
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 251, 0.96);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(41, 75, 94, 0.1);
}

.reading-progress {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  overflow: hidden;
  background: rgba(41, 75, 94, 0.12);
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--clay-dark);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--eucalyptus);
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-mark-logo {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  overflow: hidden;
  background: var(--white);
}

.brand-mark-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: block;
  min-width: 0;
  line-height: 1.15;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: #3f5967;
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--clay-dark);
  content: "";
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.main-nav a[aria-current="true"] {
  color: var(--petrol-deep);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background-color 170ms ease,
    border-color 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-header {
  min-height: 44px;
  padding: 10px 15px;
  background: var(--eucalyptus);
  color: var(--ink);
}

.button-header:hover {
  background: #84a9c0;
  box-shadow: var(--shadow-soft);
}

.button-primary {
  background: var(--clay);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(41, 75, 94, 0.18);
}

.button-primary:hover {
  background: var(--clay-dark);
  box-shadow: 0 16px 36px rgba(41, 75, 94, 0.24);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button-outline {
  border-color: var(--petrol);
  background: transparent;
  color: var(--petrol-deep);
}

.button-outline:hover {
  background: var(--petrol-deep);
  color: var(--white);
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--petrol-deep);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(720px, calc(100svh - 112px));
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--petrol-deep);
  color: var(--white);
}

.hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(36, 52, 60, 0.86) 0%,
    rgba(47, 83, 102, 0.76) 46%,
    rgba(47, 83, 102, 0.32) 68%,
    rgba(47, 83, 102, 0.1) 100%
  );
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 60px;
  align-items: end;
  padding-block: 68px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--petrol-deep);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #c8dce8;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 5.8rem;
  line-height: 0.9;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  color: #c8dce8;
}

.credential-strip {
  background: var(--gold);
  color: #24343c;
}

.credential-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 1fr;
}

.credential-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 22px 30px;
  border-right: 1px solid rgba(36, 52, 60, 0.24);
}

.credential-item:first-child {
  padding-left: 0;
}

.credential-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.credential-number {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.credential-item p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.section {
  padding-block: 112px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 54px;
}

.section-heading h2,
.profile-copy h2,
.approach-copy h2,
.contact-copy h2 {
  margin-bottom: 22px;
  font-size: 3.55rem;
  line-height: 1.04;
}

.section-heading > p:last-child,
.profile-copy > p,
.approach-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.services-section {
  background: var(--ivory);
}

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

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--petrol);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card:nth-child(2) {
  border-top-color: var(--clay-dark);
}

.service-card:nth-child(3) {
  border-top-color: var(--gold);
}

.service-card:nth-child(4) {
  border-top-color: var(--blue);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--petrol-soft);
  color: var(--petrol);
}

.service-icon-clay {
  background: var(--clay-soft);
  color: var(--ink);
}

.service-icon-gold {
  background: var(--gold-soft);
  color: var(--ink);
}

.service-icon-blue {
  background: var(--petrol-soft);
  color: #3f6f8b;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-index {
  position: absolute;
  top: 31px;
  right: 28px;
  margin: 0;
  color: #91a3ad;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 14px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
}

.service-card > p:not(.service-index) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-fee {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding-block: 13px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-fee span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-fee strong {
  color: var(--petrol-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.service-card > a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--petrol-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-card > a:hover,
.text-link:hover {
  color: var(--petrol);
}

.approach-band {
  padding-block: 112px;
  background: var(--petrol-deep);
  color: var(--white);
}

.approach-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.approach-copy {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.approach-copy h2 {
  color: var(--white);
}

.approach-copy > p {
  color: rgba(255, 255, 255, 0.86);
}

.approach-copy blockquote {
  margin: 34px 0 0;
  padding: 24px 0 0 24px;
  border-top: 1px solid var(--line-light);
  border-left: 3px solid var(--gold);
  color: var(--clay-soft);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.4;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  min-height: 140px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line-light);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.process-list > li > span {
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.65rem;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 800;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

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

.profile-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}

.profile-visual {
  position: relative;
  min-height: 460px;
  padding: 44px;
  overflow: hidden;
  background: var(--clay-soft);
}

.profile-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 76px;
  height: 76px;
  background: var(--gold);
  content: "";
}

.profile-visual figure {
  position: relative;
  z-index: 1;
  margin: 0;
}

.profile-visual img {
  width: 220px;
  height: 220px;
  border: 8px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.profile-visual figcaption {
  margin-top: 26px;
}

.profile-visual figcaption span,
.profile-visual figcaption strong {
  display: block;
}

.profile-visual figcaption span {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-visual figcaption strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.profile-stat {
  position: absolute;
  right: 24px;
  bottom: 26px;
  z-index: 2;
  width: 124px;
  padding: 16px;
  background: var(--petrol-deep);
  color: var(--white);
}

.profile-stat strong,
.profile-stat span {
  display: block;
}

.profile-stat strong {
  margin-bottom: 2px;
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.profile-stat span {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
}

.profile-copy {
  max-width: 720px;
}

.profile-copy > p {
  color: var(--muted);
}

.profile-copy .profile-lead {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 600;
}

.career-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.career-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.career-list svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--clay-dark);
}

.career-list strong {
  color: var(--ink);
}

.modes-band {
  padding-block: 104px;
  background: var(--eucalyptus-soft);
}

.compact-heading {
  margin-bottom: 44px;
}

.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.mode-item {
  min-height: 340px;
  padding: 38px;
  border: 1px solid rgba(36, 52, 60, 0.14);
  border-radius: 6px;
  background: var(--white);
}

.mode-item-online {
  border-color: var(--petrol-deep);
  background: var(--petrol-deep);
  color: var(--white);
}

.mode-heading {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}

.mode-heading > svg {
  width: 56px;
  height: 56px;
  padding: 15px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--ink);
}

.mode-item-online .mode-heading > svg {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.mode-heading p {
  margin: 0 0 3px;
  color: var(--petrol-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mode-item-online .mode-heading p {
  color: #c8dce8;
}

.mode-heading h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.15;
}

.mode-item address,
.mode-item > p {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.mode-item-online > p {
  color: rgba(255, 255, 255, 0.88);
}

.mode-item-online .text-link {
  color: #c8dce8;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 100px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  margin: 0;
}

.faq-heading h2 {
  font-size: 3.2rem;
}

.faq-heading .button {
  margin-top: 18px;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 22px;
  align-items: center;
  min-height: 84px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--petrol);
  transition:
    transform 170ms ease,
    background-color 170ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
}

.faq-list details > p {
  max-width: 720px;
  margin: -4px 54px 28px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.crisis-band {
  padding-block: 34px;
  background: var(--gold);
  color: #24343c;
}

.crisis-inner {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: center;
}

.crisis-inner > svg {
  width: 52px;
  height: 52px;
  padding: 12px;
  border: 1px solid rgba(36, 52, 60, 0.32);
  border-radius: 50%;
}

.crisis-band h2 {
  margin-bottom: 4px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
}

.crisis-band p {
  max-width: none;
  margin: 0;
  font-size: 0.82rem;
}

.crisis-band a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section {
  padding-block: 112px;
  background: var(--petrol-deep);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 100px;
  align-items: start;
}

.contact-copy h2 {
  font-size: 4rem;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.88);
}

.contact-copy .button {
  margin-top: 24px;
}

.contact-details {
  border-top: 1px solid var(--line-light);
}

.contact-detail {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-detail > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--gold);
}

.contact-detail span,
.contact-detail a,
.contact-detail address,
.contact-detail p {
  display: block;
}

.contact-detail span {
  margin-bottom: 4px;
  color: #c8dce8;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail address,
.contact-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}

.contact-detail a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-fees {
  display: grid;
  gap: 7px;
  margin: 0;
}

.contact-fees > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
}

.contact-fees dt,
.contact-fees dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}

.contact-fees dd {
  font-weight: 800;
  white-space: nowrap;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.social-links a:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.site-footer {
  padding-block: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #315b70;
  color: rgba(255, 255, 255, 0.85);
}

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

.brand-footer .brand-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  background: var(--gold);
  color: var(--ink);
}

.brand-footer .brand-mark-footer-symbol {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  overflow: hidden;
  border-radius: 6px;
  background: #315b70;
}

.brand-footer .brand-mark-footer-symbol img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-footer .brand-copy strong {
  color: var(--white);
  font-size: 1.05rem;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0;
  font-size: 0.72rem;
  text-align: center;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
}

.back-to-top:hover {
  color: var(--white);
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 17px;
  border: 2px solid var(--white);
  border-radius: 7px;
  background: var(--clay);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(41, 75, 94, 0.28);
  font-size: 0.84rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

body.is-scrolled .floating-contact {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-contact:hover {
  background: var(--clay-dark);
}

.profile-actions {
  margin-top: 28px;
}

.home-resources {
  padding-block: 112px;
  background: var(--white);
}

.resource-group-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.resource-group-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: 3.5rem;
  line-height: 1.04;
}

.resource-group-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-resources-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 22px;
}

.home-resource-featured {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  border-radius: 6px;
  background: var(--petrol-deep);
  color: var(--white);
}

.resource-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-resource-featured h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.home-resource-featured p:not(.resource-kicker) {
  color: rgba(255, 255, 255, 0.88);
}

.home-resource-featured .button {
  align-self: flex-start;
}

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

.home-resource-list > a {
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 22px 8px 22px 4px;
  border-bottom: 1px solid var(--line);
  transition:
    padding-left 160ms ease,
    color 160ms ease;
}

.home-resource-list > a:hover {
  padding-left: 12px;
  color: var(--petrol-deep);
}

.home-resource-list span,
.home-resource-list small,
.home-resource-list strong {
  display: block;
}

.home-resource-list small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-resource-list strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
}

.home-resource-list svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.home-resources-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.inner-page {
  background: var(--white);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 72px 94px;
  background: var(--petrol-deep);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  bottom: -78px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  max-width: 980px;
  margin-inline: auto;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 4.8rem;
  line-height: 0.98;
}

.page-hero-inner > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.page-hero .button {
  margin-top: 30px;
}

.online-hero {
  background: #3f6f8b;
}

.breadcrumb {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--petrol-deep);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
}

.breadcrumb span {
  min-width: 0;
}

.breadcrumb-light {
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumb-light a:hover {
  color: var(--white);
}

.hub-featured {
  padding-bottom: 76px;
  background: var(--ivory);
}

.featured-resource {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 60px;
  min-height: 400px;
  align-items: stretch;
  padding: 56px;
  border: 1px solid rgba(36, 52, 60, 0.2);
  border-radius: 6px;
  background: var(--gold);
}

.featured-resource-copy {
  display: flex;
  max-width: 720px;
  flex-direction: column;
  align-items: flex-start;
}

.featured-resource h2 {
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 0.98;
}

.featured-resource-copy > p:not(.eyebrow) {
  color: #40555f;
  font-size: 1.03rem;
}

.featured-resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: auto;
  padding-top: 26px;
}

.featured-resource-actions > span {
  color: #536771;
  font-size: 0.78rem;
  font-weight: 800;
}

.featured-resource-index {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: 40px;
  border-left: 1px solid rgba(36, 52, 60, 0.24);
  color: var(--petrol-deep);
}

.featured-resource-index span {
  font-family: "Newsreader", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.featured-resource-index svg {
  width: 86px;
  height: 86px;
  stroke-width: 1.3;
}

.resource-group {
  padding-block: 104px;
}

.resource-group-light {
  background: var(--white);
}

.resource-group-anxiety {
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-grid-foundations {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-card {
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--petrol);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.resource-card:nth-child(3n + 2) {
  border-top-color: var(--clay-dark);
}

.resource-card:nth-child(3n) {
  border-top-color: var(--gold);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.resource-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-card h3 {
  margin-bottom: 16px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 1.08;
}

.resource-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.resource-card {
  position: relative;
}

.resource-card > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.resource-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--petrol-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.resource-card-link span,
.resource-card-link svg {
  position: relative;
  z-index: 1;
}

.resource-contact {
  padding-block: 84px;
  background: var(--petrol-deep);
  color: var(--white);
}

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

.resource-contact h2 {
  margin-bottom: 14px;
  font-size: 3.2rem;
  line-height: 1;
}

.resource-contact p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.article-hero {
  padding-block: 58px 72px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.article-hero-inner {
  max-width: 940px;
}

.article-hero .eyebrow {
  margin-bottom: 22px;
}

.article-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 4.7rem;
  line-height: 0.98;
}

.article-lead {
  max-width: 820px;
  margin-bottom: 30px;
  color: #49616d;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.5;
}

.article-byline {
  display: flex;
  gap: 13px;
  align-items: center;
}

.article-byline img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.article-byline strong,
.article-byline span {
  display: block;
}

.article-byline strong {
  font-size: 0.82rem;
}

.article-byline span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(210px, 260px);
  gap: 100px;
  align-items: start;
  justify-content: space-between;
  padding-block: 86px 110px;
}

.article-body {
  min-width: 0;
  color: #2d414a;
}

.article-body > section {
  margin-bottom: 54px;
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.article-body h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1.08;
}

.article-body p,
.article-body li {
  font-size: 1.02rem;
  line-height: 1.82;
}

.article-body p {
  max-width: 72ch;
  margin-bottom: 20px;
}

.article-body ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding-left: 24px;
}

.article-body li::marker {
  color: var(--clay-dark);
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.article-aside > p {
  margin-bottom: 16px;
  color: var(--petrol-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-aside nav {
  display: grid;
}

.article-aside nav a {
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.article-aside nav a:hover {
  color: var(--petrol-deep);
}

.aside-all-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--petrol-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.content-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  margin-top: 66px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-note > svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--petrol-deep);
}

.content-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.article-references {
  margin-top: 56px;
}

.article-references h2 {
  margin-bottom: 18px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-references ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-references a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--petrol);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-resources {
  padding-block: 92px;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.related-heading {
  margin-bottom: 38px;
}

.related-heading h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}

.resource-card-compact {
  min-height: 310px;
}

.about-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 720px);
  gap: 100px;
  align-items: start;
  justify-content: center;
}

.about-portrait {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.about-portrait img {
  width: 220px;
  height: 220px;
  margin-bottom: 30px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-portrait dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.about-portrait dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.about-portrait dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.about-portrait dd {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
}

.about-copy .about-lead {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.5;
}

.about-copy p {
  max-width: 72ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.career-band {
  padding-block: 104px;
  background: var(--petrol-deep);
  color: var(--white);
}

.career-band .resource-group-heading {
  grid-template-columns: minmax(0, 860px);
}

.career-band h2 {
  color: var(--white);
}

.career-milestones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.career-milestones article {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
}

.career-milestones article:last-child {
  border-right: 0;
}

.career-milestones article > span {
  position: absolute;
  top: 30px;
  right: 28px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.74rem;
  font-weight: 800;
}

.career-milestones article > svg {
  width: 40px;
  height: 40px;
  margin-bottom: 52px;
  color: var(--gold);
}

.career-milestones h3 {
  margin-bottom: 14px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.12;
}

.career-milestones p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
}

.online-summary {
  background: var(--gold);
}

.online-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.online-summary-grid > div {
  display: flex;
  min-height: 100px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-right: 1px solid rgba(36, 52, 60, 0.22);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.online-summary-grid > div:last-child {
  border-right: 0;
}

.online-summary-grid svg {
  width: 26px;
  height: 26px;
  color: var(--petrol-deep);
}

.online-content {
  background: var(--white);
}

.online-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 360px);
  gap: 100px;
  align-items: start;
  justify-content: center;
}

.online-checklist {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 6px;
  background: var(--ivory);
}

.online-checklist h2 {
  margin-bottom: 24px;
  font-size: 2.1rem;
}

.online-checklist ul {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.online-checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.online-checklist li svg {
  color: var(--clay-dark);
}

.online-checklist .button {
  width: 100%;
}

[data-reveal].is-visible {
  animation: reveal-in 650ms ease both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 340px;
  }

  .profile-layout,
  .approach-layout {
    gap: 60px;
  }

  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout,
  .about-layout,
  .online-layout {
    gap: 60px;
  }

  .career-milestones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-milestones article:nth-child(2) {
    border-right: 0;
  }

  .career-milestones article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 17px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 30px;
  }

  .hero h1 {
    font-size: 4.45rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .credential-grid {
    grid-template-columns: 1fr 1.25fr 1fr;
  }

  .credential-item {
    grid-template-columns: 1fr;
    gap: 8px;
    align-content: center;
  }

  .approach-layout,
  .profile-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach-copy,
  .faq-heading {
    position: static;
  }

  .approach-copy {
    max-width: 720px;
  }

  .profile-layout {
    gap: 48px;
  }

  .profile-visual {
    display: grid;
    min-height: 330px;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .profile-stat {
    right: 38px;
    bottom: 38px;
  }

  .faq-layout,
  .contact-layout {
    gap: 58px;
  }

  .faq-heading {
    max-width: 640px;
  }

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

  .contact-copy {
    max-width: 720px;
  }

  .resource-group-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resource-group-heading > p {
    max-width: 680px;
  }

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

  .home-resource-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
  }

  .home-resource-list > a {
    grid-template-columns: 1fr;
    min-height: 160px;
    align-content: space-between;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .home-resource-list > a:last-child {
    border-right: 0;
  }

  .article-layout,
  .about-layout,
  .online-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    grid-row: 1;
  }

  .article-aside nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }

  .about-portrait,
  .online-checklist {
    position: static;
  }

  .about-portrait {
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr);
    gap: 40px;
    align-items: center;
  }

  .about-portrait img {
    margin: 0;
  }

  .online-checklist {
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .shell,
  .header-inner {
    width: min(100% - 32px, var(--shell));
  }

  .site-header {
    height: var(--header-height);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 0.95rem;
  }

  .brand-mark-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .brand-copy small {
    display: none;
  }

  .button-header {
    display: none;
  }

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

  .menu-toggle {
    grid-column: 3;
  }

  .hero {
    min-height: min(700px, calc(100svh - 90px));
  }

  .hero-background {
    object-position: 68% center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(36, 52, 60, 0.8) 0%,
      rgba(47, 83, 102, 0.68) 72%,
      rgba(47, 83, 102, 0.56) 100%
    );
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 44px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 3.55rem;
    line-height: 0.92;
  }

  .hero-subtitle {
    margin-bottom: 22px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-bottom: 20px;
  }

  .credential-grid {
    grid-template-columns: 1fr;
    padding-block: 6px;
  }

  .credential-item,
  .credential-item:first-child,
  .credential-item:last-child {
    grid-template-columns: 64px 1fr;
    min-height: 82px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 52, 60, 0.24);
  }

  .credential-item:last-child {
    border-bottom: 0;
  }

  .credential-number {
    font-size: 1.75rem;
  }

  .section,
  .approach-band,
  .contact-section {
    padding-block: 82px;
  }

  .modes-band,
  .home-resources,
  .resource-group,
  .career-band {
    padding-block: 78px;
  }

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

  .section-heading h2,
  .profile-copy h2,
  .approach-copy h2,
  .contact-copy h2 {
    font-size: 2.7rem;
  }

  .service-grid,
  .modes-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .approach-layout {
    gap: 46px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    min-height: 120px;
  }

  .profile-visual {
    display: block;
    min-height: 430px;
    padding: 38px;
  }

  .profile-stat {
    right: 24px;
    bottom: 24px;
  }

  .career-list {
    grid-template-columns: 1fr;
  }

  .mode-item {
    min-height: 300px;
    padding: 30px;
  }

  .faq-heading h2 {
    font-size: 2.7rem;
  }

  .contact-copy h2 {
    font-size: 3rem;
  }

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

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .resource-group-heading h2,
  .resource-contact h2 {
    font-size: 2.7rem;
  }

  .home-resource-featured {
    min-height: 330px;
    padding: 34px;
  }

  .home-resource-featured h3 {
    font-size: 2.55rem;
  }

  .featured-resource {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 38px;
  }

  .featured-resource h2 {
    font-size: 3.25rem;
  }

  .featured-resource-index {
    display: none;
  }

  .resource-grid,
  .resource-grid-foundations {
    grid-template-columns: 1fr;
  }

  .resource-card,
  .resource-card-compact {
    min-height: 0;
  }

  .resource-contact-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .resource-contact-inner .button {
    justify-self: start;
  }

  .page-hero {
    padding-block: 48px 68px;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: 3.45rem;
  }

  .article-hero {
    padding-block: 40px 58px;
  }

  .article-layout {
    padding-block: 64px 78px;
  }

  .article-aside nav {
    grid-template-columns: 1fr;
  }

  .article-body h2 {
    font-size: 2rem;
  }

  .related-resources {
    padding-block: 72px;
  }

  .about-portrait {
    grid-template-columns: 1fr;
  }

  .career-milestones {
    grid-template-columns: 1fr;
  }

  .career-milestones article,
  .career-milestones article:nth-child(2) {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .career-milestones article:last-child {
    border-bottom: 0;
  }

  .online-summary-grid {
    grid-template-columns: 1fr;
    padding-block: 4px;
  }

  .online-summary-grid > div {
    min-height: 74px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 52, 60, 0.22);
    text-align: left;
  }

  .online-summary-grid > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: min(660px, calc(100svh - 78px));
  }

  .hero-inner {
    gap: 22px;
    padding-block: 34px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-points {
    display: grid;
    gap: 6px;
    font-size: 0.76rem;
  }

  .section-heading h2,
  .profile-copy h2,
  .approach-copy h2,
  .contact-copy h2,
  .faq-heading h2 {
    font-size: 2.3rem;
  }

  .section-heading > p:last-child,
  .profile-copy > p,
  .approach-copy > p,
  .contact-copy > p {
    font-size: 0.94rem;
  }

  .service-card {
    padding: 24px;
  }

  .approach-copy blockquote {
    font-size: 1.25rem;
  }

  .process-list li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .profile-visual {
    min-height: 410px;
    padding: 28px;
  }

  .profile-visual img {
    width: 196px;
    height: 196px;
  }

  .profile-stat {
    width: 112px;
  }

  .mode-item {
    min-height: 0;
    padding: 24px;
  }

  .mode-heading {
    grid-template-columns: 48px 1fr;
  }

  .mode-heading > svg {
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .faq-list summary {
    font-size: 0.9rem;
  }

  .faq-list details > p {
    margin-right: 0;
    font-size: 0.86rem;
  }

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

  .crisis-inner > svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .contact-detail {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .contact-detail > svg {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-contact span {
    display: none;
  }

  .footer-inner {
    gap: 20px;
  }

  .back-to-top {
    font-size: 0;
  }

  .back-to-top svg {
    width: 22px;
    height: 22px;
  }

  .home-resource-list {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .home-resource-list > a {
    grid-template-columns: 1fr 38px;
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-resources-footer {
    justify-content: stretch;
  }

  .home-resources-footer .button {
    width: 100%;
  }

  .page-hero::after {
    display: none;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: 2.75rem;
  }

  .page-hero-inner > p:not(.eyebrow),
  .article-lead {
    font-size: 1rem;
  }

  .breadcrumb {
    margin-bottom: 26px;
  }

  .featured-resource {
    padding: 28px;
  }

  .featured-resource h2 {
    font-size: 2.65rem;
  }

  .featured-resource-actions {
    align-items: flex-start;
  }

  .resource-group-heading h2,
  .resource-contact h2,
  .related-heading h2 {
    font-size: 2.3rem;
  }

  .resource-card {
    padding: 25px;
  }

  .article-body p,
  .article-body li,
  .about-copy p {
    font-size: 0.94rem;
  }

  .article-body > section {
    margin-bottom: 44px;
  }

  .content-note {
    grid-template-columns: 1fr;
  }

  .about-copy .about-lead {
    font-size: 1.3rem;
  }

  .about-portrait img {
    width: 190px;
    height: 190px;
  }

  .online-checklist {
    padding: 25px;
  }
}

@media (max-width: 380px) {
  .shell,
  .header-inner {
    width: min(100% - 24px, var(--shell));
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .button {
    padding-inline: 14px;
    white-space: normal;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero {
    min-height: calc(100svh - 90px);
  }

  .hero-inner {
    gap: 0;
    padding-block: 24px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: 2.65rem;
  }

  .hero-subtitle {
    margin-bottom: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-actions .button {
    min-height: 44px;
    padding-block: 9px;
  }

  .hero-points {
    display: none;
  }
}

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

  [data-reveal].is-visible {
    animation: none;
  }
}
