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

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

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  position: relative;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem 1.5rem;
  overflow: hidden;
  text-align: center;
}

.coming-soon__bg {
  position: fixed;
  inset: -12px;
  z-index: 0;
  background: #3d2914 url("/assets/images/body_bg.png") center center / cover no-repeat;
  filter: blur(6px);
  transform: scale(1.04);
}

.coming-soon__overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 12, 6, 0.35) 0%,
    rgba(20, 12, 6, 0.5) 45%,
    rgba(20, 12, 6, 0.62) 100%
  );
}

.coming-soon__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: min(100%, 42rem);
  gap: 2.5rem;
}

.coming-soon__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.coming-soon__logo {
  display: block;
  width: min(100%, 22rem);
  height: auto;
}

.coming-soon__since {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}

.coming-soon__message {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.coming-soon__title {
  margin: 0;
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.coming-soon__lead {
  margin: 0;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.coming-soon__footer {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-top: 1rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 480px) {
  .coming-soon {
    padding-top: 2rem;
  }

  .coming-soon__inner {
    gap: 2rem;
  }

  .coming-soon__logo {
    width: min(100%, 17rem);
  }
}
