@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --charcoal: #1F2225;
  --orange: #D25F29;
  --white: #FFFFFF;
  --muted: #70767B;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--white);
  color: var(--charcoal);
  font-family: "Montserrat", Arial, sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------
   TOP BRAND AREA
-------------------------------------------------- */

.brand-header {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0 30px;
  border-bottom: 1px solid rgba(31, 34, 37, .12);
  text-align: center;
}

.company {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
}

.tagline {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .19em;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.hero {
  width: min(900px, calc(100% - 48px));
  margin: auto;
  padding: 58px 0 64px;
  text-align: center;
}

.logo-container {
  width: min(480px, 72vw);
  margin: 0 auto;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.orange-rule {
  width: 72px;
  height: 3px;
  background: var(--orange);
  margin: 30px auto 30px;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(64px, 9.4vw, 112px);
  line-height: .86;
  font-weight: 400;
  letter-spacing: .025em;
}

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

.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 46px;
}

.coming-soon span {
  width: 54px;
  height: 2px;
  background: var(--orange);
}

.coming-soon strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

footer {
  min-height: 54px;
  margin-top: auto;
  padding: 16px 24px;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .22em;
}

.footer-mark {
  width: 20px;
  height: 2px;
  background: var(--orange);
}

/* --------------------------------------------------
   MOBILE
-------------------------------------------------- */

@media (max-width: 640px) {

  .brand-header {
    width: calc(100% - 32px);
    padding: 24px 0 22px;
  }

  .company {
    font-size: 8px;
    letter-spacing: .19em;
  }

  .tagline {
    margin-top: 8px;
    font-size: 8px;
    line-height: 1.6;
    letter-spacing: .13em;
  }

  .hero {
    width: calc(100% - 32px);
    padding: 40px 0 48px;
  }

  .logo-container {
    width: min(390px, 88vw);
  }

  .orange-rule {
    width: 58px;
    margin: 25px auto 25px;
  }

  h1 {
    font-size: clamp(55px, 16vw, 82px);
    line-height: .88;
  }

  .coming-soon {
    gap: 10px;
    margin-top: 35px;
  }

  .coming-soon span {
    width: 30px;
  }

  .coming-soon strong {
    font-size: 8px;
    letter-spacing: .2em;
  }

  footer {
    font-size: 7px;
    letter-spacing: .15em;
  }
}
