:root {
  color-scheme: dark;
  --text-color: rgba(214, 185, 128, 0.92);
  --focus-x: 50%;
  --focus-y: 45%;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-color);
}

.hero {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x) var(--focus-y);
  /* This helps preserve sharpness during scaling in many browsers */
  image-rendering: auto;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 50% 45%, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.20) 65%, rgba(0,0,0,0.75) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.95) 100%);
}

/* Legal block */

.hero__legal {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  width: min(92%, 760px);
  text-align: center;
  padding: 0 10px;
}

.hero__description {
  margin: 0 0 16px 0;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.hero__footer {
  margin: 0;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.08em;
  opacity: 0.88;
}

.hero__footer a {
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(214,185,128,0.35);
}

.hero__footer a:hover {
  border-bottom: 1px solid rgba(214,185,128,0.75);
}

/* MOBILE: show full image, no cropping */
@media (max-width: 700px) {
  .hero__img {
    object-fit: contain;
    object-position: 50% 50%;
    background: #000;
  }

  .hero__legal {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }
}
