:root {
  --bg: #f7f1df;
  --ink: #121212;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fbf6e7 0%, var(--bg) 100%);
}

.page-shell {
  width: min(1100px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.banner {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 5.5;
  border-radius: 28px;
  background: #e9dfc7;
  box-shadow: var(--shadow);
}

.banner-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

h1,
p {
  margin-top: 0;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1rem 0;
}

.pepe {
  width: min(360px, 82vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.16));
}

h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(1.45rem, 3.15vw, 2.5rem);
  line-height: 1.05;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.04em;
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100%, calc(100% - 1rem));
    padding-top: 0.5rem;
  }

  .banner {
    border-radius: 20px;
  }

  h1 {
    white-space: normal;
  }
}
