* {
  box-sizing: border-box;
}


a {
  color: inherit;
  text-decoration: none;
}

/* DOLL RAIN BACKGROUND */

.doll-rain {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}


body {
  margin: 0;
  background: #0d0b0a;
  color: #efe8dc;
  font-family: "IBM Plex Mono", monospace;
}


.doll-rain img {
  position: absolute;
  top: -160px;
  left: var(--x);
  width: var(--size);
  opacity: 0.22;
  filter: blur(0.2px);
  animation: dollFall var(--duration) linear infinite;
  animation-delay: var(--delay);
}

@keyframes dollFall {
  0% {
    transform: translateY(-180px) rotate(0deg);
  }

  100% {
    transform: translateY(calc(100vh + 220px)) rotate(var(--spin));
  }
}

/* PAGE */

.home {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 24px;
}

/* HEADER */

.site-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(239, 232, 220, 0.18);
}

.site-name {
  font-family: Georgia, serif;
  font-size: 22px;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CENTERED HERO */

.hero-layout {
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  text-align: center;
}

.hero {
  max-width: 980px;
}


h1 {
  margin: 0;
  font-family: "UnifrakturMaguntia", Georgia, serif;
  font-weight: normal;
  font-size: clamp(46px, 9vw, 120px);
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0.02em;
}

.byline {
  margin: 24px auto 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  color: #b7a99a;
}


.byline {
  margin: 24px auto 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  color: #b7a99a;
}

.intro {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 20px;
  line-height: 1.5;
  color: #d8cec2;
}

/* STATIC BUTTON LINEUP */

.carousel-window {
  width: 100%;
  margin: 0 auto;
}

.button-lineup {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(18px, 4vw, 48px);
  flex-wrap: wrap;
  padding: 20px 0;
}

.image-button {
  display: grid;
  place-items: center;
  gap: 8px;
  background: transparent;
}

.button-content {
  display: grid;
  place-items: center;
  gap: 8px;
}

.image-button img {
  width: clamp(45px, 6vw, 85px);
  height: auto;
  display: block;
  background: transparent;
  transition: transform 180ms ease, filter 180ms ease;
}

.image-button:hover img {
  transform: translateY(-6px) scale(1.12);
  filter: brightness(1.12);
}

.image-button span span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9bbaa;
  white-space: nowrap;
}

/* MOBILE */

@media (max-width: 800px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero-layout {
    min-height: auto;
    padding: 60px 0 40px;
    gap: 36px;
  }

  .intro {
    font-size: 17px;
  }

  .button-lineup {
    gap: 24px;
  }
}
