:root {
  --petrol: #005475;
  --deep: #003e58;
  --ink: #10222b;
  --slate: #5d6972;
  --orange: #f47a00;
  --paper: #f7f9fa;
  --line: #d7dee2;
  --white: #ffffff;
  --shell: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  color: var(--white);
  background: var(--deep);
  border-radius: 4px;
  transition: transform .2s ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(215, 222, 226, .78);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(0, 62, 88, .08);
}

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

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 206px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .01em;
}

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

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

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

.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--deep);
  border-radius: 2px;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
  background: var(--petrol);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  height: max(780px, 100svh);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.015);
  animation: hero-in 1.4s var(--ease) both;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 35, 52, .96) 0%, rgba(0, 62, 88, .9) 37%, rgba(0, 62, 88, .36) 66%, rgba(0, 20, 32, .05) 100%),
    linear-gradient(0deg, rgba(0, 28, 42, .55), transparent 44%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 156px;
  padding-bottom: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  max-width: 720px;
  padding-block: 40px;
}

.eyebrow {
  margin: 0 0 23px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--petrol);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.eyebrow-light {
  color: rgba(255, 255, 255, .8);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(48px, 6.25vw, 88px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero-lead {
  max-width: 650px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 54px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--orange);
}

.button-primary:hover {
  color: var(--ink);
  background: #d96b00;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  color: var(--deep);
  background: var(--white);
  border-color: var(--white);
}

.hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  background: rgba(0, 48, 70, .86);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  min-width: 172px;
  padding: 25px 27px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .12em;
}

.hero-stats span {
  font-size: 14px;
  font-weight: 650;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 27px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.hero-scroll i {
  width: 42px;
  height: 1px;
  display: block;
  background: rgba(255, 255, 255, .6);
}

.section {
  padding: 120px 0;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(200px, .62fr) minmax(0, 1.38fr);
  gap: 80px;
}

.section-kicker {
  padding-top: 8px;
}

.section-index {
  margin: 46px 0 0;
  color: #8b969d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.intro-copy h2,
.section-heading h2,
.story-copy h2,
.presence-copy h2,
.contact-inner h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 66px);
  font-weight: 620;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.intro-copy > p {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--slate);
  font-size: 19px;
}

.sectors {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr);
  align-items: end;
  gap: 70px;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--slate);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sector-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s ease, color .35s ease, background .35s ease;
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--petrol), var(--deep));
  transform: translateY(102%);
  transition: transform .45s var(--ease);
}

.sector-card > * {
  position: relative;
  z-index: 1;
}

.sector-card:hover {
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0, 62, 88, .16);
}

.sector-card:hover::before {
  transform: translateY(0);
}

.card-top {
  margin-bottom: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--petrol);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  transition: color .3s ease;
}

.card-top i {
  font-style: normal;
  font-size: 22px;
}

.sector-card:hover .card-top {
  color: var(--orange);
}

.sector-card h3 {
  max-width: 300px;
  margin: 64px 0 17px;
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.sector-card p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  transition: color .3s ease;
}

.sector-card:hover p {
  color: rgba(255, 255, 255, .75);
}

.card-line {
  width: 36px;
  height: 3px;
  margin-top: 30px;
  background: var(--orange);
  transition: width .35s var(--ease);
}

.sector-card:hover .card-line {
  width: 100%;
}

.image-story {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--deep);
}

.story-image {
  position: relative;
  min-height: 670px;
  overflow: hidden;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 45, 63, .22), transparent 55%);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.story-image:hover img {
  transform: scale(1.025);
}

.story-copy {
  padding: 95px max(48px, calc((100vw - 1180px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-copy > div:first-child > p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .7);
}

.capability-list {
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.capability {
  padding: 21px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.capability > span {
  padding-top: 4px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
}

.capability h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
}

.capability p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.process {
  background: var(--white);
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  counter-reset: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 270px;
  padding: 30px 28px 24px 0;
  border-right: 1px solid var(--line);
}

.process-list li + li {
  padding-left: 28px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .11em;
}

.process-list h3 {
  margin: 72px 0 13px;
  font-size: 25px;
  font-weight: 650;
}

.process-list p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
}

.presence {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.presence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 85px;
  align-items: center;
}

.presence-copy > p:last-child {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.location-card {
  min-height: 380px;
  padding: 44px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0, 84, 117, .98), rgba(0, 45, 65, .98));
  overflow: hidden;
}

.location-mark {
  position: absolute;
  top: -90px;
  right: -55px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
}

.location-mark::before,
.location-mark::after,
.location-mark span {
  content: "";
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.location-mark::before {
  width: 190px;
  height: 190px;
}

.location-mark::after {
  width: 100px;
  height: 100px;
}

.location-mark span {
  width: 14px;
  height: 14px;
  background: var(--orange);
  border: 0;
}

.location-card p {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.location-card address {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.location-secondary {
  margin-top: 34px;
  padding-top: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.location-secondary p {
  margin: 0;
}

.location-secondary strong {
  font-size: 18px;
}

.faq {
  background: var(--paper);
}

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

.faq-item {
  padding: 36px;
  background: var(--white);
}

.faq-item h3 {
  max-width: 27ch;
  margin-bottom: 14px;
  color: var(--deep);
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -.02em;
}

.faq-item p {
  max-width: 58ch;
  color: var(--slate);
  line-height: 1.72;
}

.contact-section {
  position: relative;
  padding: 126px 0;
  color: var(--white);
  background: var(--deep);
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, transparent, #000 55%);
}

.contact-inner {
  position: relative;
}

.contact-inner h2 {
  max-width: 850px;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 45px;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
}

.contact-email {
  max-width: 720px;
  padding: 19px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--orange);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 580;
  letter-spacing: -.025em;
}

.contact-email i {
  color: var(--orange);
  font-style: normal;
  transition: transform .25s var(--ease);
}

.contact-email:hover i {
  transform: translate(6px, -6px);
}

.site-footer {
  color: rgba(255, 255, 255, .7);
  background: #002e42;
}

.footer-main {
  padding: 64px 0 52px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-main > img {
  width: 216px;
  height: auto;
}

.footer-label {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-main address {
  font-style: normal;
}

.footer-main a {
  color: var(--white);
}

.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: 170px 0 72px;
  color: var(--white);
  background: var(--deep);
}

.legal-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .7);
}

.legal-content {
  width: min(860px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.legal-content section + section {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  color: var(--slate);
}

.legal-content a {
  color: var(--petrol);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content li + li {
  margin-top: 8px;
}

@keyframes hero-in {
  from { opacity: .4; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.015); }
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 22px;
  }

  .hero-stats div {
    min-width: 148px;
  }

  .image-story {
    grid-template-columns: .92fr 1.08fr;
  }

  .story-copy {
    padding-inline: 48px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

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

  .brand img {
    width: 184px;
  }

  .menu-toggle {
    width: 70px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--deep);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
  }

  .menu-toggle-icon,
  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    width: 24px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
  }

  .menu-toggle-icon {
    position: relative;
  }

  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle-icon::before { top: -7px; }
  .menu-toggle-icon::after { top: 7px; }

  .nav-open .menu-toggle-icon {
    background: transparent;
  }

  .nav-open .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-open .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 0;
    padding: 44px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--white);
    background: var(--deep);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s var(--ease), visibility .35s;
  }

  .nav-open .main-nav {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav a {
    padding: 18px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-size: 20px;
  }

  .nav-cta {
    margin-top: 22px;
    color: var(--ink);
    text-align: center;
    background: var(--orange);
  }

  .nav-cta:hover {
    color: var(--ink);
    background: #d96b00;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 42, 60, .95), rgba(0, 62, 88, .58)),
      linear-gradient(0deg, rgba(0, 28, 42, .72), transparent 65%);
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 160px;
  }

  .hero-stats {
    right: auto;
    left: 0;
    width: 100%;
  }

  .hero-stats div {
    min-width: 0;
    padding: 20px 17px;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .intro-grid,
  .section-heading,
  .presence-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-index {
    display: none;
  }

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

  .section-heading > p {
    max-width: 620px;
  }

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

  .sector-card {
    min-height: 330px;
  }

  .image-story {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 530px;
  }

  .story-copy {
    padding: 78px 24px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .location-card {
    min-height: 340px;
  }

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

@media (max-width: 580px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  body {
    font-size: 16px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: 145px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

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

  .hero-stats div {
    padding: 12px 18px;
    flex-direction: row;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .intro-copy h2,
  .section-heading h2,
  .story-copy h2,
  .presence-copy h2,
  .contact-inner h2,
  .legal-hero h1 {
    font-size: 39px;
  }

  .intro-copy > p {
    font-size: 17px;
  }

  .sector-card {
    min-height: 310px;
    padding: 28px;
  }

  .story-image {
    min-height: 420px;
  }

  .story-copy {
    padding-inline: 20px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li {
    min-height: 0;
    padding: 26px 0 34px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-list h3 {
    margin-top: 35px;
  }

  .location-card {
    padding: 31px;
  }

  .contact-section {
    padding: 94px 0;
  }

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

  .footer-bottom {
    padding: 26px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    gap: 16px;
  }
}

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

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

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