@font-face {
  font-family: "Grtsk Giga";
  src: url("./fonts/GrtskGiga-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Grtsk Tera";
  src: url("./fonts/GrtskTera-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Grtsk Peta";
  src: url("./fonts/GrtskPeta-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Grtsk Peta";
  src: url("./fonts/GrtskPeta-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

:root {
  --bg: #000000;
  --text: #ffffff;
  --accent: #ba7b50;
  --line: rgba(255, 255, 255, 0.2);
  --line-dim: rgba(255, 255, 255, 0.5);
  --header-height: 127px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

body {
  overflow-x: hidden;
  font-family: "Grtsk Peta", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.splash__noise,
.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39' height='39' viewBox='0 0 39 39'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.4' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='discrete' tableValues='0 1'/%3E%3CfeFuncG type='discrete' tableValues='0 1'/%3E%3CfeFuncB type='discrete' tableValues='0 1'/%3E%3CfeFuncA type='table' tableValues='0 0.85'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='39' height='39' filter='url(%23n)' fill='white'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-position: center;
  background-size: 39px 39px;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  background: #000;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.splash__noise {
  z-index: 2;
}

.splash__brand {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 259px;
  height: 201px;
  padding: 17.086px;
  transform: translate(-50%, -50%);
  filter: blur(14px);
  opacity: 0;
  z-index: 3;
  animation:
    splash-brand-in 1400ms cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards,
    splash-brand-out 1400ms cubic-bezier(0.22, 1, 0.36, 1) 2220ms forwards;
}

.splash__brand-mark,
.splash__brand-aoe,
.splash__brand-group {
  position: absolute;
  display: block;
}

.splash__brand-mark {
  top: 17px;
  left: 90.4px;
  width: 81.868px;
  height: 71.19px;
}

.splash__brand-aoe {
  top: 122.876px;
  left: 17.086px;
  width: 224.829px;
  height: 37.316px;
}

.splash__brand-group {
  top: 176.456px;
  left: 72.036px;
  width: 120.102px;
  height: 12.439px;
}

.hero {
  position: relative;
  width: 100vw;
  min-width: 1280px;
  height: 100vh;
  min-height: 1024px;
  overflow: hidden;
  background: #000000;
  color: var(--text);
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero.is-ready {
  opacity: 1;
}

.hero__glow {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.hero__noise {
  z-index: 10;
}

.hero__glow--left {
  top: -75px;
  left: -255px;
  width: 621px;
  height: 207px;
}

.hero__glow--right {
  right: -72.1533px;
  bottom: -84.2988px;
  width: 575px;
  height: 191px;
}

.hero__glow-asset {
  position: absolute;
  display: block;
  max-width: none;
}

.hero__glow-asset--left {
  inset: -78.74% -26.25%;
  width: 947.03px;
  height: 533.02px;
}

.hero__glow-asset--right {
  inset: -80.89% -26.87%;
  width: 884.01px;
  height: 500px;
}

.hero__header {
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  width: auto;
  height: var(--header-height);
  z-index: 5;
}

.hero__logo-link {
  position: absolute;
  top: 47.5px;
  left: 0;
  display: inline-flex;
}

.hero__logo {
  display: block;
  width: 119px;
  height: 32px;
}

.hero__links {
  position: absolute;
  top: 32px;
  right: 0;
  display: flex;
  gap: 71px;
  align-items: flex-start;
}

.hero-link {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  width: 161px;
  color: var(--text);
  text-decoration: none;
}

.hero-link--address {
  width: 316px;
}

.hero-link__icon {
  display: inline-flex;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.hero-link__icon svg {
  display: block;
  width: 12px;
  height: 12px;
}

.hero-link__text {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

.hero__menu-toggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  z-index: 7;
}

.hero__menu-line {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1px;
  background: var(--accent);
  transform-origin: center;
  transition:
    top 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease;
}

.hero__menu-line--top {
  top: 18px;
}

.hero__menu-line--bottom {
  top: 26px;
}

.hero__menu-toggle.is-open .hero__menu-line--top {
  top: 22px;
  transform: rotate(45deg);
}

.hero__menu-toggle.is-open .hero__menu-line--bottom {
  top: 22px;
  transform: rotate(-45deg);
}

.hero__mobile-menu {
  display: none;
}

.hero__intro {
  position: absolute;
  top: 137px;
  left: 40px;
  right: 40px;
  width: auto;
  height: 161px;
  z-index: 5;
}

.hero__title {
  margin: 0;
  font-family: "Grtsk Giga", sans-serif;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.64px;
  font-weight: 600;
}

.hero__subtitle {
  width: 494px;
  margin: 16px 0 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
}

.hero__video-frame {
  position: absolute;
  left: calc(8.333333vw + 35px);
  right: calc(8.333333vw + 36px);
  bottom: 232px;
  width: auto;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  z-index: 2;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__video-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1369 770.06' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><rect x='0' y='0' width='100%25' height='100%25' fill='url(%23grad)' opacity='1'/><defs><radialGradient id='grad' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(4.1914e-15 38.503 -68.45 -1.1472e-13 684.5 385.03)'><stop stop-color='rgba(0,0,0,0)' offset='0'/><stop stop-color='rgba(0,0,0,0.5)' offset='0.5'/><stop stop-color='rgba(0,0,0,1)' offset='1'/></radialGradient></defs></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.hero__cards {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 39px;
  width: auto;
  height: auto;
  z-index: 5;
}

.hero__cards-track {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.reveal-fade {
  --reveal-base-transform: none;
  opacity: 0;
  filter: blur(12px);
  transform: var(--reveal-base-transform) translateY(16px);
  transition:
    opacity 805ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 805ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 805ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-fade.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: var(--reveal-base-transform) translateY(0);
}

.reveal-letters {
  opacity: 1;
}

.reveal-letter {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(14px);
  transition:
    opacity 440ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 440ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-space {
  white-space: pre;
}

.reveal-break {
  display: block;
  height: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  justify-content: flex-start;
  flex: 1 0 0;
  min-width: 0;
  color: var(--text);
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.service-card__progress {
  position: relative;
  width: 100%;
  height: 3px;
  background: var(--line);
}

.service-card__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 63px;
  height: 3px;
  background: var(--accent);
}

.service-card__title {
  width: 100%;
  margin: 20px 0 0;
  font-family: "Grtsk Tera", sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

.service-card__body {
  width: 100%;
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.3;
  color: var(--line-dim);
  transition: color 180ms ease;
}

.service-card--active .service-card__body {
  color: var(--text);
}

.service-card:hover:not(.service-card--active) .service-card__progress,
.service-card.is-hover .service-card__progress {
  background: rgba(255, 255, 255, 0.3);
}

.service-card:hover:not(.service-card--active) .service-card__body,
.service-card.is-hover .service-card__body {
  color: rgba(255, 255, 255, 0.8);
}

.service-card--active .service-card__progress {
  background: rgba(255, 255, 255, 0.2);
}

.service-card:nth-child(1) { min-height: 115px; }
.service-card:nth-child(2) { min-height: 141px; }
.service-card:nth-child(3) { min-height: 222px; }
.service-card:nth-child(4) { min-height: 167px; }

@media (max-width: 743px) {
  .splash__brand {
    width: 160px;
    height: 124px;
    padding: 10.555px;
  }

  .splash__brand-mark {
    top: 0;
    left: 45.3px;
    width: 50.575px;
    height: 43.978px;
  }

  .splash__brand-aoe {
    top: 65.35px;
    left: 0;
    width: 138.89px;
    height: 23.053px;
  }

  .splash__brand-group {
    top: 98.45px;
    left: 33.95px;
    width: 74.194px;
    height: 7.684px;
  }

  .hero {
    min-width: 360px;
    min-height: 100dvh;
    height: 100dvh;
  }

  .hero__header {
    left: 16px;
    right: 16px;
    top: 16px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 7;
  }

  .hero__logo-link {
    position: static;
  }

  .hero__logo {
    width: 107.1px;
    height: 28.8px;
  }

  .hero__links {
    display: none;
  }

  .hero__menu-toggle {
    display: block;
  }

  .hero__mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 246px;
    display: block;
    z-index: 6;
    background: rgba(0, 0, 0, 0.21);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition:
      transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0ms linear 720ms;
  }

  .hero__mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
      transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0ms linear 0ms;
  }

  .hero__mobile-menu-links {
    position: absolute;
    top: 108px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero-link--mobile {
    display: flex;
    width: 100%;
  }

  .hero-link--address-mobile {
    width: 100%;
  }

  .hero__intro {
    top: 84px;
    left: 16px;
    right: 15px;
    height: 94px;
    z-index: 5;
  }

  .hero__title {
    font-size: 28px;
    letter-spacing: -0.28px;
  }

  .hero__subtitle {
    width: 100%;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.2;
  }

  .hero__video-frame {
    left: 0;
    right: 0;
    top: 206px;
    bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 390 / 293;
    transform: none;
  }

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

  .hero__video-vignette {
    background-image: linear-gradient(
      180deg,
      rgb(0, 0, 0) 0%,
      rgba(0, 0, 0, 0.28) 8%,
      rgba(0, 0, 0, 0) 18%,
      rgba(0, 0, 0, 0) 82%,
      rgba(0, 0, 0, 0.28) 92%,
      rgb(0, 0, 0) 100%
    );
    background-size: 100% 100%;
  }

  .hero__cards {
    left: 16px;
    right: 0;
    bottom: 24px;
    width: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    touch-action: pan-x;
  }

  .hero__cards::-webkit-scrollbar {
    display: none;
  }

  .hero__cards.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .hero__cards-track {
    width: max-content;
    padding-right: 16px;
    gap: 16px;
    transition: none;
  }

  .service-card {
    flex: 0 0 216px;
    width: 216px;
    min-height: auto;
  }

  .service-card__progress,
  .service-card__progress-fill {
    height: 2px;
  }

  .service-card__title {
    margin-top: 16px;
    font-size: 18px;
  }

  .service-card__body {
    margin-top: 4px;
    font-size: 16px;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    min-height: auto;
  }

  .hero__glow--left {
    top: -42px;
    left: -228px;
    width: 505px;
    height: 169px;
  }

  .hero__glow--right {
    right: -145px;
    bottom: -40px;
    width: 397px;
    height: 131px;
  }
}

@media (min-width: 744px) and (max-width: 1279px) {
  .hero {
    min-width: 744px;
    min-height: 1133px;
  }

  .hero__header {
    left: 24px;
    right: 24px;
    height: 111px;
  }

  .hero__logo-link {
    top: 40px;
  }

  .hero__links {
    top: 40px;
    right: 0;
    width: 283px;
    flex-direction: column;
    gap: 24px;
  }

  .hero-link,
  .hero-link--address {
    width: 283px;
  }

  .hero__intro {
    top: 211px;
    left: 24px;
    right: 24px;
    height: 137px;
  }

  .hero__title {
    font-size: 44px;
    letter-spacing: -0.44px;
  }

  .hero__video-frame {
    left: 0;
    right: 0;
    top: 415px;
    bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 744 / 419;
    transform: none;
  }

  .hero__video {
    object-fit: fill;
  }

  .hero__video-vignette {
    background-image: linear-gradient(
      180deg,
      rgb(0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 10.465%,
      rgba(0, 0, 0, 0) 90.42%,
      rgb(0, 0, 0) 100%
    );
    background-size: 100% 100%;
  }

  .hero__cards {
    left: 24px;
    right: 0;
    bottom: 40px;
    width: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    touch-action: pan-x;
  }

  .hero__cards::-webkit-scrollbar {
    display: none;
  }

  .hero__cards.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .hero__cards-track {
    width: max-content;
    padding-right: 24px;
    transition: none;
  }

  .service-card {
    flex: 0 0 283px;
    width: 283px;
  }

  .service-card:nth-child(1) { min-height: 115px; }
  .service-card:nth-child(2) { min-height: 141px; }
  .service-card:nth-child(3) { min-height: 193px; }
  .service-card:nth-child(4) { min-height: 167px; }

  .hero__glow--left {
    top: -75.2988px;
    left: -284.1533px;
  }

  .hero__glow--right {
    right: -236.8467px;
    bottom: -84.7012px;
  }
}

@media (min-width: 1440px) {
  .hero {
    min-width: 1440px;
  }

  .hero__video-frame {
    left: calc(8.333333vw + 35px);
    right: calc(8.333333vw + 36px);
    bottom: 232px;
    width: auto;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .service-card:nth-child(1) { min-height: 115px; }
  .service-card:nth-child(2) { min-height: 141px; }
  .service-card:nth-child(3) { min-height: 193px; }
  .service-card:nth-child(4) { min-height: 167px; }
}

@media (min-width: 1728px) {
  .hero {
    min-width: 1728px;
    min-height: 1117px;
  }

  .hero__header {
    left: 50%;
    right: auto;
    width: 1642px;
    transform: translateX(-50%);
    --reveal-base-transform: translateX(-50%);
  }

  .hero__intro {
    left: 50%;
    right: auto;
    width: 1642px;
    transform: translateX(-50%);
  }

  .hero__video-frame {
    left: 50%;
    right: auto;
    bottom: 232px;
    transform: translateX(-50%);
    width: 1369px;
    height: 770.0625px;
    aspect-ratio: auto;
  }

  .hero__cards {
    left: 50%;
    right: auto;
    width: 1642px;
    bottom: 39px;
    transform: translateX(-50%);
    --reveal-base-transform: translateX(-50%);
  }

  .hero-link--address {
    width: 387px;
  }

  .service-card:nth-child(1) { min-height: 86px; }
  .service-card:nth-child(2) { min-height: 141px; }
  .service-card:nth-child(3) { min-height: 167px; }
  .service-card:nth-child(4) { min-height: 141px; }
}

@keyframes splash-brand-in {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translate(-50%, -50%) scale(0.94);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes splash-brand-out {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    filter: blur(18px);
    transform: translate(-50%, -50%) scale(1.03);
  }
}
