:root {
  color-scheme: dark;
  --bg: #0f0f10;
  --surface: #17181a;
  --text: #f2f2f2;
  --muted: #9a9da3;
  --primary: #ffffff;
  --primary-hover: #cfcfcf;
  --border: #2a2d31;
  --hero-image-zoom: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.2;
}

.container {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  text-align: left;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
  background: #000;
  display: grid;
  place-items: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(var(--hero-image-zoom));
  transform-origin: center;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to left, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 12%, rgba(0, 0, 0, 0) 32%),
    linear-gradient(to right, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.56) 12%, rgba(0, 0, 0, 0) 30%),
    radial-gradient(120% 120% at 50% 50%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0) 26%,
      rgba(0, 0, 0, 0) 74%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0) 24%,
      rgba(0, 0, 0, 0) 76%,
      rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.06) saturate(0.88) brightness(0.72);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 8%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1rem 1.2rem;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

h1 {
  font-size: clamp(3rem, 11vw, 7.3rem);
  line-height: 0.9;
  margin: 0;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.lead {
  margin: 0.35rem 0 0.6rem;
  color: #d4d6db;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--primary-hover);
}

.small-link {
  display: inline-block;
  margin-top: 0.1rem;
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.small-link:hover {
  color: var(--primary-hover);
}

.meta {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.meta p {
  margin: 0;
  color: #c7c9ce;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.meta p + p {
  margin-top: 0.28rem;
}

.meta a {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: var(--muted);
  padding: 0 1rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 2rem 2rem 1.5rem;
  }

  .lead {
    font-size: 0.9rem;
  }
}

@media (min-width: 1200px) {
  .hero-image-frame {
    width: min(100vw, calc(100vh * 0.75));
    height: min(100vh, calc(100vw / 0.75));
  }

  .hero-image-frame::after {
    background:
      linear-gradient(to left, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.58) 12%, rgba(0, 0, 0, 0) 32%),
      linear-gradient(to right, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.58) 12%, rgba(0, 0, 0, 0) 32%),
      linear-gradient(to top, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0) 76%, rgba(0, 0, 0, 0.58) 100%),
      radial-gradient(130% 130% at 50% 50%, rgba(0, 0, 0, 0) 56%, rgba(0, 0, 0, 0.76) 100%);
  }

  .hero-image {
    object-fit: cover;
    object-position: center 8%;
    filter: contrast(1.06) saturate(0.88) brightness(0.72);
  }
}
