:root {
  --bg: #0a0b0d;
  --text: #e6e6e6;
  --muted: #7a7f86;
  --line: #1a1c20;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  height: 100%;
  background: #000;
}

.hero {
  height: 100vh;
  overflow: hidden;
}

.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.1));
}

.inner {
  position: relative;
  padding: clamp(24px, 5vw, 60px);
  max-width: 700px;
}

h1 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 56px);
}

.sub {
  margin: 0 0 24px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.status {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

footer {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 12px;
  color: var(--muted);
}