:root {
  --navy: #0b2545;
  --navy-dark: #071b33;
  --gold: #d7a83a;
  --gold-dark: #9d6a0a;
  --sky: #a8d2ef;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--navy-dark);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
}

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

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

.landing-header {
  position: absolute;
  z-index: 10;
  width: 100%;
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  height: 104px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font: 700 7px/.95 "Outfit", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark span,
.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font: 700 20px/1.1 "Outfit", sans-serif;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .7;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy-dark) url("banner_top.webp") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 51, .72) 0%, rgba(7, 27, 51, .52) 33%, rgba(7, 27, 51, .22) 58%, rgba(7, 27, 51, .04) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 50px;
  padding-top: 110px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sky);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  margin-right: 12px;
  background: currentColor;
  vertical-align: middle;
}

h1 {
  margin: 0;
  font: 700 clamp(4.4rem, 9vw, 8.5rem)/.76 "Outfit", sans-serif;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

h1 span {
  color: var(--gold);
}

.hero-subtitle {
  margin: 32px 0;
  color: #d8e7f4;
  font: 500 clamp(1.15rem, 2.1vw, 1.75rem)/1.35 "Outfit", sans-serif;
}

.coming-soon {
  max-width: 570px;
  margin: 0;
  color: #d8e7f4;
  font-size: 15px;
  line-height: 1.7;
}

.hero-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.hero-contacts a {
  display: grid;
  gap: 5px;
}

.hero-contacts small {
  color: var(--sky);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-contacts span {
  font: 600 14px/1.35 "Outfit", sans-serif;
  transition: color .2s;
}

.hero-contacts a:hover span {
  color: var(--gold);
}

.hero-art {
  align-self: end;
  padding-bottom: 90px;
}

.hero-slogan {
  position: relative;
  top: 125px;
  display: table;
  max-width: 100%;
  margin: 0 1% 0 auto;
  padding: 22px 38px;
  background: var(--gold);
  box-shadow: 0 14px 36px rgba(7, 27, 51, .32);
  color: var(--navy-dark);
  font: 800 clamp(2.2rem, 4vw, 4.4rem)/.95 "Outfit", sans-serif;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .header-inner {
    height: 82px;
  }

  .hero {
    background-position: 72% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 27, 51, .74) 0%, rgba(7, 27, 51, .48) 58%, rgba(7, 27, 51, .12) 100%);
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    padding: 145px 0 90px;
  }

  .hero-art {
    padding: 15px 0 0;
  }
}

@media (max-width: 600px) {
  .container,
  .header-inner {
    width: min(100% - 30px, 1180px);
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    max-width: 220px;
    font-size: 8px;
    letter-spacing: .14em;
  }

  .hero {
    background-position: 76% top;
    background-size: auto calc(100% + 40px);
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 27, 51, .76) 0%, rgba(7, 27, 51, .54) 68%, rgba(7, 27, 51, .28) 100%);
  }

  .hero-content {
    width: min(100% - 30px, 1180px);
  }

  h1 {
    font-size: clamp(4rem, 23vw, 6rem);
  }

  .hero-subtitle {
    margin: 24px 0;
  }

  .coming-soon {
    max-width: 420px;
    font-size: 13px;
  }

  .hero-contacts {
    gap: 16px 28px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .hero-contacts span {
    font-size: 13px;
  }

  .hero-slogan {
    top: 65px;
    margin-right: 2%;
    padding: 16px 22px;
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
