@font-face {
  font-family: "Amatic SC";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/amatic-sc-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/caveat-400-latin.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

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

.home-body {
  margin: 0;
  color: #fff;
  background: #030806;
}

.home-shell {
  display: grid;
  min-height: 100svh;
  grid-template-rows: minmax(0, 1fr) auto;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background: #06110c url("/assets/brand/hejihogusei-background.webp") center / cover no-repeat;
}

.home-brand {
  position: absolute;
  z-index: 1;
  top: 1.15rem;
  left: 1.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Caveat", cursive;
  font-size: 1.15rem;
  line-height: 1;
  white-space: nowrap;
}

.home-brand img {
  width: 3.7rem;
  height: auto;
}

.home-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1rem;
  color: #ff4d00;
  font-family: "Amatic SC", sans-serif;
  font-size: clamp(4.8rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
}

.home-footer {
  display: grid;
  min-height: 5rem;
  place-items: center;
  padding: 1rem 4.5rem;
  color: #111;
  background: #fff;
  font-family: "Caveat", cursive;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  text-align: center;
}

.home-footer p {
  margin: 0;
}

@media (max-width: 600px) {
  .home-brand {
    top: 1.25rem;
    left: 1.4rem;
  }

  .home-brand img {
    width: 4.5rem;
  }

  .home-brand span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .home-hero h1 {
    font-size: clamp(4.2rem, 19vw, 6rem);
    white-space: nowrap;
  }

  .home-footer {
    min-height: 5rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
  }
}
