:root {
  --blue: #2e5db2;
  --white: #ffffff;
  --watermark: rgba(255, 255, 255, 0.08);
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  background: var(--blue);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

#loading {
  width: 100vw;
  height: 100vh;
  background: var(--blue);
  position: fixed;
  inset: 0;
  z-index: 999;
}

#loading.is-out {
  animation: slideOutUp 1.2s both;
}

#loading.is-hidden {
  display: none;
}

#loading #preloader {
  position: relative;
  width: 100%;
  height: 30px;
  top: calc(50% - 15px);
  text-align: center;
  margin: 0 auto;
}

#loading #preloader::after {
  content: "Astral Cultural";
  position: absolute;
  text-transform: uppercase;
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  top: 35px;
  width: 100%;
  left: 0;
  right: 0;
  height: 1px;
  text-align: center;
}

#loading #preloader span {
  position: absolute;
  box-sizing: border-box;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

#loading #preloader span:nth-child(1) {
  width: 30px;
  height: 30px;
  left: calc(50% - 15px);
  border-bottom: 2px solid #0065b3;
  z-index: 10;
  animation: spin-1 1s infinite ease-in-out;
}

#loading #preloader span:nth-child(2) {
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
}

@keyframes spin-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #loading #preloader span:nth-child(1) {
    animation: none;
  }

  .watermark__track {
    animation: none;
  }
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--blue);
}

.watermark {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  overflow: hidden;
  color: var(--watermark);
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 7.4vw;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: lowercase;
  white-space: nowrap;
}

.watermark__track {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: watermark-scroll 40s linear infinite;
  will-change: transform;
}

.watermark__track.is-js {
  animation: none;
}

.watermark__group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 0.15em;
  padding-bottom: 0.15em;
}

.watermark__group > span {
  display: block;
}

.wm-light {
  font-weight: 400;
}

@keyframes watermark-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  column-gap: clamp(1.75rem, 4.5vw, 4rem);
  min-height: 100vh;
}

.col-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14.8vh 5.5vw 3.6vh 6.4vw;
}

.col-left__content {
  max-width: 38rem;
}

.col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3.5rem);
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand {
  margin: 0 0 8.9vh;
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: lowercase;
}

.brand__light {
  font-weight: 400;
}

.intro {
  margin: 0 0 3.5vh;
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
}

.intro:last-of-type {
  margin-bottom: 0;
}

.socials {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  width: auto;
  margin: 9.1vh 0 0;
  padding: 0;
  padding-inline-start: 0;
  list-style: none;
}

.socials li {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials a,
.contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.socials a:hover,
.contacts a:hover {
  opacity: 0.82;
}

.socials__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  background: var(--white);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.socials__badge img {
  width: 56%;
  height: 56%;
  object-fit: contain;
}

.socials__badge--facebook img {
  width: 100%;
  height: 100%;
}

.contacts img {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.contacts a {
  font-size: 0.82rem;
  font-weight: 400;
}

.cta,
.stores {
  margin: 0;
  max-width: 26rem;
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.45;
}

.marketplaces {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(0.45rem, 1.1vw, 0.9rem);
  margin: 3.2rem 0;
}

.market-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.15rem, 4.8vw, 3.9rem);
  height: clamp(3.15rem, 4.8vw, 3.9rem);
  background: var(--white);
  border-radius: 50%;
  text-decoration: none;
  color: var(--blue);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.market-btn img,
.market-btn svg {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.market-btn--magalu img {
  width: 82%;
  height: auto;
}

.market-btn--tiktok-shop img {
  width: 76%;
  height: 76%;
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  .page {
    overflow-x: hidden;
    min-height: auto;
  }

  .layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .watermark {
    width: 100%;
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .col-left {
    justify-content: flex-start;
    gap: 2.25rem;
    padding: 2.5rem 1.75rem 1.25rem;
    padding-left: max(1.75rem, env(safe-area-inset-left));
    padding-right: max(1.75rem, env(safe-area-inset-right));
  }

  .col-left__content {
    max-width: none;
  }

  .brand {
    margin-bottom: 1.75rem;
  }

  .intro {
    margin-bottom: 1.15rem;
  }

  .socials {
    width: auto;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.85rem 1.5rem;
  }

  .col-right {
    padding: 0.75rem 1.75rem 2.5rem;
    padding-left: max(1.75rem, env(safe-area-inset-left));
    padding-right: max(1.75rem, env(safe-area-inset-right));
  }

  .cta,
  .stores {
    max-width: 22rem;
  }

  .marketplaces {
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.75rem 0;
  }
}

@media (max-width: 480px) {
  .socials {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.85rem;
  }

  .market-btn {
    width: 2.75rem;
    height: 2.75rem;
  }
}
