:root {
  --navy: #081a33;
  --navy-dark: #041120;
  --navy-light: #132b4a;
  --red: #c1121f;
  --red-dark: #9f0d18;
  --white: #ffffff;
  --anthracite: #1a1a1a;
  --text: #5e6671;
  --line: #e3e7eb;
  --surface: #f4f6f8;
  --container: 1160px;
  --shadow: 0 24px 70px rgba(8, 26, 51, 0.15);
}

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

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

body {
  margin: 0;
  color: var(--anthracite);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  color: var(--white);
  background: var(--red);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 17, 32, 0.97);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 17, 32, 0.48);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.topbar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.topbar__contact {
  display: flex;
  gap: 25px;
}

.topbar__contact a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

.topbar__contact a:hover,
.topbar__contact a:focus-visible {
  color: #ff6670;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand__word {
  color: var(--white);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.brand__word span {
  color: var(--red);
}

.brand small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
}

.nav__menu > a:not(.nav__cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

.nav__menu > a:not(.nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav__menu > a:not(.nav__cta):hover,
.nav__menu > a:not(.nav__cta):focus-visible,
.nav__menu > a.is-active {
  color: var(--white);
}

.nav__menu > a:not(.nav__cta):hover::after,
.nav__menu > a:not(.nav__cta):focus-visible::after,
.nav__menu > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 43px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 750;
  transition: background 180ms ease, transform 180ms ease;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  max-height: 900px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 17, 32, 0.97) 0%, rgba(4, 17, 32, 0.85) 37%, rgba(4, 17, 32, 0.26) 73%),
    linear-gradient(180deg, rgba(4, 17, 32, 0.48) 0%, transparent 45%, rgba(4, 17, 32, 0.68) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 105px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker > span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.kicker--light {
  color: #fb4b57;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(62px, 7vw, 104px);
  text-transform: uppercase;
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

.hero__text {
  max-width: 610px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 35px rgba(193, 18, 31, 0.26);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 750;
}

.hero-card {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(430px, calc(100% - 48px));
  min-height: 130px;
  padding: 24px 28px;
  border-top: 3px solid var(--red);
  background: rgba(4, 17, 32, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hero-card__index {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
}

.hero-card small,
.hero-card strong {
  display: block;
}

.hero-card small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  font-size: 15px;
  line-height: 1.35;
}

.hero-card > a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--red);
}

.section {
  padding: 115px 0;
}

.section h2 {
  font-size: clamp(44px, 5vw, 66px);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 0.85fr;
  align-items: center;
  gap: clamp(65px, 8vw, 110px);
}

.about__lead {
  margin: 31px 0 17px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.55;
}

.about__copy > p:not(.kicker):not(.about__lead) {
  color: var(--text);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.text-button span {
  color: var(--red);
}

.about__qualities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 47px;
  border-top: 1px solid var(--line);
}

.about__qualities div {
  padding: 19px 12px 0 0;
}

.about__qualities div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.about__qualities span,
.about__qualities strong {
  display: block;
}

.about__qualities span {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
}

.about__qualities strong {
  margin-top: 5px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.35;
}

.about__visual {
  position: relative;
  max-width: 470px;
  justify-self: end;
}

.about__visual::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 75%;
  height: 70%;
  content: "";
  background: var(--surface);
}

.about__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.about__seal {
  position: absolute;
  right: -28px;
  bottom: 38px;
  display: grid;
  place-content: center;
  width: 148px;
  height: 148px;
  border: 8px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  text-align: center;
  box-shadow: 0 18px 45px rgba(193, 18, 31, 0.28);
}

.about__seal span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about__seal strong {
  margin-top: 5px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.05;
  text-transform: uppercase;
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.services::before {
  position: absolute;
  top: 60px;
  left: -100px;
  width: 500px;
  height: 300px;
  content: "";
  opacity: 0.3;
  background-image: radial-gradient(circle, #aeb7c2 1px, transparent 1.5px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse, black 10%, transparent 68%);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.section-heading > p {
  margin: 0 0 3px;
  padding-left: 20px;
  border-left: 2px solid var(--red);
  color: var(--text);
}

.featured-services {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.featured-card {
  position: relative;
  min-height: 385px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 50px rgba(8, 26, 51, 0.14);
}

.featured-card > img,
.featured-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.featured-card > img {
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.featured-card:hover > img {
  transform: scale(1.035);
}

.featured-card__shade {
  background: linear-gradient(180deg, rgba(4, 17, 32, 0.06), rgba(4, 17, 32, 0.92));
}

.featured-card__body {
  position: absolute;
  z-index: 1;
  right: 82px;
  bottom: 30px;
  left: 30px;
}

.featured-card__body > span {
  color: #ff5863;
  font-size: 10px;
  font-weight: 850;
}

.featured-card h3 {
  margin: 7px 0 8px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 29px;
  line-height: 1.05;
  text-transform: uppercase;
}

.featured-card p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.featured-card > a {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--red);
  transition: background 180ms ease, transform 180ms ease;
}

.featured-card > a:hover,
.featured-card > a:focus-visible {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.service-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border-top: 1px solid #d8dde3;
  border-left: 1px solid #d8dde3;
}

.service-item {
  position: relative;
  min-height: 300px;
  padding: 32px 26px;
  border-right: 1px solid #d8dde3;
  border-bottom: 1px solid #d8dde3;
  background: var(--white);
  transition: color 230ms ease, background 230ms ease, transform 230ms ease;
}

.service-item:hover {
  z-index: 2;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-item__icon {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  border: 1px solid rgba(193, 18, 31, 0.45);
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
}

.service-item__number {
  position: absolute;
  top: 35px;
  right: 26px;
  color: #aeb5bd;
  font-size: 10px;
  font-weight: 800;
}

.service-item h3 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
  transition: color 230ms ease;
}

.service-item p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  transition: color 230ms ease;
}

.service-item:hover h3 {
  color: var(--white);
}

.service-item:hover p {
  color: rgba(255, 255, 255, 0.62);
}

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

.contact__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

.contact::after {
  position: absolute;
  top: -290px;
  right: -140px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(193, 18, 31, 0.25);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(193, 18, 31, 0.035), 0 0 0 180px rgba(193, 18, 31, 0.02);
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(65px, 8vw, 105px);
  align-items: center;
}

.contact h2 {
  color: var(--white);
}

.contact__copy > p:not(.kicker) {
  max-width: 500px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.contact__details {
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

.contact__details a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: color 180ms ease;
}

.contact__details a:hover,
.contact__details a:focus-visible {
  color: #ff5b66;
}

.contact__details span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact__details strong {
  margin-top: 3px;
  font-size: 17px;
}

.quote-form {
  padding: 40px;
  color: var(--anthracite);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.quote-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.quote-form label {
  display: block;
  margin-bottom: 22px;
}

.quote-form label > span {
  display: block;
  margin-bottom: 6px;
  color: #777f89;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ccd2d9;
  border-radius: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  transition: border-color 180ms ease;
}

.quote-form input,
.quote-form select {
  height: 42px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
}

.quote-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 6px;
}

.quote-form__footer p {
  max-width: 240px;
  margin: 0;
  color: #8f969e;
  font-size: 10px;
  line-height: 1.45;
}

.quote-form__status {
  min-height: 18px;
  margin: 12px 0 -8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 750;
}

.footer {
  color: var(--white);
  background: #020b14;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  justify-self: end;
  gap: 27px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #ff5863;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1000px) {
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .topbar {
    display: none;
  }

  .nav {
    min-height: 75px;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 21px;
    padding: 75px 40px;
    background: var(--navy-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 220ms ease, transform 280ms ease;
  }

  .nav__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav__menu > a:not(.nav__cta) {
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(4, 17, 32, 0.96), rgba(4, 17, 32, 0.55)), linear-gradient(180deg, rgba(4, 17, 32, 0.4), rgba(4, 17, 32, 0.75));
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    width: min(88%, 470px);
    justify-self: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .featured-services {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr auto;
  }

  .footer__top > p {
    display: none;
  }
}

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

  .hero {
    min-height: 700px;
    max-height: 820px;
  }

  .hero__image {
    object-position: 57% center;
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 180px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero__text {
    font-size: 14px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .hero-card {
    right: 14px;
    left: 14px;
    width: auto;
    min-height: 112px;
    padding: 20px;
  }

  .hero-card__index {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section h2 {
    font-size: 42px;
  }

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

  .about__qualities div {
    padding: 14px 0;
  }

  .about__qualities div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about__visual {
    width: calc(100% - 18px);
  }

  .about__visual::before {
    right: -10px;
  }

  .about__seal {
    right: -10px;
    width: 125px;
    height: 125px;
  }

  .featured-card {
    min-height: 360px;
  }

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

  .quote-form {
    padding: 28px 21px;
  }

  .quote-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-form__footer p {
    max-width: none;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0;
  }

  .footer__links {
    justify-self: start;
    flex-wrap: wrap;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
