:root {
  --ink: #171914;
  --ink-soft: #242821;
  --paper: #f4f2e9;
  --paper-deep: #ebe8dd;
  --white: #fffef9;
  --acid: #dfff23;
  --orange: #ff6336;
  --muted: #656a61;
  --line: rgba(23, 25, 20, 0.16);
  --line-light: rgba(255, 254, 249, 0.18);
  --content: 1180px;
  --header-height: 72px;
  --section-space: clamp(5rem, 8vw, 7.5rem);
  --edge: max(1.5rem, calc((100vw - var(--content)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--acid);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h2 {
  max-width: 16ch;
  font-size: clamp(2.6rem, 4.5vw, 4.75rem);
  font-weight: 600;
}

h2 em,
h1 em {
  font-family: "Newsreader", serif;
  font-weight: 400;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--edge);
  border-bottom: 1px solid transparent;
  background: rgba(244, 242, 233, 0.93);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(23, 25, 20, 0.05);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 58px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.site-nav > a {
  position: relative;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  content: "";
  transition: transform 160ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--orange);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-pill {
  display: none;
}

.language-switcher {
  display: flex;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.72);
}

.language-switcher button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  opacity: 0.56;
  transition: opacity 160ms ease, background-color 160ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  background: var(--ink);
  opacity: 1;
}

.language-switcher img {
  width: 21px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.flag-pair {
  display: flex;
  align-items: center;
}

.flag-pair img {
  width: 14px;
  height: 11px;
}

.flag-pair img + img {
  margin-left: -3px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 160ms ease;
}

main > section {
  padding: var(--section-space) var(--edge);
}

.eyebrow,
.section-label,
.hero-kicker,
.case-rail,
.hero-footer > p,
.experience-note > span,
.contact-meta,
.offer-card-top,
.industry-card-top,
.insight-meta {
  font-family: "DM Mono", monospace;
  font-size: 0.69rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.section-label {
  color: var(--muted);
}

.body-copy {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto 1fr auto;
  column-gap: clamp(1.5rem, 3.5vw, 4rem);
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 6vw, 6rem);
  background:
    linear-gradient(90deg, rgba(23, 25, 20, 0.04) 1px, transparent 1px) 0 0 / 6rem 6rem,
    linear-gradient(rgba(23, 25, 20, 0.04) 1px, transparent 1px) 0 0 / 6rem 6rem,
    var(--paper);
}

.hero-orbit,
.hero-index {
  display: none;
}

.hero-kicker {
  grid-column: 1 / 8;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 99, 54, 0.13);
}

.hero-copy {
  z-index: 1;
  grid-column: 1 / 8;
  grid-row: 2;
  align-self: center;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
  font-weight: 650;
  line-height: 0.92;
}

.hero-copy h1 em {
  display: inline;
  color: var(--orange);
  line-height: 0.86;
}

.hero-copy p {
  max-width: 55ch;
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.hero-portrait {
  position: relative;
  grid-column: 9 / 13;
  grid-row: 1 / 5;
  align-self: center;
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--acid);
}

.hero-portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.9) contrast(1.02);
}

.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border-top: 1px solid var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-footer {
  grid-column: 1 / 8;
  grid-row: 4;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.button-primary {
  min-width: 220px;
  background: var(--ink);
  color: var(--white);
}

.hero-footer > p {
  margin: 0;
  color: var(--muted);
}

.social-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: var(--ink);
  color: var(--white);
}

.social-showcase .eyebrow {
  margin-bottom: 0.5rem;
  color: rgba(255, 254, 249, 0.56);
}

.social-showcase h2 {
  max-width: 28ch;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.social-showcase-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.social-showcase-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid var(--line-light);
  color: rgba(255, 254, 249, 0.68);
  font-size: 0.72rem;
  line-height: 1.35;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.social-showcase-links a:hover {
  border-color: var(--acid);
  background: rgba(223, 255, 35, 0.08);
  color: var(--white);
}

.social-platform {
  color: var(--white);
  font-weight: 700;
}

.social-showcase-links strong {
  grid-column: 1 / -1;
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
}

.proof {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  background: var(--white);
}

.proof > .section-label {
  grid-column: 1 / 4;
}

.proof-intro {
  grid-column: 4 / 10;
}

.proof-intro h2 {
  margin-bottom: 1.75rem;
}

.proof-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 2rem 2rem 2rem 0;
}

.metric + .metric {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.metric p {
  margin: 0.85rem 0 0.2rem;
  font-weight: 700;
}

.metric span {
  color: var(--muted);
  font-size: 0.86rem;
}

.case-study {
  background: var(--paper-deep);
}

.case-rail {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.case-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 3.5rem;
}

.case-title {
  grid-column: 1 / 7;
}

.case-title h2 {
  max-width: 11ch;
}

.case-image {
  grid-column: 7 / 13;
  grid-row: 1 / 3;
  margin: 0;
}

.case-image img {
  width: 100%;
  height: auto;
  border: 1px solid var(--ink);
  object-fit: cover;
}

.case-image figcaption {
  padding-top: 0.6rem;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.case-card {
  grid-column: 1 / 7;
  align-self: end;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.case-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.case-mark {
  color: var(--orange);
}

.case-card p {
  margin-bottom: 1.4rem;
  color: var(--muted);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-tags span {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 650;
}

.case-quote {
  grid-column: 7 / 13;
  margin: 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--orange);
  color: var(--muted);
  font-family: "Newsreader", serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.25;
}

.case-outcomes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}

.case-outcomes article {
  padding: 1.5rem 1.5rem 0 0;
}

.case-outcomes article + article {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.case-outcomes strong,
.case-outcomes span {
  display: block;
}

.case-outcomes strong {
  font-size: 1.05rem;
}

.case-outcomes span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  background: var(--white);
}

.services > .section-label {
  grid-column: 1 / 4;
}

.services-heading {
  grid-column: 4 / 10;
}

.service-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.service {
  position: relative;
  min-height: 310px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.service-number {
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
}

.service h3 {
  max-width: 13ch;
  margin-top: 2.5rem;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 600;
  line-height: 1.12;
}

.service p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.industries {
  background: var(--ink);
  color: var(--white);
}

.industries-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  gap: 3rem;
  align-items: end;
}

.industries .eyebrow {
  color: rgba(255, 254, 249, 0.55);
}

.industries-heading > p {
  margin: 0;
  color: rgba(255, 254, 249, 0.65);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4rem;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.industry-card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: var(--ink-soft);
}

.industry-card::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 4px;
  background: var(--acid);
  content: "";
  opacity: 0;
  transition: opacity 160ms ease;
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 254, 249, 0.5);
}

.industry-card-top strong {
  color: var(--acid);
}

.industry-card h3 {
  max-width: 20ch;
  margin-top: 1.8rem;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.16;
}

.industry-card > p {
  max-width: 55ch;
  margin: 1.1rem 0 0;
  color: rgba(255, 254, 249, 0.65);
  font-size: 0.9rem;
}

.industry-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 1.4rem 0;
  list-style: none;
}

.industry-card li {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line-light);
  font-size: 0.68rem;
}

.industry-card > a {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
}

.ai-transformation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  background: var(--paper);
}

.ai-heading h2 {
  max-width: 12ch;
}

.ai-heading > p:last-child {
  max-width: 56ch;
  margin-top: 1.75rem;
  color: var(--muted);
}

.ai-principles {
  border-top: 1px solid var(--line);
}

.ai-principles article {
  display: grid;
  grid-template-columns: 110px minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.ai-principles article > span {
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.ai-principles h3 {
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.ai-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.ai-outcome {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--ink);
  background: var(--acid);
}

.ai-outcome > span {
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.ai-outcome p {
  margin: 0;
  font-weight: 650;
  line-height: 1.4;
}

.ai-outcome a {
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
}

.experience {
  background: var(--white);
}

.experience-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.experience-intro h2 {
  max-width: 13ch;
}

.experience-image {
  margin: 0;
}

.experience-image img {
  width: 100%;
  height: 400px;
  border: 1px solid var(--ink);
  object-fit: cover;
  object-position: center 25%;
}

.experience-image figcaption {
  padding-top: 0.6rem;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.career-path {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}

.career-row {
  display: grid;
  grid-template-columns: 150px minmax(240px, 0.85fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.career-year {
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.career-row div strong,
.career-row div span {
  display: block;
}

.career-row div strong {
  font-size: 1rem;
}

.career-row div span,
.career-row > p {
  color: var(--muted);
  font-size: 0.84rem;
}

.career-row > p {
  margin: 0;
}

.career-featured {
  background: linear-gradient(90deg, rgba(223, 255, 35, 0.3), transparent 65%);
}

.experience-note {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.experience-note p {
  max-width: 66ch;
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.experience-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  max-width: 250px;
}

.experience-meta > span {
  color: var(--muted);
  text-align: right;
}

.experience-about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0;
  font-size: 0.82rem;
  text-align: right;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3rem;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 7vw, 7rem);
  background: var(--paper-deep);
}

.process-intro h2 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid article {
  padding: 1.5rem;
  background: var(--paper);
}

.process-grid article > span {
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
}

.process-grid h3 {
  margin-top: 1.4rem;
  font-size: 1.2rem;
  font-weight: 650;
}

.process-grid p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.insights {
  background: var(--white);
}

.insights-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 3rem;
  align-items: end;
}

.insights-heading-copy > p {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.insights-all-link,
.insight-card > a {
  display: inline-flex;
  gap: 0.6rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.insight-featured {
  background: var(--acid);
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.insight-card h3 {
  margin-top: 3rem;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.15;
}

.insight-card p {
  margin: 1rem 0 1.75rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.insight-card > a {
  align-self: flex-start;
  margin-top: auto;
}

.fit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.fit-card {
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line-light);
}

.fit-label {
  color: var(--acid);
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.fit-card ul {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding: 1rem 0 1rem 1.5rem;
  border-top: 1px solid var(--line-light);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.fit-card li::before {
  position: absolute;
  top: 1.55rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.fit-copy .eyebrow {
  color: rgba(255, 254, 249, 0.52);
}

.fit-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.fit-copy > p:last-child {
  max-width: 50ch;
  margin-top: 1.5rem;
  color: rgba(255, 254, 249, 0.66);
}

.offers {
  background: var(--paper);
}

.offers-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 3rem;
  align-items: end;
}

.offers-heading > p {
  margin: 0;
  color: var(--muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  background: var(--white);
}

.offer-card-primary {
  border-color: var(--ink);
  box-shadow: 8px 8px 0 var(--acid);
}

.offer-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 2rem;
}

.offer-price strong {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.offer-price span {
  color: var(--muted);
  font-size: 0.75rem;
}

.offer-card h3 {
  margin-top: 1.5rem;
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  font-weight: 650;
}

.offer-card > p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.offer-card ul {
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

.offer-card li {
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
}

.offer-card li::before {
  margin-right: 0.6rem;
  color: var(--orange);
  content: "•";
}

.offer-button {
  width: 100%;
  margin-top: auto;
}

.offer-card small {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.66rem;
}

.offer-capacity {
  padding: 0.75rem;
  background: var(--paper-deep);
  color: var(--ink) !important;
  font-weight: 650;
}

.offer-text-link {
  align-self: flex-start;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4rem;
  align-items: end;
  overflow: hidden;
  background: var(--acid);
}

.contact-orbit {
  position: absolute;
  right: -10vw;
  bottom: -30vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(23, 25, 20, 0.16);
  border-radius: 50%;
}

.contact-copy,
.contact-meta {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  color: rgba(23, 25, 20, 0.58);
}

.contact h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 52px;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-link-secondary {
  background: transparent;
  color: var(--ink);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 2rem;
}

.social-links a {
  border-bottom: 1px solid rgba(23, 25, 20, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
}

.social-links a span {
  color: rgba(23, 25, 20, 0.55);
  font-weight: 500;
}

.contact-meta {
  max-width: 270px;
  text-align: right;
}

.contact-meta p {
  margin-bottom: 0.5rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 2rem;
  align-items: center;
  min-height: 100px;
  padding: 1.5rem var(--edge);
  background: var(--ink);
  color: rgba(255, 254, 249, 0.6);
  font-size: 0.7rem;
}

.site-footer .wordmark {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.diagnostic-page,
.legal-page,
.error-page {
  background:
    linear-gradient(90deg, rgba(23, 25, 20, 0.035) 1px, transparent 1px) 0 0 / 5rem 5rem,
    linear-gradient(rgba(23, 25, 20, 0.035) 1px, transparent 1px) 0 0 / 5rem 5rem,
    var(--paper);
}

.diagnostic-page h1,
.legal-page h1,
.error-page h1 {
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  font-weight: 600;
}

.diagnostic-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.32fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  min-height: min(800px, calc(100vh - var(--header-height)));
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.diagnostic-hero-copy {
  max-width: 900px;
}

.diagnostic-hero .eyebrow,
.error-panel .eyebrow {
  margin-bottom: 1.75rem;
  color: var(--muted);
}

.diagnostic-hero h1 {
  max-width: 13ch;
}

.diagnostic-lead {
  max-width: 700px;
  margin: 2rem 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.diagnostic-actions,
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.diagnostic-actions .button {
  min-width: 220px;
}

.diagnostic-summary {
  border-top: 1px solid var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.diagnostic-summary p {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.diagnostic-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.diagnostic-section h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
}

.diagnostic-section > p,
.diagnostic-section > div > p,
.diagnostic-note {
  max-width: 720px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.diagnostic-list,
.agenda-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.diagnostic-list li,
.agenda-list li {
  position: relative;
  padding: 1.15rem 0 1.15rem 2rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.diagnostic-list li:first-child,
.agenda-list li:first-child {
  border-top: 1px solid var(--line);
}

.diagnostic-list li::before,
.agenda-list li::before {
  position: absolute;
  top: 1.18rem;
  left: 0;
  color: var(--orange);
  content: "↗";
  font-family: "DM Mono", monospace;
}

.diagnostic-note {
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 4px solid var(--orange);
  background: var(--paper-deep);
}

.agenda-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.diagnostic-operator > p {
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-list h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.faq-list p {
  margin: 0;
}

.diagnostic-closing {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: end;
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--white);
}

.diagnostic-closing h2 {
  max-width: 15ch;
}

.diagnostic-closing .button-primary {
  flex: 0 0 auto;
  border-color: var(--white);
}

.error-page {
  display: grid;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 100px);
}

.error-panel {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.error-panel h1 {
  max-width: 10ch;
}

.error-panel > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.error-links .button {
  min-width: 210px;
}

.legal-hero {
  min-height: min(720px, calc(100vh - var(--header-height)));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legal-hero h1 {
  max-width: 12ch;
}

.legal-lead {
  max-width: 720px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.legal-date {
  margin: 2rem 0 0;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-hero .button {
  align-self: flex-start;
  margin-top: 2rem;
}

.support-page .legal-hero {
  min-height: min(640px, calc(100vh - var(--header-height)));
  background: radial-gradient(circle at 88% 16%, rgba(255, 99, 54, 0.14), transparent 34%);
}

.support-page .legal-lead {
  color: var(--ink-soft);
}

.support-note {
  max-width: 620px;
  margin-bottom: 0;
}

.support-page .legal-section:nth-of-type(even) {
  background: var(--paper-deep);
}

.support-page .legal-closing {
  border-top: 4px solid var(--orange);
}

.legal-section h2 {
  max-width: 11ch;
}

.legal-copy {
  max-width: 760px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.legal-copy p {
  margin-bottom: 1.4rem;
}

.legal-copy a,
.legal-closing-copy a:not(.button) {
  border-bottom: 1px solid currentColor;
}

.legal-list {
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.legal-list li {
  position: relative;
  padding: 1rem 0 1rem 1.75rem;
  border-bottom: 1px solid var(--line);
}

.legal-list li::before {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--orange);
  content: "↗";
  font-family: "DM Mono", monospace;
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
}

.legal-closing {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--ink);
  color: var(--white);
}

.legal-closing h2 {
  max-width: 12ch;
}

.legal-closing .section-label {
  color: rgba(255, 254, 249, 0.6);
}

.legal-closing-copy {
  max-width: 700px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.legal-closing-copy .button {
  margin-top: 1.5rem;
  border-color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 1rem;
  }

  .site-nav > a:not(.nav-cta):nth-child(5) {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 6.8vw, 5rem);
  }

  .ai-principles article {
    grid-template-columns: 95px 1fr;
  }

  .ai-principles p {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
    --section-space: 4.25rem;
    --edge: 1.25rem;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 0.65rem;
  }

  .diagnostic-hero,
  .diagnostic-section,
  .legal-closing {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .diagnostic-hero {
    min-height: auto;
  }

  .diagnostic-page h1,
  .legal-page h1,
  .error-page h1 {
    font-size: clamp(2.8rem, 12vw, 4.75rem);
  }

  .diagnostic-summary {
    max-width: 420px;
  }

  .diagnostic-closing {
    align-items: flex-start;
    flex-direction: column;
  }

  .diagnostic-closing .button {
    width: 100%;
  }

  .faq-list article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .header-tools {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 45;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 1rem var(--edge) 1.5rem;
    transform: translateY(-130%);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(23, 25, 20, 0.08);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav > a,
  .site-nav > a:not(.nav-cta):nth-child(5) {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
  }

  .site-nav > a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 0.75rem;
    border: 1px solid var(--ink);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-last-child(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
    padding-top: 3.75rem;
    background:
      linear-gradient(90deg, rgba(23, 25, 20, 0.035) 1px, transparent 1px) 0 0 / 4rem 4rem,
      linear-gradient(rgba(23, 25, 20, 0.035) 1px, transparent 1px) 0 0 / 4rem 4rem,
      var(--paper);
  }

  .hero-kicker,
  .hero-copy,
  .hero-portrait,
  .hero-footer {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-kicker {
    margin-bottom: 1.5rem;
  }

  .hero-copy h1 {
    max-width: 9.5ch;
    font-size: clamp(3.15rem, 14.5vw, 4.75rem);
    line-height: 0.9;
  }

  .hero-copy p {
    margin-top: 1.5rem;
  }

  .hero-portrait {
    width: calc(100% - 0.75rem);
    margin-top: 2.75rem;
    box-shadow: 10px 10px 0 var(--acid);
  }

  .hero-portrait img {
    height: auto;
    object-position: center 16%;
  }

  .hero-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .hero-footer .button {
    width: 100%;
  }

  .social-showcase,
  .proof,
  .services,
  .ai-transformation,
  .process,
  .fit {
    grid-template-columns: 1fr;
  }

  .social-showcase {
    gap: 1.5rem;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .social-showcase-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof > .section-label,
  .proof-intro,
  .proof-grid,
  .services > .section-label,
  .services-heading,
  .service-list,
  .ai-outcome {
    grid-column: 1;
  }

  .proof-intro {
    margin-top: 1rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .metric {
    display: grid;
    grid-template-columns: 120px 1fr;
    padding: 1.25rem 0;
  }

  .metric + .metric {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric strong {
    grid-row: 1 / 3;
    align-self: center;
    font-size: 2.3rem;
  }

  .metric p {
    margin-top: 0;
  }

  .case-layout {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .case-title,
  .case-image,
  .case-card,
  .case-quote {
    grid-column: 1;
    grid-row: auto;
  }

  .case-image {
    order: 2;
  }

  .case-card {
    order: 3;
  }

  .case-quote {
    order: 4;
  }

  .case-outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.5rem;
  }

  .case-outcomes article,
  .case-outcomes article + article {
    padding: 1rem 1rem 1rem 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .case-outcomes article:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
  }

  .service-list {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 340px);
    gap: 0.75rem;
    margin-top: 1.75rem;
    margin-right: calc(var(--edge) * -1);
    margin-left: calc(var(--edge) * -1);
    padding: 0 var(--edge) 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--orange) transparent;
    scrollbar-width: thin;
  }

  .service {
    min-height: 320px;
    scroll-snap-align: start;
  }

  .industries-heading,
  .insights-heading,
  .offers-heading,
  .experience-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .industry-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(86vw, 350px);
    gap: 0.75rem;
    margin-top: 2.5rem;
    margin-right: calc(var(--edge) * -1);
    margin-left: calc(var(--edge) * -1);
    padding: 0 var(--edge) 0.75rem;
    overflow-x: auto;
    border: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--acid) transparent;
    scrollbar-width: thin;
  }

  .industry-card {
    min-height: 465px;
    border: 1px solid var(--line-light);
    scroll-snap-align: start;
  }

  .industry-card ul {
    margin: 1.1rem 0;
  }

  .ai-transformation {
    gap: 2.75rem;
  }

  .ai-principles article {
    grid-template-columns: 88px 1fr;
    gap: 1rem;
  }

  .ai-principles p {
    grid-column: 2;
  }

  .ai-outcome {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .ai-outcome a {
    justify-self: start;
  }

  .experience-image img {
    height: 240px;
  }

  .career-path {
    margin-top: 2.75rem;
  }

  .career-row {
    grid-template-columns: 90px 1fr;
    gap: 1rem;
  }

  .career-row > p {
    grid-column: 2;
  }

  .experience-note {
    flex-direction: column;
  }

  .experience-meta {
    align-items: flex-start;
    max-width: none;
  }

  .experience-meta > span,
  .experience-about-link {
    text-align: left;
  }

  .process {
    gap: 2.5rem;
  }

  .insight-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 340px);
    gap: 0.75rem;
    margin-top: 2.5rem;
    margin-right: calc(var(--edge) * -1);
    margin-left: calc(var(--edge) * -1);
    padding: 0 var(--edge) 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--orange) transparent;
    scrollbar-width: thin;
  }

  .insight-card {
    min-height: 290px;
    scroll-snap-align: start;
  }

  .fit {
    gap: 2.75rem;
  }

  .offer-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(86vw, 360px);
    gap: 0.75rem;
    margin-top: 2.5rem;
    margin-right: calc(var(--edge) * -1);
    margin-left: calc(var(--edge) * -1);
    padding: 0 var(--edge) 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--orange) transparent;
    scrollbar-width: thin;
  }

  .offer-card {
    min-height: 720px;
    scroll-snap-align: start;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-link {
    width: 100%;
  }

  .contact-meta {
    max-width: none;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
  }

  .site-footer > p:last-child,
  .footer-links {
    justify-self: end;
  }
}

@media (max-width: 480px) {
  .language-switcher button {
    width: 30px;
  }

  .diagnostic-hero,
  .diagnostic-section,
  .diagnostic-closing,
  .legal-hero,
  .legal-closing,
  .error-panel {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .diagnostic-page h1,
  .legal-page h1,
  .error-page h1 {
    font-size: clamp(2.6rem, 12.5vw, 3.4rem);
    line-height: 0.98;
  }

  .diagnostic-actions,
  .error-links {
    flex-direction: column;
  }

  .diagnostic-actions .button,
  .error-links .button {
    width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14.5vw, 4.15rem);
  }

  .hero-portrait figcaption {
    font-size: 0.52rem;
  }

  .social-showcase-links {
    grid-template-columns: 1fr 1fr;
  }

  .social-showcase-links strong {
    display: none;
  }

  .metric {
    grid-template-columns: 105px 1fr;
  }

  .case-rail {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .industry-card {
    padding: 1.5rem;
  }

  .industry-card li {
    width: 100%;
  }

  .ai-principles article {
    grid-template-columns: 1fr;
  }

  .ai-principles p {
    grid-column: 1;
  }

  .offer-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-links a span {
    display: block;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > p:last-child,
  .footer-links {
    justify-self: start;
  }
}

@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;
  }
}
