:root {
  color-scheme: light;
  --paper: #f7f5ef;
  --paper-soft: #fffdf8;
  --ink: #1d231f;
  --muted: #4f5a54;
  --accent: #2f6f58;
  --accent-deep: #245642;
  --line: rgba(29, 35, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--paper-soft);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
}

a {
  color: var(--accent);
  font-weight: 500;
  text-decoration-color: rgba(47, 111, 88, 0.3);
  text-underline-offset: 0.24em;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

a:hover {
  color: var(--accent-deep);
  text-decoration-color: rgba(36, 86, 66, 0.7);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0.35rem;
}

.hero {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding: 2.5rem 1.25rem;
  background: var(--paper-soft);
}

.surface {
  width: min(100%, 54rem);
  margin: 0 auto;
}

.panel {
  width: min(100%, 50rem);
}

.brand {
  margin: 0;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  max-width: 44rem;
  margin: 2rem 0 0;
  font-size: clamp(2.25rem, 7.2vw, 3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
}

.lead {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.services,
.about,
.contact {
  max-width: 42rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-intro,
.about p {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
}

.service-list {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.service-list h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}

.service-list p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.cta {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.label {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.label a {
  display: inline;
  margin-left: 0.2rem;
}

@media (min-width: 640px) {
  .hero {
    padding: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 3rem;
  }
}
