:root {
  --bg: #f3eadf;
  --text: #3f3f41;
  --muted: #6f6a67;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Quicksand", "Nunito", Arial, sans-serif;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 6vw, 80px) 20px;
  overflow: hidden;
}

.hero {
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  display: block;
  width: min(78vw, 720px);
  height: auto;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.content {
  width: 100%;
}

.opening-title {
  margin: 0;
  font-family: "Baloo 2", "Nunito", "Quicksand", Arial, sans-serif;
  font-size: clamp(34px, 6.2vw, 82px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0.035em;
  color: var(--text);
  text-transform: uppercase;
  transform-origin: center;
  animation: softZoom 4.8s ease-in-out infinite;
  will-change: transform;
}

.address {
  margin: clamp(14px, 2.4vw, 24px) 0 0;
  font-size: clamp(17px, 2.1vw, 28px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.035em;
  color: var(--muted);
}

@keyframes softZoom {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.055);
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening-title {
    animation: none;
  }
}

@media (max-width: 560px) {
  .coming-soon {
    padding-inline: 18px;
  }

  .logo {
    width: min(92vw, 420px);
    margin-bottom: 28px;
  }

  .opening-title {
    letter-spacing: 0.02em;
    font-size: clamp(31px, 10vw, 48px);
  }

  .address {
    max-width: 280px;
    margin-inline: auto;
  }
}
