body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================
   SECTION RHYTHM
============================================ */
#ws-hero,
#ws-tools,
#ws-facilitator {
  background-color: var(--cream);
}

#ws-intro,
#ws-how,
#ws-contact {
  background-color: var(--warm-off);
}

#ws-hero h1,
section h2 {
  color: var(--ink);
  margin-bottom: 1.25rem;
}

#ws-hero .subhead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

#ws-contact .subhead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

section p {
  max-width: 620px;
}

section p:last-child {
  margin-bottom: 0;
}

/* ============================================
   THREE TOOLS
============================================ */
.ws-tool-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1rem;
  max-width: 620px;
}

.ws-tool-name {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: var(--bark);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.ws-tool-list p:last-child {
  color: var(--soil);
}

/* ============================================
   FACILITATOR
============================================ */
#ws-facilitator p {
  color: var(--soil);
}

/* ============================================
   CONTACT FORM
============================================ */
.ws-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 560px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--soil);
  letter-spacing: 0.01em;
}

.form-group label .optional-tag {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.88rem;
  margin-left: 0.35rem;
}

.form-group input,
.form-group textarea {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(43, 69, 98, 0.18);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-submit-area {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.form-submit {
  background-color: var(--bark);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.9rem 2rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.2s;
  letter-spacing: 0.01em;
}

.form-submit:hover {
  background-color: var(--soil);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

#ws-status {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  display: none;
}

#ws-confirmation {
  display: none;
  padding-top: 1.5rem;
}

#ws-confirmation h2 {
  color: var(--ink);
  margin-bottom: 1rem;
}

#ws-confirmation p {
  color: var(--muted);
}

/* Honeypot — hidden from humans via CSS, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 520px) {
  .form-submit {
    width: 100%;
    text-align: center;
  }
}
