:root {
  --bg: #100c0a;
  --cream: #f3eadc;
  --muted-bronze: #a48b72;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow: hidden;
  color: var(--cream);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.12;
  background:
    repeating-linear-gradient(0deg, rgba(243, 234, 220, 0.08) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 7px);
  mix-blend-mode: overlay;
}

.teaser {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 48%, rgba(164, 139, 114, 0.12), transparent 34rem),
    linear-gradient(90deg, #0b0807 0%, #120e0c 45%, #17110e 100%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  animation: imageIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 7, 6, 0.98) 0%, rgba(10, 7, 6, 0.88) 30%, rgba(10, 7, 6, 0.22) 61%, rgba(10, 7, 6, 0.1) 100%),
    linear-gradient(180deg, rgba(10, 7, 6, 0.22), transparent 36%, rgba(10, 7, 6, 0.3));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.76) contrast(1.08) brightness(0.86);
  transform: scale(1.025);
}

.type {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(62vw, 920px);
  padding: clamp(28px, 6vw, 88px);
  animation: typeIn 760ms ease 120ms both;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: clamp(6.7rem, 17vw, 17.5rem);
  line-height: 0.78;
  letter-spacing: -0.072em;
  font-weight: 950;
}

.type p {
  margin-top: clamp(12px, 2.2vw, 28px);
  color: var(--muted-bronze);
  font-size: clamp(1.05rem, 2.15vw, 2.15rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.34em;
}

@keyframes imageIn {
  from {
    opacity: 0;
    transform: scale(1.018);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes typeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  body {
    overflow: hidden;
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(10, 7, 6, 0.94) 0%, rgba(10, 7, 6, 0.58) 38%, rgba(10, 7, 6, 0.26) 72%, rgba(10, 7, 6, 0.74) 100%),
      linear-gradient(90deg, rgba(10, 7, 6, 0.62), transparent 80%);
  }

  .hero-visual img {
    object-position: 65% center;
    transform: scale(1.12);
  }

  .type {
    justify-content: flex-start;
    width: 100%;
    padding: 42px 20px;
  }

  h1 {
    font-size: clamp(5.7rem, 29vw, 10rem);
    letter-spacing: -0.068em;
  }
}
