:root {
  --page: #050504;
  --bg: #090806;
  --panel: #0b0907;
  --text: #f1eee8;
  --muted: #c7c0b5;
  --soft: #8f8374;
  --gold: #b5823d;
  --gold-bright: #d3a761;
  --gold-dim: rgba(211, 167, 97, 0.2);
  --gold-line: rgba(211, 167, 97, 0.28);
  --gold-line-strong: rgba(211, 167, 97, 0.58);
  --poster: 1080px;
  --container: 1016px;
  --font-display: "Avenir Next Condensed", "DIN Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-text: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  max-width: var(--poster);
  margin: 0 auto;
  color: var(--text);
  background:
    radial-gradient(circle at 73% 10%, rgba(211, 167, 97, 0.08), transparent 21%),
    radial-gradient(circle at 16% 8%, rgba(211, 167, 97, 0.06), transparent 19%),
    var(--bg);
  font-family: var(--font-text);
  line-height: 1.32;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.68);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background: #050504;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  max-width: var(--poster);
  margin-inline: auto;
  content: "";
  pointer-events: none;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

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

svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--gold-bright);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

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

.site-top {
  position: relative;
  z-index: 4;
  padding: 40px 0 18px;
}

.top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(211, 167, 97, 0.14), 0 0 30px rgba(211, 167, 97, 0.08);
}

.brand-mark svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  gap: 7px;
  padding-top: 3px;
}

.brand-copy strong,
.brand-copy small,
.hero-kicker,
.section-title,
.section-label,
.service-card h3,
.realization-card h3,
.realization-card p,
.experience-card h3,
.contact-list span,
.contact-cta p,
.button,
.social-banner span,
.cv-meta p {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.brand-copy strong {
  color: var(--gold-bright);
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 0.86;
  text-shadow: 0 0 14px rgba(211, 167, 97, 0.16);
}

.brand-copy small {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 600;
}

.brand-copy small i {
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.social-links-top {
  padding-top: 18px;
}

.social-link {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--gold-bright);
  border: 2px solid var(--gold-line-strong);
  border-radius: 9px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:not([aria-disabled="true"]):hover {
  border-color: var(--gold-bright);
  background: rgba(211, 167, 97, 0.08);
  transform: translateY(-2px);
}

.is-placeholder[aria-disabled="true"] {
  opacity: 0.74;
  cursor: not-allowed;
}

.social-link[aria-disabled="true"],
.button[aria-disabled="true"] {
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 520px;
  padding: 20px 0 18px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -44px;
  right: -96px;
  width: 660px;
  height: 560px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 55% 45%, rgba(211, 167, 97, 0.12), transparent 34%),
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.38));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

.hero-kicker {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: 2.05rem;
  font-weight: 500;
  line-height: 1.02;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.14);
}

.hero h1,
.experience-copy h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 3.58rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.93;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(211, 167, 97, 0.18);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 1.78rem;
  line-height: 1.2;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.13);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  color: var(--gold-bright);
  border: 2px solid var(--gold-line-strong);
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.18);
  font-size: 1.16rem;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.button:hover {
  border-color: var(--gold-bright);
  background: rgba(211, 167, 97, 0.08);
}

.button-outline {
  margin-top: 34px;
}

.button-large {
  min-width: 320px;
  min-height: 66px;
}

.scroll-cue {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 10px 0 0 106px;
  place-items: center;
  color: var(--gold-bright);
  text-decoration: none;
}

.scroll-cue svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-art {
  position: relative;
  min-height: 448px;
  margin-right: -16px;
}

.plane-hero {
  position: absolute;
  top: -28px;
  left: -214px;
  width: 790px;
  max-width: none;
  height: 460px;
  object-fit: contain;
  object-position: center right;
  opacity: 0.9;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 96%, transparent 100%);
  filter:
    drop-shadow(0 24px 30px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 14px rgba(211, 167, 97, 0.12));
}

.plane-lines,
.plane-shadow,
.plane-fill {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plane-shadow {
  fill: rgba(0, 0, 0, 0.48);
  stroke: none;
}

.plane-faint {
  stroke: rgba(211, 167, 97, 0.14);
  stroke-width: 1.55;
}

.plane-fill {
  fill: rgba(2, 2, 1, 0.7);
  stroke: rgba(211, 167, 97, 0.22);
  stroke-width: 1.2;
}

.plane-main {
  stroke: #83592c;
  stroke-width: 3.05;
}

.plane-detail {
  stroke: var(--gold-bright);
  stroke-width: 1.9;
}

.panel {
  position: relative;
  padding: 35px 0 34px;
  overflow: hidden;
  border-top: 1px solid rgba(211, 167, 97, 0.16);
}

.panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 760 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d3a761' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M56 196 210 42l28 28L84 224zM208 44l38-18 18 18-26 26'/%3E%3Cpath d='M462 210 628 44c24-24 72-8 80 26 5 22-5 44-25 56L552 204c-29 18-63 20-90 6zM536 160l105-62'/%3E%3Cpath d='M318 92h94M318 122h78M318 152h102'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 78% auto;
}

.panel > .container {
  position: relative;
  z-index: 1;
}

.section-title {
  margin: 0 0 23px;
  color: var(--text);
  font-size: 2.45rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.section-title-left {
  text-align: left;
}

.section-label {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title::after,
.section-label::after {
  display: block;
  width: 74px;
  height: 2px;
  margin: 14px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.section-title-left::after,
.section-label::after {
  margin-left: 0;
}

.services-panel,
.realizations-panel,
.experience-panel,
.contact-panel {
  background: rgba(6, 5, 4, 0.34);
}

.services-panel::before,
.realizations-panel::before {
  opacity: 0;
}

.service-grid,
.realization-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(211, 167, 97, 0.12);
  border-bottom: 1px solid rgba(211, 167, 97, 0.1);
}

.service-card,
.realization-card {
  display: grid;
  min-height: 144px;
  place-items: center;
  align-content: center;
  padding: 18px 10px;
  text-align: center;
  border-right: 1px solid rgba(211, 167, 97, 0.14);
  border-bottom: 1px solid rgba(211, 167, 97, 0.11);
  background: transparent;
}

.service-card svg,
.realization-card svg,
.experience-card svg,
.cv-meta svg,
.contact-list svg {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card svg {
  width: 58px;
  height: 58px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(211, 167, 97, 0.16));
}

.realization-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(211, 167, 97, 0.16));
}

.service-card h3,
.realization-card h3,
.experience-card h3,
.contact-list span,
.cv-meta p {
  margin: 0;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--text);
  font-size: 1.06rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

.service-card p,
.realization-card p {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.05;
}

.realization-card {
  min-height: 118px;
}

.realization-card h3 {
  font-size: 1.02rem;
}

.social-banner {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 26px;
  margin: 20px auto 0;
  border: 2px solid var(--gold);
  background: rgba(0, 0, 0, 0.22);
}

.social-banner span {
  color: var(--gold-bright);
  font-size: 1.14rem;
  font-weight: 700;
  text-transform: uppercase;
}

.social-banner .social-link {
  width: 43px;
  height: 43px;
  border-width: 2px;
}

.social-banner .social-link svg {
  width: 25px;
  height: 25px;
}

.experience-panel {
  padding-top: 32px;
}

.experience-panel::before {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 740 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d3a761' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M524 214V72h82v142M510 214h112M546 214v-44h25v44M586 214v-44h25v44M546 106h18v28h-18zM583 106h18v28h-18z'/%3E%3Cpath d='M88 208c14-32 35-52 64-62 28-10 43-29 47-58 4-24 19-41 44-52M104 164c17-22 38-36 65-41 25-5 42-19 51-42'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 82% 78%;
  background-size: 64% auto;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 326px;
  gap: 30px;
  align-items: center;
}

.experience-copy h2 {
  font-size: 3.15rem;
  color: var(--text);
  font-weight: 600;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.13);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  border-top: 1px solid rgba(211, 167, 97, 0.12);
  border-bottom: 1px solid rgba(211, 167, 97, 0.1);
}

.experience-card {
  display: grid;
  min-height: 112px;
  place-items: center;
  align-content: center;
  padding: 14px 8px;
  text-align: center;
  border-right: 1px solid rgba(211, 167, 97, 0.14);
  border-bottom: 0;
}

.experience-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px rgba(211, 167, 97, 0.16));
}

.experience-card h3 {
  font-size: 0.95rem;
}

.cv-card {
  display: grid;
  min-height: 164px;
  align-content: center;
  gap: 18px;
  padding: 22px 0 22px 30px;
  border-left: 1px solid var(--gold-line);
  background:
    linear-gradient(90deg, rgba(211, 167, 97, 0.05), transparent 44%),
    rgba(0, 0, 0, 0.08);
}

.cv-card .button {
  margin: 0;
}

.cv-meta {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}

.cv-meta svg {
  width: 46px;
  height: 46px;
}

.cv-meta p {
  color: var(--text);
  font-size: 1.02rem;
}

.contact-panel {
  padding: 30px 0 20px;
}

.contact-panel::before {
  opacity: 0.08;
  background-image: linear-gradient(90deg, transparent 0, transparent 55%, rgba(211, 167, 97, 0.16) 55%, rgba(211, 167, 97, 0.16) 55.2%, transparent 55.2%);
  background-position: center;
  background-size: 100% 100%;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px 246px;
  gap: 28px;
  align-items: end;
}

.contact-layout::after {
  display: block;
  align-self: stretch;
  min-height: 174px;
  content: "";
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 280 190' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d3a761' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M94 180V46h98v134M76 180h135M112 180v-44h27v44M156 180v-44h27v44M113 80h25v35h-25zM156 80h25v35h-25z'/%3E%3Cpath d='M43 177c22-21 35-43 39-68 5-33 23-59 55-79'/%3E%3Cpath d='M26 183c21-35 50-56 87-64M102 55l88 119M191 55 104 175'/%3E%3Cpath d='M205 181c8-29 23-51 45-66'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.contact-list {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li > a,
.contact-list li > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
}

.contact-list svg {
  width: 35px;
  height: 35px;
}

.contact-list span {
  color: var(--text);
  font-size: 1.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.contact-list li:first-child span {
  font-size: 2.42rem;
}

.contact-cta {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  align-self: center;
  padding: 18px;
  border: 2px solid var(--gold);
  background: rgba(0, 0, 0, 0.12);
}

.contact-cta .button-large {
  min-width: 0;
}

.contact-cta p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  padding: 6px 0 14px;
  border-top: 1px solid rgba(211, 167, 97, 0.12);
}

.footer-inner p {
  margin: 0;
  color: #777064;
  font-size: 0.72rem;
  text-align: center;
}

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

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

.service-card:nth-child(2),
.realization-card:nth-child(2),
.experience-card:nth-child(2) {
  transition-delay: 55ms;
}

.service-card:nth-child(3),
.realization-card:nth-child(3),
.experience-card:nth-child(3) {
  transition-delay: 110ms;
}

.service-card:nth-child(4),
.realization-card:nth-child(4),
.experience-card:nth-child(4) {
  transition-delay: 165ms;
}

.service-card:nth-child(5),
.realization-card:nth-child(5) {
  transition-delay: 220ms;
}

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

  .hero-layout {
    grid-template-columns: 450px minmax(0, 1fr);
  }

  .hero-kicker {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-lead {
    font-size: 1.38rem;
  }

  .hero-art {
    min-height: 420px;
  }

  .service-card h3,
  .realization-card h3 {
    font-size: 0.92rem;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 75% 12%, rgba(211, 167, 97, 0.08), transparent 22%),
      var(--bg);
  }

  .site-top {
    padding-top: 24px;
  }

  .top-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links-top {
    align-self: flex-end;
    padding-top: 0;
  }

  .brand-mark {
    width: 66px;
    height: 66px;
  }

  .brand-mark svg {
    width: 35px;
    height: 35px;
  }

  .brand-copy strong {
    font-size: 2.16rem;
  }

  .brand-copy small {
    font-size: 0.83rem;
  }

  .brand-copy small i {
    width: 24px;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout,
  .experience-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 430px;
  }

  .hero-art {
    min-height: 330px;
    margin: -10px -20px 0 0;
  }

  .plane-hero {
    top: -52px;
    right: auto;
    left: 50%;
    width: 720px;
    height: 420px;
    transform: translateX(-44%);
  }

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

  .realization-card:last-child {
    grid-column: 1 / -1;
  }

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

  .cv-card {
    min-height: auto;
    padding: 24px 0 0;
    border-top: 1px solid var(--gold-line);
    border-left: 0;
  }

  .contact-panel::before {
    opacity: 0.06;
  }

  .contact-layout::after {
    min-height: 150px;
    background-position: left bottom;
    background-size: min(280px, 76%) auto;
  }
}

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

  .hero-kicker {
    font-size: 1.58rem;
  }

  .hero h1,
  .experience-copy h2 {
    font-size: 2.55rem;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
    font-size: 0.98rem;
  }

  .scroll-cue {
    margin-left: 0;
  }

  .hero-art {
    min-height: 260px;
  }

  .plane-hero {
    top: -30px;
    right: auto;
    left: 50%;
    width: 560px;
    height: 310px;
    transform: translateX(-43%);
  }

  .panel {
    padding: 30px 0;
  }

  .panel::before {
    background-size: 120% auto;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card,
  .realization-card,
  .experience-card {
    min-height: 130px;
    padding: 14px 8px;
  }

  .service-card svg,
  .realization-card svg,
  .experience-card svg {
    width: 44px;
    height: 44px;
    margin-bottom: 11px;
  }

  .service-card h3,
  .realization-card h3,
  .experience-card h3 {
    font-size: 0.82rem;
  }

  .service-card p,
  .realization-card p {
    font-size: 0.78rem;
  }

  .social-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .social-banner span {
    text-align: center;
    font-size: 0.92rem;
  }

  .cv-meta {
    grid-template-columns: 42px 1fr;
  }

  .cv-meta svg {
    width: 38px;
    height: 38px;
  }

  .cv-meta p,
  .contact-cta p {
    font-size: 0.88rem;
  }

  .contact-list li > a,
  .contact-list li > div {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .contact-list svg {
    width: 25px;
    height: 25px;
  }

  .contact-list span,
  .contact-list li:first-child span {
    font-size: 1.1rem;
  }

  .contact-layout::after {
    min-height: 124px;
    background-size: 72% auto;
  }

  .site-footer {
    padding-bottom: 16px;
  }
}

@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;
    scroll-behavior: auto !important;
  }

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