:root {
  color-scheme: dark;
  --ink: #f7f4ef;
  --muted: #d7cab8;
  --line: rgba(255, 255, 255, 0.22);
  --panel: #101413;
  --accent: #d8a34f;
  --accent-ink: #16120a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #101413;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-width: 320px;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: clamp(32px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(9, 13, 14, 0.9) 0%, rgba(9, 13, 14, 0.72) 37%, rgba(9, 13, 14, 0.18) 68%),
    linear-gradient(0deg, rgba(16, 20, 19, 1) 0%, rgba(16, 20, 19, 0) 28%),
    url("/hero.jpg") center / cover no-repeat;
}

.hero__content {
  width: min(720px, 100%);
  padding-top: 8svh;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4.75rem, 11vw, 9.25rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.status {
  width: fit-content;
  margin: 34px 0 0;
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

@media (max-width: 780px) {
  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 28px 22px 42px;
    background:
      linear-gradient(0deg, rgba(9, 13, 14, 0.94) 0%, rgba(9, 13, 14, 0.72) 48%, rgba(9, 13, 14, 0.24) 100%),
      url("/hero.jpg") center / cover no-repeat;
  }

  .hero__content {
    padding-top: 0;
  }

  h1 {
    font-size: clamp(4.1rem, 22vw, 6.25rem);
  }
}
