h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 42px;
  padding: 0 var(--space-5);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: #fff;
  box-shadow: 0 8px 20px rgba(184, 154, 91, 0.28);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(184, 154, 91, 0.34);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.input,
.select,
.textarea,
input[type='text'],
input[type='email'],
input[type='password'],
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--brand-400);
  box-shadow: 0 0 0 3px rgba(184, 154, 91, 0.15);
}
