:root {
    --pine: #1e4634; --pine-dark: #14311f;
    --paper: #f6f5f0; --ink: #22281f; --dim: #5c6457;
    --amber: #c97e1f; --amber-dark: #a96712;
    --line: #dcdad0;
  }
  * { box-sizing: border-box; }
  body { margin: 0; color: var(--ink); background: var(--paper);
    font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
  h1, h2, h3 { line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
  a { color: var(--pine); }
  .wrap { max-width: 980px; margin: 0 auto; padding: 0 1.1rem; }

  header { background: var(--pine); color: #fff; }
  .topbar { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; gap: 1rem; }
  .brand { font-weight: 800; font-size: 1.25rem; color: #fff; text-decoration: none; }
  .brand small { display: block; font-weight: 500; font-size: .72rem; opacity: .75; letter-spacing: .04em; }
  .call, button.cta { background: var(--amber); color: #fff; font-weight: 700; text-decoration: none;
    padding: .65rem 1.15rem; border-radius: 8px; border: 0; font-size: 1rem; cursor: pointer; white-space: nowrap; }
  .call:hover, button.cta:hover { background: var(--amber-dark); }

  .hero { background: var(--pine); color: #fff; padding: 2.2rem 0 2.8rem; }
  .hero h1 { font-size: clamp(1.7rem, 5vw, 2.6rem); margin: 0 0 .7rem; max-width: 21ch; }
  .hero p { max-width: 58ch; margin: 0 0 1.4rem; opacity: .92; }
  .hero .actions { display: flex; gap: .8rem; flex-wrap: wrap; }
  .ghost { color: #fff; border: 1.5px solid rgba(255,255,255,.5); padding: .65rem 1.15rem;
    border-radius: 8px; text-decoration: none; font-weight: 600; }
  .points { display: flex; gap: 1.5rem 2.2rem; flex-wrap: wrap; margin-top: 1.6rem; padding: 0; list-style: none;
    font-size: .92rem; opacity: .9; }
  .points li::before { content: "✓ "; color: #8fd6a5; font-weight: 700; }

  section { padding: 2.6rem 0 1rem; }
  section h2 { font-size: clamp(1.35rem, 4vw, 1.8rem); margin: 0 0 1rem; }
  .lede { color: var(--dim); max-width: 62ch; }

  .services { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1rem; padding: 0; list-style: none; }
  .services li { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 1.1rem 1.2rem; }
  .services h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
  .services p { margin: 0; font-size: .92rem; color: var(--dim); }
  .services a { font-weight: 600; font-size: .92rem; }

  /* signature: the honest-pricing table */
  .prices { background: #fff; border: 1.5px solid var(--pine); border-radius: 12px; overflow: hidden; }
  .prices table { width: 100%; border-collapse: collapse; font-size: .95rem; }
  .prices th { background: var(--pine); color: #fff; text-align: left; padding: .7rem 1rem; font-size: .85rem;
    letter-spacing: .05em; text-transform: uppercase; }
  .prices td { padding: .75rem 1rem; border-top: 1px solid var(--line); vertical-align: top; }
  .prices td:last-child { white-space: nowrap; font-weight: 700; color: var(--pine); }
  .prices .note { padding: .8rem 1rem; font-size: .84rem; color: var(--dim); background: #fbfaf6; }

  .faq details { background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-bottom: .6rem; padding: .2rem 1.1rem; }
  .faq summary { font-weight: 700; padding: .7rem 0; cursor: pointer; }
  .faq p { margin: 0 0 1rem; color: var(--dim); }

  .quote { background: var(--pine); color: #fff; border-radius: 14px; padding: 1.8rem 1.5rem; margin: 2.5rem 0; }
  .quote h2 { margin-top: 0; }
  form { display: grid; gap: .7rem; grid-template-columns: 1fr 1fr; }
  form input, form select, form textarea { grid-column: span 2; padding: .7rem .8rem; border-radius: 8px; border: 0;
    font: inherit; font-size: .95rem; width: 100%; }
  form input[name="name"], form input[name="phone"] { grid-column: span 1; }
  form textarea { min-height: 90px; resize: vertical; }
  form button { grid-column: span 2; justify-self: start; }
  .hp { position: absolute; left: -9999px; }
  #formok { display: none; font-weight: 700; background: #2c5f46; padding: 1rem; border-radius: 8px; }

  .areas ul { columns: 2; list-style: none; padding: 0; color: var(--dim); font-size: .95rem; }
  footer { background: var(--pine-dark); color: rgba(255,255,255,.75); font-size: .84rem; padding: 1.6rem 0 2rem; margin-top: 3rem; }
  footer a { color: #cfe8d8; }
  @media (max-width: 560px) {
    form input[name="name"], form input[name="phone"] { grid-column: span 2; }
    .topbar .call { font-size: .9rem; padding: .55rem .8rem; }
  }

/* images */
.heromedia { max-width: 980px; margin: -1.2rem auto 0; padding: 0 1.1rem; }
.heromedia img { width: 100%; border-radius: 14px; display: block; box-shadow: 0 10px 30px rgba(20,49,31,.25); }
.pageimg { margin: 1.8rem 0 0; }
.pageimg img { width: 100%; border-radius: 12px; display: block; }
