:root {
  --ink: #1b2a2f;
  --sage: #245d4b;
  --rose: #b86663;
  --paper: #fffdf8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

.teaser {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.9) 0%, rgba(255, 253, 248, 0.7) 42%, rgba(255, 253, 248, 0.25) 100%),
    rgba(255, 253, 248, 0.24);
}

.teaser-content {
  width: min(760px, calc(100% - 40px));
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
}

.logo {
  width: clamp(180px, 24vw, 340px);
  height: auto;
  margin: 0 auto clamp(22px, 4vw, 38px);
  mix-blend-mode: multiply;
}

.kicker {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.subtitle {
  margin: clamp(18px, 3vw, 28px) auto 0;
  max-width: 520px;
  color: #31464b;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 700;
}

@media (max-width: 640px) {
  .overlay {
    background:
      linear-gradient(0deg, rgba(255, 253, 248, 0.95) 0%, rgba(255, 253, 248, 0.84) 55%, rgba(255, 253, 248, 0.36) 100%),
      rgba(255, 253, 248, 0.2);
  }

  .hero-bg {
    object-position: 42% center;
  }

  .teaser-content {
    align-self: end;
    padding-bottom: 70px;
  }

  .logo {
    width: min(240px, 58vw);
  }
}
