:root {
  color-scheme: light;
  --bg: #f5f7f6;
  --ink: #171717;
  --muted: #68615a;
  --line: #d8dfdc;
  --accent: #256d5a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

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

.site-shell {
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-items: center;
}

.hello {
  width: min(100%, 720px);
  border-top: 1px solid var(--line);
  padding: 40px 0 0;
}

.label {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.92;
}

.intro {
  max-width: 34rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
}

.contact {
  margin: 28px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}

.contact a {
  color: var(--accent);
  font-weight: 700;
  text-decoration-color: color-mix(in srgb, var(--accent), transparent 55%);
  text-underline-offset: 0.2em;
}

.contact a:hover {
  text-decoration-color: currentColor;
}

@media (max-width: 640px) {
  .site-shell {
    align-items: end;
    padding: 24px;
  }

  .hello {
    padding-top: 28px;
  }
}
