@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3-greek.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C,
    U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("fonts/source-serif-4-variable-greek.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C,
    U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("fonts/source-serif-4-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("fonts/source-serif-4-variable-italic-greek.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C,
    U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("fonts/source-serif-4-variable-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --pine-950: #17241f;
  --pine-900: #20332c;
  --pine-800: #2d443a;
  --moss-600: #68766a;
  --moss-400: #9ca69c;
  --clay-700: #82482f;
  --clay-600: #95573b;
  --clay-500: #ad6b49;
  --sand-300: #d9c5a5;
  --oat-200: #ebe1d1;
  --ivory-100: #f7f2e9;
  --paper: #fffdf8;
  --ink: #202522;
  --muted: #636a64;
  --line: rgba(32, 51, 44, 0.15);
  --line-light: rgba(255, 253, 248, 0.2);
  --shadow: 0 24px 70px rgba(23, 36, 31, 0.12);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --page: min(1240px, calc(100% - 64px));
  --header-height: 86px;
}

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

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

body {
  margin: 0;
  background: var(--ivory-100);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 450;
  letter-spacing: -0.01em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--sand-300);
  color: var(--pine-950);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--pine-950);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(32, 51, 44, 0.08);
  background: rgba(247, 242, 233, 0.91);
  backdrop-filter: blur(18px);
  transition:
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-compact {
  background: rgba(247, 242, 233, 0.97);
  box-shadow: 0 12px 35px rgba(23, 36, 31, 0.06);
}

.header-inner {
  display: grid;
  width: var(--page);
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: none;
}

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

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--pine-900);
  font-size: 0.82rem;
  font-weight: 650;
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pine-900);
  font-size: 0.8rem;
  font-weight: 750;
  white-space: nowrap;
}

.header-call span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-call:hover span {
  background: var(--pine-900);
  color: var(--paper);
  transform: translateX(2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--pine-900);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 120px 32px 40px;
  background: var(--ivory-100);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--pine-900);
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
}

.mobile-menu-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  color: var(--pine-900);
  font-size: 0.84rem;
}

.mobile-menu-contact p {
  width: 100%;
  margin-bottom: 2px;
  color: var(--muted);
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding-block: 122px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--clay-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 62px;
}

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.intro-statement h2,
.advisor-proof h2,
.contact-cta h2,
.guidance h2 {
  margin-bottom: 24px;
  color: var(--pine-900);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.section-heading > p:last-child,
.intro-copy p,
.guidance > p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--pine-900);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--clay-600);
}

.button-light {
  border-color: rgba(255, 253, 248, 0.62);
  background: rgba(255, 253, 248, 0.05);
  color: var(--paper);
  backdrop-filter: blur(10px);
}

.button-light:hover {
  background: rgba(255, 253, 248, 0.14);
}

.button-outline {
  border-color: var(--line);
  color: var(--pine-900);
}

.button-outline:hover {
  border-color: var(--pine-900);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--pine-900);
  font-size: 0.88rem;
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Homepage */

.hero {
  position: relative;
  width: calc(100% - clamp(48px, 3.25vw, 72px));
  min-height: min(800px, calc(100svh - 24px));
  overflow: hidden;
  margin-inline: auto;
  border-radius: 0 0 24px 24px;
  background: var(--pine-950);
  cursor: grab;
  isolation: isolate;
  touch-action: pan-y;
}

.hero.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.hero a {
  cursor: pointer;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 720ms;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: scale(1.035);
  transition: transform 3.4s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.hero-slide.is-active .hero-image {
  transform: scale(1);
}

.hero-slide::before,
.hero-slide::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-slide::before {
  background: linear-gradient(
    180deg,
    rgba(19, 30, 26, 0.05) 25%,
    rgba(19, 30, 26, 0.58) 100%
  );
}

.hero-slide::after {
  background: linear-gradient(
    90deg,
    rgba(23, 36, 31, 0.05) 25%,
    rgba(23, 36, 31, 0.18) 48%,
    rgba(23, 36, 31, 0.9) 100%
  );
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--page);
  height: 100%;
  align-items: center;
  margin-inline: auto;
  padding: calc(var(--header-height) + 74px) 0 112px;
}

.hero-copy {
  width: min(600px, 47vw);
  margin-left: auto;
  color: var(--paper);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms 150ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-active .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker {
  margin-bottom: 30px;
  color: var(--sand-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--paper);
  font-size: clamp(3.55rem, 6.25vw, 5.8rem);
  line-height: 0.97;
  text-wrap: balance;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-note {
  position: absolute;
  bottom: 42px;
  left: 0;
  display: flex;
  max-width: 280px;
  gap: 18px;
  color: var(--paper);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 480ms 280ms ease,
    transform 480ms 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-active .hero-note {
  opacity: 1;
  transform: translateY(0);
}

.hero-note span {
  color: var(--sand-300);
  font-size: 0.7rem;
}

.hero-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.4;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 50%;
  background: rgba(23, 36, 31, 0.32);
  color: var(--paper);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-arrow-prev {
  left: clamp(18px, 2.2vw, 42px);
}

.hero-arrow-next {
  right: clamp(18px, 2.2vw, 42px);
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--pine-950);
}

.hero-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

.hero-carousel-controls {
  position: absolute;
  z-index: 4;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-progress {
  display: grid;
  grid-template-columns: repeat(3, 48px);
  gap: 7px;
}

.hero-progress-segment {
  height: 2px;
  background: rgba(255, 253, 248, 0.34);
  transform-origin: center;
  transition:
    background-color 360ms ease,
    transform 360ms ease;
}

.hero-progress-segment.is-active {
  background: var(--sand-300);
  transform: scaleY(1.8);
}

@media (min-width: 1280px) {
  .hero-slide-inner {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 82px;
  }

  .hero-copy {
    width: min(640px, 48vw);
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero h1,
  .hero h2 {
    margin-bottom: 22px;
    font-size: clamp(4.2rem, 5.2vw, 5rem);
  }

  .hero-copy > p:not(.hero-kicker) {
    max-width: 590px;
    margin-bottom: 26px;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.approach {
  width: min(1400px, calc(100% - 48px));
  padding-top: 108px;
  padding-bottom: 116px;
}

.approach-shell {
  overflow: hidden;
  padding: clamp(40px, 4.5vw, 64px);
  border-radius: 28px;
  background: var(--pine-900);
  color: var(--paper);
}

.approach-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(44px, 7vw, 96px);
  margin-bottom: 44px;
}

.approach .eyebrow {
  color: var(--sand-300);
}

.approach-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(2.75rem, 5.6vw, 4.5rem);
  line-height: 1;
  text-wrap: balance;
}

.approach-heading em {
  color: var(--sand-300);
  font-weight: 450;
}

.approach-heading > p {
  max-width: 460px;
  margin-bottom: 5px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
}

.approach-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 16px;
}

.approach-card h3 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.02;
  text-wrap: balance;
}

.approach-card > p:not(.approach-label),
.approach-card-reach > div > p:not(.approach-label) {
  max-width: 54ch;
  line-height: 1.65;
}

.approach-label {
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.approach-card-process {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(40px, 6vw, 84px);
  background: var(--paper);
  color: var(--pine-950);
}

.approach-card-process .approach-label {
  grid-column: 1;
  grid-row: 1;
  color: var(--clay-600);
}

.approach-card-process h3 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
}

.approach-steps {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: stretch;
  padding: 0;
  margin: 0;
  list-style: none;
}

.approach-steps li {
  padding: 18px 22px 0;
  border-top: 1px solid var(--line);
}

.approach-steps li:first-child {
  padding-left: 0;
}

.approach-steps li:last-child {
  padding-right: 0;
}

.approach-steps li + li {
  border-left: 1px solid var(--line);
}

.approach-steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--clay-600);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.approach-steps h4 {
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 750;
}

.approach-steps p {
  max-width: 50ch;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.approach-card-reach {
  display: flex;
  grid-column: span 5;
  min-height: 260px;
  align-items: flex-end;
  background: var(--clay-600);
  color: var(--paper);
}

.approach-card-reach h3 {
  max-width: 440px;
}

.approach-card-reach p:not(.approach-label) {
  color: rgba(255, 253, 248, 0.82);
}

.approach-reach-mark {
  position: absolute;
  top: 18px;
  right: 26px;
  color: rgba(255, 253, 248, 0.15);
  font-family: var(--serif);
  font-size: clamp(5.5rem, 9vw, 8.5rem);
  line-height: 1;
}

.approach-card-support {
  display: flex;
  grid-column: span 7;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  background: var(--oat-200);
  color: var(--pine-950);
}

.approach-card-support .approach-label {
  color: var(--clay-600);
}

.approach-card-support > p:not(.approach-label) {
  margin-bottom: 24px;
  color: var(--muted);
}

.approach-card-support .text-link {
  margin-top: 16px;
}

.audience {
  width: min(1400px, calc(100% - 48px));
  margin-inline: auto;
  padding: 0 0 116px;
}

.audience-shell {
  padding: clamp(40px, 4.5vw, 64px);
  border-radius: 28px;
  background: var(--oat-200);
  color: var(--pine-950);
}

.audience .section-heading {
  max-width: 900px;
  margin: 0 0 44px;
}

.audience .section-heading h2 {
  max-width: 820px;
  color: var(--pine-950);
  text-wrap: balance;
}

.audience .section-heading > p:last-child {
  color: var(--pine-800);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}

.audience-card {
  --audience-image: none;
  --audience-position: center;
  position: relative;
  display: flex;
  height: clamp(360px, 30vw, 430px);
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 16px;
  background: var(--pine-950);
  color: var(--paper);
  isolation: isolate;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-card::before,
.audience-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.audience-card::before {
  z-index: -2;
  background-image: var(--audience-image);
  background-position: var(--audience-position);
  background-size: cover;
  transform: scale(1.002);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 27, 23, 0.42) 0%, rgba(12, 27, 23, 0.08) 42%),
    linear-gradient(0deg, rgba(12, 27, 23, 0.94) 0%, rgba(12, 27, 23, 0.08) 68%);
}

.audience-personal {
  --audience-image: url("images/audience-family.avif");
  --audience-position: 50% 57%;
}

.audience-business {
  --audience-image: url("images/audience-corporate.avif");
  --audience-position: 42% 54%;
}

.audience-card:hover {
  transform: translateY(-4px);
}

.audience-card:hover::before {
  transform: scale(1.035);
}

.audience-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.audience-card-body {
  margin-top: clamp(48px, 7vw, 86px);
}

.audience-card-body > p {
  margin-bottom: 12px;
  color: var(--oat-100);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1;
}

.audience-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 0;
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.88rem;
  list-style: none;
}

.audience-card li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-card li:not(:last-child)::after {
  color: var(--oat-100);
  content: "·";
}

.round-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 50%;
  background: rgba(12, 27, 23, 0.26);
  color: var(--paper);
  backdrop-filter: blur(8px);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.audience-card:hover .round-arrow {
  background: var(--paper);
  color: var(--pine-950);
  transform: translateX(4px);
}

.audience-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 34px;
}

.audience-footer p {
  margin-bottom: 0;
  color: var(--pine-800);
  font-size: 0.9rem;
}

.audience-footer .text-link {
  flex: 0 0 auto;
  color: var(--pine-950);
}

.services-section {
  width: 100%;
  margin: 0;
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-group {
  border-top: 1px solid var(--line);
}

.service-group-heading {
  display: flex;
  min-height: 156px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.service-group-heading p {
  margin-bottom: 7px;
  color: var(--clay-600);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-group-heading h3 {
  margin-bottom: 0;
  color: var(--pine-900);
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-group-heading > a {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--pine-900);
  font-size: 0.76rem;
  font-weight: 750;
}

.service-group-heading > a span {
  transition: transform 180ms ease;
}

.service-group-heading > a:hover span {
  transform: translateX(4px);
}

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

.service-card {
  position: relative;
  display: grid;
  min-height: 218px;
  align-content: center;
  padding: 32px 58px 32px 0;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 200ms ease,
    padding 200ms ease;
}

.service-card:hover {
  padding-left: 14px;
  background: var(--ivory-100);
}

.service-card h4 {
  margin-bottom: 12px;
  color: var(--pine-900);
  font-size: 1.8rem;
  line-height: 1.05;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-arrow {
  position: absolute;
  top: 27px;
  right: 27px;
  color: var(--pine-900);
  transition: transform 180ms ease;
}

.service-card:hover .service-arrow {
  transform: translateX(4px);
}

.advisor-proof {
  width: 100%;
  padding: 116px 0;
  background: var(--oat-200);
  color: var(--pine-950);
}

.advisor-experience-inner {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(56px, 8vw, 120px);
  margin: 0 auto;
}

.advisor-experience-year {
  position: relative;
  display: flex;
  min-height: clamp(430px, 38vw, 540px);
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(32px, 4vw, 52px);
  border-radius: 16px;
  background: var(--pine-900);
  color: var(--paper);
}

.advisor-experience-year > :not(.advisor-experience-botanical) {
  position: relative;
  z-index: 1;
}

.advisor-experience-botanical {
  position: absolute;
  z-index: 0;
  top: clamp(-54px, -3vw, -30px);
  right: clamp(-118px, -6.5vw, -88px);
  width: min(512px, 92%);
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: none;
  object-fit: contain;
  opacity: 0.09;
  pointer-events: none;
  transform: scaleX(-1);
  user-select: none;
}

.advisor-experience-year > p {
  max-width: 24ch;
  margin-bottom: auto;
  color: var(--sand-300);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.advisor-experience-year > span {
  margin-bottom: 4px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1rem;
}

.advisor-experience-year > strong {
  color: var(--sand-300);
  font-family: var(--serif);
  font-size: clamp(7rem, 12vw, 11rem);
  font-weight: 450;
  letter-spacing: -0.04em;
  line-height: 0.78;
}

.advisor-experience-copy {
  align-self: center;
}

.advisor-experience-kicker {
  margin-bottom: 18px;
  color: var(--clay-700);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.advisor-experience h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--pine-950);
  font-size: clamp(3.2rem, 5.6vw, 4.5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.advisor-profile {
  max-width: 680px;
  padding-top: clamp(32px, 4vw, 48px);
  margin-top: clamp(36px, 5vw, 60px);
  border-top: 1px solid var(--line);
}

.advisor-name {
  margin-bottom: 4px;
  color: var(--pine-950);
  font-family: var(--serif);
  font-size: 1.75rem;
}

.advisor-role {
  margin-bottom: 24px;
  color: var(--clay-700);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advisor-profile > p:last-of-type {
  margin-bottom: 28px;
  color: var(--pine-800);
  font-size: 0.98rem;
  line-height: 1.75;
}

.advisor-experience .text-link {
  color: var(--pine-950);
}

.contact-kicker {
  margin-bottom: 22px;
  color: var(--sand-300);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.process-section {
  width: 100%;
  margin: 0;
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  background: var(--oat-200);
}

.process-grid article {
  padding: 38px 30px 0;
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 70px;
  color: var(--clay-600);
  font-size: 0.72rem;
}

.process-grid h3 {
  margin-bottom: 16px;
  color: var(--pine-900);
  font-size: 2rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.advisor-experience + .audience {
  padding-top: 116px;
}

.partners {
  --partner-item-width: clamp(184px, 20vw, 240px);
  overflow: hidden;
  padding: clamp(96px, 10vw, 148px) 0;
  border-top: 1px solid var(--line);
  background: var(--ivory-100);
}

.partners-inner {
  width: var(--page);
  margin: 0 auto;
}

.partners-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
  margin-bottom: 54px;
}

.partners-kicker {
  margin: 0 0 18px;
  color: var(--clay-600);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partners-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--pine-950);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.4vw, 4.5rem);
  font-weight: 470;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.partners-intro > p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.partners-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.partners-carousel::before,
.partners-carousel::after {
  position: absolute;
  z-index: 2;
  top: 1px;
  bottom: 1px;
  width: clamp(20px, 4vw, 56px);
  content: "";
  pointer-events: none;
}

.partners-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--ivory-100), transparent);
}

.partners-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--ivory-100), transparent);
}

.partners-viewport {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.partners-carousel.is-dragging .partners-viewport {
  cursor: grabbing;
}

.partners-track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.has-js .partners-track {
  animation: partners-marquee 92s linear infinite;
  will-change: transform;
}

@keyframes partners-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.partners-item {
  display: grid;
  width: var(--partner-item-width);
  min-height: 144px;
  flex: 0 0 var(--partner-item-width);
  place-items: center;
  border-right: 1px solid var(--line);
}

.partners-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 860px) {
  .partners-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partners-intro {
    max-width: 54ch;
  }
}

@media (max-width: 640px) {
  .partners {
    --partner-item-width: 184px;
    padding: 82px 0;
  }

  .partners-header {
    margin-bottom: 38px;
  }

  .partners-heading h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .partners-item {
    min-height: 116px;
  }
}

.contact-cta {
  display: grid;
  width: 100%;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 72px;
  margin: 0;
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  border-top: 0;
  background: var(--oat-200);
}

.contact-cta h2 {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--pine-950);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
}

.contact-cta .contact-kicker {
  color: var(--clay-700);
}

.contact-cta .contact-options {
  border-color: var(--line);
}

.contact-cta .contact-options a {
  border-color: var(--line);
  color: var(--pine-950);
}

.contact-cta .contact-options small {
  color: var(--clay-700);
}

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

.contact-options a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--pine-900);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 650;
}

.contact-options small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-options span {
  grid-column: 2;
  grid-row: 1 / span 2;
  transition: transform 180ms ease;
}

.contact-options a:hover span {
  transform: translate(3px, -3px);
}

/* Interior pages */

.page-hero {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 100px) max(32px, calc((100vw - 1240px) / 2)) 82px;
  background: var(--oat-200);
}

.page-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -24vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(32, 51, 44, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--pine-900);
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.96;
}

.page-hero-copy > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.category-page {
  padding-top: clamp(16px, 1.5vw, 24px);
  background: var(--ivory-100);
}

.category-hero {
  position: relative;
  display: grid;
  width: min(
    1760px,
    calc(100% - clamp(48px, 6vw, 144px))
  );
  min-height: clamp(680px, 76vh, 840px);
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding:
    clamp(142px, 10vw, 176px)
    clamp(32px, 4vw, 72px)
    clamp(30px, 3vw, 48px);
  margin-inline: auto;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  color: var(--paper);
  isolation: isolate;
}

.category-hero::before,
.category-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.category-hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 36, 31, 0.08) 0%, rgba(23, 36, 31, 0.3) 43%, rgba(23, 36, 31, 0.9) 100%),
    linear-gradient(0deg, rgba(23, 36, 31, 0.72) 0%, transparent 48%);
}

.category-hero::after {
  z-index: 2;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: inherit;
  pointer-events: none;
}

.category-personal {
  background-image: url("images/hero-family-wide.avif");
  background-position: center;
}

.category-business {
  background-image: url("images/hero-do-wide.avif");
  background-position: center;
}

.category-hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 52%);
  align-self: end;
  margin-bottom: clamp(48px, 5vw, 72px);
  margin-left: auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.73rem;
  font-weight: 650;
}

.breadcrumbs a {
  min-height: 32px;
  align-content: center;
  text-decoration: underline;
  text-decoration-color: rgba(217, 197, 165, 0.5);
  text-underline-offset: 5px;
  transition: color 180ms ease;
}

.breadcrumbs a:hover {
  color: var(--sand-300);
}

.breadcrumbs > span:last-child {
  color: var(--paper);
}

.category-hero .eyebrow {
  color: var(--sand-300);
}

.category-hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: var(--paper);
  font-size: clamp(3.5rem, 5.5vw, 5.8rem);
  line-height: 0.96;
  text-wrap: balance;
}

.category-hero h1 em {
  color: var(--sand-300);
  font-weight: inherit;
}

.category-hero-copy > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.04rem;
  line-height: 1.75;
}

.category-hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.28);
}

.category-hero-meta p {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.76rem;
  font-weight: 650;
}

.category-hero-meta strong {
  color: var(--sand-300);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.category-hero-meta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
}

.category-hero-meta a span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 50%;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.category-hero-meta a:hover span {
  background: var(--paper);
  color: var(--pine-950);
  transform: translateY(3px);
}

.insurance-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.insurance-path {
  display: grid;
  min-height: 740px;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--paper);
}

.path-image {
  min-height: 410px;
  background-position: center;
  background-size: cover;
  transition: transform 500ms ease;
}

.insurance-path:hover .path-image {
  transform: scale(1.025);
}

.path-personal .path-image {
  background-image: url("images/gsm-family-hero.jpg");
  background-position: 25% center;
}

.path-business .path-image {
  background-image: url("images/gsm-business.jpg");
  background-position: 38% center;
}

.path-copy {
  position: relative;
  z-index: 1;
  padding: 34px;
  background: var(--paper);
}

.path-copy > span {
  display: block;
  margin-bottom: 22px;
  color: var(--clay-600);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-copy h2 {
  margin-bottom: 16px;
  color: var(--pine-900);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.path-copy p {
  max-width: 520px;
  margin-bottom: 25px;
  color: var(--muted);
  line-height: 1.7;
}

.path-copy strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--pine-900);
  font-size: 0.82rem;
}

.guidance {
  text-align: center;
}

.guidance .eyebrow {
  justify-content: center;
}

.guidance h2,
.guidance > p {
  margin-right: auto;
  margin-left: auto;
}

.guidance .button {
  margin-top: 18px;
}

/* Insurance overview gateway */

.insurance-overview {
  padding-top: clamp(16px, 1.5vw, 24px);
  background: var(--ivory-100);
}

.insurance-gateway {
  width: min(
    1760px,
    calc(100% - clamp(48px, 6vw, 144px))
  );
  margin-inline: auto;
  padding:
    clamp(140px, 10vw, 172px)
    clamp(32px, 4vw, 72px)
    clamp(32px, 4vw, 64px);
  border-radius: 28px;
  background: var(--pine-900);
  color: var(--paper);
}

.insurance-gateway-intro {
  display: block;
}

.insurance-gateway-copy {
  max-width: 980px;
}

.insurance-gateway .eyebrow {
  color: var(--sand-300);
}

.insurance-gateway h1 {
  max-width: 940px;
  margin-bottom: 30px;
  color: var(--paper);
  font-size: clamp(3.6rem, 5.4vw, 6rem);
  line-height: 0.96;
  text-wrap: balance;
}

.insurance-gateway h1 em {
  color: var(--sand-300);
  font-weight: inherit;
}

.insurance-gateway-copy > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.03rem;
  line-height: 1.75;
}

.insurance-gateway-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(52px, 5vw, 78px);
}

.insurance-gateway-card {
  --gateway-image: none;
  --gateway-position: center;
  position: relative;
  display: flex;
  height: clamp(350px, 27vw, 480px);
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(26px, 2.5vw, 40px);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 18px;
  background: var(--pine-950);
  color: var(--paper);
  isolation: isolate;
  transition:
    border-color 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.insurance-gateway-card::before,
.insurance-gateway-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.insurance-gateway-card::before {
  z-index: -2;
  background-image: var(--gateway-image);
  background-position: var(--gateway-position);
  background-size: cover;
  transform: scale(1.002);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.insurance-gateway-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 27, 23, 0.58) 0%, rgba(12, 27, 23, 0.08) 46%),
    linear-gradient(0deg, rgba(12, 27, 23, 0.96) 0%, rgba(12, 27, 23, 0.08) 72%);
}

.insurance-gateway-personal {
  --gateway-image: url("images/audience-family.avif");
  --gateway-position: 50% 58%;
}

.insurance-gateway-business {
  --gateway-image: url("images/audience-corporate.avif");
  --gateway-position: 42% 55%;
}

.insurance-gateway-card:hover {
  border-color: rgba(217, 197, 165, 0.58);
  transform: translateY(-4px);
}

.insurance-gateway-card:hover::before {
  transform: scale(1.035);
}

.insurance-gateway-card:hover .round-arrow {
  background: var(--paper);
  color: var(--pine-950);
  transform: translateX(4px);
}

.insurance-gateway-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.insurance-gateway-card-top > span:first-child {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insurance-gateway-card-body h2 {
  margin-bottom: 18px;
  color: var(--paper);
  font-size: clamp(2.7rem, 4vw, 4.5rem);
  line-height: 1;
}

.insurance-gateway-card-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 0;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.9rem;
  list-style: none;
}

.insurance-gateway-card-body li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.insurance-gateway-card-body li:not(:last-child)::after {
  color: var(--sand-300);
  content: "·";
}

.insurance-gateway-card-body > p {
  display: flex;
  align-items: center;
  padding-top: 18px;
  margin: 22px 0 0;
  border-top: 1px solid rgba(255, 253, 248, 0.24);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 700;
}

.insurance-overview .guidance {
  padding-block: clamp(90px, 9vw, 136px);
}

.insurance-overview .guidance h2 {
  max-width: 980px;
}

.insurance-overview .guidance > p {
  max-width: 640px;
}

.catalogue {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.catalogue-intro {
  position: sticky;
  top: 110px;
}

.catalogue-intro h2 {
  margin-bottom: 24px;
  color: var(--pine-900);
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  line-height: 1.02;
}

.catalogue-intro > p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

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

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

.accordion-heading {
  margin: 0;
}

.accordion-trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 50px 1fr 38px;
  align-items: center;
  gap: 18px;
  padding: 27px 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.accordion-number {
  color: var(--clay-600);
  font-size: 0.7rem;
}

.accordion-title {
  color: var(--pine-900);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  letter-spacing: -0.01em;
}

.accordion-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--pine-900);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  background: var(--pine-900);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::before,
.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  background: var(--paper);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel.is-open {
  grid-template-rows: 1fr;
}

.accordion-content {
  padding: 0 56px 30px 68px;
}

.accordion-content p {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.faq {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  border-top: 0;
  background: var(--pine-900);
  color: var(--paper);
}

.faq-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(64px, 9vw, 140px);
}

.faq-building-decoration {
  position: absolute;
  z-index: 0;
  bottom: clamp(16px, 2vw, 32px);
  left: clamp(16px, 2vw, 32px);
  width: clamp(300px, 24vw, 430px);
  height: auto;
  max-width: none;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.faq-intro {
  max-width: 470px;
}

.faq .eyebrow {
  color: var(--sand-300);
}

.faq-intro h2 {
  margin-bottom: 26px;
  color: var(--paper);
  font-size: clamp(3rem, 5vw, 4.25rem);
  line-height: 0.98;
  text-wrap: balance;
}

.faq-intro > p:last-child {
  max-width: 45ch;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.faq .accordion {
  overflow: hidden;
  border: 1px solid rgba(217, 197, 165, 0.26);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.07);
  transition:
    background-color 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq .accordion:hover,
.faq .accordion:has(.accordion-trigger[aria-expanded="true"]) {
  border-color: rgba(217, 197, 165, 0.58);
  background: rgba(255, 253, 248, 0.12);
}

.faq .accordion-trigger {
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 32px;
  min-height: 88px;
  padding: 20px 20px 20px 24px;
}

.faq .accordion-title {
  max-width: 700px;
  color: var(--paper);
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.2;
  transition: color 180ms ease;
}

.faq .accordion-trigger:hover .accordion-title {
  color: var(--sand-300);
}

.faq .accordion-icon {
  width: 42px;
  height: 42px;
  border-color: rgba(217, 197, 165, 0.56);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq .accordion-icon::before,
.faq .accordion-icon::after {
  background: var(--paper);
}

.faq .accordion-trigger:hover .accordion-icon {
  border-color: var(--sand-300);
  background: var(--sand-300);
}

.faq .accordion-trigger[aria-expanded="true"] .accordion-icon {
  border-color: var(--sand-300);
  background: var(--sand-300);
  transform: rotate(45deg);
}

.faq .accordion-trigger:hover .accordion-icon::before,
.faq .accordion-trigger:hover .accordion-icon::after,
.faq .accordion-trigger[aria-expanded="true"] .accordion-icon::before,
.faq .accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  background: var(--pine-950);
}

.faq .accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq .accordion-panel {
  transition: grid-template-rows 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq .accordion-panel > div {
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq .accordion-panel.is-open > div {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 60ms;
}

.faq .accordion-content {
  padding: 0 68px 26px 24px;
}

.faq .accordion-content p {
  max-width: 64ch;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.72);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--pine-900);
  font-size: 0.72rem;
  font-weight: 650;
}

.catalogue-note {
  margin-top: 36px;
  padding: 24px;
  border-left: 2px solid var(--clay-500);
  background: rgba(235, 225, 209, 0.58);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.category-page .catalogue {
  width: min(1400px, calc(100% - 48px));
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 6vw, 92px);
  padding: clamp(40px, 5vw, 72px);
  margin-block: clamp(74px, 8vw, 116px);
  border-radius: 28px;
  background: var(--oat-200);
  scroll-margin-top: 110px;
}

.category-page .catalogue-intro {
  top: 118px;
}

.category-page .catalogue-intro h2 {
  max-width: 520px;
  color: var(--pine-950);
}

.category-page .catalogue-intro > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--pine-800);
  line-height: 1.75;
}

.category-page .catalogue-note {
  padding: 22px;
  border: 1px solid rgba(32, 51, 44, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.6);
  color: var(--pine-800);
}

.category-page .accordion-list {
  display: grid;
  align-content: start;
  gap: 10px;
  border-top: 0;
}

.category-page .accordion {
  overflow: hidden;
  border: 1px solid rgba(32, 51, 44, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.72);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.category-page .accordion:hover,
.category-page .accordion:has(.accordion-trigger[aria-expanded="true"]) {
  border-color: rgba(130, 72, 47, 0.34);
  background: var(--paper);
}

.category-page .accordion:hover {
  transform: translateY(-2px);
}

.category-page .accordion-trigger {
  padding: 23px 22px;
}

.category-page .accordion-content {
  padding: 0 58px 26px 90px;
}

.category-page .accordion-content p {
  color: var(--pine-800);
}

.category-page .tag-list span {
  border-color: rgba(32, 51, 44, 0.18);
  background: var(--ivory-100);
}

.category-page .contact-cta {
  border-top: 1px solid rgba(32, 51, 44, 0.08);
}

/* Contact */

.contact-hero {
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(23, 36, 31, 0.92), rgba(23, 36, 31, 0.22)),
    url("images/gsm-home.jpg") center / cover no-repeat;
  color: var(--paper);
}

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

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

.contact-hero .eyebrow {
  color: var(--sand-300);
}

.contact-hero .page-hero-copy > p:last-child {
  color: rgba(255, 253, 248, 0.78);
}

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

.contact-card {
  min-height: 350px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.4);
}

.contact-label {
  margin-bottom: 72px;
  color: var(--clay-600);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--pine-900);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 650;
}

.contact-card a > span:first-child {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-weight: 400;
  transition: transform 180ms ease;
}

.contact-card a:hover strong {
  transform: translate(3px, -3px);
}

.advisor {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.advisor h2 {
  margin-bottom: 16px;
  color: var(--pine-900);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
}

.advisor-copy p {
  max-width: 630px;
  color: var(--muted);
  line-height: 1.75;
}

.advisor-copy .text-link {
  margin-top: 12px;
}

.contact-page {
  padding-top: clamp(16px, 1.5vw, 24px);
  background: var(--ivory-100);
}

.contact-page .contact-hero {
  width: min(
    1760px,
    calc(100% - clamp(48px, 6vw, 144px))
  );
  min-height: clamp(650px, 76vh, 820px);
  align-items: end;
  overflow: hidden;
  padding:
    clamp(142px, 10vw, 176px)
    clamp(32px, 4vw, 72px)
    clamp(44px, 4vw, 68px);
  margin-inline: auto;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(23, 36, 31, 0.08) 0%, rgba(23, 36, 31, 0.28) 44%, rgba(23, 36, 31, 0.9) 100%),
    linear-gradient(0deg, rgba(23, 36, 31, 0.72) 0%, transparent 50%),
    url("images/hero-home-wide.avif") center / cover no-repeat;
}

.contact-page .contact-hero::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.contact-page .contact-hero-copy {
  width: min(720px, 52%);
  margin-left: auto;
}

.contact-page .contact-hero h1 {
  max-width: 720px;
  font-size: clamp(3.5rem, 5.5vw, 5.8rem);
  text-wrap: balance;
}

.contact-page .contact-hero h1 em {
  color: var(--sand-300);
  font-weight: inherit;
}

.contact-details {
  width: min(1400px, calc(100% - 48px));
  padding: clamp(40px, 5vw, 72px);
  margin-block: clamp(74px, 8vw, 116px);
  border-radius: 28px;
  background: var(--oat-200);
}

.contact-details-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: end;
  gap: clamp(42px, 6vw, 88px);
  margin-bottom: clamp(38px, 4vw, 58px);
}

.contact-details-heading .eyebrow {
  margin-bottom: 8px;
}

.contact-details-heading h2 {
  max-width: 760px;
  color: var(--pine-950);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}

.contact-page .contact-grid {
  gap: 12px;
  border: 0;
}

.contact-page .contact-card {
  min-height: 300px;
  padding: clamp(24px, 2.5vw, 34px);
  border: 1px solid rgba(32, 51, 44, 0.14);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.72);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-page .contact-card:hover {
  border-color: rgba(130, 72, 47, 0.32);
  background: var(--paper);
  transform: translateY(-3px);
}

.contact-page .contact-label {
  margin-bottom: 82px;
}

.contact-page .contact-advisor {
  width: min(1400px, calc(100% - 48px));
  gap: clamp(48px, 7vw, 100px);
  padding: clamp(44px, 5vw, 74px);
  margin: 0 auto clamp(82px, 9vw, 132px);
  border: 0;
  border-radius: 28px;
  background: var(--pine-900);
  color: var(--paper);
}

.contact-page .contact-advisor .eyebrow {
  color: var(--sand-300);
}

.contact-page .contact-advisor h2 {
  color: var(--paper);
}

.contact-page .contact-advisor p {
  color: rgba(255, 253, 248, 0.72);
}

.contact-page .contact-advisor .text-link {
  color: var(--paper);
}

/* Legal */

.legal-page {
  width: min(900px, calc(100% - 64px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 100px) 0 120px;
}

.legal-page h1 {
  margin-bottom: 28px;
  color: var(--pine-900);
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  line-height: 0.98;
}

.legal-intro {
  margin-bottom: 52px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 15px;
  color: var(--pine-900);
  font-size: 2rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--clay-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  width: min(1100px, calc(100% - 48px));
  padding:
    clamp(150px, 11vw, 184px)
    clamp(32px, 6vw, 92px)
    clamp(72px, 8vw, 112px);
  margin: clamp(16px, 1.5vw, 24px) auto clamp(80px, 9vw, 132px);
  border-radius: 28px;
  background: var(--oat-200);
}

.legal-page > .eyebrow,
.legal-page > h1,
.legal-page > .legal-intro,
.legal-page > .legal-content {
  width: 100%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.legal-page h1 {
  color: var(--pine-950);
  text-wrap: balance;
}

.legal-page .legal-intro {
  color: var(--pine-800);
}

.legal-page .legal-content {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(32, 51, 44, 0.12);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.64);
}

.legal-page .legal-content h2:first-child {
  margin-top: 0;
}

.legal-page .legal-content p:last-child,
.legal-page .legal-content ul:last-child {
  margin-bottom: 0;
}

.not-found-page {
  min-height: 100vh;
  padding: clamp(12px, 1.5vw, 24px);
  background: var(--ivory-100);
}

.not-found-shell {
  position: relative;
  display: grid;
  min-height: calc(100svh - clamp(24px, 3vw, 48px));
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: clamp(22px, 3vw, 42px);
  border-radius: 28px;
  background: var(--pine-900);
  color: var(--paper);
}

.not-found-shell::before {
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: min(780px, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 197, 165, 0.16);
  border-radius: 50%;
  content: "";
}

.not-found-shell .wordmark {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.not-found-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  align-self: center;
  margin: clamp(72px, 10vh, 120px) auto;
  text-align: center;
}

.not-found-content .eyebrow {
  justify-content: center;
  color: var(--sand-300);
}

.not-found-content h1 {
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.94;
  text-wrap: balance;
}

.not-found-content > p:last-of-type {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.03rem;
  line-height: 1.75;
}

.not-found-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}

.not-found-actions .text-link {
  color: var(--paper);
}

.not-found-number {
  position: absolute;
  right: -0.02em;
  bottom: -0.24em;
  margin: 0;
  color: rgba(217, 197, 165, 0.055);
  font-family: var(--serif);
  font-size: clamp(18rem, 38vw, 44rem);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Footer */

.site-footer {
  background: var(--pine-950);
  color: var(--paper);
}

.footer-inner {
  width: var(--page);
  margin: 0 auto;
  padding: 84px 0 34px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.7fr;
  gap: 80px;
  padding-bottom: 78px;
}

.footer-brand .wordmark {
  margin-bottom: 26px;
}

.footer-brand .brand-logo {
  height: 50px;
}

.footer-brand p {
  max-width: 380px;
  color: rgba(255, 253, 248, 0.63);
  line-height: 1.75;
}

.footer-column h2 {
  margin-bottom: 23px;
  color: var(--sand-300);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.72rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a:hover {
  color: var(--paper);
}

/* Progressive reveal */

.has-js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.has-js .audience-card.reveal {
  clip-path: inset(0 0 9% 0);
  transform: scale(0.985);
  transition:
    clip-path 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 520ms ease-out,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js .audience-card.reveal.is-visible {
  clip-path: inset(0);
  transform: scale(1);
}

/* Responsive */

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 48px, 1240px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.76rem;
  }

  .catalogue {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 52px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding-block: 90px;
  }

  .audience {
    padding-bottom: 90px;
  }

  .audience .audience-card {
    height: clamp(330px, 34vw, 380px);
  }

  .hero {
    width: calc(100% - 24px);
    min-height: min(860px, calc(100svh - 20px));
    border-radius: 0 0 22px 22px;
  }

  .hero-slide::after {
    background: linear-gradient(
      180deg,
      rgba(23, 36, 31, 0.05) 18%,
      rgba(23, 36, 31, 0.74) 58%,
      rgba(23, 36, 31, 0.96) 100%
    );
  }

  .hero-slide:nth-child(1) .hero-image {
    object-position: 28% center;
  }

  .hero-slide:nth-child(2) .hero-image {
    object-position: 30% center;
  }

  .hero-slide:nth-child(3) .hero-image {
    object-position: 25% center;
  }

  .hero-slide-inner {
    align-items: end;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 124px;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
  }

  .hero-note {
    display: none;
  }

  .hero-carousel-controls {
    bottom: 26px;
  }

  .approach-heading,
  .contact-cta,
  .advisor {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .approach-heading {
    align-items: start;
  }

  .approach-heading > p {
    max-width: 650px;
    margin-bottom: 0;
  }

  .approach-card-process {
    display: block;
    grid-column: 1 / -1;
  }

  .approach-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
  }

  .approach-card-reach {
    grid-column: 1 / 7;
  }

  .approach-card-support {
    grid-column: 7 / -1;
  }

  .service-grid {
    gap: 18px;
  }

  .advisor-experience-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .advisor-experience-year {
    min-height: 380px;
  }

  .advisor-experience-copy {
    max-width: 760px;
  }

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

  .process-grid article {
    display: grid;
    grid-template-columns: 50px 1fr;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid span {
    grid-row: 1 / span 2;
    margin: 6px 0 0;
  }

  .process-grid h3 {
    margin-bottom: 10px;
  }

  .insurance-paths {
    grid-template-columns: 1fr;
  }

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

  .catalogue-intro {
    position: static;
  }

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

  .contact-card {
    min-height: auto;
  }

  .contact-label {
    margin-bottom: 40px;
  }

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

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

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 36px);
  }

  .section {
    padding-block: 74px;
  }

  .audience {
    width: calc(100% - 24px);
    padding-bottom: 82px;
  }

  .audience-shell {
    padding: 30px 18px 18px;
    border-radius: 20px;
  }

  .audience .section-heading {
    padding-inline: 10px;
    margin-bottom: 38px;
  }

  .services-section,
  .process-section,
  .contact-cta {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-logo {
    height: 40px;
  }

  .hero {
    width: calc(100% - 16px);
    min-height: 820px;
    border-radius: 0 0 18px 18px;
  }

  .hero-slide-inner {
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 112px;
  }

  .hero h1,
  .hero h2 {
    margin-bottom: 20px;
    font-size: clamp(2.85rem, 12.5vw, 4.25rem);
  }

  .hero-copy > p:not(.hero-kicker) {
    margin-bottom: 24px;
    font-size: 0.96rem;
    line-height: 1.6;
  }

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

  .hero-slide:nth-child(1) .hero-image {
    object-position: 24% center;
  }

  .hero-slide:nth-child(2) .hero-image {
    object-position: 26% center;
  }

  .hero-slide:nth-child(3) .hero-image {
    object-position: 22% center;
  }

  .button {
    width: 100%;
  }

  .hero-carousel-controls {
    bottom: 64px;
  }

  .hero-arrow {
    top: 36%;
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  .hero-progress {
    grid-template-columns: repeat(3, 36px);
  }

  .approach {
    width: calc(100% - 24px);
    padding-top: 74px;
    padding-bottom: 82px;
  }

  .approach-shell {
    padding: 30px 18px 18px;
    border-radius: 20px;
  }

  .approach-heading {
    gap: 28px;
    padding-inline: 10px;
    margin-bottom: 34px;
  }

  .approach-heading h2 {
    font-size: 2.65rem;
  }

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

  .approach-card-process,
  .approach-card-reach,
  .approach-card-support {
    grid-column: 1;
    min-height: auto;
  }

  .approach-card {
    padding: 28px 24px;
  }

  .approach-card h3 {
    font-size: 2.05rem;
  }

  .approach-steps li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 20px 0;
  }

  .approach-steps {
    display: block;
    margin-top: 28px;
  }

  .approach-steps li + li {
    border-left: 0;
  }

  .approach-steps span {
    margin-bottom: 0;
  }

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

  .section-heading h2,
  .advisor-proof h2,
  .contact-cta h2,
  .guidance h2 {
    font-size: 2.55rem;
  }

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

  .audience-card {
    height: clamp(320px, 72vw, 380px);
    min-height: 0;
    padding: 24px;
  }

  .audience .audience-card {
    height: clamp(320px, 72vw, 380px);
  }

  .audience-personal {
    --audience-position: 50% 58%;
  }

  .audience-business {
    --audience-position: 41% 55%;
  }

  .audience-card-body {
    margin-top: 24px;
  }

  .audience-card h3 {
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .audience-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 30px 10px 10px;
  }

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

  .service-group-heading {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }

  .service-card {
    min-height: 205px;
    padding: 24px 52px 24px 0;
  }

  .advisor-proof {
    padding: 76px 0;
  }

  .advisor-experience-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .advisor-experience-year {
    min-height: 320px;
    padding: 28px;
  }

  .advisor-experience-year > strong {
    font-size: clamp(6.4rem, 28vw, 9rem);
  }

  .advisor-experience h2 {
    font-size: clamp(2.75rem, 12.5vw, 4.2rem);
  }

  .contact-options a {
    font-size: 1rem;
  }

  .page-hero {
    min-height: 600px;
    padding-right: 18px;
    padding-bottom: 64px;
    padding-left: 18px;
  }

  .page-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .category-hero {
    min-height: 680px;
    padding-right: 18px;
    padding-bottom: 62px;
    padding-left: 18px;
  }

  .category-hero::before {
    background: linear-gradient(180deg, rgba(23, 36, 31, 0.16), rgba(23, 36, 31, 0.9));
  }

  .category-personal {
    background-position: 36% center;
  }

  .category-hero h1 {
    font-size: clamp(3.15rem, 14.5vw, 4.8rem);
  }

  .insurance-path {
    min-height: 0;
  }

  .path-image {
    min-height: 330px;
  }

  .path-copy {
    padding: 25px;
  }

  .accordion-trigger {
    grid-template-columns: 34px 1fr 36px;
    gap: 10px;
    padding: 24px 0;
  }

  .accordion-content {
    padding: 0 0 28px 44px;
  }

  .contact-card {
    padding: 24px;
  }

  .legal-page {
    width: calc(100% - 36px);
    padding-top: calc(var(--header-height) + 72px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

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

@media (max-width: 640px) {
  .advisor-experience + .audience {
    padding-top: 82px;
  }
}

/* Homepage floating hero navigation */
.site-header--hero {
  top: clamp(16px, 1.5vw, 24px);
  right: auto;
  left: 50%;
  width: min(
    1760px,
    calc(100% - clamp(48px, 6vw, 144px))
  );
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 18px;
  background: rgba(23, 36, 31, 0.66);
  box-shadow: 0 12px 32px rgba(23, 36, 31, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  backdrop-filter: blur(18px) saturate(115%);
  transform: translateX(-50%);
  transition:
    top 220ms cubic-bezier(0.16, 1, 0.3, 1),
    width 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header--hero.is-compact {
  top: 12px;
  background: rgba(23, 36, 31, 0.9);
  box-shadow: 0 10px 28px rgba(23, 36, 31, 0.22);
}

.site-header--hero .header-inner {
  width: 100%;
  min-height: 80px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 2vw, 30px);
  padding-inline: clamp(20px, 2vw, 30px);
  transition: min-height 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header--hero.is-compact .header-inner {
  min-height: 68px;
}

.site-header--hero .wordmark {
  min-height: 44px;
  align-items: center;
  align-self: center;
}

.site-header--hero .brand-logo {
  height: 48px;
}

.site-header--hero .desktop-nav {
  justify-content: flex-end;
  gap: 24px;
}

.site-header--hero .desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 253, 248, 0.9);
}

.site-header--hero .desktop-nav a::after {
  bottom: 5px;
  background: var(--sand-300);
}

.site-header--hero .header-call {
  min-height: 46px;
  padding: 8px 10px 8px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--pine-950);
  transition: background-color 180ms ease;
}

.site-header--hero .header-call:hover {
  background: var(--oat-200);
}

.site-header--hero .header-call span {
  width: 27px;
  height: 27px;
  border: 0;
  background: rgba(23, 36, 31, 0.08);
}

.site-header--hero .menu-toggle {
  border-color: rgba(255, 253, 248, 0.36);
  color: var(--paper);
}

.site-header--hero .menu-toggle span {
  background: var(--paper);
}

.site-header--hero :focus-visible {
  outline-color: var(--sand-300);
  outline-offset: 3px;
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header--hero {
    background: rgba(23, 36, 31, 0.88);
  }
}

@media (min-width: 1280px) {
  .site-header--hero ~ main .hero-slide-inner {
    padding-top: calc(var(--header-height) + 64px);
  }
}

@media (max-width: 1080px) {
  .site-header--hero {
    top: 16px;
    width: calc(100% - 48px);
    border-radius: 16px;
  }

  .site-header--hero.is-compact {
    top: 10px;
  }

  .site-header--hero .header-inner {
    min-height: 72px;
    gap: 18px;
    padding-inline: 18px;
  }

  .site-header--hero.is-compact .header-inner {
    min-height: 66px;
  }

  .site-header--hero .desktop-nav {
    gap: 18px;
  }

  .site-header--hero .header-call {
    min-height: 44px;
    padding-inline: 15px 9px;
  }
}

@media (max-width: 860px) {
  .site-header--hero,
  .site-header--hero.is-compact {
    top: max(12px, env(safe-area-inset-top));
    width: calc(100% - 32px);
  }

  .site-header--hero .header-inner,
  .site-header--hero.is-compact .header-inner {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding-inline: 14px 10px;
  }

  .site-header--hero .brand-logo {
    height: 42px;
  }

  .faq {
    padding-right: 24px;
    padding-left: 24px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-intro {
    max-width: 650px;
  }

  .faq-building-decoration {
    bottom: 14px;
    left: 14px;
    width: min(290px, 54vw);
    opacity: 0.06;
  }
}

@media (max-width: 640px) {
  .faq {
    padding-right: 18px;
    padding-left: 18px;
  }

  .faq-shell {
    gap: 36px;
  }

  .faq-intro h2 {
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .faq .accordion-trigger {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 18px;
    min-height: 78px;
    padding: 18px 16px 18px 20px;
  }

  .faq .accordion-title {
    font-size: 1.35rem;
  }

  .faq .accordion-icon {
    width: 38px;
    height: 38px;
  }

  .faq .accordion-content {
    padding: 0 56px 24px 20px;
  }
}

@media (max-width: 1080px) {
  .category-hero {
    width: calc(100% - 48px);
  }

  .category-hero-copy {
    width: min(680px, 60%);
  }

  .contact-page .contact-hero {
    width: calc(100% - 48px);
  }

  .contact-page .contact-hero-copy {
    width: min(680px, 60%);
  }

  .insurance-gateway {
    width: calc(100% - 48px);
    padding-top: 132px;
  }

  .insurance-gateway-copy {
    max-width: 880px;
  }
}

@media (max-width: 760px) {
  .category-page {
    padding-top: 12px;
  }

  .category-hero {
    width: calc(100% - 24px);
    min-height: 720px;
    padding: 112px 20px 24px;
    border-radius: 20px;
  }

  .category-hero::before {
    background:
      linear-gradient(180deg, rgba(23, 36, 31, 0.1) 0%, rgba(23, 36, 31, 0.26) 32%, rgba(23, 36, 31, 0.94) 100%);
  }

  .category-personal {
    background-image: url("images/hero-family.avif");
    background-position: 46% center;
  }

  .category-business {
    background-image: url("images/hero-do.avif");
    background-position: 42% center;
  }

  .category-hero-copy {
    width: 100%;
    margin-bottom: 40px;
    margin-left: 0;
  }

  .category-hero h1 {
    max-width: 650px;
    font-size: clamp(3.15rem, 14vw, 4.8rem);
  }

  .category-page .catalogue {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 32px 22px;
    border-radius: 20px;
  }

  .category-page .catalogue-intro {
    position: static;
  }

  .category-page .accordion-trigger {
    padding: 21px 18px;
  }

  .category-page .accordion-content {
    padding: 0 20px 24px 70px;
  }

  .contact-page {
    padding-top: 12px;
  }

  .contact-page .contact-hero {
    width: calc(100% - 24px);
    min-height: 700px;
    padding: 112px 20px 44px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(23, 36, 31, 0.08) 0%, rgba(23, 36, 31, 0.28) 32%, rgba(23, 36, 31, 0.95) 100%),
      url("images/hero-home.avif") 45% center / cover no-repeat;
  }

  .contact-page .contact-hero-copy {
    width: 100%;
    margin-left: 0;
  }

  .contact-page .contact-hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.8rem);
  }

  .contact-details {
    width: calc(100% - 24px);
    padding: 32px 22px;
    border-radius: 20px;
  }

  .contact-details-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .contact-page .contact-card {
    min-height: 240px;
  }

  .contact-page .contact-advisor {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    padding: 36px 24px;
    border-radius: 20px;
  }

  .legal-page {
    width: calc(100% - 24px);
    padding: 116px 22px 64px;
    margin: 12px auto 82px;
    border-radius: 20px;
  }

  .insurance-overview {
    padding-top: 12px;
  }

  .insurance-gateway {
    width: calc(100% - 24px);
    padding: 112px 18px 18px;
    border-radius: 20px;
  }

  .insurance-gateway h1 {
    font-size: clamp(3.2rem, 13.5vw, 4.9rem);
  }

  .insurance-gateway-paths {
    grid-template-columns: 1fr;
  }

  .insurance-gateway-card {
    height: clamp(340px, 92vw, 410px);
    padding: 24px;
  }

  .insurance-gateway-personal {
    --gateway-position: 50% 58%;
  }

  .insurance-gateway-business {
    --gateway-position: 42% 54%;
  }
}

@media (max-width: 640px) {
  .category-hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .category-hero-meta a {
    width: 100%;
    justify-content: space-between;
  }

  .category-page .catalogue {
    margin-block: 74px;
  }

  .category-page .catalogue-intro h2 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .category-page .accordion-content {
    padding: 0 16px 22px 64px;
  }

  .contact-details-heading h2 {
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }

  .contact-page .contact-label {
    margin-bottom: 58px;
  }

  .legal-page h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .legal-page .legal-content {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .not-found-shell {
    padding: 20px;
    border-radius: 20px;
  }

  .not-found-content {
    text-align: left;
  }

  .not-found-content .eyebrow {
    justify-content: flex-start;
  }

  .not-found-content > p:last-of-type {
    margin-left: 0;
  }

  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .not-found-actions .button {
    width: 100%;
  }

  .not-found-actions .text-link {
    width: fit-content;
  }

  .insurance-gateway-copy > p:last-child {
    font-size: 0.98rem;
  }

  .insurance-gateway-card-body h2 {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }
}

/* Slightly tighter display type for laptop-sized browser viewports. */
@media (min-width: 1024px) and (max-width: 1728px) and (max-height: 1100px) {
  .hero h1,
  .hero h2 {
    font-size: clamp(3.55rem, 4.75vw, 4.25rem);
  }

  .section-heading h2,
  .intro-statement h2,
  .advisor-proof h2,
  .guidance h2,
  .approach-heading h2,
  .advisor-experience h2,
  .partners-heading h2 {
    font-size: clamp(3rem, 4.6vw, 4.25rem);
  }

  .faq-intro h2,
  .contact-cta h2 {
    font-size: clamp(2.75rem, 4.25vw, 4rem);
  }

  .page-hero h1,
  .category-hero h1,
  .insurance-gateway h1,
  .contact-page .contact-hero h1,
  .legal-page h1 {
    font-size: clamp(3.2rem, 4.9vw, 4.5rem);
  }

  .approach-card h3 {
    font-size: clamp(2rem, 2.85vw, 2.625rem);
  }
}

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

  .has-js .partners-track {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .hero-slide,
  .hero-image,
  .hero-copy,
  .hero-note {
    transition: none;
  }

  .hero-image,
  .hero-copy,
  .hero-note {
    transform: none;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }

  .has-js .audience-card.reveal {
    clip-path: none;
  }

  .mobile-menu,
  .site-header--hero,
  .site-header--hero .header-inner,
  .site-header--hero .header-call,
  .category-hero-meta a span,
  .category-page .accordion,
  .breadcrumbs a,
  .contact-page .contact-card,
  .menu-toggle span,
  .header-call span,
  .desktop-nav a::after,
  .button,
  .text-link span,
  .audience-card::before,
  .audience-card::after,
  .insurance-gateway-card,
  .insurance-gateway-card::before,
  .insurance-gateway-card::after,
  .round-arrow,
  .faq .accordion-panel,
  .faq .accordion-panel > div,
  .faq .accordion-icon,
  .faq .accordion-title,
  .service-card,
  .service-arrow,
  .contact-options span {
    transition: none;
  }
}
