:root {
  --ink: #172432;
  --navy: #102b42;
  --navy-2: #173c56;
  --blue: #315f78;
  --blue-soft: #dce8ed;
  --copper: #b86c43;
  --copper-dark: #945033;
  --sand: #f5f2ec;
  --surface: #ffffff;
  --muted: #5e6a74;
  --line: #d9e0e4;
  --focus: #0067a3;
  --shadow: 0 18px 50px rgba(21, 42, 58, .10);
  --radius: 22px;
  --radius-small: 12px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

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

address {
  font-style: normal;
}

h1, h2, h3, h4, p, ul, ol, blockquote, figure, dl {
  margin-top: 0;
}

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.025em;
}

h1 {
  font-size: clamp(2.9rem, 7vw, 5.85rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  margin-bottom: .75rem;
}

h4 {
  font-size: 1.05rem;
  margin-bottom: .55rem;
}

p {
  margin-bottom: 1.1rem;
}

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

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

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

.section-dark {
  background: var(--navy);
  color: #eaf1f4;
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: #fff;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: #fff;
  color: var(--navy);
  padding: .7rem 1rem;
  border-radius: .5rem;
  box-shadow: var(--shadow);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(217, 224, 228, .8);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-symbol {
  width: 43px;
  height: 43px;
}

.brand-symbol path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-symbol circle {
  fill: var(--copper);
}

.brand-copy {
  display: grid;
  line-height: 1;
  text-align: center;
}

.brand-name {
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 630;
  letter-spacing: .025em;
}

.brand-name span, .footer-brand span {
  color: var(--copper);
}

.brand-tagline {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: .35rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.primary-nav a {
  position: relative;
  color: #324452;
  font-size: .95rem;
  font-weight: 590;
  text-decoration: none;
  padding-block: 1.95rem;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.45rem;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav a[aria-current="page"] {
  color: var(--navy);
}

.nav-toggle {
  display: none;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--copper-dark);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e3a47f;
}

.prose-large, .prose-large p {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.inline-link {
  color: var(--blue);
  font-weight: 650;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--navy);
  font-weight: 680;
  text-decoration: none;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(.2rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

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

.button-primary:hover {
  background: var(--navy-2);
}

.button-secondary {
  border-color: var(--navy);
  color: var(--navy);
}

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

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

.hero {
  overflow: hidden;
  padding-top: clamp(4rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

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

.hero-lead {
  max-width: 720px;
  color: #43535f;
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem;
  margin-top: 2rem;
}

.hero-graphic {
  min-width: 0;
}

.hero-graphic svg {
  width: 100%;
  height: auto;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.split-intro > div:last-child > :last-child {
  margin-bottom: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading > div {
  max-width: 820px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading-light > p {
  max-width: 480px;
  margin-bottom: .35rem;
  color: #cfdde4;
}

.card-grid {
  display: grid;
  gap: 1.1rem;
}

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

.feature-card, .principle-card {
  min-height: 305px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card p {
  color: var(--muted);
}

.card-index {
  margin-bottom: auto;
  color: var(--copper-dark);
  font-size: .77rem;
  font-weight: 760;
  letter-spacing: .12em;
}

.feature-card h3 {
  margin-top: 2.3rem;
}

.principle-card {
  background: var(--navy);
  color: #d9e5ea;
  border-color: var(--navy);
}

.principle-card blockquote {
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: start;
}

.lead-light {
  color: #cfdde4;
  font-size: 1.18rem;
  max-width: 620px;
}

.approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.approach-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.2rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.approach-list li > span {
  color: #e3a47f;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .12em;
}

.approach-list strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: .25rem;
}

.approach-list p {
  color: #cbdbe2;
  margin-bottom: 0;
}

.team-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.person-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.person-card-horizontal {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1.8rem;
  align-items: start;
}

.person-monogram, .profile-monogram {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 740;
  letter-spacing: -.02em;
}

.person-role {
  color: var(--copper-dark);
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.person-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.closing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .65fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.closing-panel h2 {
  margin-bottom: 0;
}

.closing-panel .button {
  margin-top: .75rem;
}

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

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .7fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.page-hero-grid > *, .service-item > *, .legal-container, .service-copy {
  min-width: 0;
}

.page-hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  margin-bottom: 0;
}

.page-lead {
  margin-bottom: .5rem;
  color: #4c5b66;
  font-size: clamp(1.15rem, 1.75vw, 1.38rem);
  line-height: 1.65;
}

.service-list {
  border-top: 1px solid #ced7dc;
}

.service-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid #ced7dc;
  scroll-margin-top: 110px;
}

.service-number {
  color: var(--copper-dark);
  font-size: .85rem;
  font-weight: 760;
  letter-spacing: .15em;
}

.service-copy {
  max-width: 830px;
}

.service-copy > p:not(.eyebrow) {
  font-size: 1.12rem;
  color: #4f5e69;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem 2rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
}

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

.principles-grid article {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.principles-grid span {
  color: var(--copper-dark);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .12em;
}

.principles-grid h3 {
  margin-top: 1.2rem;
}

.principles-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.heritage-image {
  margin: 0;
}

.heritage-image picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.heritage-image img {
  width: 100%;
  height: auto;
  filter: saturate(.75) contrast(1.03);
}

.heritage-image figcaption {
  margin-top: .75rem;
  color: var(--muted);
  font-size: .8rem;
}

.history-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  color: var(--copper-dark);
  font-size: .84rem;
  font-weight: 760;
  letter-spacing: .09em;
}

.timeline h3 {
  font-size: 1.3rem;
}

.timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.profile-card {
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.profile-top {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.3rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

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

.profile-columns {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.6rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.profile-columns ul {
  padding-left: 1.15rem;
  margin-bottom: 0;
}

.profile-columns li + li {
  margin-top: .3rem;
}

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

.industry-grid article {
  min-height: 270px;
  padding: 1.8rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e4e0d9;
}

.industry-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 2.4rem;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--navy);
  font-weight: 760;
}

.industry-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

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

.context-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.context-list article > span {
  color: var(--copper-dark);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .12em;
}

.context-list h3 {
  font-size: 1.25rem;
}

.context-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.confidentiality-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.confidentiality-panel p {
  color: #cfdde4;
  font-size: 1.12rem;
}

.confidentiality-panel .button {
  margin-top: .8rem;
}

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

.contact-card {
  min-height: 400px;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #e3ded5;
}

.contact-card h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.contact-card address {
  font-size: 1.25rem;
  line-height: 1.8;
}

.contact-card-accent {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.contact-card-accent h2 {
  color: #fff;
}

.contact-card-accent .eyebrow {
  color: #e3a47f;
}

.contact-note {
  margin-top: 2rem;
  color: var(--muted);
}

.contact-details {
  margin: 2rem 0 0;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.contact-details dt {
  color: #aebfc8;
}

.contact-details dd {
  margin: 0;
  font-size: 1.18rem;
}

.contact-details a {
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.legal-hero {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.legal-container {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.legal-hero h1 {
  margin-bottom: .5rem;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.legal-date {
  color: var(--muted);
}

.legal-copy h2 {
  margin-top: 3rem;
  margin-bottom: .7rem;
  font-size: 1.55rem;
}

.legal-copy h2:first-of-type {
  margin-top: 0;
}

.legal-copy a {
  color: var(--blue);
}

.review-note {
  margin-bottom: 2.5rem;
  padding: 1.2rem 1.3rem;
  border-left: 4px solid var(--copper);
  background: #fff;
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.site-footer {
  background: #0b2132;
  color: #c5d3da;
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .6fr;
  gap: 3rem;
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-grid a {
  color: #e8f0f3;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: #fff !important;
  font-size: 1.45rem;
  font-weight: 670;
  letter-spacing: .02em;
}

.footer-heading {
  color: #fff;
  font-size: .82rem;
  font-weight: 720;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .82rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }
  .js .nav-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
  }
  .nav-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--navy);
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .js .primary-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    padding: .6rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    box-shadow: var(--shadow);
  }
  .js .primary-nav[data-open="true"] {
    display: grid;
  }
  .primary-nav {
    gap: 0;
  }
  .primary-nav a {
    padding: .85rem 1rem;
    border-radius: .5rem;
  }
  .primary-nav a::after {
    display: none;
  }
  .primary-nav a[aria-current="page"] {
    background: var(--sand);
  }
  .hero-grid, .page-hero-grid, .split-intro, .approach-grid, .history-grid, .experience-grid, .philosophy-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 2.5rem;
  }
  .hero-graphic {
    max-width: 680px;
  }
  .page-hero-grid {
    align-items: start;
  }
  .page-hero .page-lead {
    max-width: 720px;
  }
  .card-grid-3, .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-teaser-grid, .profile-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .closing-panel, .confidentiality-panel {
    grid-template-columns: 1fr;
  }
  .profile-card {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .container, .legal-container {
    width: min(calc(100% - 28px), var(--container));
  }
  .brand-tagline {
    display: none;
  }
  .brand-symbol {
    width: 38px;
    height: 38px;
  }
  .brand-name {
    font-size: 1.35rem;
  }
  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }
  .hero {
    padding-top: 3.2rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-graphic {
    margin-inline: -8px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .card-grid-3, .industry-grid, .principles-grid {
    grid-template-columns: 1fr;
  }
  .feature-card, .principle-card {
    min-height: 270px;
  }
  .person-card-horizontal {
    grid-template-columns: 80px 1fr;
    gap: 1.1rem;
  }
  .service-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .page-hero h1, .legal-hero h1, .service-copy h2 {
    overflow-wrap: anywhere;
    hyphens: manual;
  }
  .check-list {
    grid-template-columns: 1fr;
  }
  .timeline li {
    grid-template-columns: 76px 1fr;
  }
  .profile-top {
    grid-template-columns: 72px 1fr;
  }
  .profile-columns {
    grid-template-columns: 1fr;
  }
  .contact-card {
    min-height: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: .25rem;
  }
}

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

@media print {
  .site-header, .site-footer, .hero-actions, .nav-toggle {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }
  .section-pad {
    padding-block: 2rem;
  }
  .section-dark {
    background: #fff;
    color: #000;
  }
  .section-dark h2, .section-dark h3, .section-dark h4 {
    color: #000;
  }
  a {
    text-decoration: none;
  }
}
