.feature-tools {
  background: #fff8ee;
}
.tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tool-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px;
}
.tool-panel h2 {
  font: 500 33px var(--display);
  letter-spacing: -0.06em;
  margin: 8px 0 24px;
}
.tool-panel p {
  color: var(--muted);
  font-size: 14px;
}
.planner-fields {
  display: grid;
  gap: 16px;
}
.planner-fields label {
  font: 500 10px var(--mono);
  text-transform: uppercase;
  color: var(--muted);
}
.planner-fields select,
.planner-fields input {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 7px;
  border: 1px solid var(--line);
  background: transparent;
  font: 15px var(--sans);
  color: var(--ink);
}
.estimate {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 20px;
}
.estimate strong {
  font: 600 clamp(28px, 4vw, 42px)/1 var(--display);
  letter-spacing: -0.06em;
  white-space: nowrap;
}
.estimate span {
  font: 11px var(--mono);
  color: var(--muted);
  max-width: 100px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font: 20px var(--display);
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 30px 18px 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.theme-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}
.theme-toggle:hover {
  background: var(--lime);
}
body.dim {
  --ink: #f4f0e8;
  --paper: #17251f;
  --muted: #aeb9b0;
  --line: #3b4b42;
  background: var(--paper);
}
body.dim .site-header {
  background: rgba(23, 37, 31, 0.94);
}
body.dim .work {
  background: #20332b;
}
body.dim .feature-tools {
  background: #1d2c25;
}
body.dim .tool-panel {
  background: #17251f;
}
body.dim .site-nav {
  background: #17251f;
}
body.dim .project {
  background: #20332b;
}
body.dim .intro,
body.dim .site-footer,
body.dim .hero-art {
  background: #0b1511;
  color: #f4f0e8;
}
body.dim .quote-band {
  color: #17251f;
}
body.dim .contact-band .body-copy {
  color: #17251f;
}
body.dim .article {
  background: #20332b;
}
body.dim .inner-card {
  background: #17251f;
}
body.dim .contact-form input,
body.dim .contact-form textarea,
body.dim .contact-form select {
  background: #17251f;
  color: #f4f0e8;
}
@media (max-width: 800px) {
  .tool-grid {
    grid-template-columns: 1fr;
  }
  .tool-panel {
    padding: 24px;
  }
  .estimate {
    align-items: center;
  }
  .estimate strong {
    font-size: 32px;
  }
  .theme-toggle {
    margin-left: 0;
  }
}
