:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #53635d;
  --line: #d8e2dd;
  --paper: #f7faf8;
  --accent: #0f766e;
  --accent-dark: #0a544f;
  --gold: #b7791f;
}

* {
  box-sizing: border-box;
}

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

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 20px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  display: grid;
  align-content: center;
  min-height: 58vh;
  padding: 64px 0;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.intro {
  margin: 26px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-weight: 750;
}

.primary {
  color: white;
  background: var(--accent);
}

.primary:hover {
  background: var(--accent-dark);
}

.secondary {
  color: var(--accent-dark);
  background: transparent;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0 72px;
  border: 1px solid var(--line);
  background: var(--line);
}

article {
  min-height: 230px;
  padding: 24px;
  background: #ffffff;
}

article span {
  color: var(--gold);
  font-weight: 800;
}

h2 {
  margin: 18px 0 12px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: 0;
}

article p,
.band p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 44px 0 72px;
  border-top: 1px solid var(--line);
}

.band h2 {
  margin-top: 0;
  font-size: 34px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
  }

  .nav-links {
    gap: 16px;
  }

  .grid,
  .band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}
