:root {
  color-scheme: light;
  --ink: #131313;
  --muted: #686862;
  --line: #dedbd2;
  --surface: #f7f4ec;
  --surface-strong: #ede8dc;
  --accent: #487667;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--surface);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(135deg, rgba(72, 118, 103, 0.12), transparent 38%),
    radial-gradient(circle at 82% 18%, rgba(19, 19, 19, 0.06), transparent 28%),
    var(--surface);
}

a {
  color: inherit;
  text-decoration-color: rgba(19, 19, 19, 0.28);
  text-underline-offset: 4px;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
  padding: 28px 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  flex: 0 0 auto;
  color: var(--accent);
}

.contact {
  color: var(--muted);
  font-size: 14px;
}

.hero {
  align-self: center;
  max-width: 860px;
  padding: 72px 0;
}

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

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.details div {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.details div:last-child {
  border-right: 0;
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.details span:last-child,
.details a {
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
    gap: 24px;
    padding: 20px 0;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(42px, 17vw, 68px);
  }

  .details {
    grid-template-columns: 1fr;
  }

  .details div,
  .details div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .details div:last-child {
    border-bottom: 0;
  }
}
