:root {
  --ink: #111918;
  --muted: #50615c;
  --line: #d9e3df;
  --paper: #f7faf7;
  --soft: #edf4f1;
  --accent: #b85f36;
  --accent-dark: #833f27;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 48px;
  color: #f8fbf8;
}

.brand {
  font-size: 18px;
  font-weight: 700;
}

.header-status {
  border: 1px solid rgba(248, 251, 248, .5);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: rgba(248, 251, 248, .86);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px 48px 88px;
  background-image: url("./assets/hero-mountain.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 17, 16, .62), rgba(6, 17, 16, .18) 54%, rgba(6, 17, 16, .04));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #f8fbf8;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #f1b591;
}

.eyebrow.dark {
  color: var(--accent-dark);
}

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

h1 {
  margin-bottom: 22px;
  font-size: 72px;
  line-height: 1;
  font-weight: 780;
}

.lead {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.45;
  color: rgba(248, 251, 248, .9);
}

.status-section {
  padding: 52px 48px 72px;
  background: var(--paper);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 36px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.22;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 24px;
}

.status-card {
  min-height: 174px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
}

.status-label {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.status-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
}

.status-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .site-header {
    padding: 22px 22px;
  }

  .header-status {
    display: none;
  }

  .hero {
    min-height: 70svh;
    padding: 104px 22px 68px;
    background-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 17, 16, .74), rgba(6, 17, 16, .26));
  }

  h1 {
    font-size: 44px;
    line-height: 1.05;
  }

  .lead {
    font-size: 21px;
  }

  .status-section {
    padding: 36px 22px 48px;
  }

  .section-heading,
  .status-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 24px;
  }
}
