@font-face {
  font-family: "Manrope Variable";
  src: url("/assets/fonts/manrope-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader Variable";
  src: url("/assets/fonts/newsreader-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader Variable";
  src: url("/assets/fonts/newsreader-variable-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --navy: #0c1320;
  --navy-soft: #182235;
  --gold: #f2b633;
  --gold-deep: #dca01b;
  --ivory: #f4f4f2;
  --paper: #fbfaf6;
  --white: #ffffff;
  --muted: #5d6675;
  --line: rgba(12, 19, 32, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --max: 1240px;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow: 0 28px 80px rgba(12, 19, 32, 0.12);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--paper);
  font-family: "Manrope Variable", Manrope, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 720;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(3.25rem, 6.4vw, 6.75rem);
}

h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
}

p {
  margin-bottom: 0;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms var(--ease);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #756018;
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: var(--gold-deep);
  content: "";
}

.eyebrow-light {
  color: var(--gold);
}

.eyebrow-light::before {
  background: var(--gold);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border 180ms var(--ease);
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.button-gold {
  color: #201703;
  background: var(--gold);
}

.button-gold:hover {
  background: #ffc23f;
}

.button-ink {
  color: var(--white);
  background: var(--navy);
}

.button-ink:hover {
  background: var(--ink);
}

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

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
}

.text-link span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 30px;
  object-fit: contain;
}

.primary-nav,
.nav-links {
  display: flex;
  align-items: center;
}

.primary-nav {
  gap: 18px;
}

.nav-links {
  gap: 22px;
}

.nav-links a,
.language-switch {
  position: relative;
  padding-block: 12px;
  color: #424854;
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

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

.language-switch {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  border: 1px solid rgba(10, 10, 10, 0.3);
  border-radius: 50%;
}

.header-cta {
  min-height: 44px;
  padding-inline: 18px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.menu-toggle i {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms var(--ease);
}

.menu-toggle i:first-of-type {
  transform: translateY(-4px);
}

.menu-toggle i:last-of-type {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  transform: rotate(-45deg);
}

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

.home-hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 38%, rgba(242, 182, 51, 0.12), transparent 34%), linear-gradient(90deg, rgba(10, 10, 10, 0.96) 0 40%, rgba(10, 10, 10, 0.28) 72%, rgba(10, 10, 10, 0.1));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 780px;
  align-items: center;
  grid-template-columns: minmax(0, 6fr) minmax(380px, 6fr);
  gap: 48px;
  padding-block: 90px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

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

.hero-intro {
  max-width: 650px;
  margin-top: 32px;
  color: #d8d9db;
  font-size: clamp(1.05rem, 1.7vw, 1.33rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.home-hero .text-link,
.page-hero .text-link {
  color: var(--white);
}

.hero-note {
  max-width: 590px;
  margin-top: 42px;
  padding-top: 20px;
  color: #aeb1b6;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.86rem;
  line-height: 1.6;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: min(-16vw, -180px);
  bottom: 0;
  width: min(68vw, 980px);
  margin: 0;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
  object-position: center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(10, 10, 10, 0.78) 16%, transparent 56%);
  content: "";
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(190px, 18vw, 300px);
  bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  color: var(--ink);
  background: rgba(244, 244, 242, 0.92);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-visual figcaption span {
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  font-size: 0.78rem;
}

.proof-strip {
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid var(--line-light);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid > div {
  min-height: 132px;
  padding: 28px 28px 24px;
  border-right: 1px solid var(--line-light);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--line-light);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.proof-grid span {
  color: #b9bec7;
  font-size: 0.78rem;
  line-height: 1.5;
}

.section {
  padding-block: clamp(88px, 9vw, 132px);
}

#services,
#industries,
#why,
#process,
#scope {
  scroll-margin-top: 104px;
}

.section-heading {
  display: grid;
  max-width: 910px;
  margin-bottom: clamp(48px, 6vw, 74px);
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  column-gap: 34px;
}

.section-heading .eyebrow {
  grid-row: 1 / span 2;
}

.section-heading h2 {
  max-width: 840px;
}

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading-light,
.section-heading-light > p:last-child:not(.eyebrow) {
  color: var(--white);
}

.section-heading-light > p:last-child:not(.eyebrow) {
  color: #b9bec7;
}

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

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

.outcome-card {
  display: grid;
  min-height: 430px;
  padding: clamp(34px, 4vw, 56px);
  align-content: space-between;
  border-right: 1px solid var(--line);
}

.outcome-card:last-child {
  border-right: 0;
}

.outcome-metric strong,
.outcome-metric span,
.outcome-card > p span {
  display: block;
}

.outcome-metric strong {
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.outcome-metric span {
  max-width: 290px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.outcome-card blockquote {
  margin: 50px 0 40px;
  font-family: "Newsreader Variable", Georgia, serif;
  font-size: clamp(1.55rem, 2.8vw, 2.7rem);
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.outcome-card > p {
  font-size: 0.82rem;
  font-weight: 760;
}

.outcome-card > p span {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 560;
}

.proof-disclaimer {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.72rem;
}

.services-journey {
  background: var(--paper);
}

.service-explorer {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.service-tabs {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border-right: 1px solid var(--line);
}

.service-tabs button {
  display: grid;
  min-height: 96px;
  padding: 24px 28px;
  align-items: center;
  grid-template-columns: 48px 1fr;
  color: #606873;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.service-tabs button:last-child {
  border-bottom: 0;
}

.service-tabs button span {
  color: #725600;
  font-size: 0.72rem;
  font-weight: 760;
}

.service-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--navy);
}

.service-tabs button[aria-selected="true"] span {
  color: var(--gold);
}

.service-panels {
  min-height: 520px;
  background: var(--white);
}

.service-panel {
  display: flex;
  min-height: 520px;
  padding: clamp(42px, 6vw, 76px);
  flex-direction: column;
  justify-content: center;
}

.service-panel[hidden] {
  display: none;
}

.journey-photo,
.process-photo,
.service-photo {
  position: relative;
  margin: clamp(42px, 6vw, 72px) 0 0;
}

.journey-photo img,
.process-photo img,
.service-photo img {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.journey-photo img {
  object-position: 50% 58%;
}

.process-photo img {
  object-position: 50% 46%;
}

.service-photo img {
  object-position: center;
}

.journey-photo figcaption,
.process-photo figcaption,
.service-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(244, 244, 242, 0.94);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 720;
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.16);
}

.service-panel h3 {
  max-width: 670px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.service-panel > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0;
  list-style: none;
}

.service-panel li {
  padding: 8px 12px;
  color: #4d5560;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 680;
}

.nearshore-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.nearshore-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
}

.nearshore-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(44px, 7vw, 92px);
}

.nearshore-grid .section-heading {
  display: block;
}

.nearshore-grid .section-heading .eyebrow {
  margin-bottom: 24px;
}

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

.nearshore-points article {
  display: grid;
  padding: 26px 24px 28px 0;
  grid-template-columns: 42px 1fr;
  border-bottom: 1px solid var(--line-light);
}

.nearshore-points article:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.nearshore-points article:nth-child(even) {
  padding-left: 24px;
}

.nearshore-points span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 760;
}

.nearshore-points h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nearshore-points p {
  margin-top: 10px;
  color: #adb3bd;
  font-size: 0.82rem;
}

.signal-figure {
  align-self: end;
  margin: 0;
  padding: 12px;
  color: var(--navy);
  background: var(--ivory);
  border-radius: var(--radius-lg);
  transform: rotate(1.5deg);
}

.signal-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
}

.signal-figure figcaption {
  padding: 18px 12px 8px;
  font-family: "Newsreader Variable", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.process-section {
  background: var(--paper);
}

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

.process-body-with-media {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(46px, 7vw, 92px);
}

.process-body-with-media .process-list li {
  min-height: 128px;
  grid-template-columns: 54px minmax(0, 1fr);
}

.process-body-with-media .process-list li > span {
  grid-row: 1 / span 2;
}

.process-body-with-media .process-list li > div {
  display: block;
}

.process-body-with-media .process-list p {
  margin-top: 10px;
  font-size: 0.84rem;
}

.process-body-with-media .process-photo {
  position: sticky;
  top: 118px;
  margin-top: 0;
}

.process-body-with-media .process-photo img {
  aspect-ratio: 4 / 5;
  object-position: 54% center;
}

.process-list li {
  display: grid;
  min-height: 146px;
  padding: 30px 0;
  align-items: start;
  grid-template-columns: minmax(76px, 1.4fr) minmax(220px, 4fr) minmax(0, 6.6fr);
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: #725600;
  font-size: 0.76rem;
  font-weight: 760;
}

.process-list li > div {
  display: contents;
}

.process-list h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
}

.process-list p {
  max-width: 620px;
  color: var(--muted);
}

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

.conversion-chapter {
  background: var(--ivory);
}

.people-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(48px, 7vw, 96px);
}

.award-card {
  position: relative;
  margin: 0;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.award-picture img {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 26px;
  object-fit: cover;
  object-position: 50% 50%;
}

.award-card figcaption {
  display: flex;
  padding: 18px 14px 8px;
  justify-content: space-between;
  gap: 20px;
}

.award-card figcaption strong {
  max-width: 310px;
  font-size: 0.88rem;
}

.award-card figcaption span {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.people-copy .section-heading {
  display: block;
}

.people-principles {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.people-principles article {
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.people-principles strong {
  font-size: 0.94rem;
}

.people-principles p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.scope-layout {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 8fr);
  gap: clamp(48px, 7vw, 92px);
}

.scope-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.scope-intro .section-heading {
  display: block;
  margin-bottom: 38px;
}

.scope-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.scope-progress span {
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.scope-progress span.is-active {
  background: var(--gold);
}

.scope-intro > p {
  margin-top: 12px;
  color: #9da2aa;
  font-size: 0.72rem;
}

.scope-builder {
  min-height: 620px;
  padding: clamp(30px, 5vw, 58px);
  background: var(--navy);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
}

.scope-step[hidden] {
  display: none;
}

.scope-builder fieldset {
  padding: 0;
  margin: 0 0 34px;
  border: 0;
}

.scope-builder legend {
  width: 100%;
  margin-bottom: 26px;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.choice-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-grid-inline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-card > span {
  display: flex;
  min-height: 104px;
  padding: 18px;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  color: #dce0e6;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  transition: color 160ms var(--ease), background 160ms var(--ease), border 160ms var(--ease), transform 160ms var(--ease);
}

.choice-card:hover > span {
  transform: translateY(-2px);
  border-color: rgba(242, 182, 51, 0.7);
}

.choice-card input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.choice-card input:checked + span {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.choice-card strong {
  font-size: 0.88rem;
}

.choice-card small {
  color: #aeb4be;
  font-size: 0.72rem;
  line-height: 1.45;
}

.choice-card input:checked + span small {
  color: #44330b;
}

.choice-grid-compact .choice-card > span,
.choice-grid-inline .choice-card > span {
  min-height: 62px;
  justify-content: center;
  text-align: center;
}

.scope-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 34px;
}

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

.form-grid label,
.lead-form label {
  display: grid;
  gap: 8px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

.field-wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(12, 19, 32, 0.22);
  border-radius: 12px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.scope-builder input,
.scope-builder select,
.scope-builder textarea {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.scope-builder input::placeholder,
.scope-builder textarea::placeholder {
  color: #949aa4;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-privacy {
  margin-top: 16px;
  color: #8f96a1;
  font-size: 0.7rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero::after {
  position: absolute;
  width: min(54vw, 820px);
  height: min(54vw, 820px);
  right: -18vw;
  bottom: -34vw;
  border: 1px solid rgba(242, 182, 51, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(242, 182, 51, 0.025), 0 0 0 136px rgba(242, 182, 51, 0.018);
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 630px;
  padding-block: 92px;
  align-items: end;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  gap: 70px;
}

.page-hero h1 {
  max-width: 890px;
  font-size: clamp(3.3rem, 6.8vw, 6.9rem);
}

.page-hero-grid > div > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 30px;
  color: #bdc1c8;
  font-size: 1.08rem;
}

.page-hero aside {
  padding: 28px;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius);
}

.page-hero aside span,
.page-hero aside strong {
  display: block;
}

.page-hero aside span {
  margin-bottom: 20px;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero aside strong {
  font-size: 1.2rem;
  line-height: 1.3;
}

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

.service-card {
  display: flex;
  min-height: 340px;
  padding: clamp(30px, 4vw, 48px);
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card > span,
.capability-grid article > span,
.factor-grid article > span {
  color: #8b6b10;
  font-size: 0.72rem;
  font-weight: 760;
}

.service-card h2 {
  max-width: 470px;
  margin-top: 34px;
  font-size: clamp(1.9rem, 3.4vw, 3.5rem);
}

.service-card p {
  max-width: 500px;
  margin-top: 20px;
  color: var(--muted);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.media-story {
  background: var(--ivory);
}

.media-story-grid,
.pricing-cta .container {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(50px, 7vw, 92px);
}

.media-story picture img,
.pricing-cta picture img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.media-story-grid .section-heading,
.pricing-cta .section-heading {
  display: block;
}

.media-disclosure {
  margin: -28px 0 24px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.split-editorial {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 8fr) minmax(300px, 4fr);
  gap: clamp(52px, 8vw, 110px);
}

.split-editorial .section-heading {
  display: block;
  margin: 0;
}

.split-editorial aside {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-editorial aside > p {
  font-family: "Newsreader Variable", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.split-editorial aside .text-link {
  margin-top: 28px;
}

.capabilities-section {
  background: var(--paper);
}

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

.capability-grid article,
.factor-grid article,
.principle-grid article {
  min-height: 290px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid h2,
.factor-grid h2,
.principle-grid h2 {
  margin-top: 38px;
  font-size: 1.42rem;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.capability-grid p,
.factor-grid p,
.principle-grid p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.84rem;
}

.evidence-band {
  color: var(--white);
  background: var(--navy);
}

.evidence-band .container {
  display: grid;
  grid-template-columns: minmax(180px, 3fr) minmax(0, 7fr) minmax(220px, 2fr);
  align-items: center;
  gap: 44px;
}

.evidence-band blockquote {
  margin: 0;
  font-family: "Newsreader Variable", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 8fr);
  gap: clamp(48px, 7vw, 92px);
}

.faq-layout .section-heading {
  display: block;
  margin: 0;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 88px;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 180ms var(--ease);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 50px 28px 0;
  color: var(--muted);
}

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

.factor-grid article {
  min-height: 340px;
}

.factor-grid h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

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

.models-layout {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
  gap: clamp(54px, 8vw, 110px);
}

.models-layout .section-heading {
  display: block;
  margin: 0;
}

.models-layout .section-heading > p:last-child:not(.eyebrow) {
  color: #b4bac4;
}

.models-layout > div:last-child {
  border-top: 1px solid var(--line-light);
}

.models-layout article {
  display: grid;
  min-height: 160px;
  padding: 28px 0;
  grid-template-columns: 50px 1fr;
  border-bottom: 1px solid var(--line-light);
}

.models-layout article > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 760;
}

.models-layout h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.models-layout p {
  max-width: 530px;
  margin-top: 12px;
  color: #abb1bb;
}

.pricing-cta {
  background: var(--ivory);
}

.pricing-cta .container {
  grid-template-columns: minmax(0, 6fr) minmax(360px, 6fr);
}

.year-statement {
  text-align: center;
}

.year-statement strong,
.year-statement span {
  display: block;
}

.year-statement strong {
  color: var(--gold-deep);
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.year-statement span {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

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

.principles-section .eyebrow,
.principles-section .principle-grid article > span {
  color: var(--gold);
}

.principles-section .section-heading > p:last-child:not(.eyebrow),
.principles-section .principle-grid p {
  color: #adb3bd;
}

.principle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: var(--line-light);
}

.principle-grid article {
  border-color: var(--line-light);
}

.about-award {
  background: var(--ivory);
}

.about-award .section-heading {
  display: block;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
  gap: clamp(52px, 8vw, 110px);
}

.contact-aside .section-heading {
  display: block;
}

.contact-detail {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

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

.contact-detail span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.lead-form {
  padding: clamp(30px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-actions {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 18px;
}

.lead-form .form-privacy {
  color: var(--muted);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 58px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

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

.legal-copy p {
  margin-top: 18px;
  color: var(--muted);
}

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

.footer-lead {
  padding-block: clamp(72px, 9vw, 120px);
  border-bottom: 1px solid var(--line-light);
}

.footer-lead > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.footer-lead h2 {
  max-width: 850px;
}

.footer-grid {
  display: grid;
  padding-block: 62px;
  grid-template-columns: minmax(0, 7fr) minmax(180px, 2.5fr) minmax(180px, 2.5fr);
  gap: 50px;
}

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

.footer-brand > p {
  max-width: 440px;
  margin-top: 22px;
  color: #969ca6;
}

.footer-brand > a:last-child {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.85rem;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid nav a,
.footer-grid nav button {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  width: fit-content;
  padding: 0;
  color: #afb4bc;
  background: transparent;
  border: 0;
  font-size: 0.8rem;
  text-decoration: none;
  cursor: pointer;
}

.footer-grid nav a:hover,
.footer-grid nav button:hover {
  color: var(--white);
}

.footer-base {
  display: flex;
  padding-block: 20px;
  justify-content: space-between;
  color: #7c828b;
  border-top: 1px solid var(--line-light);
  font-size: 0.7rem;
}

.mw-consent-banner {
  position: fixed;
  z-index: 180;
  right: 22px;
  bottom: 22px;
  width: min(calc(100% - 44px), 420px);
  padding: 24px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.mw-consent-banner[hidden] {
  display: none;
}

.mw-consent-banner h2 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.mw-consent-banner p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.mw-consent-actions {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.mw-consent-actions button {
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 999px;
  cursor: pointer;
}

.mw-consent-actions button:first-child {
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.mw-consent-actions button:last-child {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.not-found {
  display: grid;
  min-height: 100vh;
  padding: 24px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
}

.not-found > div {
  max-width: 720px;
  text-align: center;
}

.not-found > div > strong {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
}

.not-found p {
  margin: 24px auto 30px;
  color: #b6bbc4;
}

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

.js .reveal.is-visible {
  animation: reveal-in 480ms var(--ease) both;
}

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

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

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

  .primary-nav {
    gap: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  }

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

@media (max-width: 920px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    display: grid;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 73px);
    padding: 22px 18px 28px;
    align-items: stretch;
    flex-direction: column;
    overflow-y: auto;
    color: var(--white);
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    min-height: 54px;
    padding: 16px 0;
    color: var(--white);
    border-bottom: 1px solid var(--line-light);
  }

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

  .language-switch {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 74px 0;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    padding-bottom: 6px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    width: calc(100% + 36px);
    height: min(70vw, 600px);
    margin-left: -18px;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 24%);
  }

  .hero-visual figcaption {
    right: 28px;
    bottom: 26px;
  }

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

  .proof-grid > div:nth-child(3) {
    border-left: 1px solid var(--line-light);
    border-top: 1px solid var(--line-light);
  }

  .proof-grid > div:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 24px;
  }

  .service-explorer,
  .nearshore-grid,
  .people-grid,
  .scope-layout,
  .process-body-with-media,
  .page-hero-grid,
  .media-story-grid,
  .pricing-cta .container,
  .split-editorial,
  .faq-layout,
  .models-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .service-tabs button:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .service-tabs button:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .nearshore-grid,
  .people-grid {
    gap: 60px;
  }

  .signal-figure {
    max-width: 620px;
  }

  .signal-figure img {
    aspect-ratio: 16 / 9;
  }

  .scope-intro {
    position: static;
  }

  .process-body-with-media .process-photo {
    position: static;
    margin-top: 44px;
  }

  .process-body-with-media .process-photo img {
    aspect-ratio: 16 / 9;
  }

  .page-hero-grid {
    min-height: auto;
    padding-block: 80px;
    align-items: start;
  }

  .page-hero aside {
    max-width: 520px;
  }

  .process-list li {
    grid-template-columns: 70px minmax(180px, 4fr) minmax(0, 6fr);
  }

  .evidence-band .container {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .home-hero::before {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0 54%, rgba(10, 10, 10, 0.35) 86%, rgba(10, 10, 10, 0.1));
  }

  .hero-grid {
    padding-top: 58px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

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

  .hero-note {
    margin-top: 32px;
  }

  .hero-visual {
    width: calc(100% + 28px);
    height: 350px;
    margin-left: -14px;
  }

  .hero-visual img {
    object-position: 66% center;
  }

  .hero-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

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

  .proof-grid > div,
  .proof-grid > div:first-child,
  .proof-grid > div:nth-child(3) {
    min-height: 96px;
    padding: 22px 18px;
    border: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

  .section {
    padding-block: 78px;
  }

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

  .section-heading > p:last-child:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .outcome-grid,
  .service-card-grid,
  .nearshore-points,
  .capability-grid,
  .factor-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card,
  .outcome-card:last-child {
    min-height: 400px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome-card:last-child {
    border-bottom: 0;
  }

  .service-explorer {
    border-radius: 22px;
  }

  .service-tabs {
    display: flex;
    padding: 8px;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
    scrollbar-width: thin;
  }

  .service-tabs button,
  .service-tabs button:nth-child(odd),
  .service-tabs button:nth-last-child(-n + 2) {
    min-width: 220px;
    min-height: 72px;
    padding: 16px;
    grid-template-columns: 34px 1fr;
    border: 0;
    border-radius: 14px;
  }

  .service-panel,
  .service-panels {
    min-height: 470px;
  }

  .service-panel {
    padding: 32px 24px;
  }

  .nearshore-points article,
  .nearshore-points article:nth-child(odd),
  .nearshore-points article:nth-child(even) {
    padding: 22px 0;
    border-right: 0;
  }

  .signal-figure {
    transform: none;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
  }

  .process-list li > div {
    display: block;
  }

  .process-list p {
    margin-top: 12px;
  }

  .award-card figcaption {
    flex-direction: column;
  }

  .award-card figcaption span {
    text-align: left;
  }

  .scope-builder {
    min-height: 0;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .choice-grid,
  .choice-grid-compact,
  .choice-grid-inline,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .choice-card > span {
    min-height: 84px;
  }

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

  .scope-actions {
    justify-content: stretch;
  }

  .scope-actions .button {
    flex: 1;
  }

  .page-hero-grid {
    padding-block: 64px;
    gap: 42px;
  }

  .page-hero h1 {
    font-size: clamp(2.9rem, 13.5vw, 4.5rem);
  }

  .page-hero-grid > div > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

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

  .split-editorial aside {
    padding: 24px;
  }

  .capability-grid article,
  .factor-grid article,
  .principle-grid article {
    min-height: 240px;
  }

  .evidence-band blockquote {
    font-size: 2.35rem;
  }

  .faq-list summary {
    min-height: 76px;
  }

  .lead-form {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-lead > div {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .footer-base {
    flex-direction: column;
    gap: 6px;
  }

  .mw-consent-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}

@media (max-width: 680px) {
  .journey-photo img,
  .process-photo img,
  .service-photo img {
    aspect-ratio: 4 / 3;
  }

  .journey-photo figcaption,
  .process-photo figcaption,
  .service-photo figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-radius: 12px;
  }
}

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

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