@import url("https://fonts.googleapis.com/css2?family=Ranchers&family=Rye&family=Special+Elite&display=swap");

:root {
  --ink: #f7f0df;
  --ink-soft: #dec7a0;
  --panel: rgba(21, 14, 9, 0.5);
  --line: rgba(245, 217, 168, 0.32);
  --accent: #e0b46c;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Special Elite", "Trebuchet MS", sans-serif;
  color: var(--ink);
  overflow: hidden;
  background: #0d0906;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(9, 6, 3, 0.68) 0%, rgba(20, 13, 7, 0.45) 38%, rgba(10, 6, 3, 0.72) 100%),
    radial-gradient(circle at 80% 18%, rgba(226, 178, 100, 0.26) 0%, rgba(226, 178, 100, 0.04) 26%, rgba(0, 0, 0, 0) 57%),
    url("Scheunentor.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.02);
  z-index: -2;
  animation: settle 1.25s cubic-bezier(0.2, 0.78, 0.24, 1) forwards;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(transparent 96%, rgba(255, 235, 204, 0.06) 96%),
    linear-gradient(90deg, transparent 96%, rgba(255, 235, 204, 0.05) 96%);
  background-size: 42px 42px;
  opacity: 0.3;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 3vw, 2.4rem);
}

.hero {
  width: min(780px, 100%);
  background: linear-gradient(145deg, var(--panel), rgba(27, 18, 11, 0.24));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transform: translateY(18px);
  opacity: 0;
  animation: rise 850ms ease-out 190ms forwards;
}

.hero-copy {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.kicker {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.kicker::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

h1 {
  font-family: "Rye", serif;
  font-size: clamp(2.4rem, 9vw, 5.6rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
  color: #f9ebcd;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.domain {
  font-family: "Rye", serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: #f1d5a4;
  letter-spacing: 0.08em;
}

@keyframes rise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes settle {
  from {
    transform: scale(1.09);
  }

  to {
    transform: scale(1.045);
  }
}

@media (max-width: 720px) {
  body {
    overflow: auto;
  }

  .hero {
    width: min(640px, 100%);
  }
}
