:root {
  --ink: #080b09;
  --ink-soft: #101511;
  --paper: #f2f4ee;
  --paper-bright: #fbfcf8;
  --muted: #a7afa8;
  --line: rgba(242, 244, 238, 0.18);
  --lime: #b9ff2c;
  --lime-deep: #8fd800;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgba(8, 11, 9, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: 106px;
  height: calc(var(--header-height) - 6px);
  padding-block: 3px;
}

.wordmark-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 46px;
  padding: 0 18px;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: #d2ff73;
}

.menu-button {
  display: none;
  border: 0;
  padding: 0;
  color: var(--paper);
  background: transparent;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-height) + 76px) 0 72px;
  background:
    linear-gradient(rgba(185, 255, 44, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 255, 44, 0.028) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 42px 30px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--lime);
  content: "";
}

.hero h1,
.display-heading,
.section-head h2,
.process-intro h2,
.contact h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 830px;
  font-size: clamp(4.1rem, 8.2vw, 7.7rem);
}

.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::before {
  position: absolute;
  z-index: -1;
  inset: 5% -0.08em -2% -0.06em;
  background: var(--lime);
  content: "";
  transform: skewX(-5deg);
}

.hero-lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: #cbd0cb;
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-ghost {
  border-color: var(--line);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.hero-meta {
  display: flex;
  gap: 26px;
  margin-top: 52px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta span + span {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
  clip-path: polygon(10% 0, 100% 0, 100% 93%, 0 100%, 0 8%);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 9, 0.54), transparent 45%),
    linear-gradient(0deg, rgba(8, 11, 9, 0.72), transparent 40%);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.hero-visual:hover img {
  transform: scale(1.025);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 34px;
  left: 40px;
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-crosshair {
  position: absolute;
  z-index: 3;
  top: 54px;
  right: 34px;
  width: 34px;
  height: 34px;
}

.hero-crosshair::before,
.hero-crosshair::after {
  position: absolute;
  background: var(--lime);
  content: "";
}

.hero-crosshair::before {
  top: 16px;
  left: 0;
  width: 34px;
  height: 2px;
}

.hero-crosshair::after {
  top: 0;
  left: 16px;
  width: 2px;
  height: 34px;
}

.hero-rule {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-rule span {
  display: block;
  width: 62%;
  height: 100%;
  background: var(--lime);
}

.section-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 50px;
}

.principles {
  padding: 132px 0 0;
  background: var(--paper);
  color: var(--ink);
}

.principles .section-kicker,
.services .section-kicker {
  color: #416900;
}

.display-heading {
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

.display-heading span {
  color: #6e746e;
}

.principles-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 860px;
  margin: 52px 0 0 auto;
  font-size: 1.08rem;
}

.principles-copy p {
  margin: 0;
}

.principle-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 92px;
  border-top: 1px solid #c5cac3;
}

.principle-rail div {
  min-height: 142px;
  padding: 24px 22px;
  border-right: 1px solid #c5cac3;
}

.principle-rail div:first-child {
  border-left: 1px solid #c5cac3;
}

.principle-rail b {
  display: block;
  color: #596159;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.principle-rail span {
  display: block;
  margin-top: 32px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.services {
  padding: 132px 0;
  background: var(--paper-bright);
  color: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 70px;
}

.section-head h2 {
  max-width: 700px;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
}

.section-head > p {
  margin: 0;
  color: #5f665f;
  font-size: 0.96rem;
}

.service-list {
  border-top: 2px solid var(--ink);
}

.service-row {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.8fr) minmax(260px, 1fr) 50px;
  gap: 28px;
  align-items: center;
  min-height: 156px;
  border-bottom: 1px solid #aeb4ad;
  transition: color 220ms ease, padding 220ms var(--ease), background 220ms ease;
}

.service-row > * {
  position: relative;
  z-index: 1;
}

.service-row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--ink);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 260ms var(--ease);
}

.service-row:hover {
  padding-inline: 18px;
  color: var(--paper);
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-number {
  color: #667064;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-row h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.service-row p {
  margin: 0;
  color: #5b625b;
  font-size: 0.96rem;
  transition: color 220ms ease;
}

.service-row:hover p,
.service-row:hover .service-number {
  color: #b8c0b8;
}

.service-mark {
  color: #6a7269;
  font-size: 1.5rem;
  text-align: right;
}

.service-row:hover .service-mark {
  color: var(--lime);
}

.service-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding: 22px 0;
}

.service-note > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--lime);
  font-size: 1.3rem;
  font-weight: 900;
}

.service-note p {
  margin: 0;
  color: #525952;
}

.service-note a {
  border-bottom: 2px solid var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.process {
  padding: 132px 0;
  background: var(--ink-soft);
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(220px, 0.34fr);
  gap: 70px;
  align-items: end;
}

.process-intro h2 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.process-intro p {
  margin: 0 0 5px;
  color: var(--muted);
}

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

.process-steps li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 26px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.step-index {
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.process-steps div {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(280px, 1fr);
  gap: 38px;
}

.process-steps h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.35;
}

.process-steps p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  padding: 112px 0;
  background: var(--lime);
  color: var(--ink);
}

.contact .section-kicker {
  color: #3f6000;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(60px, 9vw, 130px);
}

.contact h2 {
  max-width: 590px;
  margin-top: 24px;
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.contact-copy p {
  max-width: 580px;
  margin: 34px 0 0;
  font-size: 1.12rem;
}

.contact-actions {
  border-top: 2px solid var(--ink);
}

.contact-actions a {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 32px;
  gap: 20px;
  align-items: center;
  min-height: 106px;
  border-bottom: 1px solid rgba(8, 11, 9, 0.4);
  transition: padding 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  padding-inline: 18px;
  background: var(--ink);
  color: var(--paper);
}

.contact-actions span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-actions strong {
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  line-height: 1.25;
}

.contact-actions i {
  font-size: 1.45rem;
  font-style: normal;
  text-align: right;
}

.site-footer {
  padding: 70px 0 34px;
  background: #050705;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: block;
  width: clamp(170px, 20vw, 260px);
}

.footer-brand-logo {
  width: 100%;
  height: auto;
}

.to-top {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--lime);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1.1fr auto;
  gap: 40px;
  padding-top: 34px;
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-bottom address,
.footer-bottom p {
  margin: 0;
  font-style: normal;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--lime);
}

.copyright {
  align-self: end;
  text-align: right;
}

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--ink);
}

@media (max-width: 900px) and (min-width: 781px) {
  .process-steps div {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(4rem, 8.6vw, 6rem);
  }

  .hero-visual,
  .hero-visual img {
    min-height: 530px;
    height: 530px;
  }

  .section-grid,
  .section-head {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 34px;
  }

  .section-head > p {
    grid-column: 2;
    max-width: 520px;
  }

  .service-row {
    grid-template-columns: 55px minmax(220px, 0.9fr) minmax(230px, 1fr) 36px;
    gap: 18px;
  }

  .process-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 52px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 72px;
    --shell: calc(100% - 32px);
  }

  .site-header.menu-visible {
    backdrop-filter: none;
    transition: background 220ms ease, border-color 220ms ease;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 78px;
    min-height: 44px;
    justify-content: flex-end;
    cursor: pointer;
  }

  .menu-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .menu-lines {
    position: relative;
    width: 24px;
    height: 18px;
  }

  .menu-lines i {
    position: absolute;
    right: 0;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 220ms ease, top 220ms ease;
  }

  .menu-lines i:first-child {
    top: 4px;
  }

  .menu-lines i:last-child {
    top: 13px;
  }

  .menu-button[aria-expanded="true"] .menu-lines i:first-child {
    top: 8px;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-lines i:last-child {
    top: 8px;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    min-height: 100svh;
    padding: max(96px, 12vh) 24px 30px;
    background: var(--ink);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  html:not(.js) {
    scroll-padding-top: 142px;
  }

  html:not(.js) .site-header {
    height: auto;
    background: var(--ink);
    border-color: var(--line);
  }

  html:not(.js) .header-inner {
    flex-wrap: wrap;
    padding-block: 8px;
  }

  html:not(.js) .menu-button {
    display: none;
  }

  html:not(.js) .main-nav {
    position: static;
    width: 100%;
    min-height: 0;
    padding: 0 0 6px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    overflow-y: visible;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  html:not(.js) .main-nav > a:not(.nav-cta) {
    flex: 0 0 auto;
    padding: 8px 0;
    border: 0;
    font-family: inherit;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  html:not(.js) .nav-cta {
    flex: 0 0 auto;
    min-height: 40px;
    margin-top: 0;
    white-space: nowrap;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 28px;
    min-height: 56px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 50px);
  }

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

  .hero-copy {
    padding-block: 20px 0;
  }

  .hero h1 {
    font-size: clamp(3.85rem, 17.5vw, 6.2rem);
  }

  .hero-lead {
    margin-top: 28px;
  }

  .hero-meta {
    margin-top: 36px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 460px;
    height: 460px;
  }

  .hero-visual {
    clip-path: polygon(8% 0, 100% 0, 100% 94%, 0 100%, 0 7%);
  }

  .section-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head > p {
    grid-column: 1;
  }

  .principles,
  .services,
  .process {
    padding-block: 94px;
  }

  .principles {
    padding-bottom: 0;
  }

  .principles-copy {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .principle-rail {
    grid-template-columns: 1fr 1fr;
    margin-top: 64px;
  }

  .principle-rail div:nth-child(odd) {
    border-left: 1px solid #c5cac3;
  }

  .principle-rail div {
    min-height: 126px;
    border-bottom: 1px solid #c5cac3;
  }

  .section-head {
    margin-bottom: 48px;
  }

  .service-row {
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: auto;
    padding-block: 28px;
  }

  .service-row:hover {
    padding-inline: 12px;
  }

  .service-row p {
    grid-column: 2 / 4;
  }

  .service-mark {
    grid-column: 3;
    grid-row: 1;
  }

  .service-note {
    grid-template-columns: 44px 1fr;
  }

  .service-note a {
    grid-column: 2;
    justify-self: start;
  }

  .process-intro {
    gap: 22px;
  }

  .process-steps {
    margin-top: 54px;
  }

  .process-steps li,
  .process-steps div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-steps li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .contact {
    padding: 90px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .copyright {
    text-align: left;
  }
}

@media (max-width: 500px) {
  .wordmark {
    width: 88px;
    height: calc(var(--header-height) - 4px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
  }

  .hero-meta span + span {
    padding-left: 0;
    border-left: 0;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 390px;
    height: 390px;
  }

  .display-heading {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .principle-rail {
    grid-template-columns: 1fr;
  }

  .principle-rail div {
    min-height: 104px;
    border-left: 1px solid #c5cac3;
  }

  .principle-rail span {
    margin-top: 18px;
  }

  .contact-actions a {
    grid-template-columns: 1fr 26px;
    gap: 8px;
    min-height: 116px;
  }

  .contact-actions span {
    grid-column: 1 / -1;
  }

  .contact-actions i {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-top {
    align-items: flex-start;
    gap: 30px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
}
