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

@font-face {
  font-family: "Aller";
  src: url("../fonts/Aller-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

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

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

@font-face {
  font-family: "Arimo";
  src: url("../fonts/Arimo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --page-background: #1e4d53;
  --lime: #cffa94;
  --white: #ffffff;
  --content-width: 80.5%;
}

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

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

body {
  background: var(--page-background);
  color: var(--white);
  font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  font-synthesis: none;
}

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

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

.coming-soon {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.coming-soon::before {
  position: absolute;
  z-index: -1;
  top: -7.9vw;
  left: -3vw;
  width: 29vw;
  height: 8vw;
  content: "";
  background: var(--lime);
  transform: rotate(-8deg);
  transform-origin: right bottom;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: var(--content-width);
  max-width: 1545px;
  margin: 0 auto;
  padding-top: clamp(28px, 5.4vw, 104px);
}

.partners {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 52px);
  width: clamp(245px, 27vw, 520px);
  padding-top: clamp(15px, 2.1vw, 40px);
}

.partners img {
  width: 27%;
  max-height: clamp(30px, 3.7vw, 70px);
  object-fit: contain;
}

.main-logo {
  width: clamp(145px, 15.4vw, 295px);
}

.hero {
  z-index: 1;
  flex: 1;
  width: var(--content-width);
  max-width: 1545px;
  margin: 0 auto;
}

.construction-label {
  margin: clamp(8px, 1vw, 20px) 0 clamp(22px, 2.4vw, 46px);
  color: var(--lime);
  font-size: clamp(18px, 2.15vw, 41px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-content {
  width: min(85%, 1310px);
}

.season {
  font-family: "Aller", sans-serif;
  margin: 0 0 clamp(10px, 1.2vw, 23px);
  color: var(--lime);
  font-size: clamp(20px, 2.45vw, 47px);
  font-weight: 400 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.title {
  margin: 0;
}

.title img {
  width: 100%;
}

.presentation {
  margin: clamp(3px, 0.45vw, 9px) 0 0;
  font-size: clamp(23px, 3vw, 58px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.artistic-project {
  margin: clamp(25px, 3.6vw, 70px) 0 0;
  color: var(--lime);
  font-size: clamp(16px, 1.55vw, 30px);
  letter-spacing: 0.04em;
}

.wave-area {
  position: relative;
  z-index: 1;
  flex: 0 0 clamp(190px, 28vw, 430px);
  width: 100%;
  margin-top: -100px;
  overflow: hidden;
}

.wave {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 110%;
  height: 100%;
  max-width: none;
  pointer-events: none;
  transform: translateX(-50%);
}

.site-footer {
  z-index: 2;
  width: 100%;
  padding: 0 3vw clamp(12px, 1.5vw, 28px);
  font-size: clamp(8px, 0.68vw, 13px);
  letter-spacing: 0.02em;
  line-height: 1.7;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-links a::before {
  margin: 0 0.7em;
  content: "|";
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--lime);
}

@media (max-width: 760px) {
  :root {
    --content-width: calc(100% - 36px);
  }

  .coming-soon {
    min-height: 100svh;
  }

  .coming-soon::before {
    top: calc(-48px - 4vw);
    left: -25px;
    width: 56vw;
    height: 48px;
  }

  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
  }

  .partners {
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding-top: 0;
  }

  .partners img {
    width: min(25%, 90px);
    max-height: 34px;
  }

  .main-logo {
    width: 115px;
  }

  .construction-label {
    margin: 28px 0 48px;
    font-size: 16px;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .season {
    font-size: clamp(15px, 4.4vw, 22px);
    letter-spacing: 0.05em;
  }

  .presentation {
    font-size: clamp(19px, 6vw, 30px);
    letter-spacing: 0.04em;
  }

  .artistic-project {
    margin-top: 30px;
    font-size: 15px;
  }

  .wave-area {
    flex-basis: 220px;
    margin-top: 0px;
  }

  .wave {
    inset: 0 auto 0 28%;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
  }

  .site-footer {
    padding: 12px 18px 16px;
    font-size: 9px;
    line-height: 1.55;
  }

  .footer-links {
    display: block;
  }

  .footer-links a:first-child::before {
    display: none;
  }
}
