:root {
  --cream: #f2e3d0;
  --text-light: #fdf6ec;
  --radius: 14px;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Cream border around the whole stage */
.frame {
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(10px, 1.4vw, 22px);
  background: var(--cream);
}

/* Hero card with the sunset image */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - clamp(20px, 2.8vw, 44px));
  min-height: calc(100dvh - clamp(20px, 2.8vw, 44px));
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 5vh, 72px) clamp(20px, 6vw, 96px)
    clamp(24px, 4vh, 56px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
  user-select: none;
}

/* Top asterisk icon */
.hero__icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: auto;
  margin-top: clamp(4px, 2vh, 18px);
}

/* Live intro paragraph */
.hero__intro {
  position: relative;
  z-index: 1;
  margin: clamp(28px, 6vh, 70px) 0 auto;
  max-width: 50rem;
  text-align: center;
  font-size: clamp(0.8125rem, 0.75rem + 0.3vw, 0.875rem);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

/* Logo wordmark, anchored to the bottom */
.hero__logo {
  position: relative;
  z-index: 1;
  width: 82%;
  max-width: 910px;
  height: auto;
  margin-top: auto;
  user-select: none;
}

.hero__logo .cls-1 {
  fill: var(--text-light);
}

.hero__logo .cls-2 {
  fill: #f3b03d;
}

@media (max-width: 640px) {
  .hero {
    padding-left: clamp(16px, 7vw, 40px);
    padding-right: clamp(16px, 7vw, 40px);
  }

  .hero__bg {
    object-position: center 40%;
  }

  .hero__intro {
    line-height: 1.7;
    max-width: 24em;
    margin-top: auto;
    margin-bottom: auto;
  }

  .hero__icon {
    width: 35px;
  }
}
