@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Fraunces:opsz,wght@9..144,600&display=swap");

:root {
  color-scheme: light;
  --bg: #f6efe6;
  --ink: #1c1a16;
  --accent: #c6593a;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(1200px 800px at 10% 10%, #ffe7cc 0%, transparent 60%),
    radial-gradient(1000px 700px at 90% 20%, #fbd8d0 0%, transparent 55%),
    linear-gradient(180deg, #f6efe6 0%, #efe6da 100%);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.hero {
  width: min(900px, 92vw);
  background: var(--card);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(28, 26, 22, 0.18);
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
  animation: float-in 600ms ease-out both;
}

.hero__image {
  width: min(680px, 100%);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(28, 26, 22, 0.16);
}

.hero__title {
  margin: 0;
  font-family: "Fraunces", "Space Grotesk", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 0.01em;
}

.hero__subtitle {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #50483f;
}

@keyframes float-in {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 22px;
  }
}
