.nav-link {
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  color: rgb(23 33 27 / 0.72);
}

.nav-link:hover {
  background: rgb(100 112 68 / 0.1);
  color: #17211b;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.primary-button {
  background: #17211b;
  color: white;
}

.secondary-button {
  border: 1px solid rgb(100 112 68 / 0.28);
  color: #17211b;
}

.field-label {
  display: grid;
  gap: 0.45rem;
  color: rgb(23 33 27 / 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.field-input {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgb(100 112 68 / 0.22);
  background: rgb(251 247 238 / 0.75);
  color: #17211b;
  padding: 0.8rem 0.95rem;
  outline: none;
}

.field-input:focus {
  border-color: #b88b3e;
  box-shadow: 0 0 0 3px rgb(184 139 62 / 0.16);
}

.form-section {
  border-top: 1px solid rgb(100 112 68 / 0.14);
  padding-top: 1.5rem;
}

.form-section h2,
.wizard-step h2,
.profile-panel h2 {
  margin-bottom: 1rem;
  font-size: 1.18rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.repeater-row {
  position: relative;
  display: grid;
  gap: 0.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgb(100 112 68 / 0.14);
  background: rgb(251 247 238 / 0.55);
  padding: 1rem;
}

@media (min-width: 1024px) {
  .repeater-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.remove-row {
  justify-self: start;
  color: #9f392f;
  font-size: 0.8rem;
  font-weight: 800;
}

.profile-panel {
  display: grid;
  gap: 0.75rem;
  border-radius: 1.5rem;
  background: white;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgb(23 33 27 / 0.06);
  border: 1px solid rgb(100 112 68 / 0.1);
}

.profile-panel dl {
  display: grid;
  gap: 0.6rem;
}

.profile-panel dt {
  color: rgb(23 33 27 / 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-panel dd {
  margin: 0;
  font-weight: 650;
}

.card-preview {
  min-height: 32rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgb(184 139 62 / 0.22), transparent 34%),
    linear-gradient(145deg, #fffdf7, #efe5d2);
  box-shadow: 0 20px 70px rgb(23 33 27 / 0.14);
  padding: 2rem;
  border: 1px solid rgb(100 112 68 / 0.14);
}
