:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --blue: #0b57d0;
  --blue-dark: #083f9b;
  --green: #188038;
  --yellow: #fbbc04;
  --white: #fff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  line-height: 1.55;
  background: var(--white);
}

a {
  color: var(--blue);
}

a:hover,
a:focus {
  color: var(--blue-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner,
.site-footer__inner,
.section,
.hero__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 86px;
  height: auto;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #2f3a48;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  background: #edf3ff;
  color: var(--blue);
}

.old-site-switch {
  border-bottom: 1px solid var(--line);
  background: #f8faf9;
}

.old-site-switch__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  min-height: 38px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.old-site-switch a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.old-site-switch a:hover,
.old-site-switch a:focus {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 54px;
  align-items: center;
  min-height: 620px;
  padding: 72px 0;
}

.hero--simple .hero__inner {
  display: block;
  min-height: auto;
  padding: 82px 0 58px;
}

.hero--simple > .hero__inner > .eyebrow {
  display: none;
}

.hero--services .hero__inner {
  padding-top: 62px;
  padding-bottom: 36px;
}

.hero--services h1 {
  max-width: 840px;
  font-size: clamp(44px, 6vw, 76px);
}

.hero--services .lead {
  max-width: 680px;
  margin-top: 20px;
  font-size: clamp(19px, 1.8vw, 24px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 940px;
  font-size: clamp(48px, 7vw, 96px);
}

h2 {
  max-width: 780px;
  font-size: clamp(34px, 4vw, 58px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.35;
}

.lead--body {
  max-width: 980px;
  font-size: 19px;
  line-height: 1.7;
}

.short {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.button:hover,
.button:focus {
  background: var(--blue-dark);
  color: var(--white);
}

.button--ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue);
}

.button--ghost:hover,
.button--ghost:focus {
  border-color: #c9d8ff;
  background: #edf3ff;
  color: var(--blue-dark);
}

.visual {
  position: relative;
  min-height: 480px;
}

.visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
}

.proof-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(300px, 90%);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.proof-card strong {
  display: block;
  font-size: 44px;
  line-height: 1;
}

.proof-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 82px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.strip,
.download-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.card {
  padding: 26px;
}

.card p,
.download-card p {
  margin-top: 12px;
  color: var(--muted);
}

.card a {
  font-weight: 800;
  text-decoration: none;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 920px;
  margin-top: 28px;
}

.service-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(96, 111, 128, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: #253244;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-pills a:hover {
  border-color: rgba(11, 87, 208, 0.45);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
  transform: translateY(-1px);
}

.services-overview {
  padding-top: 56px;
  padding-bottom: 56px;
}

.services-visual {
  padding-top: 56px;
}

.service-grid .card {
  padding: 22px;
  border-radius: 16px;
}

.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(11, 87, 208, 0.35);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.1);
  transform: translateY(-2px);
}

.service-grid .number {
  margin-bottom: 16px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.service-details {
  padding-top: 64px;
}

.service-detail-list {
  display: grid;
  gap: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  scroll-margin-top: 110px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.service-detail:target {
  border-color: rgba(11, 87, 208, 0.45);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
}

.service-detail > div:first-child p,
.service-detail__content p {
  color: var(--muted);
}

.service-detail > div:first-child p {
  margin-top: 14px;
  font-size: 18px;
}

.service-detail__content h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 15px;
  text-transform: uppercase;
}

.service-detail__content p {
  margin: 0 0 18px;
}

.service-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(11, 87, 208, 0.22);
  border-radius: 18px;
  background: #f7fbff;
}

.service-next-step h3 {
  margin: 0 0 8px;
}

.service-next-step p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #edf3ff;
  color: var(--blue);
  font-weight: 900;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.metric {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.client-proof {
  padding-top: 56px;
  padding-bottom: 56px;
}

.client-proof__inner {
  width: 100%;
}

.logo-grid {
  display: grid;
  gap: 14px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 22px;
}

.logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-tile img {
  display: block;
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.logo-row img {
  display: block;
  flex: 1 1 108px;
  width: auto;
  max-width: 124px;
  height: 70px;
  object-fit: contain;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 20px;
  background: transparent;
}

.logo-tile img {
  max-width: 170px;
}

.accent-band {
  width: 100%;
  max-width: none;
  background: var(--soft);
}

.accent-band > * {
  width: min(var(--max), calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.accent-band > .quote + .actions,
.accent-band > .section__head + .actions {
  margin-top: 22px;
}

@media (min-width: 760px) {
  .accent-band:has(> .quote + .actions),
  .accent-band:has(> .section__head + .actions) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding-right: max(20px, calc((100% - var(--max)) / 2));
    padding-left: max(20px, calc((100% - var(--max)) / 2));
  }

  .accent-band:has(> .quote + .actions) > .quote,
  .accent-band:has(> .quote + .actions) > .actions,
  .accent-band:has(> .section__head + .actions) > .section__head,
  .accent-band:has(> .section__head + .actions) > .actions {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }

  .accent-band:has(> .section__head + .actions) > .section__head {
    margin-bottom: 0;
  }

  .accent-band:has(> .quote + .actions) > .actions,
  .accent-band:has(> .section__head + .actions) > .actions {
    justify-content: flex-end;
    margin-top: 0;
  }
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--soft);
}

.image-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.image-panel--wide img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.image-panel--evidence {
  margin-bottom: 34px;
}

.image-panel--evidence img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.image-panel--soft {
  padding: 16px;
  background: var(--white);
}

.project {
  overflow: visible;
  padding: 0;
}

.project img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project__body {
  padding: 24px;
}

.projects-grid {
  align-items: stretch;
  gap: 32px 30px;
}

.project--portfolio {
  display: flex;
  flex-direction: column;
  overflow: visible;
  border: 1px solid rgba(96, 111, 128, 0.32);
  border-radius: 4px;
  background: var(--white);
  box-shadow:
    10px 10px 0 rgba(120, 120, 120, 0.34),
    18px 18px 24px rgba(15, 23, 42, 0.14);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.project--portfolio:hover {
  border-color: rgba(10, 108, 138, 0.34);
  box-shadow:
    14px 14px 0 rgba(120, 120, 120, 0.32),
    24px 24px 30px rgba(15, 23, 42, 0.17);
  transform: translate(-3px, -3px);
}

.project__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.project__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.project--portfolio .project__body {
  display: flex;
  flex: 1;
  align-items: center;
  min-height: 112px;
  padding: 20px;
}

.project--portfolio h3 {
  font-size: 20px;
  line-height: 1.18;
}

.project--portfolio h3 a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.project--portfolio h3 a:hover,
.project--portfolio h3 a:focus {
  color: var(--blue);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1f3f4;
  color: #3c4043;
  font-size: 13px;
  font-weight: 800;
}

.quote {
  max-width: 920px;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
}

.download-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 30px;
}

.download-card .button {
  align-self: flex-start;
}

.featured-resource {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.featured-resource h3 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 52px);
}

.featured-resource p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.featured-resource .button {
  flex: 0 0 auto;
}

.resource-groups {
  display: grid;
  gap: 22px;
}

.resource-group {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.resource-group--spotlight {
  border-color: rgba(10, 108, 138, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}

.resource-group__head h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.resource-list--single {
  grid-template-columns: 1fr;
}

.resource-item {
  display: grid;
  gap: 6px;
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(96, 111, 128, 0.18);
  border-radius: 10px;
  background: #f8faf9;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.resource-item:hover,
.resource-item:focus {
  border-color: rgba(10, 108, 138, 0.28);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.resource-item--external {
  background: var(--white);
}

.resource-item span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.resource-item small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.external-link-list {
  display: grid;
  gap: 0;
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.external-link-list li {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.external-link-list a {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.external-link-list p {
  max-width: 780px;
  color: var(--muted);
  font-weight: 700;
}

.video-resource {
  padding-top: 58px;
}

.video-frame {
  overflow: hidden;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--soft);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-resource__meta {
  align-items: start;
}

.document-resource {
  padding-top: 58px;
}

.document-frame {
  overflow: hidden;
  width: 100%;
  height: min(78vh, 900px);
  min-height: 620px;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.1);
}

.document-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.document-frame--office {
  background: #f8faf9;
}

.document-resource__meta {
  align-items: start;
}

.reference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reference-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.reference-note strong {
  color: var(--ink);
}

.about-article {
  padding-top: 48px;
}

.read-page {
  max-width: 860px;
  margin: 0 auto;
}

.read-page p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
}

.read-page h2 {
  margin: 46px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.read-page h2:first-of-type {
  margin-top: 22px;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.contact-card__details {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.contact-card h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.contact-card p,
.contact-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.contact-card strong {
  color: var(--ink);
}

.contact-card a {
  font-weight: 900;
  text-decoration: none;
}

.contact-map {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  grid-column: 1 / -1;
  display: block;
  margin: 0;
  font-weight: 800;
  line-height: 1.5;
}

.form-status ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.form-status--success {
  color: #16703a;
}

.form-status--error {
  color: #b42318;
}

label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0;
  color: var(--muted);
}

.site-footer__brand {
  display: grid;
  gap: 6px;
}

.site-footer__brand strong {
  color: var(--ink);
}

.site-footer__brand span {
  font-size: 14px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 22px;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 74px 20px auto 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .visual,
  .visual img {
    min-height: 0;
    height: 360px;
  }

  .proof-card {
    right: 16px;
  }

  .section__head {
    display: block;
  }

  .section__head .short {
    margin-top: 18px;
  }

  .grid,
  .grid--two,
  .strip,
  .logo-grid,
  .featured-resource,
  .resource-group,
  .resource-list,
  .form,
  .service-detail,
  .service-next-step,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-resource {
    display: grid;
    align-items: start;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header__inner,
  .site-footer__inner,
  .old-site-switch__inner,
  .section,
  .hero__inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .accent-band > * {
    width: min(var(--max), calc(100% - 28px));
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 20px;
  }

  .hero__inner,
  .hero--simple .hero__inner,
  .section {
    padding: 52px 0;
  }

  .visual,
  .visual img {
    height: 300px;
  }

  .logo-row,
  .logo-grid {
    gap: 10px;
  }

  .logo-row {
    justify-content: center;
  }

  .logo-row img {
    flex-basis: 135px;
    max-width: 150px;
  }

  .logo-tile {
    min-height: 104px;
    padding: 16px;
  }

  .site-footer__inner {
    display: grid;
    gap: 18px;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}
