:root {
  --sunny: #d8b73a;
  --sunny-deep: #b89522;
  --cream: #fff9e8;
  --ink: #3c3112;
  --coffee: #73522b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 249, 232, 0.5), transparent 32rem),
    linear-gradient(135deg, #e7cc55 0%, var(--sunny) 45%, #caa834 100%);
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 4rem);
}

.hero {
  width: min(100%, 68rem);
  min-height: min(42rem, calc(100vh - 2.5rem));
  display: grid;
  grid-template-columns: minmax(16rem, 1.05fr) minmax(18rem, 0.95fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.25rem, 4vw, 3.5rem);
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: clamp(0.5rem, 1.5vw, 1rem);
  border: 0.18rem solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.hero::after {
  inset: clamp(1rem, 2.4vw, 1.75rem);
  border-color: rgba(115, 82, 43, 0.18);
}

.brand-mark {
  position: relative;
  z-index: 1;
}

.brand-mark img {
  width: 100%;
  display: block;
  border-radius: 0;
  box-shadow: 0 1.5rem 3.5rem rgba(74, 55, 12, 0.22);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 31rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cream);
  font-size: clamp(0.86rem, 1.4vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--white);
  font-family: "Baloo 2", "Nunito Sans", Arial, sans-serif;
  font-size: clamp(3.7rem, 10vw, 7.5rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow: 0 0.26rem 0 rgba(115, 82, 43, 0.18);
}

.tagline {
  width: min(100%, 28rem);
  margin: clamp(1.2rem, 2.2vw, 1.6rem) 0 0;
  color: rgba(60, 49, 18, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.launch-note {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: clamp(0.5rem, 2vw, 1rem);
}

.launch-note span {
  min-width: min(100%, 19rem);
  padding: 0.78rem 1.6rem;
  color: var(--sunny-deep);
  background: var(--white);
  border: 0.16rem solid rgba(255, 249, 232, 0.9);
  font-family: "Baloo 2", "Nunito Sans", Arial, sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: lowercase;
  box-shadow: 0 0.9rem 2rem rgba(74, 55, 12, 0.16);
}

@media (max-width: 760px) {
  .coming-soon {
    align-items: start;
    padding: 1rem;
  }

  .hero {
    min-height: calc(100vh - 2rem);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 1.5rem;
    align-content: center;
    text-align: center;
    padding: 2.3rem 1.4rem;
  }

  .hero-copy {
    justify-self: center;
  }

  .brand-mark {
    width: min(100%, 28rem);
    justify-self: center;
  }

  .tagline {
    margin-inline: auto;
  }

  .launch-note {
    align-self: start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(3.1rem, 18vw, 4.4rem);
  }

  .eyebrow {
    letter-spacing: 0.08em;
  }

  .launch-note span {
    min-width: 0;
    width: 100%;
  }
}
