:root {
  color-scheme: light;
  --ink: #1b1f23;
  --muted: #58636f;
  --line: #d7dde2;
  --paper: #f8faf9;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --gold: #b98224;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(125deg, rgba(15, 118, 110, 0.13), transparent 36%),
    linear-gradient(315deg, rgba(185, 130, 36, 0.16), transparent 34%),
    var(--paper);
}

.page-shell {
  min-height: 100vh;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(1.25rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(4rem, 13vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  line-height: 1.35;
}

.contact-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--accent);
  color: #ffffff;
  background: var(--accent);
  font-weight: 720;
  text-decoration: none;
}

.contact-link:hover,
.contact-link:focus-visible {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

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

.summary > div {
  min-height: 210px;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: rgba(255, 255, 255, 0.72);
}

h2 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.summary p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 7vw, 6rem);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--accent-strong);
  font-weight: 700;
}

@media (max-width: 760px) {
  .hero {
    min-height: 64vh;
    align-items: flex-end;
  }

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

  .summary > div {
    min-height: 0;
  }
}
