:root {
  --navy-950: #020b21;
  --navy-900: #041338;
  --navy-800: #061b4f;
  --navy-700: #06286e;
  --blue-500: #1f73d7;
  --sky-300: #77c6ff;
  --yellow: #ffd800;
  --yellow-deep: #e8c400;
  --mist: #f4f9ff;
  --white: #ffffff;
  --ink: #06163f;
  --muted: #5a6a86;
  --line: rgba(6, 40, 110, 0.13);
  --shadow-sm: 0 10px 32px rgba(4, 19, 56, 0.12);
  --shadow-lg: 0 24px 80px rgba(4, 19, 56, 0.22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3.4rem, 7.2vw, 6.9rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 750;
}

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

.section {
  position: relative;
  padding: 108px 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-blue {
  color: var(--blue-500);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-160%);
}

.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: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(3, 15, 47, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 88px;
}

.logo-link img {
  width: 158px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 38px);
  font-size: 0.94rem;
  font-weight: 650;
}

.primary-nav a,
.phone-link {
  position: relative;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  font-weight: 750;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-yellow {
  color: var(--navy-950);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(255, 216, 0, 0.25);
}

.button-yellow:hover,
.button-yellow:focus-visible {
  background: #ffe333;
  box-shadow: 0 16px 34px rgba(255, 216, 0, 0.34);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(3, 15, 47, 0.25);
  backdrop-filter: blur(8px);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.74rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 880px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900) url("assets/images/hero-modern-home.webp") center/cover no-repeat;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 10% 38%, rgba(255, 216, 0, 0.24), transparent 13%),
    linear-gradient(90deg, rgba(2, 11, 33, 0.96) 0%, rgba(4, 19, 56, 0.82) 36%, rgba(4, 19, 56, 0.18) 72%, rgba(4, 19, 56, 0.05) 100%);
}

.hero::after {
  right: -25%;
  bottom: -34%;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(119, 198, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(31, 115, 215, 0.3);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(4, 19, 56, 0.86), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 178px;
}

.hero-content > * {
  max-width: 750px;
}

.hero-copy {
  margin-bottom: 34px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-wrap {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 38px;
  left: 0;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(100deg, rgba(31, 115, 215, 0.7), rgba(9, 40, 104, 0.74) 44%, rgba(255, 216, 0, 0.54)),
    rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.trust-item {
  position: relative;
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  padding: 22px;
  text-align: center;
}

.trust-item:not(:last-child)::after {
  position: absolute;
  top: 26px;
  right: 0;
  bottom: 26px;
  width: 1px;
  background: rgba(255, 255, 255, 0.32);
  content: "";
}

.trust-item img {
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
  filter: brightness(0) invert(1);
}

.trust-item strong {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.trust-item span {
  font-size: 0.72rem;
  text-transform: uppercase;
}

.about {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #edf7ff 100%);
}

.about::before {
  position: absolute;
  z-index: 0;
  top: -95px;
  right: -10%;
  left: -10%;
  height: 160px;
  background: var(--white);
  border-radius: 50%;
  content: "";
}

.about-glow {
  position: absolute;
  top: -170px;
  right: -170px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 216, 0, 0.45), transparent 70%);
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.section-copy p:not(.eyebrow) {
  max-width: 550px;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--navy-700);
  font-weight: 800;
}

.about-image {
  position: relative;
}

.about-image::before {
  position: absolute;
  z-index: -1;
  inset: 22px -22px -22px 22px;
  background: linear-gradient(135deg, var(--sky-300), var(--yellow));
  border-radius: var(--radius-lg);
  content: "";
  opacity: 0.56;
}

.about-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.services {
  background:
    radial-gradient(circle at 2% 60%, rgba(119, 198, 255, 0.36), transparent 28%),
    radial-gradient(circle at 100% 35%, rgba(255, 216, 0, 0.22), transparent 24%),
    var(--mist);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.service-tall {
  grid-row: 1 / 3;
}

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

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 15, 47, 0.97) 0%, rgba(3, 15, 47, 0.62) 40%, rgba(3, 15, 47, 0.03) 78%);
}

.service-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
  color: var(--white);
}

.service-content h3 {
  max-width: 330px;
  margin-bottom: 9px;
}

.service-content p {
  max-width: 380px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
}

.circle-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.circle-link:hover,
.circle-link:focus-visible {
  background: #ffe74f;
  transform: translateX(3px);
}

.projects {
  background: linear-gradient(180deg, var(--mist), #ffffff);
}

.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  min-width: 124px;
  padding: 10px 18px;
  border: 1px solid rgba(6, 40, 110, 0.2);
  color: var(--navy-700);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 750;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--white);
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.project-card[hidden] {
  display: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(4, 19, 56, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.project-card figcaption strong {
  font-size: 1.1rem;
}

.project-card figcaption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.why {
  padding-top: 48px;
  background: #ffffff;
}

.why-panel {
  position: relative;
  display: grid;
  min-height: 440px;
  grid-template-columns: 0.8fr 1.4fr 0.72fr;
  align-items: end;
  gap: 20px;
  overflow: hidden;
  padding: 48px 42px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 25%, rgba(119, 198, 255, 0.6), transparent 32%),
    radial-gradient(circle at 100% 28%, rgba(255, 216, 0, 0.78), transparent 31%),
    linear-gradient(105deg, #0d5dbf, var(--navy-700) 50%, #12377f);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-copy {
  align-self: center;
  padding-bottom: 46px;
}

.why-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.why-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.why-copy .button {
  margin-top: 12px;
}

.why-image {
  align-self: end;
}

.why-image img {
  width: 100%;
  max-height: 410px;
  object-fit: contain;
  object-position: bottom;
}

.testimonial {
  align-self: center;
  margin: 0 0 40px;
  padding: 28px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.quote-mark {
  display: block;
  height: 45px;
  color: var(--yellow-deep);
  font-family: Georgia, serif;
  font-size: 5.4rem;
  line-height: 0.9;
}

.testimonial p {
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
}

.testimonial cite {
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-cta {
  padding: 26px 0 0;
  color: var(--white);
  background: #ffffff;
}

.contact-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  padding: 52px 64px;
  background:
    linear-gradient(100deg, rgba(4, 19, 56, 0.98), rgba(6, 40, 110, 0.95)),
    url("assets/images/service-industrial-box-gutters.webp") center/cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-cta-inner::after {
  position: absolute;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(119, 198, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(31, 115, 215, 0.25);
  content: "";
}

.contact-cta h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.contact-actions {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-actions p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions p a {
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  padding: 52px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.75fr 0.8fr;
  gap: 44px;
}

.footer-brand img {
  width: 170px;
  height: auto;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-social p {
  margin-bottom: 10px;
}

.footer-contact,
.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.88rem;
  font-style: normal;
}

.footer-contact a,
.footer-nav a,
.footer-social a {
  transition: color 180ms ease;
}

.footer-contact a:hover,
.footer-nav a:hover,
.footer-social a:hover,
.footer-contact a:focus-visible,
.footer-nav a:focus-visible,
.footer-social a:focus-visible {
  color: var(--yellow);
}

.footer-social p {
  color: var(--white);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 26px;
    background: rgba(3, 15, 47, 0.97);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.2);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .primary-nav a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

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

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

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

  .why-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .testimonial {
    position: absolute;
    right: 28px;
    bottom: 28px;
    max-width: 240px;
    margin: 0;
  }

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

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: 920px;
    background-position: 64% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(2, 11, 33, 0.97), rgba(4, 19, 56, 0.72) 65%, rgba(4, 19, 56, 0.28));
  }

  .hero-content {
    padding-bottom: 340px;
  }

  .trust-wrap {
    bottom: 26px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
  }

  .trust-item {
    min-height: 112px;
    padding: 16px;
  }

  .trust-item:nth-child(2)::after {
    display: none;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

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

  .about-image {
    margin-right: 18px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 360px 280px 280px;
  }

  .service-tall {
    grid-row: 1 / 2;
  }

  .service-wide {
    grid-column: 1 / 3;
  }

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

  .project-card,
  .project-card img {
    min-height: 370px;
  }

  .why-panel {
    grid-template-columns: 1fr;
    padding: 42px 32px 0;
  }

  .why-copy {
    padding-bottom: 0;
  }

  .why-image {
    padding-right: 160px;
  }

  .why-image img {
    max-height: 320px;
  }

  .testimonial {
    right: 18px;
    bottom: 18px;
    max-width: 220px;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
    padding: 48px 34px;
    text-align: center;
  }
}

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

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

  .logo-link img {
    width: 138px;
  }

  .primary-nav {
    top: 76px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 338px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero-buttons,
  .hero-buttons .button {
    width: 100%;
  }

  .trust-item img {
    width: 30px;
    height: 30px;
  }

  .trust-item strong {
    font-size: 0.78rem;
  }

  .trust-item span {
    font-size: 0.62rem;
  }

  .about-image img {
    min-height: 330px;
  }

  .service-grid {
    display: flex;
    flex-direction: column;
  }

  .service-card {
    min-height: 390px;
  }

  .service-content {
    padding: 24px;
  }

  .service-content p {
    padding-right: 50px;
  }

  .circle-link {
    right: 20px;
    bottom: 20px;
  }

  .filter-button {
    min-width: 0;
    flex: 1 1 calc(50% - 10px);
  }

  .project-card,
  .project-card img {
    min-height: 310px;
  }

  .why-panel {
    padding: 38px 24px 0;
    border-radius: 26px;
  }

  .why-image {
    padding-right: 0;
  }

  .why-image img {
    max-height: 260px;
    opacity: 0.78;
  }

  .testimonial {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-bottom: 24px;
  }

  .contact-cta-inner {
    gap: 28px;
    padding: 42px 24px;
    border-radius: 26px 26px 0 0;
  }

  .contact-actions .button {
    width: 100%;
  }

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

@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;
  }

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