* {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", Arial, sans-serif;
  background: #fffaf4;
  color: #111111;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px 24px 40px;
}

.content {
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-12px);
}

.logo {
  width: min(462px, 76vw);
  height: auto;
  display: block;
  margin-bottom: -2px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.05rem, 4.1vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 900;
  white-space: nowrap;
}

.subtitle {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: clamp(1rem, 1.8vw, 1.26rem);
  line-height: 1.45;
  font-weight: 500;
  color: #474747;
}

.instagram {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 160ms ease, opacity 160ms ease;
}

.instagram:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.soon {
  margin: 18px 0 0;
  font-size: 0.86rem;
  color: #787878;
}

@media (max-width: 900px) {
  .content {
    transform: none;
  }
  h1 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 24px 18px 32px;
  }

  .content {
    transform: none;
  }

  .logo {
    width: min(374px, 88vw);
  }

  h1 {
    font-size: clamp(2.1rem, 11.2vw, 3.45rem);
    white-space: normal;
  }

  .subtitle {
    margin-top: 16px;
  }

  .instagram {
    width: 100%;
    max-width: 340px;
    padding: 0 20px;
    font-size: 0.95rem;
  }
}
