:root {
  color: #3a342c;
  font-family:
    "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman",
    serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #e6dccf;
}

body {
  cursor: none;
}

.bg,
.sharp {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg img,
.sharp img {
  position: absolute;
  top: -3%;
  left: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bg img {
  filter: blur(8px) saturate(0.6) brightness(1.02);
}

.sharp {
  z-index: 1;
  pointer-events: none;
  clip-path: circle(140px at var(--x, 50vw) var(--y, 50vh));
  -webkit-clip-path: circle(140px at var(--x, 50vw) var(--y, 50vh));
}

.sharp img {
  filter: contrast(1.2) saturate(1.4) brightness(1.02);
}

@media (max-width: 768px) {
  .bg img {
    filter: blur(6px) saturate(0.6);
  }

  .sharp {
    clip-path: circle(100px at var(--x, 50vw) var(--y, 50vh));
    -webkit-clip-path: circle(100px at var(--x, 50vw) var(--y, 50vh));
  }
}

.hero {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  pointer-events: none;
}

.brand {
  margin: 0;
  font-size: clamp(3rem, 12vw, 7.5rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  color: #2c261f;
  text-shadow:
    0 1px 0 rgb(255 250 242 / 55%),
    0 12px 40px rgb(60 48 30 / 18%);
  user-select: none;
}

.tagline {
  margin: 0;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(70 60 48 / 72%);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-weight: 500;
}

@media (hover: none) {
  * {
    cursor: auto;
  }
}
