.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(32, 38, 29, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, #344d2a 0%, #263c20 100%);
  color: #f5efe4;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  box-shadow:
    0 8px 16px rgba(18, 25, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 12px 22px rgba(18, 25, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #3a542f 0%, #284121 100%);
}

.btn:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(18, 25, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn--small {
  min-height: 42px;
  padding: 0.62rem 1rem;
  font-size: 0.92rem;
}