:root {
  --bg: #F5F2E8;
  --surface: #E9E4D5;
  --text: #2D2D2D;
  --text-muted: #4A4A4A;
  --accent: #2E5E4E;
  --accent-text: #FFFFFF;
  --font-heading: "Lora", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;
  --container-max: 64rem;
  --gap: 1.25rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-top: 0; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

a { color: var(--accent); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.site-header {
  padding: 1rem 0;
  background: var(--surface);
  border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
}
.site-header nav { display: flex; gap: 1.25rem; }
.site-header nav a { color: var(--text-muted); }

section { padding: 3rem 0; }
section.hero { padding: 5rem 0 4rem; }
section + section {
  border-top: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
}

.subhead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.85rem 1.4rem;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 0.5rem;
  font-weight: 600;
}
.cta:hover, .cta:focus { text-decoration: none; filter: brightness(0.95); }

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}
.service-list li {
  padding: 1.25rem;
  background: var(--surface);
  border-radius: 0.75rem;
}

.faqs dt { font-weight: 600; margin-top: 1rem; }
.faqs dd { margin: 0.25rem 0 0; color: var(--text-muted); }

.contact p { margin: 0.25rem 0; }

.site-footer {
  padding: 2rem 0;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.site-footer .copy { margin-top: 0.5rem; }

@media (min-width: 768px) {
  .service-list { grid-template-columns: repeat(2, 1fr); }
}
