/* Bond Last-Mile Letter — composer address fields (Phase 8c) */
.bond-last-mile-block {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(120, 90, 50, 0.35);
  background: rgba(20, 14, 10, 0.45);
}
.bond-last-mile-block label.bond-last-mile-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: rgba(243, 230, 196, 0.92);
  cursor: pointer;
}
.bond-last-mile-fields {
  display: none;
  margin-top: 12px;
  gap: 8px;
}
.bond-last-mile-fields.is-open {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.bond-last-mile-fields input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid rgba(120, 90, 50, 0.4);
  background: rgba(8, 6, 4, 0.55);
  color: rgba(248, 242, 228, 0.95);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
}
.bond-last-mile-fields input.bond-last-mile-full {
  grid-column: 1 / -1;
}
.bond-last-mile-hint {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(200, 180, 140, 0.65);
  margin: 0;
}
