:root {
  color-scheme: light;
  --ink: #162033;
  --muted: #5f6876;
  --line: #dde3ea;
  --paper: #fbfaf7;
  --accent: #2f6f73;
  --warm: #c96f40;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background:
    image-set(url("/assets/hero.png") type("image/png")) center / cover
      no-repeat,
    #22364a;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(16, 27, 39, 0.65), transparent);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 15, 27, 0.72), rgba(6, 15, 27, 0.12)),
    linear-gradient(0deg, rgba(6, 15, 27, 0.22), rgba(6, 15, 27, 0.08));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 0 96px;
  color: #fff8ed;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: #f5c27f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.status {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  padding: 64px 0 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.status h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.status p:last-child {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-label {
  color: var(--warm);
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 82vh;
  }

  .hero__content {
    padding: 64px 0 72px;
  }

  .status {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0 60px;
  }
}
