:root {
  --orange: #ef741c;
  --brown: #983519;
  --page-bg: #f8dfbf;
  --site-font: "AllRoundGothic", Arial, Helvetica, sans-serif;
}

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

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

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

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--orange);
  font-family: var(--site-font);
  background: var(--page-bg);
}

.coming-soon-shell {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  place-items: center;
  background: url("../img/background.jpeg") center / cover no-repeat
    var(--page-bg);
}

.brand-stage {
  position: relative;
  z-index: 1;
  width: min(88vw, 1200px);
  margin-top: clamp(12px, 4vh, 48px);
  padding-bottom: clamp(112px, 18vh, 185px);
  text-align: center;
}

.brand-logo {
  display: block;
  width: clamp(96px, 11vw, 164px);
  height: auto;
  margin: 0 auto clamp(20px, 2.5vw, 36px);
  filter: drop-shadow(0 13px 12px rgba(112, 60, 12, 0.22));
}

h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(4rem, 8.6vw, 10.2rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 rgba(96, 32, 13, 0.62),
    0 7px 8px rgba(81, 42, 20, 0.25);
}

.tagline {
  margin: clamp(22px, 3.2vw, 40px) 0 clamp(55px, 7.4vw, 96px);
  color: var(--orange);
  font-size: clamp(1.3rem, 2.25vw, 2.65rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.coming-row {
  display: grid;
  width: min(63vw, 1205px);
  margin: 0 auto;
  grid-template-columns: minmax(46px, 1fr) auto minmax(46px, 1fr);
  align-items: center;
  gap: clamp(14px, 1.9vw, 34px);
}

.coming-row span {
  position: relative;
  display: block;
  height: clamp(5px, .6vw, 11px);
  overflow: hidden;
}

.coming-row span::before,
.coming-row span::after {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
  background: var(--brown);
}

.coming-row span::before {
  top: 0;
  bottom: 0;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.coming-row span::after {
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.coming-row span:last-child::before {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.coming-row strong {
  color: var(--brown);
  font-size: clamp(1.65rem, 3.1vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
}

.social-panel {
  position: absolute;
  right: 0;
  bottom: clamp(22px, 4vh, 46px);
  left: 0;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(13px, 1.6vh, 19px);
  color: var(--brown);
}

.social-panel p {
  margin: 0;
  font-size: clamp(1.65rem, 2.65vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.social-links a {
  display: grid;
  width: clamp(42px, 3.8vw, 62px);
  height: clamp(42px, 3.8vw, 62px);
  place-items: center;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.social-links a:not(:last-child) {
  border-right: 2px solid rgba(152, 53, 25, 0.82);
  margin-right: clamp(12px, 1.6vw, 28px);
  padding-right: clamp(12px, 1.6vw, 28px);
}

.social-links a:hover,
.social-links a:focus-visible {
  opacity: 0.82;
  transform: translateY(-2px);
}

.social-links a:focus-visible {
  outline: 3px solid rgba(152, 53, 25, 0.35);
  outline-offset: 6px;
}

.social-links img {
  display: block;
  width: clamp(32px, 2.6vw, 48px);
  height: clamp(32px, 2.6vw, 48px);
  object-fit: contain;
}

@media (max-width: 900px) {
  .coming-soon-shell {
    /* background-image: url("../img/mobile-bg.png"); */
    background-position: center top;
  }

  .brand-stage {
    width: min(92vw, 720px);
    padding-bottom: clamp(140px, 22vh, 210px);
  }

  h1 {
    font-size: clamp(4.2rem, 16vw, 7.4rem);
    line-height: 0.86;
  }

  .tagline {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1rem, 4.2vw, 2rem);
  }

  .coming-row {
    width: min(82vw, 620px);
  }
}

@media (max-width: 560px) {
  .brand-stage {
    margin-top: clamp(8px, 2.5vh, 28px);
    padding-bottom: 160px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
  }

  .brand-logo {
    width: clamp(78px, 27vw, 128px);
  }

  h1 {
    font-size: clamp(2.45rem, 9vw, 5.9rem);
    white-space: normal;
  }

  .tagline {
    margin-top: 18px;
    margin-bottom: 52px;
  }

  .coming-row {
    gap: 12px;
  }

  .coming-row strong {
    font-size: clamp(1.25rem, 6vw, 1.9rem);
  }

  .social-panel {
    bottom: 22px;
  }

  .social-panel p {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }

  .social-links a {
    width: 35px;
    height: 35px;
  }

  .social-links a:not(:last-child) {
    margin-right: 9px;
    padding-right: 9px;
    border-right-width: 1px;
  }

  .social-links img {
    width: 28px;
    height: 28px;
  }
}

@media (max-height: 700px) and (orientation: landscape) {
  .brand-logo {
    display: none;
  }

  .brand-stage {
    margin-top: 3vh;
    padding-bottom: 118px;
  }

  .tagline {
    margin-top: 16px;
    margin-bottom: 42px;
  }

  .social-panel {
    bottom: 18px;
  }
}
