:root {
  --navy: #03102f;
  --white: #f7f9ff;
  --gold: #d5ad45;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url("bg-lines.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-center {
  position: absolute;
  top: 7.5%;
  left: 50%;
  width: min(56vw, 700px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: block;
  width: min(42vw, 590px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.gold-line {
  width: 95px;
  height: 2px;
  margin: 20px auto 22px;
  background: linear-gradient(90deg, transparent, var(--gold) 14%, var(--gold) 86%, transparent);
  opacity: .95;
}

.tagline {
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.6vw, 26px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -.01em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .15);
}

.tagline span {
  display: block;
}

.statement {
  position: absolute;
  left: 50%;
  bottom: 3.3%;
  width: calc(100% - 28px);
  transform: translateX(-50%);
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(17px, 1.45vw, 26px);
  line-height: 1.28;
  font-weight: 400;
  font-style: italic;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .16);
}

@media (max-width: 1100px) {
  .hero-center {
    top: 9%;
    width: min(72vw, 650px);
  }

  .logo {
    width: min(56vw, 540px);
  }

  .statement {
    width: min(94vw, 980px);
    white-space: normal;
  }
}

@media (max-width: 700px) {
  body {
    overflow: auto;
  }

  .hero {
    min-height: 100svh;
    background-position: 53% center;
  }

  .hero-center {
    top: 10%;
    width: 90vw;
  }

  .logo {
    width: 88vw;
    max-width: 520px;
  }

  .gold-line {
    width: 75px;
    margin-top: 14px;
    margin-bottom: 18px;
  }

  .tagline {
    width: 92vw;
    font-size: clamp(14px, 4.1vw, 20px);
    line-height: 1.35;
  }

  .tagline span + span {
    margin-top: 4px;
  }

  .statement {
    bottom: 4%;
    width: 90vw;
    font-size: clamp(15px, 4vw, 19px);
    line-height: 1.4;
    white-space: normal;
  }
}
