.disclosure-toggle {
  display: inline-block;
  margin: var(--space-sm) 0;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  cursor: pointer;
  background: none;
}
.disclosure-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.disclosure-content.open { max-height: 2000px; }

@media (max-width: 600px) {
  .disclosure-toggle {
    width: 100%;
    text-align: center;
    font-size: 0.78rem;
    padding: 0.6rem 0.8rem;
  }
}