@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets-brand/fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets-brand/fonts/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets-brand/fonts/inter-800.ttf") format("truetype");
}

@font-face {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets-brand/fonts/libre-baskerville-400.ttf") format("truetype");
}

@font-face {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets-brand/fonts/libre-baskerville-700.ttf") format("truetype");
}

:root {
  --cream: #fff9f1;
  --cream-deep: #f5ecdf;
  --paper: #ffffff;
  --ink: #171717;
  --navy: #1b2541;
  --sub: #575650;
  --muted: #77736d;
  --line: rgba(23, 23, 23, 0.13);
  --rust: #b95b2b;
  --rust-dark: #94431d;
  --blue: #2f6fed;
  --shadow: 0 22px 54px rgba(45, 35, 25, 0.14);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
summary {
  font-family: var(--sans);
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 23, 23, 0.09);
  background: rgba(255, 249, 241, 0.96);
  transition: box-shadow 180ms ease;
  backdrop-filter: blur(14px);
}

.topbar.scrolled {
  box-shadow: 0 12px 32px rgba(45, 35, 25, 0.09);
}

.site-nav {
  position: relative;
  display: flex;
  min-height: 106px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-link {
  flex: none;
}

.brand-link img {
  width: 176px;
  height: auto;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navlink,
.service-menu > summary {
  color: #302f2b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.navlink:hover,
.service-menu > summary:hover {
  color: var(--rust);
}

.navlink.current,
.service-menu.current > summary {
  text-decoration: underline;
  text-decoration-color: var(--rust);
  text-decoration-thickness: 2px;
  text-underline-offset: 9px;
}

.navcta,
.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.navcta,
.button-primary {
  border: 1px solid var(--rust);
  background: var(--rust);
  color: #fff;
}

.navcta:hover,
.button-primary:hover {
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
}

.button-secondary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.service-menu,
.mobile-menu {
  position: relative;
}

.service-menu > summary,
.mobile-menu > summary {
  list-style: none;
  cursor: pointer;
}

.service-menu > summary::-webkit-details-marker,
.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.service-menu > summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-menu > summary::after {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 150ms ease;
}

.service-menu[open] > summary::after {
  transform: translateY(2px) rotate(225deg);
}

.navmenu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  width: min(690px, calc(100vw - 32px));
  transform: translateX(-48%);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 22px;
}

.navmenu::before {
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 26px;
  content: "";
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.menu-col {
  padding: 8px;
}

.menu-col + .menu-col {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.menu-label {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-link {
  display: block;
  border-radius: 10px;
  padding: 10px 11px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.menu-link small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.4;
}

.menu-link:hover {
  background: var(--cream);
  color: var(--rust-dark);
}

.menu-overview {
  display: flex;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding: 15px 10px 2px;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.menu-overview:hover {
  color: var(--rust);
}

.mobile-menu {
  display: none;
}

.mobile-menu > summary {
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.mobile-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(390px, calc(100vw - 32px));
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  border: 1px solid rgba(23, 23, 23, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 20px;
}

.mobile-panel .menu-col {
  padding: 0;
}

.mobile-panel .menu-col + .menu-col {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-left: 0;
  padding: 18px 0 0;
}

.mobile-plain-links {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  gap: 3px;
}

.mobile-plain-links a {
  border-radius: 9px;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-plain-links a:hover {
  background: var(--cream);
}

.mobile-panel .navcta {
  width: 100%;
  margin-top: 16px;
}

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

.section {
  padding: 92px 0;
}

.section-compact {
  padding: 70px 0;
}

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

.eyebrow::before {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  color: var(--ink);
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 13px;
  font-size: 24px;
  line-height: 1.25;
}

.lede {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--sub);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.subcopy {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--sub);
  font-size: 17px;
  line-height: 1.7;
}

.hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 38%;
  background-image: url("/assets-brand/hero-advising.jpg");
  background-position: 66% 38%;
  background-size: cover;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    var(--cream) 42%,
    rgba(255, 249, 241, 0.9) 54%,
    rgba(255, 249, 241, 0.18) 82%
  );
}

.hero-inner {
  position: relative;
  display: flex;
  min-height: 630px;
  padding: 84px 0;
  align-items: center;
}

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

.hero h1 span,
.tint {
  color: var(--rust);
}

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

.section-head {
  max-width: 800px;
  margin-bottom: 42px;
}

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

.situation-card {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  padding: 32px;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.situation-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(185, 91, 43, 0.07);
  content: "";
  transition: transform 180ms ease;
}

.situation-card:hover {
  border-color: rgba(185, 91, 43, 0.5);
  box-shadow: 0 16px 40px rgba(45, 35, 25, 0.09);
  transform: translateY(-3px);
}

.situation-card:hover::after {
  transform: scale(1.12);
}

.card-kicker {
  display: block;
  margin-bottom: 24px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.situation-card h3 {
  max-width: 440px;
  font-size: clamp(25px, 3vw, 32px);
}

.situation-card p {
  max-width: 50ch;
  margin-bottom: 22px;
  color: var(--sub);
  font-size: 15.5px;
  line-height: 1.65;
}

.text-link {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.capability-section {
  background: #fff;
}

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

.capability-card {
  min-height: 370px;
  border-bottom: 1px solid var(--line);
  padding: 42px 42px 42px 0;
  scroll-margin-top: 130px;
}

.capability-card:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 48px;
}

.capability-card:nth-child(even) {
  padding-left: 48px;
}

.capability-number {
  display: block;
  margin-bottom: 26px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.capability-card p {
  color: var(--sub);
  font-size: 15.5px;
  line-height: 1.7;
}

.capability-card ul,
.sequence-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li,
.sequence-card li {
  position: relative;
  margin-top: 9px;
  padding-left: 18px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.55;
}

.capability-card li::before,
.sequence-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.topic-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream-deep);
  padding: 42px;
}

.topic-panel h2 {
  max-width: 700px;
}

.topic-list {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-list span {
  border: 1px solid rgba(27, 37, 65, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 11px 15px;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
}

.bridge {
  background: var(--navy);
  color: #fff;
}

.bridge h2,
.bridge h3 {
  color: #fff;
}

.bridge .subcopy {
  color: rgba(255, 255, 255, 0.72);
}

.bridge-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.bridge-points {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.bridge-point {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 22px 0;
}

.bridge-point strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 19px;
}

.bridge-point p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.6;
}

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

.boundary-card {
  border-top: 3px solid var(--rust);
  background: #fff;
  padding: 28px;
}

.boundary-card h3 {
  font-family: var(--sans);
  font-size: 17px;
}

.boundary-card p {
  margin-bottom: 0;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.65;
}

.cta-section {
  padding: 34px 0 94px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 30%
    ),
    var(--rust);
  padding: 62px;
  color: #fff;
}

.cta-band h2 {
  max-width: 720px;
  color: #fff;
}

.cta-band p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.65;
}

.cta-band .button-primary {
  border-color: #fff;
  background: #fff;
  color: var(--rust-dark);
}

.cta-band .button-primary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.cta-band .button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.cta-band .button-secondary:hover {
  border-color: #fff;
  background: #fff;
  color: var(--rust-dark);
}

.cta-support-link {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.cta-support-link:hover {
  text-decoration-thickness: 2px;
}

.fine {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 12.5px !important;
  line-height: 1.55 !important;
}

.path-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    135deg,
    #fffdf8 0%,
    var(--cream) 60%,
    #f4e6d7 100%
  );
  padding: 82px 0 76px;
}

.path-hero h1 {
  max-width: 880px;
}

.path-context {
  display: inline-flex;
  margin-bottom: 24px;
  border: 1px solid rgba(185, 91, 43, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 9px 13px;
  color: var(--rust-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sequence-intro {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: end;
}

.sequence-intro p {
  margin-bottom: 0;
  color: var(--sub);
  font-size: 17px;
  line-height: 1.7;
}

.sequence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sequence-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 32px;
}

.sequence-card.featured {
  border-color: rgba(185, 91, 43, 0.42);
  background: #fffaf4;
  box-shadow: 0 14px 38px rgba(45, 35, 25, 0.08);
}

.sequence-rank {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 12px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sequence-rank span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  align-items: center;
  justify-content: center;
}

.sequence-card p {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.65;
}

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

.question-list p {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px 4px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.35;
}

.outcomes-intro {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--sub);
  font-size: 17px;
  line-height: 1.7;
}

.service-outcome-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-outcome {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 28px;
}

.service-outcome > span {
  display: block;
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-outcome h3 {
  margin-bottom: 12px;
}

.service-outcome p {
  margin-bottom: 0;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.65;
}

.service-process-note {
  display: flex;
  margin-top: 22px;
  border-left: 4px solid var(--rust);
  background: #fff;
  padding: 24px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.service-process-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.service-process-note p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.7;
}

.service-process-note .text-link {
  flex: none;
}

.laid-off-capability-grid .sequence-card {
  min-height: 290px;
}

.boundary-note {
  border-left: 4px solid var(--rust);
  background: #fff;
  padding: 25px 28px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.7;
}

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

footer {
  background: var(--navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  padding: 64px 0 38px;
  grid-template-columns: 1.45fr 0.8fr 0.8fr;
  gap: 48px;
}

.footer-name {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
}

.footer-desc {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.65;
}

.footer-crd {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-head {
  margin-bottom: 16px;
  color: #d8a07f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

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

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 30px 0 42px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.65;
}

.legal p {
  margin-bottom: 11px;
}

.legal a {
  color: inherit;
  text-underline-offset: 3px;
}

.legal-bottom {
  display: flex;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 22px;
  justify-content: space-between;
  gap: 20px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.services-overview-hero {
  min-height: 0;
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(185, 91, 43, 0.11),
      transparent 30%
    ),
    linear-gradient(135deg, #fff9f1 0%, #f5ecdf 100%);
}

.services-overview-hero .hero-inner {
  min-height: 0;
  padding: 92px 0 88px;
  justify-content: center;
}

.services-overview-hero .hero-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.services-overview-hero .eyebrow,
.services-overview-hero .actions {
  justify-content: center;
}

.services-overview-hero .lede {
  margin-inline: auto;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 20px;
  }

  .navlink,
  .service-menu > summary {
    font-size: 14px;
  }

  .navcta {
    padding-inline: 17px;
  }
}

@media (max-width: 920px) {
  .site-nav {
    min-height: 86px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .services-overview-hero,
  .services-overview-hero .hero-inner {
    min-height: 0;
  }

  .hero,
  .hero-inner {
    min-height: 610px;
  }

  .hero-photo {
    left: 28%;
    opacity: 0.58;
  }

  .hero-wash {
    background: linear-gradient(
      90deg,
      var(--cream) 0%,
      rgba(255, 249, 241, 0.96) 58%,
      rgba(255, 249, 241, 0.34) 100%
    );
  }

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

  .bridge-grid,
  .sequence-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 36px, 1080px);
  }

  .section {
    padding: 70px 0;
  }

  .site-nav {
    padding: 0 18px;
  }

  .brand-link img {
    width: 145px;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .services-overview-hero,
  .services-overview-hero .hero-inner {
    min-height: 0;
  }

  .services-overview-hero .hero-inner {
    padding: 68px 0 64px;
    align-items: center;
  }

  .hero-inner {
    padding: 72px 0;
    align-items: flex-end;
  }

  .hero-photo {
    inset: 0;
    background-position: 62% 35%;
    opacity: 0.35;
  }

  .hero-wash {
    background: linear-gradient(
      0deg,
      var(--cream) 0%,
      rgba(255, 249, 241, 0.94) 52%,
      rgba(255, 249, 241, 0.2) 100%
    );
  }

  .situation-grid,
  .capability-grid,
  .sequence-grid,
  .service-outcome-grid {
    grid-template-columns: 1fr;
  }

  .situation-card {
    min-height: 0;
    padding: 26px;
  }

  .capability-card,
  .capability-card:nth-child(odd),
  .capability-card:nth-child(even) {
    min-height: 0;
    border-right: 0;
    padding: 34px 0;
  }

  .topic-panel,
  .cta-band {
    padding: 32px 24px;
  }

  .path-hero {
    padding: 64px 0 58px;
  }

  .sequence-card {
    min-height: 0;
    padding: 27px;
  }

  .service-outcome {
    padding: 24px;
  }

  .service-process-note {
    padding: 22px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

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

  .legal-bottom {
    flex-direction: column;
  }
}

@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] {
    opacity: 1;
    transform: none;
  }
}
