:root {
  --bg: #e5e7eb;
  --panel: #ffffff;
  --ink: #1f2937;
  --muted: #374151;
  --line: color-mix(in srgb, #374151 35%, #ffffff);
  --accent: #34d399;
  --accent-2: #f97316;
  --focus: color-mix(in srgb, #34d399 28%, transparent);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Instrument Sans", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(170deg, #ffffff 0%, var(--bg) 60%, #ffffff 100%);
}

.site-header, main, footer {
  width: min(1160px, 94vw);
  margin-inline: auto;
}

.site-header {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Space Grotesk", "Merriweather", serif;
  font-weight: 700;
}

.logo { width: 44px; height: 44px; }

nav { display: flex; align-items: center; gap: 1rem; }
nav a { text-decoration: none; color: var(--muted); font-weight: 700; }
.nav-cta { color: #fff; background: var(--ink); border-radius: 999px; padding: 0.45rem 0.85rem; }

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-copy { padding: 1.15rem; }

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 800;
}

h1, h2, h3 {
  margin-top: 0.55rem;
  font-family: "Space Grotesk", "Merriweather", serif;
}

h1 {
  font-size: clamp(1.9rem, 4.7vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0.6rem;
  max-width: 15ch;
}

p { line-height: 1.68; }

.hero-image, .process-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.72rem 1.08rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--muted);
}

.stats {
  margin: 1rem 0 1.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.stats article { padding: 0.8rem; }
.stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--accent);
}
.stats span { color: var(--muted); }

.section { margin: 1.8rem 0; }
.section-head { max-width: 780px; }

.grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.card-item, .review { padding: 0.9rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.split-copy { padding: 0.9rem; }

ul { margin: 0.7rem 0 0; padding-left: 1.2rem; line-height: 1.7; }

.person {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.person h3 { margin: 0; font-size: 1rem; }
.person p { margin: 0; color: var(--muted); font-size: 0.9rem; }
blockquote { margin: 0.75rem 0 0; color: color-mix(in srgb, var(--ink) 82%, #ffffff); }

.faq-list {
  display: grid;
  gap: 0.65rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.1rem 0.75rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.62rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; font-weight: 800; }
.faq-item[open] summary::after { content: "-"; }
.faq-item p { margin: 0 0 0.7rem; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 1rem;
  align-items: start;
}

.contact-form {
  padding: 0.95rem;
  display: grid;
  gap: 0.45rem;
}

label { font-weight: 700; }

input, textarea {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0.66rem 0.72rem;
  font: inherit;
}

input:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
}

.form-note { min-height: 1.25em; color: var(--muted); }

footer {
  padding: 0 0 1.5rem;
  color: var(--muted);
}

footer a { color: var(--ink); }

@media (max-width: 1020px) {
  .hero, .stats, .grid.three, .split, .contact-wrap {
    grid-template-columns: 1fr;
  }
  nav a:not(.nav-cta) { display: none; }
}
