
:root {
  --cream: #F7F3EB;
  --sand: #E8D5B5;
  --mist: #D7E8E3;
  --water: #4FA4C4;
  --deep: #2F6F6A;
  --moss: #6A9F58;
  --clay: #E07A5F;
  --ink: #2B3A3A;
  --paper: #FFFDF8;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Nunito", ui-rounded, "Avenir Next", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}
a { color: var(--deep); }
.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
header.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0 8px;
}
.brand { display: flex; gap: 12px; align-items: center; text-decoration: none; color: inherit; }
.brand img { width: 52px; height: 52px; border-radius: 14px; box-shadow: 0 6px 16px rgba(43,58,58,.12); }
.brand strong { display: block; font-size: 1.15rem; }
.brand span { font-size: .85rem; color: rgba(43,58,58,.7); }
nav a { margin-left: 18px; text-decoration: none; font-weight: 700; }
nav a:hover { color: var(--water); }
.hero {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px;
  align-items: center; padding: 36px 0 20px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; margin: 0 0 12px; }
.lede { font-size: 1.2rem; max-width: 38ch; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.pill {
  background: var(--paper); border-radius: 999px; padding: 8px 14px;
  font-weight: 800; font-size: .9rem; box-shadow: 0 4px 12px rgba(43,58,58,.06);
}
.pill.water { background: #d7eef6; color: #215d73; }
.pill.moss { background: #e3f0d8; color: #35582b; }
.pill.clay { background: #fde4dc; color: #8a3d2a; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--deep); color: white; text-decoration: none;
  font-weight: 800; border-radius: 14px; padding: 12px 18px;
  border: 0; cursor: pointer; font-size: 1rem;
}
.btn.ghost { background: transparent; color: var(--deep); outline: 2px solid var(--deep); }
.phone {
  background: linear-gradient(180deg, var(--mist), var(--paper));
  border-radius: 36px; padding: 28px; min-height: 360px;
  box-shadow: 0 20px 50px rgba(47,111,106,.18);
  display: grid; place-items: center; text-align: center;
}
.phone img { width: min(220px, 70%); border-radius: 28px; }
.phone p { margin: 14px 0 0; font-weight: 800; }
.section { padding: 28px 0 10px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--paper); border-radius: 22px; padding: 22px;
  box-shadow: 0 8px 24px rgba(43,58,58,.07);
}
.card h3 { margin: 0 0 8px; }
.note {
  background: var(--mist); border-radius: 20px; padding: 22px; margin: 28px 0;
}
footer.site { padding: 36px 0 48px; color: rgba(43,58,58,.7); font-size: .92rem; }
footer.site a { margin-right: 14px; }
form { display: grid; gap: 12px; max-width: 520px; }
label { font-weight: 800; font-size: .9rem; }
input, textarea {
  width: 100%; border: 2px solid #e4ddd0; border-radius: 12px;
  padding: 12px 14px; font: inherit; background: var(--paper);
}
textarea { min-height: 140px; resize: vertical; }
.ok { color: var(--moss); font-weight: 800; }
.err { color: #a33; font-weight: 800; }
.legal h2 { margin-top: 1.6em; }
.legal p, .legal li { max-width: 68ch; }
@media (max-width: 800px) {
  .hero, .cards { grid-template-columns: 1fr; }
  nav a { margin-left: 12px; }
}
